blob: be59f9827dfa9b3669f9b532897d1d5d2cb342c6 [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
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000035#define DO_NOT_FREE_CNT 99999 /* refcount for dict or list that should not
36 be freed. */
37
Bram Moolenaar071d4272004-06-13 20:20:40 +000038/*
Bram Moolenaar33570922005-01-25 22:26:29 +000039 * In a hashtab item "hi_key" points to "di_key" in a dictitem.
40 * This avoids adding a pointer to the hashtab item.
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000041 * DI2HIKEY() converts a dictitem pointer to a hashitem key pointer.
42 * HIKEY2DI() converts a hashitem key pointer to a dictitem pointer.
43 * HI2DI() converts a hashitem pointer to a dictitem pointer.
44 */
Bram Moolenaar33570922005-01-25 22:26:29 +000045static dictitem_T dumdi;
Bram Moolenaara7043832005-01-21 11:56:39 +000046#define DI2HIKEY(di) ((di)->di_key)
Bram Moolenaar33570922005-01-25 22:26:29 +000047#define HIKEY2DI(p) ((dictitem_T *)(p - (dumdi.di_key - (char_u *)&dumdi)))
Bram Moolenaara7043832005-01-21 11:56:39 +000048#define HI2DI(hi) HIKEY2DI((hi)->hi_key)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000049
50/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000051 * Structure returned by get_lval() and used by set_var_lval().
52 * For a plain name:
53 * "name" points to the variable name.
54 * "exp_name" is NULL.
55 * "tv" is NULL
56 * For a magic braces name:
57 * "name" points to the expanded variable name.
58 * "exp_name" is non-NULL, to be freed later.
59 * "tv" is NULL
60 * For an index in a list:
61 * "name" points to the (expanded) variable name.
62 * "exp_name" NULL or non-NULL, to be freed later.
63 * "tv" points to the (first) list item value
64 * "li" points to the (first) list item
65 * "range", "n1", "n2" and "empty2" indicate what items are used.
66 * For an existing Dict item:
67 * "name" points to the (expanded) variable name.
68 * "exp_name" NULL or non-NULL, to be freed later.
69 * "tv" points to the dict item value
70 * "newkey" is NULL
71 * For a non-existing Dict item:
72 * "name" points to the (expanded) variable name.
73 * "exp_name" NULL or non-NULL, to be freed later.
Bram Moolenaar33570922005-01-25 22:26:29 +000074 * "tv" points to the Dictionary typval_T
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000075 * "newkey" is the key for the new item.
76 */
77typedef struct lval_S
78{
79 char_u *ll_name; /* start of variable name (can be NULL) */
80 char_u *ll_exp_name; /* NULL or expanded name in allocated memory. */
Bram Moolenaar33570922005-01-25 22:26:29 +000081 typval_T *ll_tv; /* Typeval of item being used. If "newkey"
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000082 isn't NULL it's the Dict to which to add
83 the item. */
Bram Moolenaar33570922005-01-25 22:26:29 +000084 listitem_T *ll_li; /* The list item or NULL. */
85 list_T *ll_list; /* The list or NULL. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000086 int ll_range; /* TRUE when a [i:j] range was used */
87 long ll_n1; /* First index for list */
88 long ll_n2; /* Second index for list range */
89 int ll_empty2; /* Second index is empty: [i:] */
Bram Moolenaar33570922005-01-25 22:26:29 +000090 dict_T *ll_dict; /* The Dictionary or NULL */
91 dictitem_T *ll_di; /* The dictitem or NULL */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000092 char_u *ll_newkey; /* New key for Dict in alloc. mem or NULL. */
Bram Moolenaar33570922005-01-25 22:26:29 +000093} lval_T;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000094
Bram Moolenaar8c711452005-01-14 21:53:12 +000095
Bram Moolenaarc70646c2005-01-04 21:52:38 +000096static char *e_letunexp = N_("E18: Unexpected characters in :let");
Bram Moolenaare49b69a2005-01-08 16:11:57 +000097static char *e_listidx = N_("E684: list index out of range: %ld");
Bram Moolenaarc70646c2005-01-04 21:52:38 +000098static char *e_undefvar = N_("E121: Undefined variable: %s");
99static char *e_missbrac = N_("E111: Missing ']'");
Bram Moolenaar8c711452005-01-14 21:53:12 +0000100static char *e_listarg = N_("E686: Argument of %s must be a List");
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000101static char *e_listdictarg = N_("E712: Argument of %s must be a List or Dictionary");
Bram Moolenaarce5e58e2005-01-19 22:24:34 +0000102static char *e_emptykey = N_("E713: Cannot use empty key for Dictionary");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000103static char *e_listreq = N_("E714: List required");
104static char *e_dictreq = N_("E715: Dictionary required");
Bram Moolenaar8c711452005-01-14 21:53:12 +0000105static char *e_toomanyarg = N_("E118: Too many arguments for function: %s");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000106static char *e_dictkey = N_("E716: Key not present in Dictionary: %s");
107static char *e_funcexts = N_("E122: Function %s already exists, add ! to replace it");
108static char *e_funcdict = N_("E717: Dictionary entry already exists");
109static char *e_funcref = N_("E718: Funcref required");
110static char *e_dictrange = N_("E719: Cannot use [:] with a Dictionary");
111static char *e_letwrong = N_("E734: Wrong variable type for %s=");
Bram Moolenaar05159a02005-02-26 23:04:13 +0000112static char *e_nofunc = N_("E130: Unknown function: %s");
Bram Moolenaar92124a32005-06-17 22:03:40 +0000113static char *e_illvar = N_("E461: Illegal variable name: %s");
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000114
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000115/*
Bram Moolenaar33570922005-01-25 22:26:29 +0000116 * All user-defined global variables are stored in dictionary "globvardict".
117 * "globvars_var" is the variable that is used for "g:".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118 */
Bram Moolenaar33570922005-01-25 22:26:29 +0000119static dict_T globvardict;
120static dictitem_T globvars_var;
121#define globvarht globvardict.dv_hashtab
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122
123/*
Bram Moolenaar532c7802005-01-27 14:44:31 +0000124 * Old Vim variables such as "v:version" are also available without the "v:".
125 * Also in functions. We need a special hashtable for them.
126 */
Bram Moolenaar4debb442005-06-01 21:57:40 +0000127static hashtab_T compat_hashtab;
Bram Moolenaar532c7802005-01-27 14:44:31 +0000128
129/*
Bram Moolenaard9fba312005-06-26 22:34:35 +0000130 * When recursively copying lists and dicts we need to remember which ones we
131 * have done to avoid endless recursiveness. This unique ID is used for that.
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +0000132 * The last bit is used for previous_funccal, ignored when comparing.
Bram Moolenaard9fba312005-06-26 22:34:35 +0000133 */
134static int current_copyID = 0;
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +0000135#define COPYID_INC 2
136#define COPYID_MASK (~0x1)
Bram Moolenaard9fba312005-06-26 22:34:35 +0000137
138/*
Bram Moolenaar33570922005-01-25 22:26:29 +0000139 * Array to hold the hashtab with variables local to each sourced script.
140 * Each item holds a variable (nameless) that points to the dict_T.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000141 */
Bram Moolenaar33570922005-01-25 22:26:29 +0000142typedef struct
143{
144 dictitem_T sv_var;
145 dict_T sv_dict;
146} scriptvar_T;
147
Bram Moolenaar9577c3e2010-05-14 12:16:25 +0200148static garray_T ga_scripts = {0, 0, sizeof(scriptvar_T *), 4, NULL};
149#define SCRIPT_SV(id) (((scriptvar_T **)ga_scripts.ga_data)[(id) - 1])
150#define SCRIPT_VARS(id) (SCRIPT_SV(id)->sv_dict.dv_hashtab)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151
152static int echo_attr = 0; /* attributes used for ":echo" */
153
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000154/* Values for trans_function_name() argument: */
155#define TFN_INT 1 /* internal function name OK */
156#define TFN_QUIET 2 /* no error messages */
157
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158/*
159 * Structure to hold info for a user function.
160 */
161typedef struct ufunc ufunc_T;
162
163struct ufunc
164{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000165 int uf_varargs; /* variable nr of arguments */
166 int uf_flags;
167 int uf_calls; /* nr of active calls */
168 garray_T uf_args; /* arguments */
169 garray_T uf_lines; /* function lines */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000170#ifdef FEAT_PROFILE
171 int uf_profiling; /* TRUE when func is being profiled */
172 /* profiling the function as a whole */
173 int uf_tm_count; /* nr of calls */
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000174 proftime_T uf_tm_total; /* time spent in function + children */
175 proftime_T uf_tm_self; /* time spent in function itself */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000176 proftime_T uf_tm_children; /* time spent in children this call */
177 /* profiling the function per line */
178 int *uf_tml_count; /* nr of times line was executed */
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000179 proftime_T *uf_tml_total; /* time spent in a line + children */
180 proftime_T *uf_tml_self; /* time spent in a line itself */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000181 proftime_T uf_tml_start; /* start time for current line */
182 proftime_T uf_tml_children; /* time spent in children for this line */
183 proftime_T uf_tml_wait; /* start wait time for current line */
184 int uf_tml_idx; /* index of line being timed; -1 if none */
185 int uf_tml_execed; /* line being timed was executed */
186#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000187 scid_T uf_script_ID; /* ID of script where function was defined,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188 used for s: variables */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000189 int uf_refcount; /* for numbered function: reference count */
190 char_u uf_name[1]; /* name of function (actually longer); can
191 start with <SNR>123_ (<SNR> is K_SPECIAL
192 KS_EXTRA KE_SNR) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193};
194
195/* function flags */
196#define FC_ABORT 1 /* abort function on error */
197#define FC_RANGE 2 /* function accepts range */
Bram Moolenaare9a41262005-01-15 22:18:47 +0000198#define FC_DICT 4 /* Dict function, uses "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199
200/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000201 * All user-defined functions are found in this hashtable.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202 */
Bram Moolenaar4debb442005-06-01 21:57:40 +0000203static hashtab_T func_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000205/* The names of packages that once were loaded are remembered. */
Bram Moolenaaraa35dd12006-04-29 22:03:41 +0000206static garray_T ga_loaded = {0, 0, sizeof(char_u *), 4, NULL};
207
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000208/* list heads for garbage collection */
209static dict_T *first_dict = NULL; /* list of all dicts */
210static list_T *first_list = NULL; /* list of all lists */
211
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000212/* From user function to hashitem and back. */
213static ufunc_T dumuf;
214#define UF2HIKEY(fp) ((fp)->uf_name)
215#define HIKEY2UF(p) ((ufunc_T *)(p - (dumuf.uf_name - (char_u *)&dumuf)))
216#define HI2UF(hi) HIKEY2UF((hi)->hi_key)
217
218#define FUNCARG(fp, j) ((char_u **)(fp->uf_args.ga_data))[j]
219#define FUNCLINE(fp, j) ((char_u **)(fp->uf_lines.ga_data))[j]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220
Bram Moolenaar33570922005-01-25 22:26:29 +0000221#define MAX_FUNC_ARGS 20 /* maximum number of function arguments */
222#define VAR_SHORT_LEN 20 /* short variable name length */
223#define FIXVAR_CNT 12 /* number of fixed variables */
224
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225/* structure to hold info for a function that is currently being executed. */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000226typedef struct funccall_S funccall_T;
227
228struct funccall_S
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229{
230 ufunc_T *func; /* function being called */
231 int linenr; /* next line to be executed */
232 int returned; /* ":return" used */
Bram Moolenaar33570922005-01-25 22:26:29 +0000233 struct /* fixed variables for arguments */
234 {
235 dictitem_T var; /* variable (without room for name) */
236 char_u room[VAR_SHORT_LEN]; /* room for the name */
237 } fixvar[FIXVAR_CNT];
238 dict_T l_vars; /* l: local function variables */
239 dictitem_T l_vars_var; /* variable for l: scope */
240 dict_T l_avars; /* a: argument variables */
241 dictitem_T l_avars_var; /* variable for a: scope */
242 list_T l_varlist; /* list for a:000 */
243 listitem_T l_listitems[MAX_FUNC_ARGS]; /* listitems for a:000 */
244 typval_T *rettv; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 linenr_T breakpoint; /* next line with breakpoint or zero */
246 int dbg_tick; /* debug_tick when breakpoint was set */
247 int level; /* top nesting level of executed function */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000248#ifdef FEAT_PROFILE
249 proftime_T prof_child; /* time spent in a child */
250#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000251 funccall_T *caller; /* calling function or NULL */
252};
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253
254/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +0000255 * Info used by a ":for" loop.
256 */
Bram Moolenaar33570922005-01-25 22:26:29 +0000257typedef struct
Bram Moolenaar3d60ec22005-01-05 22:19:46 +0000258{
259 int fi_semicolon; /* TRUE if ending in '; var]' */
260 int fi_varcount; /* nr of variables in the list */
Bram Moolenaar33570922005-01-25 22:26:29 +0000261 listwatch_T fi_lw; /* keep an eye on the item used. */
262 list_T *fi_list; /* list being used */
263} forinfo_T;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +0000264
Bram Moolenaar3d60ec22005-01-05 22:19:46 +0000265/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000266 * Struct used by trans_function_name()
267 */
268typedef struct
269{
Bram Moolenaar33570922005-01-25 22:26:29 +0000270 dict_T *fd_dict; /* Dictionary used */
Bram Moolenaar532c7802005-01-27 14:44:31 +0000271 char_u *fd_newkey; /* new key in "dict" in allocated memory */
Bram Moolenaar33570922005-01-25 22:26:29 +0000272 dictitem_T *fd_di; /* Dictionary item used */
273} funcdict_T;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000274
Bram Moolenaara7043832005-01-21 11:56:39 +0000275
276/*
Bram Moolenaar33570922005-01-25 22:26:29 +0000277 * Array to hold the value of v: variables.
278 * The value is in a dictitem, so that it can also be used in the v: scope.
279 * The reason to use this table anyway is for very quick access to the
280 * variables with the VV_ defines.
281 */
282#include "version.h"
283
284/* values for vv_flags: */
285#define VV_COMPAT 1 /* compatible, also used without "v:" */
286#define VV_RO 2 /* read-only */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000287#define VV_RO_SBX 4 /* read-only in the sandbox */
Bram Moolenaar33570922005-01-25 22:26:29 +0000288
Bram Moolenaarcdb92af2009-06-03 12:26:06 +0000289#define VV_NAME(s, t) s, {{t, 0, {0}}, 0, {0}}, {0}
Bram Moolenaar33570922005-01-25 22:26:29 +0000290
291static struct vimvar
292{
293 char *vv_name; /* name of variable, without v: */
Bram Moolenaar33570922005-01-25 22:26:29 +0000294 dictitem_T vv_di; /* value and name for key */
295 char vv_filler[16]; /* space for LONGEST name below!!! */
296 char vv_flags; /* VV_COMPAT, VV_RO, VV_RO_SBX */
297} vimvars[VV_LEN] =
298{
299 /*
300 * The order here must match the VV_ defines in vim.h!
301 * Initializing a union does not work, leave tv.vval empty to get zero's.
302 */
303 {VV_NAME("count", VAR_NUMBER), VV_COMPAT+VV_RO},
304 {VV_NAME("count1", VAR_NUMBER), VV_RO},
305 {VV_NAME("prevcount", VAR_NUMBER), VV_RO},
306 {VV_NAME("errmsg", VAR_STRING), VV_COMPAT},
307 {VV_NAME("warningmsg", VAR_STRING), 0},
308 {VV_NAME("statusmsg", VAR_STRING), 0},
309 {VV_NAME("shell_error", VAR_NUMBER), VV_COMPAT+VV_RO},
310 {VV_NAME("this_session", VAR_STRING), VV_COMPAT},
311 {VV_NAME("version", VAR_NUMBER), VV_COMPAT+VV_RO},
312 {VV_NAME("lnum", VAR_NUMBER), VV_RO_SBX},
313 {VV_NAME("termresponse", VAR_STRING), VV_RO},
314 {VV_NAME("fname", VAR_STRING), VV_RO},
315 {VV_NAME("lang", VAR_STRING), VV_RO},
316 {VV_NAME("lc_time", VAR_STRING), VV_RO},
317 {VV_NAME("ctype", VAR_STRING), VV_RO},
318 {VV_NAME("charconvert_from", VAR_STRING), VV_RO},
319 {VV_NAME("charconvert_to", VAR_STRING), VV_RO},
320 {VV_NAME("fname_in", VAR_STRING), VV_RO},
321 {VV_NAME("fname_out", VAR_STRING), VV_RO},
322 {VV_NAME("fname_new", VAR_STRING), VV_RO},
323 {VV_NAME("fname_diff", VAR_STRING), VV_RO},
324 {VV_NAME("cmdarg", VAR_STRING), VV_RO},
325 {VV_NAME("foldstart", VAR_NUMBER), VV_RO_SBX},
326 {VV_NAME("foldend", VAR_NUMBER), VV_RO_SBX},
327 {VV_NAME("folddashes", VAR_STRING), VV_RO_SBX},
328 {VV_NAME("foldlevel", VAR_NUMBER), VV_RO_SBX},
329 {VV_NAME("progname", VAR_STRING), VV_RO},
330 {VV_NAME("servername", VAR_STRING), VV_RO},
331 {VV_NAME("dying", VAR_NUMBER), VV_RO},
332 {VV_NAME("exception", VAR_STRING), VV_RO},
333 {VV_NAME("throwpoint", VAR_STRING), VV_RO},
334 {VV_NAME("register", VAR_STRING), VV_RO},
335 {VV_NAME("cmdbang", VAR_NUMBER), VV_RO},
336 {VV_NAME("insertmode", VAR_STRING), VV_RO},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000337 {VV_NAME("val", VAR_UNKNOWN), VV_RO},
338 {VV_NAME("key", VAR_UNKNOWN), VV_RO},
Bram Moolenaar05159a02005-02-26 23:04:13 +0000339 {VV_NAME("profiling", VAR_NUMBER), VV_RO},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000340 {VV_NAME("fcs_reason", VAR_STRING), VV_RO},
341 {VV_NAME("fcs_choice", VAR_STRING), 0},
Bram Moolenaare2ac10d2005-03-07 23:26:06 +0000342 {VV_NAME("beval_bufnr", VAR_NUMBER), VV_RO},
343 {VV_NAME("beval_winnr", VAR_NUMBER), VV_RO},
344 {VV_NAME("beval_lnum", VAR_NUMBER), VV_RO},
345 {VV_NAME("beval_col", VAR_NUMBER), VV_RO},
346 {VV_NAME("beval_text", VAR_STRING), VV_RO},
Bram Moolenaar761b1132005-10-03 22:05:45 +0000347 {VV_NAME("scrollstart", VAR_STRING), 0},
Bram Moolenaard5bc83f2005-12-07 21:07:59 +0000348 {VV_NAME("swapname", VAR_STRING), VV_RO},
349 {VV_NAME("swapchoice", VAR_STRING), 0},
Bram Moolenaar63a121b2005-12-11 21:36:39 +0000350 {VV_NAME("swapcommand", VAR_STRING), VV_RO},
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000351 {VV_NAME("char", VAR_STRING), VV_RO},
Bram Moolenaar219b8702006-11-01 14:32:36 +0000352 {VV_NAME("mouse_win", VAR_NUMBER), 0},
353 {VV_NAME("mouse_lnum", VAR_NUMBER), 0},
354 {VV_NAME("mouse_col", VAR_NUMBER), 0},
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +0000355 {VV_NAME("operator", VAR_STRING), VV_RO},
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000356 {VV_NAME("searchforward", VAR_NUMBER), 0},
Bram Moolenaard812df62008-11-09 12:46:09 +0000357 {VV_NAME("oldfiles", VAR_LIST), 0},
Bram Moolenaar33570922005-01-25 22:26:29 +0000358};
359
360/* shorthand */
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000361#define vv_type vv_di.di_tv.v_type
362#define vv_nr vv_di.di_tv.vval.v_number
363#define vv_float vv_di.di_tv.vval.v_float
364#define vv_str vv_di.di_tv.vval.v_string
Bram Moolenaard812df62008-11-09 12:46:09 +0000365#define vv_list vv_di.di_tv.vval.v_list
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000366#define vv_tv vv_di.di_tv
Bram Moolenaar33570922005-01-25 22:26:29 +0000367
368/*
369 * The v: variables are stored in dictionary "vimvardict".
370 * "vimvars_var" is the variable that is used for the "l:" scope.
371 */
372static dict_T vimvardict;
373static dictitem_T vimvars_var;
374#define vimvarht vimvardict.dv_hashtab
375
Bram Moolenaara40058a2005-07-11 22:42:07 +0000376static void prepare_vimvar __ARGS((int idx, typval_T *save_tv));
377static void restore_vimvar __ARGS((int idx, typval_T *save_tv));
378#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
379static int call_vim_function __ARGS((char_u *func, int argc, char_u **argv, int safe, typval_T *rettv));
380#endif
381static int ex_let_vars __ARGS((char_u *arg, typval_T *tv, int copy, int semicolon, int var_count, char_u *nextchars));
382static char_u *skip_var_list __ARGS((char_u *arg, int *var_count, int *semicolon));
383static char_u *skip_var_one __ARGS((char_u *arg));
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000384static void list_hashtable_vars __ARGS((hashtab_T *ht, char_u *prefix, int empty, int *first));
385static void list_glob_vars __ARGS((int *first));
386static void list_buf_vars __ARGS((int *first));
387static void list_win_vars __ARGS((int *first));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000388#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000389static void list_tab_vars __ARGS((int *first));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000390#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000391static void list_vim_vars __ARGS((int *first));
392static void list_script_vars __ARGS((int *first));
393static void list_func_vars __ARGS((int *first));
394static char_u *list_arg_vars __ARGS((exarg_T *eap, char_u *arg, int *first));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000395static char_u *ex_let_one __ARGS((char_u *arg, typval_T *tv, int copy, char_u *endchars, char_u *op));
396static int check_changedtick __ARGS((char_u *arg));
397static char_u *get_lval __ARGS((char_u *name, typval_T *rettv, lval_T *lp, int unlet, int skip, int quiet, int fne_flags));
398static void clear_lval __ARGS((lval_T *lp));
399static void set_var_lval __ARGS((lval_T *lp, char_u *endp, typval_T *rettv, int copy, char_u *op));
400static int tv_op __ARGS((typval_T *tv1, typval_T *tv2, char_u *op));
401static void list_add_watch __ARGS((list_T *l, listwatch_T *lw));
402static void list_rem_watch __ARGS((list_T *l, listwatch_T *lwrem));
403static void list_fix_watch __ARGS((list_T *l, listitem_T *item));
404static void ex_unletlock __ARGS((exarg_T *eap, char_u *argstart, int deep));
405static int do_unlet_var __ARGS((lval_T *lp, char_u *name_end, int forceit));
406static int do_lock_var __ARGS((lval_T *lp, char_u *name_end, int deep, int lock));
407static void item_lock __ARGS((typval_T *tv, int deep, int lock));
408static int tv_islocked __ARGS((typval_T *tv));
409
Bram Moolenaar33570922005-01-25 22:26:29 +0000410static int eval0 __ARGS((char_u *arg, typval_T *rettv, char_u **nextcmd, int evaluate));
411static int eval1 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
412static int eval2 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
413static int eval3 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
414static int eval4 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
415static int eval5 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +0000416static int eval6 __ARGS((char_u **arg, typval_T *rettv, int evaluate, int want_string));
417static int eval7 __ARGS((char_u **arg, typval_T *rettv, int evaluate, int want_string));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000418
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000419static int eval_index __ARGS((char_u **arg, typval_T *rettv, int evaluate, int verbose));
Bram Moolenaar33570922005-01-25 22:26:29 +0000420static int get_option_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
421static int get_string_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
422static int get_lit_string_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
423static int get_list_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaareddf53b2006-02-27 00:11:10 +0000424static int rettv_list_alloc __ARGS((typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000425static listitem_T *listitem_alloc __ARGS((void));
426static void listitem_free __ARGS((listitem_T *item));
427static void listitem_remove __ARGS((list_T *l, listitem_T *item));
428static long list_len __ARGS((list_T *l));
429static int list_equal __ARGS((list_T *l1, list_T *l2, int ic));
430static int dict_equal __ARGS((dict_T *d1, dict_T *d2, int ic));
431static int tv_equal __ARGS((typval_T *tv1, typval_T *tv2, int ic));
Bram Moolenaar33570922005-01-25 22:26:29 +0000432static listitem_T *list_find __ARGS((list_T *l, long n));
Bram Moolenaara5525202006-03-02 22:52:09 +0000433static long list_find_nr __ARGS((list_T *l, long idx, int *errorp));
Bram Moolenaar33570922005-01-25 22:26:29 +0000434static long list_idx_of_item __ARGS((list_T *l, listitem_T *item));
Bram Moolenaar33570922005-01-25 22:26:29 +0000435static void list_append __ARGS((list_T *l, listitem_T *item));
Bram Moolenaar4463f292005-09-25 22:20:24 +0000436static int list_append_number __ARGS((list_T *l, varnumber_T n));
Bram Moolenaar33570922005-01-25 22:26:29 +0000437static int list_insert_tv __ARGS((list_T *l, typval_T *tv, listitem_T *item));
438static int list_extend __ARGS((list_T *l1, list_T *l2, listitem_T *bef));
439static int list_concat __ARGS((list_T *l1, list_T *l2, typval_T *tv));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000440static list_T *list_copy __ARGS((list_T *orig, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000441static void list_remove __ARGS((list_T *l, listitem_T *item, listitem_T *item2));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000442static char_u *list2string __ARGS((typval_T *tv, int copyID));
443static int list_join __ARGS((garray_T *gap, list_T *l, char_u *sep, int echo, int copyID));
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +0000444static int free_unref_items __ARGS((int copyID));
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000445static void set_ref_in_ht __ARGS((hashtab_T *ht, int copyID));
446static void set_ref_in_list __ARGS((list_T *l, int copyID));
447static void set_ref_in_item __ARGS((typval_T *tv, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000448static void dict_unref __ARGS((dict_T *d));
Bram Moolenaar685295c2006-10-15 20:37:38 +0000449static void dict_free __ARGS((dict_T *d, int recurse));
Bram Moolenaar33570922005-01-25 22:26:29 +0000450static dictitem_T *dictitem_copy __ARGS((dictitem_T *org));
451static void dictitem_remove __ARGS((dict_T *dict, dictitem_T *item));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000452static dict_T *dict_copy __ARGS((dict_T *orig, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000453static long dict_len __ARGS((dict_T *d));
454static dictitem_T *dict_find __ARGS((dict_T *d, char_u *key, int len));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000455static char_u *dict2string __ARGS((typval_T *tv, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000456static int get_dict_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000457static char_u *echo_string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
458static char_u *tv2string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000459static char_u *string_quote __ARGS((char_u *str, int function));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000460#ifdef FEAT_FLOAT
461static int string2float __ARGS((char_u *text, float_T *value));
462#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000463static int get_env_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
464static int find_internal_func __ARGS((char_u *name));
465static char_u *deref_func_name __ARGS((char_u *name, int *lenp));
466static 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));
467static 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 +0000468static void emsg_funcname __ARGS((char *ermsg, char_u *name));
Bram Moolenaar05bb9532008-07-04 09:44:11 +0000469static int non_zero_arg __ARGS((typval_T *argvars));
Bram Moolenaar33570922005-01-25 22:26:29 +0000470
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000471#ifdef FEAT_FLOAT
472static void f_abs __ARGS((typval_T *argvars, typval_T *rettv));
473#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000474static void f_add __ARGS((typval_T *argvars, typval_T *rettv));
475static void f_append __ARGS((typval_T *argvars, typval_T *rettv));
476static void f_argc __ARGS((typval_T *argvars, typval_T *rettv));
477static void f_argidx __ARGS((typval_T *argvars, typval_T *rettv));
478static void f_argv __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000479#ifdef FEAT_FLOAT
480static void f_atan __ARGS((typval_T *argvars, typval_T *rettv));
481#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000482static void f_browse __ARGS((typval_T *argvars, typval_T *rettv));
483static void f_browsedir __ARGS((typval_T *argvars, typval_T *rettv));
484static void f_bufexists __ARGS((typval_T *argvars, typval_T *rettv));
485static void f_buflisted __ARGS((typval_T *argvars, typval_T *rettv));
486static void f_bufloaded __ARGS((typval_T *argvars, typval_T *rettv));
487static void f_bufname __ARGS((typval_T *argvars, typval_T *rettv));
488static void f_bufnr __ARGS((typval_T *argvars, typval_T *rettv));
489static void f_bufwinnr __ARGS((typval_T *argvars, typval_T *rettv));
490static void f_byte2line __ARGS((typval_T *argvars, typval_T *rettv));
491static void f_byteidx __ARGS((typval_T *argvars, typval_T *rettv));
492static void f_call __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000493#ifdef FEAT_FLOAT
494static void f_ceil __ARGS((typval_T *argvars, typval_T *rettv));
495#endif
Bram Moolenaarf0acfce2006-03-17 23:21:19 +0000496static void f_changenr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000497static void f_char2nr __ARGS((typval_T *argvars, typval_T *rettv));
498static void f_cindent __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000499static void f_clearmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000500static void f_col __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar572cb562005-08-05 21:35:02 +0000501#if defined(FEAT_INS_EXPAND)
Bram Moolenaarade00832006-03-10 21:46:58 +0000502static void f_complete __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar572cb562005-08-05 21:35:02 +0000503static void f_complete_add __ARGS((typval_T *argvars, typval_T *rettv));
504static void f_complete_check __ARGS((typval_T *argvars, typval_T *rettv));
505#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000506static void f_confirm __ARGS((typval_T *argvars, typval_T *rettv));
507static void f_copy __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000508#ifdef FEAT_FLOAT
509static void f_cos __ARGS((typval_T *argvars, typval_T *rettv));
510#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000511static void f_count __ARGS((typval_T *argvars, typval_T *rettv));
512static void f_cscope_connection __ARGS((typval_T *argvars, typval_T *rettv));
513static void f_cursor __ARGS((typval_T *argsvars, typval_T *rettv));
514static void f_deepcopy __ARGS((typval_T *argvars, typval_T *rettv));
515static void f_delete __ARGS((typval_T *argvars, typval_T *rettv));
516static void f_did_filetype __ARGS((typval_T *argvars, typval_T *rettv));
517static void f_diff_filler __ARGS((typval_T *argvars, typval_T *rettv));
518static void f_diff_hlID __ARGS((typval_T *argvars, typval_T *rettv));
519static void f_empty __ARGS((typval_T *argvars, typval_T *rettv));
520static void f_escape __ARGS((typval_T *argvars, typval_T *rettv));
521static void f_eval __ARGS((typval_T *argvars, typval_T *rettv));
522static void f_eventhandler __ARGS((typval_T *argvars, typval_T *rettv));
523static void f_executable __ARGS((typval_T *argvars, typval_T *rettv));
524static void f_exists __ARGS((typval_T *argvars, typval_T *rettv));
525static void f_expand __ARGS((typval_T *argvars, typval_T *rettv));
526static void f_extend __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000527static void f_feedkeys __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000528static void f_filereadable __ARGS((typval_T *argvars, typval_T *rettv));
529static void f_filewritable __ARGS((typval_T *argvars, typval_T *rettv));
530static void f_filter __ARGS((typval_T *argvars, typval_T *rettv));
531static void f_finddir __ARGS((typval_T *argvars, typval_T *rettv));
532static void f_findfile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000533#ifdef FEAT_FLOAT
534static void f_float2nr __ARGS((typval_T *argvars, typval_T *rettv));
535static void f_floor __ARGS((typval_T *argvars, typval_T *rettv));
536#endif
Bram Moolenaaraebaf892008-05-28 14:49:58 +0000537static void f_fnameescape __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000538static void f_fnamemodify __ARGS((typval_T *argvars, typval_T *rettv));
539static void f_foldclosed __ARGS((typval_T *argvars, typval_T *rettv));
540static void f_foldclosedend __ARGS((typval_T *argvars, typval_T *rettv));
541static void f_foldlevel __ARGS((typval_T *argvars, typval_T *rettv));
542static void f_foldtext __ARGS((typval_T *argvars, typval_T *rettv));
543static void f_foldtextresult __ARGS((typval_T *argvars, typval_T *rettv));
544static void f_foreground __ARGS((typval_T *argvars, typval_T *rettv));
545static void f_function __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000546static void f_garbagecollect __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000547static void f_get __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar80fc0432005-07-20 22:06:07 +0000548static void f_getbufline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000549static void f_getbufvar __ARGS((typval_T *argvars, typval_T *rettv));
550static void f_getchar __ARGS((typval_T *argvars, typval_T *rettv));
551static void f_getcharmod __ARGS((typval_T *argvars, typval_T *rettv));
552static void f_getcmdline __ARGS((typval_T *argvars, typval_T *rettv));
553static void f_getcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000554static void f_getcmdtype __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000555static void f_getcwd __ARGS((typval_T *argvars, typval_T *rettv));
556static void f_getfontname __ARGS((typval_T *argvars, typval_T *rettv));
557static void f_getfperm __ARGS((typval_T *argvars, typval_T *rettv));
558static void f_getfsize __ARGS((typval_T *argvars, typval_T *rettv));
559static void f_getftime __ARGS((typval_T *argvars, typval_T *rettv));
560static void f_getftype __ARGS((typval_T *argvars, typval_T *rettv));
561static void f_getline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000562static void f_getmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar18081e32008-02-20 19:11:07 +0000563static void f_getpid __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaara5525202006-03-02 22:52:09 +0000564static void f_getpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2641f772005-03-25 21:58:17 +0000565static void f_getqflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000566static void f_getreg __ARGS((typval_T *argvars, typval_T *rettv));
567static void f_getregtype __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000568static void f_gettabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000569static void f_getwinposx __ARGS((typval_T *argvars, typval_T *rettv));
570static void f_getwinposy __ARGS((typval_T *argvars, typval_T *rettv));
571static void f_getwinvar __ARGS((typval_T *argvars, typval_T *rettv));
572static void f_glob __ARGS((typval_T *argvars, typval_T *rettv));
573static void f_globpath __ARGS((typval_T *argvars, typval_T *rettv));
574static void f_has __ARGS((typval_T *argvars, typval_T *rettv));
575static void f_has_key __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard267b9c2007-04-26 15:06:45 +0000576static void f_haslocaldir __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000577static void f_hasmapto __ARGS((typval_T *argvars, typval_T *rettv));
578static void f_histadd __ARGS((typval_T *argvars, typval_T *rettv));
579static void f_histdel __ARGS((typval_T *argvars, typval_T *rettv));
580static void f_histget __ARGS((typval_T *argvars, typval_T *rettv));
581static void f_histnr __ARGS((typval_T *argvars, typval_T *rettv));
582static void f_hlID __ARGS((typval_T *argvars, typval_T *rettv));
583static void f_hlexists __ARGS((typval_T *argvars, typval_T *rettv));
584static void f_hostname __ARGS((typval_T *argvars, typval_T *rettv));
585static void f_iconv __ARGS((typval_T *argvars, typval_T *rettv));
586static void f_indent __ARGS((typval_T *argvars, typval_T *rettv));
587static void f_index __ARGS((typval_T *argvars, typval_T *rettv));
588static void f_input __ARGS((typval_T *argvars, typval_T *rettv));
589static void f_inputdialog __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6efa2b32005-09-10 19:26:26 +0000590static void f_inputlist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000591static void f_inputrestore __ARGS((typval_T *argvars, typval_T *rettv));
592static void f_inputsave __ARGS((typval_T *argvars, typval_T *rettv));
593static void f_inputsecret __ARGS((typval_T *argvars, typval_T *rettv));
594static void f_insert __ARGS((typval_T *argvars, typval_T *rettv));
595static void f_isdirectory __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000596static void f_islocked __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000597static void f_items __ARGS((typval_T *argvars, typval_T *rettv));
598static void f_join __ARGS((typval_T *argvars, typval_T *rettv));
599static void f_keys __ARGS((typval_T *argvars, typval_T *rettv));
600static void f_last_buffer_nr __ARGS((typval_T *argvars, typval_T *rettv));
601static void f_len __ARGS((typval_T *argvars, typval_T *rettv));
602static void f_libcall __ARGS((typval_T *argvars, typval_T *rettv));
603static void f_libcallnr __ARGS((typval_T *argvars, typval_T *rettv));
604static void f_line __ARGS((typval_T *argvars, typval_T *rettv));
605static void f_line2byte __ARGS((typval_T *argvars, typval_T *rettv));
606static void f_lispindent __ARGS((typval_T *argvars, typval_T *rettv));
607static void f_localtime __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000608#ifdef FEAT_FLOAT
609static void f_log10 __ARGS((typval_T *argvars, typval_T *rettv));
610#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000611static void f_map __ARGS((typval_T *argvars, typval_T *rettv));
612static void f_maparg __ARGS((typval_T *argvars, typval_T *rettv));
613static void f_mapcheck __ARGS((typval_T *argvars, typval_T *rettv));
614static void f_match __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000615static void f_matchadd __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000616static void f_matcharg __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000617static void f_matchdelete __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000618static void f_matchend __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000619static void f_matchlist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000620static void f_matchstr __ARGS((typval_T *argvars, typval_T *rettv));
621static void f_max __ARGS((typval_T *argvars, typval_T *rettv));
622static void f_min __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000623#ifdef vim_mkdir
624static void f_mkdir __ARGS((typval_T *argvars, typval_T *rettv));
625#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000626static void f_mode __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar7e506b62010-01-19 15:55:06 +0100627#ifdef FEAT_MZSCHEME
628static void f_mzeval __ARGS((typval_T *argvars, typval_T *rettv));
629#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000630static void f_nextnonblank __ARGS((typval_T *argvars, typval_T *rettv));
631static void f_nr2char __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000632static void f_pathshorten __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000633#ifdef FEAT_FLOAT
634static void f_pow __ARGS((typval_T *argvars, typval_T *rettv));
635#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000636static void f_prevnonblank __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000637static void f_printf __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000638static void f_pumvisible __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000639static void f_range __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000640static void f_readfile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaare580b0c2006-03-21 21:33:03 +0000641static void f_reltime __ARGS((typval_T *argvars, typval_T *rettv));
642static void f_reltimestr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000643static void f_remote_expr __ARGS((typval_T *argvars, typval_T *rettv));
644static void f_remote_foreground __ARGS((typval_T *argvars, typval_T *rettv));
645static void f_remote_peek __ARGS((typval_T *argvars, typval_T *rettv));
646static void f_remote_read __ARGS((typval_T *argvars, typval_T *rettv));
647static void f_remote_send __ARGS((typval_T *argvars, typval_T *rettv));
648static void f_remove __ARGS((typval_T *argvars, typval_T *rettv));
649static void f_rename __ARGS((typval_T *argvars, typval_T *rettv));
650static void f_repeat __ARGS((typval_T *argvars, typval_T *rettv));
651static void f_resolve __ARGS((typval_T *argvars, typval_T *rettv));
652static void f_reverse __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000653#ifdef FEAT_FLOAT
654static void f_round __ARGS((typval_T *argvars, typval_T *rettv));
655#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000656static void f_search __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaardd2436f2005-09-05 22:14:46 +0000657static void f_searchdecl __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000658static void f_searchpair __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000659static void f_searchpairpos __ARGS((typval_T *argvars, typval_T *rettv));
660static void f_searchpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000661static void f_server2client __ARGS((typval_T *argvars, typval_T *rettv));
662static void f_serverlist __ARGS((typval_T *argvars, typval_T *rettv));
663static void f_setbufvar __ARGS((typval_T *argvars, typval_T *rettv));
664static void f_setcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
665static void f_setline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000666static void f_setloclist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000667static void f_setmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar0e34f622006-03-03 23:00:03 +0000668static void f_setpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2641f772005-03-25 21:58:17 +0000669static void f_setqflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000670static void f_setreg __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000671static void f_settabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000672static void f_setwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar60a495f2006-10-03 12:44:42 +0000673static void f_shellescape __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000674static void f_simplify __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000675#ifdef FEAT_FLOAT
676static void f_sin __ARGS((typval_T *argvars, typval_T *rettv));
677#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000678static void f_sort __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +0000679static void f_soundfold __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000680static void f_spellbadword __ARGS((typval_T *argvars, typval_T *rettv));
681static void f_spellsuggest __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000682static void f_split __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000683#ifdef FEAT_FLOAT
684static void f_sqrt __ARGS((typval_T *argvars, typval_T *rettv));
685static void f_str2float __ARGS((typval_T *argvars, typval_T *rettv));
686#endif
Bram Moolenaar2c932302006-03-18 21:42:09 +0000687static void f_str2nr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000688#ifdef HAVE_STRFTIME
689static void f_strftime __ARGS((typval_T *argvars, typval_T *rettv));
690#endif
691static void f_stridx __ARGS((typval_T *argvars, typval_T *rettv));
692static void f_string __ARGS((typval_T *argvars, typval_T *rettv));
693static void f_strlen __ARGS((typval_T *argvars, typval_T *rettv));
694static void f_strpart __ARGS((typval_T *argvars, typval_T *rettv));
695static void f_strridx __ARGS((typval_T *argvars, typval_T *rettv));
696static void f_strtrans __ARGS((typval_T *argvars, typval_T *rettv));
697static void f_submatch __ARGS((typval_T *argvars, typval_T *rettv));
698static void f_substitute __ARGS((typval_T *argvars, typval_T *rettv));
699static void f_synID __ARGS((typval_T *argvars, typval_T *rettv));
700static void f_synIDattr __ARGS((typval_T *argvars, typval_T *rettv));
701static void f_synIDtrans __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar9d188ab2008-01-10 21:24:39 +0000702static void f_synstack __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000703static void f_system __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000704static void f_tabpagebuflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000705static void f_tabpagenr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000706static void f_tabpagewinnr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000707static void f_taglist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard43b6cf2005-09-09 19:53:42 +0000708static void f_tagfiles __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000709static void f_tempname __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard52d9742005-08-21 22:20:28 +0000710static void f_test __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000711static void f_tolower __ARGS((typval_T *argvars, typval_T *rettv));
712static void f_toupper __ARGS((typval_T *argvars, typval_T *rettv));
713static void f_tr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000714#ifdef FEAT_FLOAT
715static void f_trunc __ARGS((typval_T *argvars, typval_T *rettv));
716#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000717static void f_type __ARGS((typval_T *argvars, typval_T *rettv));
718static void f_values __ARGS((typval_T *argvars, typval_T *rettv));
719static void f_virtcol __ARGS((typval_T *argvars, typval_T *rettv));
720static void f_visualmode __ARGS((typval_T *argvars, typval_T *rettv));
721static void f_winbufnr __ARGS((typval_T *argvars, typval_T *rettv));
722static void f_wincol __ARGS((typval_T *argvars, typval_T *rettv));
723static void f_winheight __ARGS((typval_T *argvars, typval_T *rettv));
724static void f_winline __ARGS((typval_T *argvars, typval_T *rettv));
725static void f_winnr __ARGS((typval_T *argvars, typval_T *rettv));
726static void f_winrestcmd __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar768b8c42006-03-04 21:58:33 +0000727static void f_winrestview __ARGS((typval_T *argvars, typval_T *rettv));
728static void f_winsaveview __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000729static void f_winwidth __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000730static void f_writefile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000731
Bram Moolenaar0e34f622006-03-03 23:00:03 +0000732static int list2fpos __ARGS((typval_T *arg, pos_T *posp, int *fnump));
Bram Moolenaar477933c2007-07-17 14:32:23 +0000733static pos_T *var2fpos __ARGS((typval_T *varp, int dollar_lnum, int *fnum));
Bram Moolenaar33570922005-01-25 22:26:29 +0000734static int get_env_len __ARGS((char_u **arg));
735static int get_id_len __ARGS((char_u **arg));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000736static int get_name_len __ARGS((char_u **arg, char_u **alias, int evaluate, int verbose));
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000737static char_u *find_name_end __ARGS((char_u *arg, char_u **expr_start, char_u **expr_end, int flags));
738#define FNE_INCL_BR 1 /* find_name_end(): include [] in name */
739#define FNE_CHECK_START 2 /* find_name_end(): check name starts with
740 valid character */
Bram Moolenaara40058a2005-07-11 22:42:07 +0000741static 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 +0000742static int eval_isnamec __ARGS((int c));
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000743static int eval_isnamec1 __ARGS((int c));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000744static int get_var_tv __ARGS((char_u *name, int len, typval_T *rettv, int verbose));
745static int handle_subscript __ARGS((char_u **arg, typval_T *rettv, int evaluate, int verbose));
Bram Moolenaar33570922005-01-25 22:26:29 +0000746static typval_T *alloc_tv __ARGS((void));
747static typval_T *alloc_string_tv __ARGS((char_u *string));
Bram Moolenaar33570922005-01-25 22:26:29 +0000748static void init_tv __ARGS((typval_T *varp));
749static long get_tv_number __ARGS((typval_T *varp));
750static linenr_T get_tv_lnum __ARGS((typval_T *argvars));
Bram Moolenaar661b1822005-07-28 22:36:45 +0000751static linenr_T get_tv_lnum_buf __ARGS((typval_T *argvars, buf_T *buf));
Bram Moolenaar33570922005-01-25 22:26:29 +0000752static char_u *get_tv_string __ARGS((typval_T *varp));
753static char_u *get_tv_string_buf __ARGS((typval_T *varp, char_u *buf));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000754static char_u *get_tv_string_buf_chk __ARGS((typval_T *varp, char_u *buf));
Bram Moolenaar33570922005-01-25 22:26:29 +0000755static dictitem_T *find_var __ARGS((char_u *name, hashtab_T **htp));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000756static dictitem_T *find_var_in_ht __ARGS((hashtab_T *ht, char_u *varname, int writing));
Bram Moolenaar33570922005-01-25 22:26:29 +0000757static hashtab_T *find_var_ht __ARGS((char_u *name, char_u **varname));
758static void vars_clear_ext __ARGS((hashtab_T *ht, int free_val));
759static void delete_var __ARGS((hashtab_T *ht, hashitem_T *hi));
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000760static void list_one_var __ARGS((dictitem_T *v, char_u *prefix, int *first));
761static 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 +0000762static void set_var __ARGS((char_u *name, typval_T *varp, int copy));
763static int var_check_ro __ARGS((int flags, char_u *name));
Bram Moolenaar4e957af2006-09-02 11:41:07 +0000764static int var_check_fixed __ARGS((int flags, char_u *name));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000765static int tv_check_lock __ARGS((int lock, char_u *name));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000766static int item_copy __ARGS((typval_T *from, typval_T *to, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000767static char_u *find_option_end __ARGS((char_u **arg, int *opt_flags));
768static char_u *trans_function_name __ARGS((char_u **pp, int skip, int flags, funcdict_T *fd));
769static int eval_fname_script __ARGS((char_u *p));
770static int eval_fname_sid __ARGS((char_u *p));
771static void list_func_head __ARGS((ufunc_T *fp, int indent));
Bram Moolenaar33570922005-01-25 22:26:29 +0000772static ufunc_T *find_func __ARGS((char_u *name));
773static int function_exists __ARGS((char_u *name));
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000774static int builtin_function __ARGS((char_u *name));
Bram Moolenaar05159a02005-02-26 23:04:13 +0000775#ifdef FEAT_PROFILE
776static void func_do_profile __ARGS((ufunc_T *fp));
Bram Moolenaar73830342005-02-28 22:48:19 +0000777static void prof_sort_list __ARGS((FILE *fd, ufunc_T **sorttab, int st_len, char *title, int prefer_self));
778static void prof_func_line __ARGS((FILE *fd, int count, proftime_T *total, proftime_T *self, int prefer_self));
779static int
780# ifdef __BORLANDC__
781 _RTLENTRYF
782# endif
783 prof_total_cmp __ARGS((const void *s1, const void *s2));
784static int
785# ifdef __BORLANDC__
786 _RTLENTRYF
787# endif
788 prof_self_cmp __ARGS((const void *s1, const void *s2));
Bram Moolenaar05159a02005-02-26 23:04:13 +0000789#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000790static int script_autoload __ARGS((char_u *name, int reload));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000791static char_u *autoload_name __ARGS((char_u *name));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000792static void cat_func_name __ARGS((char_u *buf, ufunc_T *fp));
Bram Moolenaar33570922005-01-25 22:26:29 +0000793static void func_free __ARGS((ufunc_T *fp));
794static void func_unref __ARGS((char_u *name));
795static void func_ref __ARGS((char_u *name));
796static 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));
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +0000797static int can_free_funccal __ARGS((funccall_T *fc, int copyID)) ;
798static void free_funccal __ARGS((funccall_T *fc, int free_val));
Bram Moolenaar33570922005-01-25 22:26:29 +0000799static void add_nr_var __ARGS((dict_T *dp, dictitem_T *v, char *name, varnumber_T nr));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000800static win_T *find_win_by_nr __ARGS((typval_T *vp, tabpage_T *tp));
801static void getwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000802static int searchpair_cmn __ARGS((typval_T *argvars, pos_T *match_pos));
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000803static int search_cmn __ARGS((typval_T *argvars, pos_T *match_pos, int *flagsp));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000804static void setwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
Bram Moolenaar33570922005-01-25 22:26:29 +0000805
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000806/* Character used as separated in autoload function/variable names. */
807#define AUTOLOAD_CHAR '#'
808
Bram Moolenaar33570922005-01-25 22:26:29 +0000809/*
810 * Initialize the global and v: variables.
Bram Moolenaara7043832005-01-21 11:56:39 +0000811 */
812 void
813eval_init()
814{
Bram Moolenaar33570922005-01-25 22:26:29 +0000815 int i;
816 struct vimvar *p;
817
818 init_var_dict(&globvardict, &globvars_var);
819 init_var_dict(&vimvardict, &vimvars_var);
Bram Moolenaar532c7802005-01-27 14:44:31 +0000820 hash_init(&compat_hashtab);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000821 hash_init(&func_hashtab);
Bram Moolenaar33570922005-01-25 22:26:29 +0000822
823 for (i = 0; i < VV_LEN; ++i)
824 {
825 p = &vimvars[i];
826 STRCPY(p->vv_di.di_key, p->vv_name);
827 if (p->vv_flags & VV_RO)
828 p->vv_di.di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
829 else if (p->vv_flags & VV_RO_SBX)
830 p->vv_di.di_flags = DI_FLAGS_RO_SBX | DI_FLAGS_FIX;
831 else
832 p->vv_di.di_flags = DI_FLAGS_FIX;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000833
834 /* add to v: scope dict, unless the value is not always available */
835 if (p->vv_type != VAR_UNKNOWN)
836 hash_add(&vimvarht, p->vv_di.di_key);
Bram Moolenaar33570922005-01-25 22:26:29 +0000837 if (p->vv_flags & VV_COMPAT)
Bram Moolenaar532c7802005-01-27 14:44:31 +0000838 /* add to compat scope dict */
839 hash_add(&compat_hashtab, p->vv_di.di_key);
Bram Moolenaar33570922005-01-25 22:26:29 +0000840 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000841 set_vim_var_nr(VV_SEARCHFORWARD, 1L);
Bram Moolenaara7043832005-01-21 11:56:39 +0000842}
843
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000844#if defined(EXITFREE) || defined(PROTO)
845 void
846eval_clear()
847{
848 int i;
849 struct vimvar *p;
850
851 for (i = 0; i < VV_LEN; ++i)
852 {
853 p = &vimvars[i];
854 if (p->vv_di.di_tv.v_type == VAR_STRING)
Bram Moolenaard9fba312005-06-26 22:34:35 +0000855 {
Bram Moolenaar12193212008-11-09 16:22:01 +0000856 vim_free(p->vv_str);
857 p->vv_str = NULL;
Bram Moolenaard812df62008-11-09 12:46:09 +0000858 }
859 else if (p->vv_di.di_tv.v_type == VAR_LIST)
860 {
861 list_unref(p->vv_list);
862 p->vv_list = NULL;
Bram Moolenaard9fba312005-06-26 22:34:35 +0000863 }
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000864 }
865 hash_clear(&vimvarht);
Bram Moolenaar0f71c6d2008-11-12 14:29:28 +0000866 hash_init(&vimvarht); /* garbage_collect() will access it */
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000867 hash_clear(&compat_hashtab);
868
Bram Moolenaard9fba312005-06-26 22:34:35 +0000869 free_scriptnames();
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000870
871 /* global variables */
872 vars_clear(&globvarht);
Bram Moolenaard9fba312005-06-26 22:34:35 +0000873
Bram Moolenaaraa35dd12006-04-29 22:03:41 +0000874 /* autoloaded script names */
875 ga_clear_strings(&ga_loaded);
876
Bram Moolenaar9577c3e2010-05-14 12:16:25 +0200877 /* script-local variables */
878 for (i = 1; i <= ga_scripts.ga_len; ++i)
879 {
880 vars_clear(&SCRIPT_VARS(i));
881 vim_free(SCRIPT_SV(i));
882 }
883 ga_clear(&ga_scripts);
884
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000885 /* unreferenced lists and dicts */
886 (void)garbage_collect();
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000887
888 /* functions */
889 free_all_functions();
890 hash_clear(&func_hashtab);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000891}
892#endif
893
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000894/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 * Return the name of the executed function.
896 */
897 char_u *
898func_name(cookie)
899 void *cookie;
900{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000901 return ((funccall_T *)cookie)->func->uf_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902}
903
904/*
905 * Return the address holding the next breakpoint line for a funccall cookie.
906 */
907 linenr_T *
908func_breakpoint(cookie)
909 void *cookie;
910{
Bram Moolenaar33570922005-01-25 22:26:29 +0000911 return &((funccall_T *)cookie)->breakpoint;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912}
913
914/*
915 * Return the address holding the debug tick for a funccall cookie.
916 */
917 int *
918func_dbg_tick(cookie)
919 void *cookie;
920{
Bram Moolenaar33570922005-01-25 22:26:29 +0000921 return &((funccall_T *)cookie)->dbg_tick;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922}
923
924/*
925 * Return the nesting level for a funccall cookie.
926 */
927 int
928func_level(cookie)
929 void *cookie;
930{
Bram Moolenaar33570922005-01-25 22:26:29 +0000931 return ((funccall_T *)cookie)->level;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932}
933
934/* pointer to funccal for currently active function */
Bram Moolenaar33570922005-01-25 22:26:29 +0000935funccall_T *current_funccal = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +0000937/* pointer to list of previously used funccal, still around because some
938 * item in it is still being used. */
939funccall_T *previous_funccal = NULL;
940
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941/*
942 * Return TRUE when a function was ended by a ":return" command.
943 */
944 int
945current_func_returned()
946{
947 return current_funccal->returned;
948}
949
950
951/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 * Set an internal variable to a string value. Creates the variable if it does
953 * not already exist.
954 */
955 void
956set_internal_string_var(name, value)
957 char_u *name;
958 char_u *value;
959{
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000960 char_u *val;
Bram Moolenaar33570922005-01-25 22:26:29 +0000961 typval_T *tvp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962
963 val = vim_strsave(value);
964 if (val != NULL)
965 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +0000966 tvp = alloc_string_tv(val);
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000967 if (tvp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000969 set_var(name, tvp, FALSE);
Bram Moolenaarc70646c2005-01-04 21:52:38 +0000970 free_tv(tvp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 }
972 }
973}
974
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000975static lval_T *redir_lval = NULL;
Bram Moolenaar863b53b2007-01-14 14:28:34 +0000976static garray_T redir_ga; /* only valid when redir_lval is not NULL */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000977static char_u *redir_endp = NULL;
978static char_u *redir_varname = NULL;
979
980/*
981 * Start recording command output to a variable
982 * Returns OK if successfully completed the setup. FAIL otherwise.
983 */
984 int
985var_redir_start(name, append)
986 char_u *name;
987 int append; /* append to an existing variable */
988{
989 int save_emsg;
990 int err;
991 typval_T tv;
992
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +0000993 /* Catch a bad name early. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000994 if (!eval_isnamec1(*name))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000995 {
996 EMSG(_(e_invarg));
997 return FAIL;
998 }
999
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001000 /* Make a copy of the name, it is used in redir_lval until redir ends. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001001 redir_varname = vim_strsave(name);
1002 if (redir_varname == NULL)
1003 return FAIL;
1004
1005 redir_lval = (lval_T *)alloc_clear((unsigned)sizeof(lval_T));
1006 if (redir_lval == NULL)
1007 {
1008 var_redir_stop();
1009 return FAIL;
1010 }
1011
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001012 /* The output is stored in growarray "redir_ga" until redirection ends. */
1013 ga_init2(&redir_ga, (int)sizeof(char), 500);
1014
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001015 /* Parse the variable name (can be a dict or list entry). */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00001016 redir_endp = get_lval(redir_varname, NULL, redir_lval, FALSE, FALSE, FALSE,
1017 FNE_CHECK_START);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001018 if (redir_endp == NULL || redir_lval->ll_name == NULL || *redir_endp != NUL)
1019 {
1020 if (redir_endp != NULL && *redir_endp != NUL)
1021 /* Trailing characters are present after the variable name */
1022 EMSG(_(e_trailing));
1023 else
1024 EMSG(_(e_invarg));
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001025 redir_endp = NULL; /* don't store a value, only cleanup */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001026 var_redir_stop();
1027 return FAIL;
1028 }
1029
1030 /* check if we can write to the variable: set it to or append an empty
1031 * string */
1032 save_emsg = did_emsg;
1033 did_emsg = FALSE;
1034 tv.v_type = VAR_STRING;
1035 tv.vval.v_string = (char_u *)"";
1036 if (append)
1037 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)".");
1038 else
1039 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)"=");
1040 err = did_emsg;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00001041 did_emsg |= save_emsg;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001042 if (err)
1043 {
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001044 redir_endp = NULL; /* don't store a value, only cleanup */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001045 var_redir_stop();
1046 return FAIL;
1047 }
1048 if (redir_lval->ll_newkey != NULL)
1049 {
1050 /* Dictionary item was created, don't do it again. */
1051 vim_free(redir_lval->ll_newkey);
1052 redir_lval->ll_newkey = NULL;
1053 }
1054
1055 return OK;
1056}
1057
1058/*
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001059 * Append "value[value_len]" to the variable set by var_redir_start().
1060 * The actual appending is postponed until redirection ends, because the value
1061 * appended may in fact be the string we write to, changing it may cause freed
1062 * memory to be used:
1063 * :redir => foo
1064 * :let foo
1065 * :redir END
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001066 */
1067 void
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001068var_redir_str(value, value_len)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001069 char_u *value;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001070 int value_len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001071{
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001072 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001073
1074 if (redir_lval == NULL)
1075 return;
1076
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001077 if (value_len == -1)
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001078 len = (int)STRLEN(value); /* Append the entire string */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001079 else
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001080 len = value_len; /* Append only "value_len" characters */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001081
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001082 if (ga_grow(&redir_ga, len) == OK)
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001083 {
1084 mch_memmove((char *)redir_ga.ga_data + redir_ga.ga_len, value, len);
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001085 redir_ga.ga_len += len;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001086 }
1087 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001088 var_redir_stop();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001089}
1090
1091/*
1092 * Stop redirecting command output to a variable.
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001093 * Frees the allocated memory.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001094 */
1095 void
1096var_redir_stop()
1097{
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001098 typval_T tv;
1099
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001100 if (redir_lval != NULL)
1101 {
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001102 /* If there was no error: assign the text to the variable. */
1103 if (redir_endp != NULL)
1104 {
1105 ga_append(&redir_ga, NUL); /* Append the trailing NUL. */
1106 tv.v_type = VAR_STRING;
1107 tv.vval.v_string = redir_ga.ga_data;
1108 set_var_lval(redir_lval, redir_endp, &tv, FALSE, (char_u *)".");
1109 }
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001110
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001111 /* free the collected output */
1112 vim_free(redir_ga.ga_data);
1113 redir_ga.ga_data = NULL;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001114
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001115 clear_lval(redir_lval);
1116 vim_free(redir_lval);
1117 redir_lval = NULL;
1118 }
1119 vim_free(redir_varname);
1120 redir_varname = NULL;
1121}
1122
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123# if defined(FEAT_MBYTE) || defined(PROTO)
1124 int
1125eval_charconvert(enc_from, enc_to, fname_from, fname_to)
1126 char_u *enc_from;
1127 char_u *enc_to;
1128 char_u *fname_from;
1129 char_u *fname_to;
1130{
1131 int err = FALSE;
1132
1133 set_vim_var_string(VV_CC_FROM, enc_from, -1);
1134 set_vim_var_string(VV_CC_TO, enc_to, -1);
1135 set_vim_var_string(VV_FNAME_IN, fname_from, -1);
1136 set_vim_var_string(VV_FNAME_OUT, fname_to, -1);
1137 if (eval_to_bool(p_ccv, &err, NULL, FALSE))
1138 err = TRUE;
1139 set_vim_var_string(VV_CC_FROM, NULL, -1);
1140 set_vim_var_string(VV_CC_TO, NULL, -1);
1141 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1142 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1143
1144 if (err)
1145 return FAIL;
1146 return OK;
1147}
1148# endif
1149
1150# if defined(FEAT_POSTSCRIPT) || defined(PROTO)
1151 int
1152eval_printexpr(fname, args)
1153 char_u *fname;
1154 char_u *args;
1155{
1156 int err = FALSE;
1157
1158 set_vim_var_string(VV_FNAME_IN, fname, -1);
1159 set_vim_var_string(VV_CMDARG, args, -1);
1160 if (eval_to_bool(p_pexpr, &err, NULL, FALSE))
1161 err = TRUE;
1162 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1163 set_vim_var_string(VV_CMDARG, NULL, -1);
1164
1165 if (err)
1166 {
1167 mch_remove(fname);
1168 return FAIL;
1169 }
1170 return OK;
1171}
1172# endif
1173
1174# if defined(FEAT_DIFF) || defined(PROTO)
1175 void
1176eval_diff(origfile, newfile, outfile)
1177 char_u *origfile;
1178 char_u *newfile;
1179 char_u *outfile;
1180{
1181 int err = FALSE;
1182
1183 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1184 set_vim_var_string(VV_FNAME_NEW, newfile, -1);
1185 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1186 (void)eval_to_bool(p_dex, &err, NULL, FALSE);
1187 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1188 set_vim_var_string(VV_FNAME_NEW, NULL, -1);
1189 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1190}
1191
1192 void
1193eval_patch(origfile, difffile, outfile)
1194 char_u *origfile;
1195 char_u *difffile;
1196 char_u *outfile;
1197{
1198 int err;
1199
1200 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1201 set_vim_var_string(VV_FNAME_DIFF, difffile, -1);
1202 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1203 (void)eval_to_bool(p_pex, &err, NULL, FALSE);
1204 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1205 set_vim_var_string(VV_FNAME_DIFF, NULL, -1);
1206 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1207}
1208# endif
1209
1210/*
1211 * Top level evaluation function, returning a boolean.
1212 * Sets "error" to TRUE if there was an error.
1213 * Return TRUE or FALSE.
1214 */
1215 int
1216eval_to_bool(arg, error, nextcmd, skip)
1217 char_u *arg;
1218 int *error;
1219 char_u **nextcmd;
1220 int skip; /* only parse, don't execute */
1221{
Bram Moolenaar33570922005-01-25 22:26:29 +00001222 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 int retval = FALSE;
1224
1225 if (skip)
1226 ++emsg_skip;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001227 if (eval0(arg, &tv, nextcmd, !skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 *error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 else
1230 {
1231 *error = FALSE;
1232 if (!skip)
1233 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001234 retval = (get_tv_number_chk(&tv, error) != 0);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001235 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 }
1237 }
1238 if (skip)
1239 --emsg_skip;
1240
1241 return retval;
1242}
1243
1244/*
1245 * Top level evaluation function, returning a string. If "skip" is TRUE,
1246 * only parsing to "nextcmd" is done, without reporting errors. Return
1247 * pointer to allocated memory, or NULL for failure or when "skip" is TRUE.
1248 */
1249 char_u *
1250eval_to_string_skip(arg, nextcmd, skip)
1251 char_u *arg;
1252 char_u **nextcmd;
1253 int skip; /* only parse, don't execute */
1254{
Bram Moolenaar33570922005-01-25 22:26:29 +00001255 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 char_u *retval;
1257
1258 if (skip)
1259 ++emsg_skip;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001260 if (eval0(arg, &tv, nextcmd, !skip) == FAIL || skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 retval = NULL;
1262 else
1263 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001264 retval = vim_strsave(get_tv_string(&tv));
1265 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 }
1267 if (skip)
1268 --emsg_skip;
1269
1270 return retval;
1271}
1272
1273/*
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001274 * Skip over an expression at "*pp".
1275 * Return FAIL for an error, OK otherwise.
1276 */
1277 int
1278skip_expr(pp)
1279 char_u **pp;
1280{
Bram Moolenaar33570922005-01-25 22:26:29 +00001281 typval_T rettv;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001282
1283 *pp = skipwhite(*pp);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001284 return eval1(pp, &rettv, FALSE);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001285}
1286
1287/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001288 * Top level evaluation function, returning a string.
Bram Moolenaara85fb752008-09-07 11:55:43 +00001289 * When "convert" is TRUE convert a List into a sequence of lines and convert
1290 * a Float to a String.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291 * Return pointer to allocated memory, or NULL for failure.
1292 */
1293 char_u *
Bram Moolenaara85fb752008-09-07 11:55:43 +00001294eval_to_string(arg, nextcmd, convert)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 char_u *arg;
1296 char_u **nextcmd;
Bram Moolenaara85fb752008-09-07 11:55:43 +00001297 int convert;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298{
Bram Moolenaar33570922005-01-25 22:26:29 +00001299 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 char_u *retval;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001301 garray_T ga;
Bram Moolenaar798b30b2009-04-22 10:56:16 +00001302#ifdef FEAT_FLOAT
Bram Moolenaara85fb752008-09-07 11:55:43 +00001303 char_u numbuf[NUMBUFLEN];
Bram Moolenaar798b30b2009-04-22 10:56:16 +00001304#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001306 if (eval0(arg, &tv, nextcmd, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 retval = NULL;
1308 else
1309 {
Bram Moolenaara85fb752008-09-07 11:55:43 +00001310 if (convert && tv.v_type == VAR_LIST)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001311 {
1312 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001313 if (tv.vval.v_list != NULL)
1314 list_join(&ga, tv.vval.v_list, (char_u *)"\n", TRUE, 0);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001315 ga_append(&ga, NUL);
1316 retval = (char_u *)ga.ga_data;
1317 }
Bram Moolenaara85fb752008-09-07 11:55:43 +00001318#ifdef FEAT_FLOAT
1319 else if (convert && tv.v_type == VAR_FLOAT)
1320 {
1321 vim_snprintf((char *)numbuf, NUMBUFLEN, "%g", tv.vval.v_float);
1322 retval = vim_strsave(numbuf);
1323 }
1324#endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001325 else
1326 retval = vim_strsave(get_tv_string(&tv));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001327 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 }
1329
1330 return retval;
1331}
1332
1333/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001334 * Call eval_to_string() without using current local variables and using
1335 * textlock. When "use_sandbox" is TRUE use the sandbox.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 */
1337 char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001338eval_to_string_safe(arg, nextcmd, use_sandbox)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 char_u *arg;
1340 char_u **nextcmd;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001341 int use_sandbox;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342{
1343 char_u *retval;
1344 void *save_funccalp;
1345
1346 save_funccalp = save_funccal();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001347 if (use_sandbox)
1348 ++sandbox;
1349 ++textlock;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001350 retval = eval_to_string(arg, nextcmd, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001351 if (use_sandbox)
1352 --sandbox;
1353 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 restore_funccal(save_funccalp);
1355 return retval;
1356}
1357
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358/*
1359 * Top level evaluation function, returning a number.
1360 * Evaluates "expr" silently.
1361 * Returns -1 for an error.
1362 */
1363 int
1364eval_to_number(expr)
1365 char_u *expr;
1366{
Bram Moolenaar33570922005-01-25 22:26:29 +00001367 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 int retval;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00001369 char_u *p = skipwhite(expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370
1371 ++emsg_off;
1372
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001373 if (eval1(&p, &rettv, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 retval = -1;
1375 else
1376 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001377 retval = get_tv_number_chk(&rettv, NULL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001378 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 }
1380 --emsg_off;
1381
1382 return retval;
1383}
1384
Bram Moolenaara40058a2005-07-11 22:42:07 +00001385/*
1386 * Prepare v: variable "idx" to be used.
1387 * Save the current typeval in "save_tv".
1388 * When not used yet add the variable to the v: hashtable.
1389 */
1390 static void
1391prepare_vimvar(idx, save_tv)
1392 int idx;
1393 typval_T *save_tv;
1394{
1395 *save_tv = vimvars[idx].vv_tv;
1396 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1397 hash_add(&vimvarht, vimvars[idx].vv_di.di_key);
1398}
1399
1400/*
1401 * Restore v: variable "idx" to typeval "save_tv".
1402 * When no longer defined, remove the variable from the v: hashtable.
1403 */
1404 static void
1405restore_vimvar(idx, save_tv)
1406 int idx;
1407 typval_T *save_tv;
1408{
1409 hashitem_T *hi;
1410
Bram Moolenaara40058a2005-07-11 22:42:07 +00001411 vimvars[idx].vv_tv = *save_tv;
1412 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1413 {
1414 hi = hash_find(&vimvarht, vimvars[idx].vv_di.di_key);
1415 if (HASHITEM_EMPTY(hi))
1416 EMSG2(_(e_intern2), "restore_vimvar()");
1417 else
1418 hash_remove(&vimvarht, hi);
1419 }
1420}
1421
Bram Moolenaar3c56a962006-03-12 22:19:04 +00001422#if defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001423/*
1424 * Evaluate an expression to a list with suggestions.
1425 * For the "expr:" part of 'spellsuggest'.
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001426 * Returns NULL when there is an error.
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001427 */
1428 list_T *
1429eval_spell_expr(badword, expr)
1430 char_u *badword;
1431 char_u *expr;
1432{
1433 typval_T save_val;
1434 typval_T rettv;
1435 list_T *list = NULL;
1436 char_u *p = skipwhite(expr);
1437
1438 /* Set "v:val" to the bad word. */
1439 prepare_vimvar(VV_VAL, &save_val);
1440 vimvars[VV_VAL].vv_type = VAR_STRING;
1441 vimvars[VV_VAL].vv_str = badword;
1442 if (p_verbose == 0)
1443 ++emsg_off;
1444
1445 if (eval1(&p, &rettv, TRUE) == OK)
1446 {
1447 if (rettv.v_type != VAR_LIST)
1448 clear_tv(&rettv);
1449 else
1450 list = rettv.vval.v_list;
1451 }
1452
1453 if (p_verbose == 0)
1454 --emsg_off;
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001455 restore_vimvar(VV_VAL, &save_val);
1456
1457 return list;
1458}
1459
1460/*
1461 * "list" is supposed to contain two items: a word and a number. Return the
1462 * word in "pp" and the number as the return value.
1463 * Return -1 if anything isn't right.
1464 * Used to get the good word and score from the eval_spell_expr() result.
1465 */
1466 int
1467get_spellword(list, pp)
1468 list_T *list;
1469 char_u **pp;
1470{
1471 listitem_T *li;
1472
1473 li = list->lv_first;
1474 if (li == NULL)
1475 return -1;
1476 *pp = get_tv_string(&li->li_tv);
1477
1478 li = li->li_next;
1479 if (li == NULL)
1480 return -1;
1481 return get_tv_number(&li->li_tv);
1482}
1483#endif
1484
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001485/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001486 * Top level evaluation function.
1487 * Returns an allocated typval_T with the result.
1488 * Returns NULL when there is an error.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001489 */
1490 typval_T *
1491eval_expr(arg, nextcmd)
1492 char_u *arg;
1493 char_u **nextcmd;
1494{
1495 typval_T *tv;
1496
1497 tv = (typval_T *)alloc(sizeof(typval_T));
Bram Moolenaar4770d092006-01-12 23:22:24 +00001498 if (tv != NULL && eval0(arg, tv, nextcmd, TRUE) == FAIL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001499 {
1500 vim_free(tv);
Bram Moolenaar4770d092006-01-12 23:22:24 +00001501 tv = NULL;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001502 }
1503
1504 return tv;
1505}
1506
1507
Bram Moolenaar4f688582007-07-24 12:34:30 +00001508#if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) \
1509 || defined(FEAT_COMPL_FUNC) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510/*
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001511 * Call some vimL function and return the result in "*rettv".
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001512 * Uses argv[argc] for the function arguments. Only Number and String
1513 * arguments are currently supported.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001514 * Returns OK or FAIL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 */
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001516 static int
1517call_vim_function(func, argc, argv, safe, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518 char_u *func;
1519 int argc;
1520 char_u **argv;
1521 int safe; /* use the sandbox */
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001522 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523{
Bram Moolenaar33570922005-01-25 22:26:29 +00001524 typval_T *argvars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 long n;
1526 int len;
1527 int i;
1528 int doesrange;
1529 void *save_funccalp = NULL;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001530 int ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001532 argvars = (typval_T *)alloc((unsigned)((argc + 1) * sizeof(typval_T)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 if (argvars == NULL)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001534 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535
1536 for (i = 0; i < argc; i++)
1537 {
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001538 /* Pass a NULL or empty argument as an empty string */
1539 if (argv[i] == NULL || *argv[i] == NUL)
1540 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001541 argvars[i].v_type = VAR_STRING;
1542 argvars[i].vval.v_string = (char_u *)"";
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001543 continue;
1544 }
1545
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 /* Recognize a number argument, the others must be strings. */
1547 vim_str2nr(argv[i], NULL, &len, TRUE, TRUE, &n, NULL);
1548 if (len != 0 && len == (int)STRLEN(argv[i]))
1549 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001550 argvars[i].v_type = VAR_NUMBER;
1551 argvars[i].vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 }
1553 else
1554 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001555 argvars[i].v_type = VAR_STRING;
1556 argvars[i].vval.v_string = argv[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557 }
1558 }
1559
1560 if (safe)
1561 {
1562 save_funccalp = save_funccal();
1563 ++sandbox;
1564 }
1565
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001566 rettv->v_type = VAR_UNKNOWN; /* clear_tv() uses this */
1567 ret = call_func(func, (int)STRLEN(func), rettv, argc, argvars,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001569 &doesrange, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 if (safe)
1571 {
1572 --sandbox;
1573 restore_funccal(save_funccalp);
1574 }
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001575 vim_free(argvars);
1576
1577 if (ret == FAIL)
1578 clear_tv(rettv);
1579
1580 return ret;
1581}
1582
Bram Moolenaar4f688582007-07-24 12:34:30 +00001583# if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) || 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 string.
1586 * Returns NULL when calling the function fails.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001587 * Uses argv[argc] for the function arguments.
1588 */
1589 void *
1590call_func_retstr(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;
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001597 char_u *retval;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001598
1599 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1600 return NULL;
1601
1602 retval = vim_strsave(get_tv_string(&rettv));
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001603 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 return retval;
1605}
Bram Moolenaar4f688582007-07-24 12:34:30 +00001606# endif
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001607
Bram Moolenaar4f688582007-07-24 12:34:30 +00001608# if defined(FEAT_COMPL_FUNC) || defined(PROTO)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001609/*
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001610 * Call vimL function "func" and return the result as a number.
1611 * Returns -1 when calling the function fails.
1612 * Uses argv[argc] for the function arguments.
1613 */
1614 long
1615call_func_retnr(func, argc, argv, safe)
1616 char_u *func;
1617 int argc;
1618 char_u **argv;
1619 int safe; /* use the sandbox */
1620{
1621 typval_T rettv;
1622 long retval;
1623
1624 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1625 return -1;
1626
1627 retval = get_tv_number_chk(&rettv, NULL);
1628 clear_tv(&rettv);
1629 return retval;
1630}
Bram Moolenaar4f688582007-07-24 12:34:30 +00001631# endif
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001632
1633/*
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001634 * Call vimL function "func" and return the result as a List.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001635 * Uses argv[argc] for the function arguments.
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001636 * Returns NULL when there is something wrong.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001637 */
1638 void *
1639call_func_retlist(func, argc, argv, safe)
1640 char_u *func;
1641 int argc;
1642 char_u **argv;
1643 int safe; /* use the sandbox */
1644{
1645 typval_T rettv;
1646
1647 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1648 return NULL;
1649
1650 if (rettv.v_type != VAR_LIST)
1651 {
1652 clear_tv(&rettv);
1653 return NULL;
1654 }
1655
1656 return rettv.vval.v_list;
1657}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658#endif
1659
Bram Moolenaar4f688582007-07-24 12:34:30 +00001660
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661/*
1662 * Save the current function call pointer, and set it to NULL.
1663 * Used when executing autocommands and for ":source".
1664 */
1665 void *
1666save_funccal()
1667{
Bram Moolenaar05159a02005-02-26 23:04:13 +00001668 funccall_T *fc = current_funccal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 current_funccal = NULL;
1671 return (void *)fc;
1672}
1673
1674 void
Bram Moolenaar05159a02005-02-26 23:04:13 +00001675restore_funccal(vfc)
1676 void *vfc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677{
Bram Moolenaar05159a02005-02-26 23:04:13 +00001678 funccall_T *fc = (funccall_T *)vfc;
1679
1680 current_funccal = fc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681}
1682
Bram Moolenaar05159a02005-02-26 23:04:13 +00001683#if defined(FEAT_PROFILE) || defined(PROTO)
1684/*
1685 * Prepare profiling for entering a child or something else that is not
1686 * counted for the script/function itself.
1687 * Should always be called in pair with prof_child_exit().
1688 */
1689 void
1690prof_child_enter(tm)
1691 proftime_T *tm; /* place to store waittime */
1692{
1693 funccall_T *fc = current_funccal;
1694
1695 if (fc != NULL && fc->func->uf_profiling)
1696 profile_start(&fc->prof_child);
1697 script_prof_save(tm);
1698}
1699
1700/*
1701 * Take care of time spent in a child.
1702 * Should always be called after prof_child_enter().
1703 */
1704 void
1705prof_child_exit(tm)
1706 proftime_T *tm; /* where waittime was stored */
1707{
1708 funccall_T *fc = current_funccal;
1709
1710 if (fc != NULL && fc->func->uf_profiling)
1711 {
1712 profile_end(&fc->prof_child);
1713 profile_sub_wait(tm, &fc->prof_child); /* don't count waiting time */
1714 profile_add(&fc->func->uf_tm_children, &fc->prof_child);
1715 profile_add(&fc->func->uf_tml_children, &fc->prof_child);
1716 }
1717 script_prof_restore(tm);
1718}
1719#endif
1720
1721
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722#ifdef FEAT_FOLDING
1723/*
1724 * Evaluate 'foldexpr'. Returns the foldlevel, and any character preceding
1725 * it in "*cp". Doesn't give error messages.
1726 */
1727 int
1728eval_foldexpr(arg, cp)
1729 char_u *arg;
1730 int *cp;
1731{
Bram Moolenaar33570922005-01-25 22:26:29 +00001732 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733 int retval;
1734 char_u *s;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001735 int use_sandbox = was_set_insecurely((char_u *)"foldexpr",
1736 OPT_LOCAL);
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 *cp = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001743 if (eval0(arg, &tv, NULL, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 retval = 0;
1745 else
1746 {
1747 /* If the result is a number, just return the number. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001748 if (tv.v_type == VAR_NUMBER)
1749 retval = tv.vval.v_number;
Bram Moolenaar758711c2005-02-02 23:11:38 +00001750 else if (tv.v_type != VAR_STRING || tv.vval.v_string == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 retval = 0;
1752 else
1753 {
1754 /* If the result is a string, check if there is a non-digit before
1755 * the number. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001756 s = tv.vval.v_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 if (!VIM_ISDIGIT(*s) && *s != '-')
1758 *cp = *s++;
1759 retval = atol((char *)s);
1760 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001761 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 }
1763 --emsg_off;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001764 if (use_sandbox)
1765 --sandbox;
1766 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767
1768 return retval;
1769}
1770#endif
1771
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001773 * ":let" list all variable values
1774 * ":let var1 var2" list variable values
1775 * ":let var = expr" assignment command.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001776 * ":let var += expr" assignment command.
1777 * ":let var -= expr" assignment command.
1778 * ":let var .= expr" assignment command.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001779 * ":let [var1, var2] = expr" unpack list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 */
1781 void
1782ex_let(eap)
1783 exarg_T *eap;
1784{
1785 char_u *arg = eap->arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001786 char_u *expr = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00001787 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 int i;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001789 int var_count = 0;
1790 int semicolon = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001791 char_u op[2];
Bram Moolenaardb552d602006-03-23 22:59:57 +00001792 char_u *argend;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001793 int first = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794
Bram Moolenaardb552d602006-03-23 22:59:57 +00001795 argend = skip_var_list(arg, &var_count, &semicolon);
1796 if (argend == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001797 return;
Bram Moolenaar76b92b22006-03-24 22:46:53 +00001798 if (argend > arg && argend[-1] == '.') /* for var.='str' */
1799 --argend;
Bram Moolenaardb552d602006-03-23 22:59:57 +00001800 expr = vim_strchr(argend, '=');
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001801 if (expr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00001803 /*
1804 * ":let" without "=": list variables
1805 */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001806 if (*arg == '[')
1807 EMSG(_(e_invarg));
1808 else if (!ends_excmd(*arg))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001809 /* ":let var1 var2" */
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001810 arg = list_arg_vars(eap, arg, &first);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001811 else if (!eap->skip)
Bram Moolenaara7043832005-01-21 11:56:39 +00001812 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001813 /* ":let" */
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001814 list_glob_vars(&first);
1815 list_buf_vars(&first);
1816 list_win_vars(&first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001817#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001818 list_tab_vars(&first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001819#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001820 list_script_vars(&first);
1821 list_func_vars(&first);
1822 list_vim_vars(&first);
Bram Moolenaara7043832005-01-21 11:56:39 +00001823 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824 eap->nextcmd = check_nextcmd(arg);
1825 }
1826 else
1827 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001828 op[0] = '=';
1829 op[1] = NUL;
Bram Moolenaardb552d602006-03-23 22:59:57 +00001830 if (expr > argend)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001831 {
1832 if (vim_strchr((char_u *)"+-.", expr[-1]) != NULL)
1833 op[0] = expr[-1]; /* +=, -= or .= */
1834 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001835 expr = skipwhite(expr + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001836
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837 if (eap->skip)
1838 ++emsg_skip;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001839 i = eval0(expr, &rettv, &eap->nextcmd, !eap->skip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 if (eap->skip)
1841 {
1842 if (i != FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001843 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 --emsg_skip;
1845 }
1846 else if (i != FAIL)
1847 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001848 (void)ex_let_vars(eap->arg, &rettv, FALSE, semicolon, var_count,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001849 op);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001850 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851 }
1852 }
1853}
1854
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001855/*
1856 * Assign the typevalue "tv" to the variable or variables at "arg_start".
1857 * Handles both "var" with any type and "[var, var; var]" with a list type.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001858 * When "nextchars" is not NULL it points to a string with characters that
1859 * must appear after the variable(s). Use "+", "-" or "." for add, subtract
1860 * or concatenate.
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001861 * Returns OK or FAIL;
1862 */
1863 static int
1864ex_let_vars(arg_start, tv, copy, semicolon, var_count, nextchars)
1865 char_u *arg_start;
Bram Moolenaar33570922005-01-25 22:26:29 +00001866 typval_T *tv;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001867 int copy; /* copy values from "tv", don't move */
1868 int semicolon; /* from skip_var_list() */
1869 int var_count; /* from skip_var_list() */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001870 char_u *nextchars;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001871{
1872 char_u *arg = arg_start;
Bram Moolenaar33570922005-01-25 22:26:29 +00001873 list_T *l;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001874 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +00001875 listitem_T *item;
1876 typval_T ltv;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001877
1878 if (*arg != '[')
1879 {
1880 /*
1881 * ":let var = expr" or ":for var in list"
1882 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001883 if (ex_let_one(arg, tv, copy, nextchars, nextchars) == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001884 return FAIL;
1885 return OK;
1886 }
1887
1888 /*
1889 * ":let [v1, v2] = list" or ":for [v1, v2] in listlist"
1890 */
Bram Moolenaar758711c2005-02-02 23:11:38 +00001891 if (tv->v_type != VAR_LIST || (l = tv->vval.v_list) == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001892 {
1893 EMSG(_(e_listreq));
1894 return FAIL;
1895 }
1896
1897 i = list_len(l);
1898 if (semicolon == 0 && var_count < i)
1899 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00001900 EMSG(_("E687: Less targets than List items"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001901 return FAIL;
1902 }
1903 if (var_count - semicolon > i)
1904 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00001905 EMSG(_("E688: More targets than List items"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001906 return FAIL;
1907 }
1908
1909 item = l->lv_first;
1910 while (*arg != ']')
1911 {
1912 arg = skipwhite(arg + 1);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001913 arg = ex_let_one(arg, &item->li_tv, TRUE, (char_u *)",;]", nextchars);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001914 item = item->li_next;
1915 if (arg == NULL)
1916 return FAIL;
1917
1918 arg = skipwhite(arg);
1919 if (*arg == ';')
1920 {
1921 /* Put the rest of the list (may be empty) in the var after ';'.
1922 * Create a new list for this. */
1923 l = list_alloc();
1924 if (l == NULL)
1925 return FAIL;
1926 while (item != NULL)
1927 {
1928 list_append_tv(l, &item->li_tv);
1929 item = item->li_next;
1930 }
1931
1932 ltv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00001933 ltv.v_lock = 0;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001934 ltv.vval.v_list = l;
1935 l->lv_refcount = 1;
1936
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001937 arg = ex_let_one(skipwhite(arg + 1), &ltv, FALSE,
1938 (char_u *)"]", nextchars);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001939 clear_tv(&ltv);
1940 if (arg == NULL)
1941 return FAIL;
1942 break;
1943 }
1944 else if (*arg != ',' && *arg != ']')
1945 {
1946 EMSG2(_(e_intern2), "ex_let_vars()");
1947 return FAIL;
1948 }
1949 }
1950
1951 return OK;
1952}
1953
1954/*
1955 * Skip over assignable variable "var" or list of variables "[var, var]".
1956 * Used for ":let varvar = expr" and ":for varvar in expr".
1957 * For "[var, var]" increment "*var_count" for each variable.
1958 * for "[var, var; var]" set "semicolon".
1959 * Return NULL for an error.
1960 */
1961 static char_u *
1962skip_var_list(arg, var_count, semicolon)
1963 char_u *arg;
1964 int *var_count;
1965 int *semicolon;
1966{
1967 char_u *p, *s;
1968
1969 if (*arg == '[')
1970 {
1971 /* "[var, var]": find the matching ']'. */
1972 p = arg;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001973 for (;;)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001974 {
1975 p = skipwhite(p + 1); /* skip whites after '[', ';' or ',' */
1976 s = skip_var_one(p);
1977 if (s == p)
1978 {
1979 EMSG2(_(e_invarg2), p);
1980 return NULL;
1981 }
1982 ++*var_count;
1983
1984 p = skipwhite(s);
1985 if (*p == ']')
1986 break;
1987 else if (*p == ';')
1988 {
1989 if (*semicolon == 1)
1990 {
1991 EMSG(_("Double ; in list of variables"));
1992 return NULL;
1993 }
1994 *semicolon = 1;
1995 }
1996 else if (*p != ',')
1997 {
1998 EMSG2(_(e_invarg2), p);
1999 return NULL;
2000 }
2001 }
2002 return p + 1;
2003 }
2004 else
2005 return skip_var_one(arg);
2006}
2007
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002008/*
Bram Moolenaarbae0c162007-05-10 19:30:25 +00002009 * Skip one (assignable) variable name, including @r, $VAR, &option, d.key,
Bram Moolenaar92124a32005-06-17 22:03:40 +00002010 * l[idx].
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002011 */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002012 static char_u *
2013skip_var_one(arg)
2014 char_u *arg;
2015{
Bram Moolenaar92124a32005-06-17 22:03:40 +00002016 if (*arg == '@' && arg[1] != NUL)
2017 return arg + 2;
2018 return find_name_end(*arg == '$' || *arg == '&' ? arg + 1 : arg,
2019 NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002020}
2021
Bram Moolenaara7043832005-01-21 11:56:39 +00002022/*
Bram Moolenaar33570922005-01-25 22:26:29 +00002023 * List variables for hashtab "ht" with prefix "prefix".
2024 * If "empty" is TRUE also list NULL strings as empty strings.
Bram Moolenaara7043832005-01-21 11:56:39 +00002025 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002026 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002027list_hashtable_vars(ht, prefix, empty, first)
Bram Moolenaar33570922005-01-25 22:26:29 +00002028 hashtab_T *ht;
Bram Moolenaara7043832005-01-21 11:56:39 +00002029 char_u *prefix;
Bram Moolenaar33570922005-01-25 22:26:29 +00002030 int empty;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002031 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002032{
Bram Moolenaar33570922005-01-25 22:26:29 +00002033 hashitem_T *hi;
2034 dictitem_T *di;
Bram Moolenaara7043832005-01-21 11:56:39 +00002035 int todo;
2036
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002037 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +00002038 for (hi = ht->ht_array; todo > 0 && !got_int; ++hi)
2039 {
2040 if (!HASHITEM_EMPTY(hi))
2041 {
2042 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00002043 di = HI2DI(hi);
2044 if (empty || di->di_tv.v_type != VAR_STRING
2045 || di->di_tv.vval.v_string != NULL)
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002046 list_one_var(di, prefix, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002047 }
2048 }
2049}
2050
2051/*
2052 * List global variables.
2053 */
2054 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002055list_glob_vars(first)
2056 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002057{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002058 list_hashtable_vars(&globvarht, (char_u *)"", TRUE, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002059}
2060
2061/*
2062 * List buffer variables.
2063 */
2064 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002065list_buf_vars(first)
2066 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002067{
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002068 char_u numbuf[NUMBUFLEN];
2069
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002070 list_hashtable_vars(&curbuf->b_vars.dv_hashtab, (char_u *)"b:",
2071 TRUE, first);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002072
2073 sprintf((char *)numbuf, "%ld", (long)curbuf->b_changedtick);
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002074 list_one_var_a((char_u *)"b:", (char_u *)"changedtick", VAR_NUMBER,
2075 numbuf, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002076}
2077
2078/*
2079 * List window variables.
2080 */
2081 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002082list_win_vars(first)
2083 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002084{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002085 list_hashtable_vars(&curwin->w_vars.dv_hashtab,
2086 (char_u *)"w:", TRUE, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002087}
2088
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002089#ifdef FEAT_WINDOWS
2090/*
2091 * List tab page variables.
2092 */
2093 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002094list_tab_vars(first)
2095 int *first;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002096{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002097 list_hashtable_vars(&curtab->tp_vars.dv_hashtab,
2098 (char_u *)"t:", TRUE, first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002099}
2100#endif
2101
Bram Moolenaara7043832005-01-21 11:56:39 +00002102/*
2103 * List Vim variables.
2104 */
2105 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002106list_vim_vars(first)
2107 int *first;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002108{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002109 list_hashtable_vars(&vimvarht, (char_u *)"v:", FALSE, first);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002110}
2111
2112/*
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002113 * List script-local variables, if there is a script.
2114 */
2115 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002116list_script_vars(first)
2117 int *first;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002118{
2119 if (current_SID > 0 && current_SID <= ga_scripts.ga_len)
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002120 list_hashtable_vars(&SCRIPT_VARS(current_SID),
2121 (char_u *)"s:", FALSE, first);
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002122}
2123
2124/*
2125 * List function variables, if there is a function.
2126 */
2127 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002128list_func_vars(first)
2129 int *first;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002130{
2131 if (current_funccal != NULL)
2132 list_hashtable_vars(&current_funccal->l_vars.dv_hashtab,
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002133 (char_u *)"l:", FALSE, first);
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002134}
2135
2136/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002137 * List variables in "arg".
2138 */
2139 static char_u *
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002140list_arg_vars(eap, arg, first)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002141 exarg_T *eap;
2142 char_u *arg;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002143 int *first;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002144{
2145 int error = FALSE;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002146 int len;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002147 char_u *name;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002148 char_u *name_start;
2149 char_u *arg_subsc;
2150 char_u *tofree;
2151 typval_T tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002152
2153 while (!ends_excmd(*arg) && !got_int)
2154 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002155 if (error || eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002156 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002157 arg = find_name_end(arg, NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002158 if (!vim_iswhite(*arg) && !ends_excmd(*arg))
2159 {
2160 emsg_severe = TRUE;
2161 EMSG(_(e_trailing));
2162 break;
2163 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002164 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002165 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002166 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002167 /* get_name_len() takes care of expanding curly braces */
2168 name_start = name = arg;
2169 len = get_name_len(&arg, &tofree, TRUE, TRUE);
2170 if (len <= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002171 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002172 /* This is mainly to keep test 49 working: when expanding
2173 * curly braces fails overrule the exception error message. */
2174 if (len < 0 && !aborting())
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002175 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002176 emsg_severe = TRUE;
2177 EMSG2(_(e_invarg2), arg);
2178 break;
2179 }
2180 error = TRUE;
2181 }
2182 else
2183 {
2184 if (tofree != NULL)
2185 name = tofree;
2186 if (get_var_tv(name, len, &tv, TRUE) == FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002187 error = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002188 else
2189 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002190 /* handle d.key, l[idx], f(expr) */
2191 arg_subsc = arg;
2192 if (handle_subscript(&arg, &tv, TRUE, TRUE) == FAIL)
Bram Moolenaara7043832005-01-21 11:56:39 +00002193 error = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002194 else
Bram Moolenaara7043832005-01-21 11:56:39 +00002195 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002196 if (arg == arg_subsc && len == 2 && name[1] == ':')
Bram Moolenaara7043832005-01-21 11:56:39 +00002197 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002198 switch (*name)
Bram Moolenaara7043832005-01-21 11:56:39 +00002199 {
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002200 case 'g': list_glob_vars(first); break;
2201 case 'b': list_buf_vars(first); break;
2202 case 'w': list_win_vars(first); break;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002203#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002204 case 't': list_tab_vars(first); break;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002205#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002206 case 'v': list_vim_vars(first); break;
2207 case 's': list_script_vars(first); break;
2208 case 'l': list_func_vars(first); break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002209 default:
2210 EMSG2(_("E738: Can't list variables for %s"), name);
Bram Moolenaara7043832005-01-21 11:56:39 +00002211 }
Bram Moolenaara7043832005-01-21 11:56:39 +00002212 }
2213 else
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002214 {
2215 char_u numbuf[NUMBUFLEN];
2216 char_u *tf;
2217 int c;
2218 char_u *s;
2219
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002220 s = echo_string(&tv, &tf, numbuf, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002221 c = *arg;
2222 *arg = NUL;
2223 list_one_var_a((char_u *)"",
2224 arg == arg_subsc ? name : name_start,
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002225 tv.v_type,
2226 s == NULL ? (char_u *)"" : s,
2227 first);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002228 *arg = c;
2229 vim_free(tf);
2230 }
2231 clear_tv(&tv);
Bram Moolenaara7043832005-01-21 11:56:39 +00002232 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002233 }
2234 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002235
2236 vim_free(tofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002237 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002238
2239 arg = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002240 }
2241
2242 return arg;
2243}
2244
2245/*
2246 * Set one item of ":let var = expr" or ":let [v1, v2] = list" to its value.
2247 * Returns a pointer to the char just after the var name.
2248 * Returns NULL if there is an error.
2249 */
2250 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002251ex_let_one(arg, tv, copy, endchars, op)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002252 char_u *arg; /* points to variable name */
Bram Moolenaar33570922005-01-25 22:26:29 +00002253 typval_T *tv; /* value to assign to variable */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002254 int copy; /* copy value from "tv" */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002255 char_u *endchars; /* valid chars after variable name or NULL */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002256 char_u *op; /* "+", "-", "." or NULL*/
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002257{
2258 int c1;
2259 char_u *name;
2260 char_u *p;
2261 char_u *arg_end = NULL;
2262 int len;
2263 int opt_flags;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002264 char_u *tofree = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002265
2266 /*
2267 * ":let $VAR = expr": Set environment variable.
2268 */
2269 if (*arg == '$')
2270 {
2271 /* Find the end of the name. */
2272 ++arg;
2273 name = arg;
2274 len = get_env_len(&arg);
2275 if (len == 0)
2276 EMSG2(_(e_invarg2), name - 1);
2277 else
2278 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002279 if (op != NULL && (*op == '+' || *op == '-'))
2280 EMSG2(_(e_letwrong), op);
2281 else if (endchars != NULL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002282 && vim_strchr(endchars, *skipwhite(arg)) == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002283 EMSG(_(e_letunexp));
2284 else
2285 {
2286 c1 = name[len];
2287 name[len] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002288 p = get_tv_string_chk(tv);
2289 if (p != NULL && op != NULL && *op == '.')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002290 {
2291 int mustfree = FALSE;
2292 char_u *s = vim_getenv(name, &mustfree);
2293
2294 if (s != NULL)
2295 {
2296 p = tofree = concat_str(s, p);
2297 if (mustfree)
2298 vim_free(s);
2299 }
2300 }
2301 if (p != NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002302 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002303 vim_setenv(name, p);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002304 if (STRICMP(name, "HOME") == 0)
2305 init_homedir();
2306 else if (didset_vim && STRICMP(name, "VIM") == 0)
2307 didset_vim = FALSE;
2308 else if (didset_vimruntime
2309 && STRICMP(name, "VIMRUNTIME") == 0)
2310 didset_vimruntime = FALSE;
2311 arg_end = arg;
2312 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002313 name[len] = c1;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002314 vim_free(tofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002315 }
2316 }
2317 }
2318
2319 /*
2320 * ":let &option = expr": Set option value.
2321 * ":let &l:option = expr": Set local option value.
2322 * ":let &g:option = expr": Set global option value.
2323 */
2324 else if (*arg == '&')
2325 {
2326 /* Find the end of the name. */
2327 p = find_option_end(&arg, &opt_flags);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002328 if (p == NULL || (endchars != NULL
2329 && vim_strchr(endchars, *skipwhite(p)) == NULL))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002330 EMSG(_(e_letunexp));
2331 else
2332 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002333 long n;
2334 int opt_type;
2335 long numval;
2336 char_u *stringval = NULL;
2337 char_u *s;
2338
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002339 c1 = *p;
2340 *p = NUL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002341
2342 n = get_tv_number(tv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002343 s = get_tv_string_chk(tv); /* != NULL if number or string */
2344 if (s != NULL && op != NULL && *op != '=')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002345 {
2346 opt_type = get_option_value(arg, &numval,
2347 &stringval, opt_flags);
2348 if ((opt_type == 1 && *op == '.')
2349 || (opt_type == 0 && *op != '.'))
2350 EMSG2(_(e_letwrong), op);
2351 else
2352 {
2353 if (opt_type == 1) /* number */
2354 {
2355 if (*op == '+')
2356 n = numval + n;
2357 else
2358 n = numval - n;
2359 }
2360 else if (opt_type == 0 && stringval != NULL) /* string */
2361 {
2362 s = concat_str(stringval, s);
2363 vim_free(stringval);
2364 stringval = s;
2365 }
2366 }
2367 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002368 if (s != NULL)
2369 {
2370 set_option_value(arg, n, s, opt_flags);
2371 arg_end = p;
2372 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002373 *p = c1;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002374 vim_free(stringval);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002375 }
2376 }
2377
2378 /*
2379 * ":let @r = expr": Set register contents.
2380 */
2381 else if (*arg == '@')
2382 {
2383 ++arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002384 if (op != NULL && (*op == '+' || *op == '-'))
2385 EMSG2(_(e_letwrong), op);
2386 else if (endchars != NULL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002387 && vim_strchr(endchars, *skipwhite(arg + 1)) == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002388 EMSG(_(e_letunexp));
2389 else
2390 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002391 char_u *ptofree = NULL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002392 char_u *s;
2393
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002394 p = get_tv_string_chk(tv);
2395 if (p != NULL && op != NULL && *op == '.')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002396 {
Bram Moolenaar92124a32005-06-17 22:03:40 +00002397 s = get_reg_contents(*arg == '@' ? '"' : *arg, TRUE, TRUE);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002398 if (s != NULL)
2399 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002400 p = ptofree = concat_str(s, p);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002401 vim_free(s);
2402 }
2403 }
2404 if (p != NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002405 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002406 write_reg_contents(*arg == '@' ? '"' : *arg, p, -1, FALSE);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002407 arg_end = arg + 1;
2408 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002409 vim_free(ptofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002410 }
2411 }
2412
2413 /*
2414 * ":let var = expr": Set internal variable.
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002415 * ":let {expr} = expr": Idem, name made with curly braces
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002416 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002417 else if (eval_isnamec1(*arg) || *arg == '{')
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002418 {
Bram Moolenaar33570922005-01-25 22:26:29 +00002419 lval_T lv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002420
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002421 p = get_lval(arg, tv, &lv, FALSE, FALSE, FALSE, FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002422 if (p != NULL && lv.ll_name != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002423 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002424 if (endchars != NULL && vim_strchr(endchars, *skipwhite(p)) == NULL)
2425 EMSG(_(e_letunexp));
2426 else
2427 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002428 set_var_lval(&lv, p, tv, copy, op);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002429 arg_end = p;
2430 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002431 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002432 clear_lval(&lv);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002433 }
2434
2435 else
2436 EMSG2(_(e_invarg2), arg);
2437
2438 return arg_end;
2439}
2440
2441/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00002442 * If "arg" is equal to "b:changedtick" give an error and return TRUE.
2443 */
2444 static int
2445check_changedtick(arg)
2446 char_u *arg;
2447{
2448 if (STRNCMP(arg, "b:changedtick", 13) == 0 && !eval_isnamec(arg[13]))
2449 {
2450 EMSG2(_(e_readonlyvar), arg);
2451 return TRUE;
2452 }
2453 return FALSE;
2454}
2455
2456/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002457 * Get an lval: variable, Dict item or List item that can be assigned a value
2458 * to: "name", "na{me}", "name[expr]", "name[expr:expr]", "name[expr][expr]",
2459 * "name.key", "name.key[expr]" etc.
2460 * Indexing only works if "name" is an existing List or Dictionary.
2461 * "name" points to the start of the name.
2462 * If "rettv" is not NULL it points to the value to be assigned.
2463 * "unlet" is TRUE for ":unlet": slightly different behavior when something is
2464 * wrong; must end in space or cmd separator.
2465 *
2466 * Returns a pointer to just after the name, including indexes.
Bram Moolenaara7043832005-01-21 11:56:39 +00002467 * When an evaluation error occurs "lp->ll_name" is NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002468 * Returns NULL for a parsing error. Still need to free items in "lp"!
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002469 */
2470 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002471get_lval(name, rettv, lp, unlet, skip, quiet, fne_flags)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002472 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +00002473 typval_T *rettv;
2474 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002475 int unlet;
2476 int skip;
2477 int quiet; /* don't give error messages */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002478 int fne_flags; /* flags for find_name_end() */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002479{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002480 char_u *p;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002481 char_u *expr_start, *expr_end;
2482 int cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00002483 dictitem_T *v;
2484 typval_T var1;
2485 typval_T var2;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002486 int empty1 = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00002487 listitem_T *ni;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002488 char_u *key = NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002489 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +00002490 hashtab_T *ht;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002491
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002492 /* Clear everything in "lp". */
Bram Moolenaar33570922005-01-25 22:26:29 +00002493 vim_memset(lp, 0, sizeof(lval_T));
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002494
2495 if (skip)
2496 {
2497 /* When skipping just find the end of the name. */
2498 lp->ll_name = name;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002499 return find_name_end(name, NULL, NULL, FNE_INCL_BR | fne_flags);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002500 }
2501
2502 /* Find the end of the name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002503 p = find_name_end(name, &expr_start, &expr_end, fne_flags);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002504 if (expr_start != NULL)
2505 {
2506 /* Don't expand the name when we already know there is an error. */
2507 if (unlet && !vim_iswhite(*p) && !ends_excmd(*p)
2508 && *p != '[' && *p != '.')
2509 {
2510 EMSG(_(e_trailing));
2511 return NULL;
2512 }
2513
2514 lp->ll_exp_name = make_expanded_name(name, expr_start, expr_end, p);
2515 if (lp->ll_exp_name == NULL)
2516 {
2517 /* Report an invalid expression in braces, unless the
2518 * expression evaluation has been cancelled due to an
2519 * aborting error, an interrupt, or an exception. */
2520 if (!aborting() && !quiet)
2521 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002522 emsg_severe = TRUE;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002523 EMSG2(_(e_invarg2), name);
2524 return NULL;
2525 }
2526 }
2527 lp->ll_name = lp->ll_exp_name;
2528 }
2529 else
2530 lp->ll_name = name;
2531
2532 /* Without [idx] or .key we are done. */
2533 if ((*p != '[' && *p != '.') || lp->ll_name == NULL)
2534 return p;
2535
2536 cc = *p;
2537 *p = NUL;
Bram Moolenaara7043832005-01-21 11:56:39 +00002538 v = find_var(lp->ll_name, &ht);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002539 if (v == NULL && !quiet)
2540 EMSG2(_(e_undefvar), lp->ll_name);
2541 *p = cc;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002542 if (v == NULL)
2543 return NULL;
2544
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002545 /*
2546 * Loop until no more [idx] or .key is following.
2547 */
Bram Moolenaar33570922005-01-25 22:26:29 +00002548 lp->ll_tv = &v->di_tv;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002549 while (*p == '[' || (*p == '.' && lp->ll_tv->v_type == VAR_DICT))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002550 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002551 if (!(lp->ll_tv->v_type == VAR_LIST && lp->ll_tv->vval.v_list != NULL)
2552 && !(lp->ll_tv->v_type == VAR_DICT
2553 && lp->ll_tv->vval.v_dict != NULL))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002554 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002555 if (!quiet)
2556 EMSG(_("E689: Can only index a List or Dictionary"));
2557 return NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002558 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002559 if (lp->ll_range)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002560 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002561 if (!quiet)
2562 EMSG(_("E708: [:] must come last"));
2563 return NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002564 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002565
Bram Moolenaar8c711452005-01-14 21:53:12 +00002566 len = -1;
2567 if (*p == '.')
2568 {
2569 key = p + 1;
2570 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
2571 ;
2572 if (len == 0)
2573 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002574 if (!quiet)
2575 EMSG(_(e_emptykey));
2576 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002577 }
2578 p = key + len;
2579 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002580 else
2581 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002582 /* Get the index [expr] or the first index [expr: ]. */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002583 p = skipwhite(p + 1);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002584 if (*p == ':')
2585 empty1 = TRUE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002586 else
2587 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002588 empty1 = FALSE;
2589 if (eval1(&p, &var1, TRUE) == FAIL) /* recursive! */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002590 return NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002591 if (get_tv_string_chk(&var1) == NULL)
2592 {
2593 /* not a number or string */
2594 clear_tv(&var1);
2595 return NULL;
2596 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002597 }
2598
2599 /* Optionally get the second index [ :expr]. */
2600 if (*p == ':')
2601 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002602 if (lp->ll_tv->v_type == VAR_DICT)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002603 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002604 if (!quiet)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002605 EMSG(_(e_dictrange));
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002606 if (!empty1)
2607 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002608 return NULL;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002609 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002610 if (rettv != NULL && (rettv->v_type != VAR_LIST
2611 || rettv->vval.v_list == NULL))
Bram Moolenaar8c711452005-01-14 21:53:12 +00002612 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002613 if (!quiet)
2614 EMSG(_("E709: [:] requires a List value"));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002615 if (!empty1)
2616 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002617 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002618 }
2619 p = skipwhite(p + 1);
2620 if (*p == ']')
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002621 lp->ll_empty2 = TRUE;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002622 else
2623 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002624 lp->ll_empty2 = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002625 if (eval1(&p, &var2, TRUE) == FAIL) /* recursive! */
2626 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002627 if (!empty1)
2628 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002629 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002630 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002631 if (get_tv_string_chk(&var2) == NULL)
2632 {
2633 /* not a number or string */
2634 if (!empty1)
2635 clear_tv(&var1);
2636 clear_tv(&var2);
2637 return NULL;
2638 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002639 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002640 lp->ll_range = TRUE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002641 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002642 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002643 lp->ll_range = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002644
Bram Moolenaar8c711452005-01-14 21:53:12 +00002645 if (*p != ']')
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002646 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002647 if (!quiet)
2648 EMSG(_(e_missbrac));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002649 if (!empty1)
2650 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002651 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002652 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002653 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002654 }
2655
2656 /* Skip to past ']'. */
2657 ++p;
2658 }
2659
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002660 if (lp->ll_tv->v_type == VAR_DICT)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002661 {
2662 if (len == -1)
2663 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002664 /* "[key]": get key from "var1" */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002665 key = get_tv_string(&var1); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002666 if (*key == NUL)
2667 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002668 if (!quiet)
2669 EMSG(_(e_emptykey));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002670 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002671 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002672 }
2673 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002674 lp->ll_list = NULL;
2675 lp->ll_dict = lp->ll_tv->vval.v_dict;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002676 lp->ll_di = dict_find(lp->ll_dict, key, len);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002677 if (lp->ll_di == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002678 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002679 /* Key does not exist in dict: may need to add it. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002680 if (*p == '[' || *p == '.' || unlet)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002681 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002682 if (!quiet)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002683 EMSG2(_(e_dictkey), key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002684 if (len == -1)
2685 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002686 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002687 }
2688 if (len == -1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002689 lp->ll_newkey = vim_strsave(key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002690 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002691 lp->ll_newkey = vim_strnsave(key, len);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002692 if (len == -1)
2693 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002694 if (lp->ll_newkey == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002695 p = NULL;
2696 break;
2697 }
2698 if (len == -1)
2699 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002700 lp->ll_tv = &lp->ll_di->di_tv;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002701 }
2702 else
2703 {
2704 /*
2705 * Get the number and item for the only or first index of the List.
2706 */
2707 if (empty1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002708 lp->ll_n1 = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002709 else
2710 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002711 lp->ll_n1 = get_tv_number(&var1); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002712 clear_tv(&var1);
2713 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002714 lp->ll_dict = NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002715 lp->ll_list = lp->ll_tv->vval.v_list;
2716 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2717 if (lp->ll_li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002718 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002719 if (lp->ll_n1 < 0)
2720 {
2721 lp->ll_n1 = 0;
2722 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2723 }
2724 }
2725 if (lp->ll_li == NULL)
2726 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002727 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002728 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002729 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002730 }
2731
2732 /*
2733 * May need to find the item or absolute index for the second
2734 * index of a range.
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002735 * When no index given: "lp->ll_empty2" is TRUE.
2736 * Otherwise "lp->ll_n2" is set to the second index.
Bram Moolenaar8c711452005-01-14 21:53:12 +00002737 */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002738 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002739 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002740 lp->ll_n2 = get_tv_number(&var2); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002741 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002742 if (lp->ll_n2 < 0)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002743 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002744 ni = list_find(lp->ll_list, lp->ll_n2);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002745 if (ni == NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002746 return NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002747 lp->ll_n2 = list_idx_of_item(lp->ll_list, ni);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002748 }
2749
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002750 /* Check that lp->ll_n2 isn't before lp->ll_n1. */
2751 if (lp->ll_n1 < 0)
2752 lp->ll_n1 = list_idx_of_item(lp->ll_list, lp->ll_li);
2753 if (lp->ll_n2 < lp->ll_n1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002754 return NULL;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002755 }
2756
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002757 lp->ll_tv = &lp->ll_li->li_tv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002758 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002759 }
2760
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002761 return p;
2762}
2763
2764/*
Bram Moolenaar33570922005-01-25 22:26:29 +00002765 * Clear lval "lp" that was filled by get_lval().
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002766 */
2767 static void
2768clear_lval(lp)
Bram Moolenaar33570922005-01-25 22:26:29 +00002769 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002770{
2771 vim_free(lp->ll_exp_name);
2772 vim_free(lp->ll_newkey);
2773}
2774
2775/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002776 * Set a variable that was parsed by get_lval() to "rettv".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002777 * "endp" points to just after the parsed name.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002778 * "op" is NULL, "+" for "+=", "-" for "-=", "." for ".=" or "=" for "=".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002779 */
2780 static void
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002781set_var_lval(lp, endp, rettv, copy, op)
Bram Moolenaar33570922005-01-25 22:26:29 +00002782 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002783 char_u *endp;
Bram Moolenaar33570922005-01-25 22:26:29 +00002784 typval_T *rettv;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002785 int copy;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002786 char_u *op;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002787{
2788 int cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00002789 listitem_T *ri;
2790 dictitem_T *di;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002791
2792 if (lp->ll_tv == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002793 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002794 if (!check_changedtick(lp->ll_name))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002795 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002796 cc = *endp;
2797 *endp = NUL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002798 if (op != NULL && *op != '=')
2799 {
Bram Moolenaar33570922005-01-25 22:26:29 +00002800 typval_T tv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002801
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002802 /* handle +=, -= and .= */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002803 if (get_var_tv(lp->ll_name, (int)STRLEN(lp->ll_name),
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002804 &tv, TRUE) == OK)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002805 {
2806 if (tv_op(&tv, rettv, op) == OK)
2807 set_var(lp->ll_name, &tv, FALSE);
2808 clear_tv(&tv);
2809 }
2810 }
2811 else
2812 set_var(lp->ll_name, rettv, copy);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002813 *endp = cc;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002814 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002815 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002816 else if (tv_check_lock(lp->ll_newkey == NULL
2817 ? lp->ll_tv->v_lock
2818 : lp->ll_tv->vval.v_dict->dv_lock, lp->ll_name))
2819 ;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002820 else if (lp->ll_range)
2821 {
2822 /*
2823 * Assign the List values to the list items.
2824 */
2825 for (ri = rettv->vval.v_list->lv_first; ri != NULL; )
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002826 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002827 if (op != NULL && *op != '=')
2828 tv_op(&lp->ll_li->li_tv, &ri->li_tv, op);
2829 else
2830 {
2831 clear_tv(&lp->ll_li->li_tv);
2832 copy_tv(&ri->li_tv, &lp->ll_li->li_tv);
2833 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002834 ri = ri->li_next;
2835 if (ri == NULL || (!lp->ll_empty2 && lp->ll_n2 == lp->ll_n1))
2836 break;
2837 if (lp->ll_li->li_next == NULL)
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002838 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002839 /* Need to add an empty item. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00002840 if (list_append_number(lp->ll_list, 0) == FAIL)
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002841 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002842 ri = NULL;
2843 break;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002844 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002845 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002846 lp->ll_li = lp->ll_li->li_next;
2847 ++lp->ll_n1;
2848 }
2849 if (ri != NULL)
2850 EMSG(_("E710: List value has more items than target"));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002851 else if (lp->ll_empty2
2852 ? (lp->ll_li != NULL && lp->ll_li->li_next != NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002853 : lp->ll_n1 != lp->ll_n2)
2854 EMSG(_("E711: List value has not enough items"));
2855 }
2856 else
2857 {
2858 /*
2859 * Assign to a List or Dictionary item.
2860 */
2861 if (lp->ll_newkey != NULL)
2862 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002863 if (op != NULL && *op != '=')
2864 {
2865 EMSG2(_(e_letwrong), op);
2866 return;
2867 }
2868
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002869 /* Need to add an item to the Dictionary. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002870 di = dictitem_alloc(lp->ll_newkey);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002871 if (di == NULL)
2872 return;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002873 if (dict_add(lp->ll_tv->vval.v_dict, di) == FAIL)
2874 {
2875 vim_free(di);
2876 return;
2877 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002878 lp->ll_tv = &di->di_tv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002879 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002880 else if (op != NULL && *op != '=')
2881 {
2882 tv_op(lp->ll_tv, rettv, op);
2883 return;
2884 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002885 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002886 clear_tv(lp->ll_tv);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002887
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002888 /*
2889 * Assign the value to the variable or list item.
2890 */
2891 if (copy)
2892 copy_tv(rettv, lp->ll_tv);
2893 else
2894 {
2895 *lp->ll_tv = *rettv;
Bram Moolenaar758711c2005-02-02 23:11:38 +00002896 lp->ll_tv->v_lock = 0;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002897 init_tv(rettv);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002898 }
2899 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002900}
2901
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002902/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002903 * Handle "tv1 += tv2", "tv1 -= tv2" and "tv1 .= tv2"
2904 * Returns OK or FAIL.
2905 */
2906 static int
2907tv_op(tv1, tv2, op)
Bram Moolenaar33570922005-01-25 22:26:29 +00002908 typval_T *tv1;
2909 typval_T *tv2;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002910 char_u *op;
2911{
2912 long n;
2913 char_u numbuf[NUMBUFLEN];
2914 char_u *s;
2915
2916 /* Can't do anything with a Funcref or a Dict on the right. */
2917 if (tv2->v_type != VAR_FUNC && tv2->v_type != VAR_DICT)
2918 {
2919 switch (tv1->v_type)
2920 {
2921 case VAR_DICT:
2922 case VAR_FUNC:
2923 break;
2924
2925 case VAR_LIST:
2926 if (*op != '+' || tv2->v_type != VAR_LIST)
2927 break;
2928 /* List += List */
2929 if (tv1->vval.v_list != NULL && tv2->vval.v_list != NULL)
2930 list_extend(tv1->vval.v_list, tv2->vval.v_list, NULL);
2931 return OK;
2932
2933 case VAR_NUMBER:
2934 case VAR_STRING:
2935 if (tv2->v_type == VAR_LIST)
2936 break;
2937 if (*op == '+' || *op == '-')
2938 {
2939 /* nr += nr or nr -= nr*/
2940 n = get_tv_number(tv1);
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002941#ifdef FEAT_FLOAT
2942 if (tv2->v_type == VAR_FLOAT)
2943 {
2944 float_T f = n;
2945
2946 if (*op == '+')
2947 f += tv2->vval.v_float;
2948 else
2949 f -= tv2->vval.v_float;
2950 clear_tv(tv1);
2951 tv1->v_type = VAR_FLOAT;
2952 tv1->vval.v_float = f;
2953 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002954 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002955#endif
2956 {
2957 if (*op == '+')
2958 n += get_tv_number(tv2);
2959 else
2960 n -= get_tv_number(tv2);
2961 clear_tv(tv1);
2962 tv1->v_type = VAR_NUMBER;
2963 tv1->vval.v_number = n;
2964 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002965 }
2966 else
2967 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002968 if (tv2->v_type == VAR_FLOAT)
2969 break;
2970
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002971 /* str .= str */
2972 s = get_tv_string(tv1);
2973 s = concat_str(s, get_tv_string_buf(tv2, numbuf));
2974 clear_tv(tv1);
2975 tv1->v_type = VAR_STRING;
2976 tv1->vval.v_string = s;
2977 }
2978 return OK;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002979
2980#ifdef FEAT_FLOAT
2981 case VAR_FLOAT:
2982 {
2983 float_T f;
2984
2985 if (*op == '.' || (tv2->v_type != VAR_FLOAT
2986 && tv2->v_type != VAR_NUMBER
2987 && tv2->v_type != VAR_STRING))
2988 break;
2989 if (tv2->v_type == VAR_FLOAT)
2990 f = tv2->vval.v_float;
2991 else
2992 f = get_tv_number(tv2);
2993 if (*op == '+')
2994 tv1->vval.v_float += f;
2995 else
2996 tv1->vval.v_float -= f;
2997 }
2998 return OK;
2999#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003000 }
3001 }
3002
3003 EMSG2(_(e_letwrong), op);
3004 return FAIL;
3005}
3006
3007/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003008 * Add a watcher to a list.
3009 */
3010 static void
3011list_add_watch(l, lw)
Bram Moolenaar33570922005-01-25 22:26:29 +00003012 list_T *l;
3013 listwatch_T *lw;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003014{
3015 lw->lw_next = l->lv_watch;
3016 l->lv_watch = lw;
3017}
3018
3019/*
Bram Moolenaar758711c2005-02-02 23:11:38 +00003020 * Remove a watcher from a list.
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003021 * No warning when it isn't found...
3022 */
3023 static void
3024list_rem_watch(l, lwrem)
Bram Moolenaar33570922005-01-25 22:26:29 +00003025 list_T *l;
3026 listwatch_T *lwrem;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003027{
Bram Moolenaar33570922005-01-25 22:26:29 +00003028 listwatch_T *lw, **lwp;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003029
3030 lwp = &l->lv_watch;
3031 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3032 {
3033 if (lw == lwrem)
3034 {
3035 *lwp = lw->lw_next;
3036 break;
3037 }
3038 lwp = &lw->lw_next;
3039 }
3040}
3041
3042/*
3043 * Just before removing an item from a list: advance watchers to the next
3044 * item.
3045 */
3046 static void
3047list_fix_watch(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00003048 list_T *l;
3049 listitem_T *item;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003050{
Bram Moolenaar33570922005-01-25 22:26:29 +00003051 listwatch_T *lw;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003052
3053 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3054 if (lw->lw_item == item)
3055 lw->lw_item = item->li_next;
3056}
3057
3058/*
3059 * Evaluate the expression used in a ":for var in expr" command.
3060 * "arg" points to "var".
3061 * Set "*errp" to TRUE for an error, FALSE otherwise;
3062 * Return a pointer that holds the info. Null when there is an error.
3063 */
3064 void *
3065eval_for_line(arg, errp, nextcmdp, skip)
3066 char_u *arg;
3067 int *errp;
3068 char_u **nextcmdp;
3069 int skip;
3070{
Bram Moolenaar33570922005-01-25 22:26:29 +00003071 forinfo_T *fi;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003072 char_u *expr;
Bram Moolenaar33570922005-01-25 22:26:29 +00003073 typval_T tv;
3074 list_T *l;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003075
3076 *errp = TRUE; /* default: there is an error */
3077
Bram Moolenaar33570922005-01-25 22:26:29 +00003078 fi = (forinfo_T *)alloc_clear(sizeof(forinfo_T));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003079 if (fi == NULL)
3080 return NULL;
3081
3082 expr = skip_var_list(arg, &fi->fi_varcount, &fi->fi_semicolon);
3083 if (expr == NULL)
3084 return fi;
3085
3086 expr = skipwhite(expr);
3087 if (expr[0] != 'i' || expr[1] != 'n' || !vim_iswhite(expr[2]))
3088 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00003089 EMSG(_("E690: Missing \"in\" after :for"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003090 return fi;
3091 }
3092
3093 if (skip)
3094 ++emsg_skip;
3095 if (eval0(skipwhite(expr + 2), &tv, nextcmdp, !skip) == OK)
3096 {
3097 *errp = FALSE;
3098 if (!skip)
3099 {
3100 l = tv.vval.v_list;
3101 if (tv.v_type != VAR_LIST || l == NULL)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003102 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003103 EMSG(_(e_listreq));
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003104 clear_tv(&tv);
3105 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003106 else
3107 {
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00003108 /* No need to increment the refcount, it's already set for the
3109 * list being used in "tv". */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003110 fi->fi_list = l;
3111 list_add_watch(l, &fi->fi_lw);
3112 fi->fi_lw.lw_item = l->lv_first;
3113 }
3114 }
3115 }
3116 if (skip)
3117 --emsg_skip;
3118
3119 return fi;
3120}
3121
3122/*
3123 * Use the first item in a ":for" list. Advance to the next.
3124 * Assign the values to the variable (list). "arg" points to the first one.
3125 * Return TRUE when a valid item was found, FALSE when at end of list or
3126 * something wrong.
3127 */
3128 int
3129next_for_item(fi_void, arg)
3130 void *fi_void;
3131 char_u *arg;
3132{
Bram Moolenaar33570922005-01-25 22:26:29 +00003133 forinfo_T *fi = (forinfo_T *)fi_void;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003134 int result;
Bram Moolenaar33570922005-01-25 22:26:29 +00003135 listitem_T *item;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003136
3137 item = fi->fi_lw.lw_item;
3138 if (item == NULL)
3139 result = FALSE;
3140 else
3141 {
3142 fi->fi_lw.lw_item = item->li_next;
3143 result = (ex_let_vars(arg, &item->li_tv, TRUE,
3144 fi->fi_semicolon, fi->fi_varcount, NULL) == OK);
3145 }
3146 return result;
3147}
3148
3149/*
3150 * Free the structure used to store info used by ":for".
3151 */
3152 void
3153free_for_info(fi_void)
3154 void *fi_void;
3155{
Bram Moolenaar33570922005-01-25 22:26:29 +00003156 forinfo_T *fi = (forinfo_T *)fi_void;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003157
Bram Moolenaarab7013c2005-01-09 21:23:56 +00003158 if (fi != NULL && fi->fi_list != NULL)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003159 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003160 list_rem_watch(fi->fi_list, &fi->fi_lw);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003161 list_unref(fi->fi_list);
3162 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003163 vim_free(fi);
3164}
3165
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3167
3168 void
3169set_context_for_expression(xp, arg, cmdidx)
3170 expand_T *xp;
3171 char_u *arg;
3172 cmdidx_T cmdidx;
3173{
3174 int got_eq = FALSE;
3175 int c;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003176 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003178 if (cmdidx == CMD_let)
3179 {
3180 xp->xp_context = EXPAND_USER_VARS;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003181 if (vim_strpbrk(arg, (char_u *)"\"'+-*/%.=!?~|&$([<>,#") == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003182 {
3183 /* ":let var1 var2 ...": find last space. */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003184 for (p = arg + STRLEN(arg); p >= arg; )
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003185 {
3186 xp->xp_pattern = p;
Bram Moolenaar33570922005-01-25 22:26:29 +00003187 mb_ptr_back(arg, p);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003188 if (vim_iswhite(*p))
3189 break;
3190 }
3191 return;
3192 }
3193 }
3194 else
3195 xp->xp_context = cmdidx == CMD_call ? EXPAND_FUNCTIONS
3196 : EXPAND_EXPRESSION;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 while ((xp->xp_pattern = vim_strpbrk(arg,
3198 (char_u *)"\"'+-*/%.=!?~|&$([<>,#")) != NULL)
3199 {
3200 c = *xp->xp_pattern;
3201 if (c == '&')
3202 {
3203 c = xp->xp_pattern[1];
3204 if (c == '&')
3205 {
3206 ++xp->xp_pattern;
3207 xp->xp_context = cmdidx != CMD_let || got_eq
3208 ? EXPAND_EXPRESSION : EXPAND_NOTHING;
3209 }
3210 else if (c != ' ')
Bram Moolenaar11cbeb12005-03-11 22:51:16 +00003211 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212 xp->xp_context = EXPAND_SETTINGS;
Bram Moolenaar11cbeb12005-03-11 22:51:16 +00003213 if ((c == 'l' || c == 'g') && xp->xp_pattern[2] == ':')
3214 xp->xp_pattern += 2;
3215
3216 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217 }
3218 else if (c == '$')
3219 {
3220 /* environment variable */
3221 xp->xp_context = EXPAND_ENV_VARS;
3222 }
3223 else if (c == '=')
3224 {
3225 got_eq = TRUE;
3226 xp->xp_context = EXPAND_EXPRESSION;
3227 }
3228 else if (c == '<'
3229 && xp->xp_context == EXPAND_FUNCTIONS
3230 && vim_strchr(xp->xp_pattern, '(') == NULL)
3231 {
3232 /* Function name can start with "<SNR>" */
3233 break;
3234 }
3235 else if (cmdidx != CMD_let || got_eq)
3236 {
3237 if (c == '"') /* string */
3238 {
3239 while ((c = *++xp->xp_pattern) != NUL && c != '"')
3240 if (c == '\\' && xp->xp_pattern[1] != NUL)
3241 ++xp->xp_pattern;
3242 xp->xp_context = EXPAND_NOTHING;
3243 }
3244 else if (c == '\'') /* literal string */
3245 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00003246 /* Trick: '' is like stopping and starting a literal string. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247 while ((c = *++xp->xp_pattern) != NUL && c != '\'')
3248 /* skip */ ;
3249 xp->xp_context = EXPAND_NOTHING;
3250 }
3251 else if (c == '|')
3252 {
3253 if (xp->xp_pattern[1] == '|')
3254 {
3255 ++xp->xp_pattern;
3256 xp->xp_context = EXPAND_EXPRESSION;
3257 }
3258 else
3259 xp->xp_context = EXPAND_COMMANDS;
3260 }
3261 else
3262 xp->xp_context = EXPAND_EXPRESSION;
3263 }
3264 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003265 /* Doesn't look like something valid, expand as an expression
3266 * anyway. */
3267 xp->xp_context = EXPAND_EXPRESSION;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268 arg = xp->xp_pattern;
3269 if (*arg != NUL)
3270 while ((c = *++arg) != NUL && (c == ' ' || c == '\t'))
3271 /* skip */ ;
3272 }
3273 xp->xp_pattern = arg;
3274}
3275
3276#endif /* FEAT_CMDL_COMPL */
3277
3278/*
3279 * ":1,25call func(arg1, arg2)" function call.
3280 */
3281 void
3282ex_call(eap)
3283 exarg_T *eap;
3284{
3285 char_u *arg = eap->arg;
3286 char_u *startarg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 char_u *name;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003288 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +00003290 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291 linenr_T lnum;
3292 int doesrange;
3293 int failed = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00003294 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003296 tofree = trans_function_name(&arg, eap->skip, TFN_INT, &fudi);
Bram Moolenaara2a31752006-10-24 11:49:25 +00003297 if (fudi.fd_newkey != NULL)
3298 {
3299 /* Still need to give an error message for missing key. */
3300 EMSG2(_(e_dictkey), fudi.fd_newkey);
3301 vim_free(fudi.fd_newkey);
3302 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003303 if (tofree == NULL)
3304 return;
3305
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003306 /* Increase refcount on dictionary, it could get deleted when evaluating
3307 * the arguments. */
3308 if (fudi.fd_dict != NULL)
3309 ++fudi.fd_dict->dv_refcount;
3310
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003311 /* If it is the name of a variable of type VAR_FUNC use its contents. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003312 len = (int)STRLEN(tofree);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003313 name = deref_func_name(tofree, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003314
Bram Moolenaar532c7802005-01-27 14:44:31 +00003315 /* Skip white space to allow ":call func ()". Not good, but required for
3316 * backward compatibility. */
3317 startarg = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003318 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319
3320 if (*startarg != '(')
3321 {
Bram Moolenaar8dd9ac52008-11-06 10:05:42 +00003322 EMSG2(_("E107: Missing parentheses: %s"), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 goto end;
3324 }
3325
3326 /*
3327 * When skipping, evaluate the function once, to find the end of the
3328 * arguments.
3329 * When the function takes a range, this is discovered after the first
3330 * call, and the loop is broken.
3331 */
3332 if (eap->skip)
3333 {
3334 ++emsg_skip;
3335 lnum = eap->line2; /* do it once, also with an invalid range */
3336 }
3337 else
3338 lnum = eap->line1;
3339 for ( ; lnum <= eap->line2; ++lnum)
3340 {
3341 if (!eap->skip && eap->addr_count > 0)
3342 {
3343 curwin->w_cursor.lnum = lnum;
3344 curwin->w_cursor.col = 0;
3345 }
3346 arg = startarg;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003347 if (get_func_tv(name, (int)STRLEN(name), &rettv, &arg,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003348 eap->line1, eap->line2, &doesrange,
3349 !eap->skip, fudi.fd_dict) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 {
3351 failed = TRUE;
3352 break;
3353 }
Bram Moolenaarf2789872006-11-28 19:54:04 +00003354
3355 /* Handle a function returning a Funcref, Dictionary or List. */
3356 if (handle_subscript(&arg, &rettv, !eap->skip, TRUE) == FAIL)
3357 {
3358 failed = TRUE;
3359 break;
3360 }
3361
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003362 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363 if (doesrange || eap->skip)
3364 break;
Bram Moolenaarf2789872006-11-28 19:54:04 +00003365
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366 /* Stop when immediately aborting on error, or when an interrupt
Bram Moolenaar49cd9572005-01-03 21:06:01 +00003367 * occurred or an exception was thrown but not caught.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003368 * get_func_tv() returned OK, so that the check for trailing
Bram Moolenaar49cd9572005-01-03 21:06:01 +00003369 * characters below is executed. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370 if (aborting())
3371 break;
3372 }
3373 if (eap->skip)
3374 --emsg_skip;
3375
3376 if (!failed)
3377 {
3378 /* Check for trailing illegal characters and a following command. */
3379 if (!ends_excmd(*arg))
3380 {
3381 emsg_severe = TRUE;
3382 EMSG(_(e_trailing));
3383 }
3384 else
3385 eap->nextcmd = check_nextcmd(arg);
3386 }
3387
3388end:
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003389 dict_unref(fudi.fd_dict);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003390 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391}
3392
3393/*
3394 * ":unlet[!] var1 ... " command.
3395 */
3396 void
3397ex_unlet(eap)
3398 exarg_T *eap;
3399{
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003400 ex_unletlock(eap, eap->arg, 0);
3401}
3402
3403/*
3404 * ":lockvar" and ":unlockvar" commands
3405 */
3406 void
3407ex_lockvar(eap)
3408 exarg_T *eap;
3409{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 char_u *arg = eap->arg;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003411 int deep = 2;
3412
3413 if (eap->forceit)
3414 deep = -1;
3415 else if (vim_isdigit(*arg))
3416 {
3417 deep = getdigits(&arg);
3418 arg = skipwhite(arg);
3419 }
3420
3421 ex_unletlock(eap, arg, deep);
3422}
3423
3424/*
3425 * ":unlet", ":lockvar" and ":unlockvar" are quite similar.
3426 */
3427 static void
3428ex_unletlock(eap, argstart, deep)
3429 exarg_T *eap;
3430 char_u *argstart;
3431 int deep;
3432{
3433 char_u *arg = argstart;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434 char_u *name_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435 int error = FALSE;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003436 lval_T lv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437
3438 do
3439 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003440 /* Parse the name and find the end. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00003441 name_end = get_lval(arg, NULL, &lv, TRUE, eap->skip || error, FALSE,
3442 FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003443 if (lv.ll_name == NULL)
3444 error = TRUE; /* error but continue parsing */
3445 if (name_end == NULL || (!vim_iswhite(*name_end)
3446 && !ends_excmd(*name_end)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003448 if (name_end != NULL)
3449 {
3450 emsg_severe = TRUE;
3451 EMSG(_(e_trailing));
3452 }
3453 if (!(eap->skip || error))
3454 clear_lval(&lv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 break;
3456 }
3457
3458 if (!error && !eap->skip)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003459 {
3460 if (eap->cmdidx == CMD_unlet)
3461 {
3462 if (do_unlet_var(&lv, name_end, eap->forceit) == FAIL)
3463 error = TRUE;
3464 }
3465 else
3466 {
3467 if (do_lock_var(&lv, name_end, deep,
3468 eap->cmdidx == CMD_lockvar) == FAIL)
3469 error = TRUE;
3470 }
3471 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003473 if (!eap->skip)
3474 clear_lval(&lv);
3475
Bram Moolenaar071d4272004-06-13 20:20:40 +00003476 arg = skipwhite(name_end);
3477 } while (!ends_excmd(*arg));
3478
3479 eap->nextcmd = check_nextcmd(arg);
3480}
3481
Bram Moolenaar8c711452005-01-14 21:53:12 +00003482 static int
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003483do_unlet_var(lp, name_end, forceit)
Bram Moolenaar33570922005-01-25 22:26:29 +00003484 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003485 char_u *name_end;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003486 int forceit;
3487{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003488 int ret = OK;
3489 int cc;
3490
3491 if (lp->ll_tv == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00003492 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003493 cc = *name_end;
3494 *name_end = NUL;
3495
3496 /* Normal name or expanded name. */
3497 if (check_changedtick(lp->ll_name))
3498 ret = FAIL;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003499 else if (do_unlet(lp->ll_name, forceit) == FAIL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003500 ret = FAIL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003501 *name_end = cc;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003502 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003503 else if (tv_check_lock(lp->ll_tv->v_lock, lp->ll_name))
3504 return FAIL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003505 else if (lp->ll_range)
3506 {
Bram Moolenaar33570922005-01-25 22:26:29 +00003507 listitem_T *li;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003508
3509 /* Delete a range of List items. */
3510 while (lp->ll_li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3511 {
3512 li = lp->ll_li->li_next;
3513 listitem_remove(lp->ll_list, lp->ll_li);
3514 lp->ll_li = li;
3515 ++lp->ll_n1;
3516 }
3517 }
3518 else
3519 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003520 if (lp->ll_list != NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003521 /* unlet a List item. */
3522 listitem_remove(lp->ll_list, lp->ll_li);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003523 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003524 /* unlet a Dictionary item. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003525 dictitem_remove(lp->ll_dict, lp->ll_di);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003526 }
3527
3528 return ret;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003529}
3530
Bram Moolenaar071d4272004-06-13 20:20:40 +00003531/*
3532 * "unlet" a variable. Return OK if it existed, FAIL if not.
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003533 * When "forceit" is TRUE don't complain if the variable doesn't exist.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534 */
3535 int
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003536do_unlet(name, forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 char_u *name;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003538 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539{
Bram Moolenaar33570922005-01-25 22:26:29 +00003540 hashtab_T *ht;
3541 hashitem_T *hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003542 char_u *varname;
Bram Moolenaarafbdeb82008-01-05 21:16:31 +00003543 dictitem_T *di;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003544
Bram Moolenaar33570922005-01-25 22:26:29 +00003545 ht = find_var_ht(name, &varname);
3546 if (ht != NULL && *varname != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547 {
Bram Moolenaar33570922005-01-25 22:26:29 +00003548 hi = hash_find(ht, varname);
3549 if (!HASHITEM_EMPTY(hi))
Bram Moolenaara7043832005-01-21 11:56:39 +00003550 {
Bram Moolenaarafbdeb82008-01-05 21:16:31 +00003551 di = HI2DI(hi);
3552 if (var_check_fixed(di->di_flags, name)
3553 || var_check_ro(di->di_flags, name))
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003554 return FAIL;
3555 delete_var(ht, hi);
3556 return OK;
Bram Moolenaara7043832005-01-21 11:56:39 +00003557 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003559 if (forceit)
3560 return OK;
3561 EMSG2(_("E108: No such variable: \"%s\""), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 return FAIL;
3563}
3564
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003565/*
3566 * Lock or unlock variable indicated by "lp".
3567 * "deep" is the levels to go (-1 for unlimited);
3568 * "lock" is TRUE for ":lockvar", FALSE for ":unlockvar".
3569 */
3570 static int
3571do_lock_var(lp, name_end, deep, lock)
3572 lval_T *lp;
3573 char_u *name_end;
3574 int deep;
3575 int lock;
3576{
3577 int ret = OK;
3578 int cc;
3579 dictitem_T *di;
3580
3581 if (deep == 0) /* nothing to do */
3582 return OK;
3583
3584 if (lp->ll_tv == NULL)
3585 {
3586 cc = *name_end;
3587 *name_end = NUL;
3588
3589 /* Normal name or expanded name. */
3590 if (check_changedtick(lp->ll_name))
3591 ret = FAIL;
3592 else
3593 {
3594 di = find_var(lp->ll_name, NULL);
3595 if (di == NULL)
3596 ret = FAIL;
3597 else
3598 {
3599 if (lock)
3600 di->di_flags |= DI_FLAGS_LOCK;
3601 else
3602 di->di_flags &= ~DI_FLAGS_LOCK;
3603 item_lock(&di->di_tv, deep, lock);
3604 }
3605 }
3606 *name_end = cc;
3607 }
3608 else if (lp->ll_range)
3609 {
3610 listitem_T *li = lp->ll_li;
3611
3612 /* (un)lock a range of List items. */
3613 while (li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3614 {
3615 item_lock(&li->li_tv, deep, lock);
3616 li = li->li_next;
3617 ++lp->ll_n1;
3618 }
3619 }
3620 else if (lp->ll_list != NULL)
3621 /* (un)lock a List item. */
3622 item_lock(&lp->ll_li->li_tv, deep, lock);
3623 else
3624 /* un(lock) a Dictionary item. */
3625 item_lock(&lp->ll_di->di_tv, deep, lock);
3626
3627 return ret;
3628}
3629
3630/*
3631 * Lock or unlock an item. "deep" is nr of levels to go.
3632 */
3633 static void
3634item_lock(tv, deep, lock)
3635 typval_T *tv;
3636 int deep;
3637 int lock;
3638{
3639 static int recurse = 0;
3640 list_T *l;
3641 listitem_T *li;
3642 dict_T *d;
3643 hashitem_T *hi;
3644 int todo;
3645
3646 if (recurse >= DICT_MAXNEST)
3647 {
3648 EMSG(_("E743: variable nested too deep for (un)lock"));
3649 return;
3650 }
3651 if (deep == 0)
3652 return;
3653 ++recurse;
3654
3655 /* lock/unlock the item itself */
3656 if (lock)
3657 tv->v_lock |= VAR_LOCKED;
3658 else
3659 tv->v_lock &= ~VAR_LOCKED;
3660
3661 switch (tv->v_type)
3662 {
3663 case VAR_LIST:
3664 if ((l = tv->vval.v_list) != NULL)
3665 {
3666 if (lock)
3667 l->lv_lock |= VAR_LOCKED;
3668 else
3669 l->lv_lock &= ~VAR_LOCKED;
3670 if (deep < 0 || deep > 1)
3671 /* recursive: lock/unlock the items the List contains */
3672 for (li = l->lv_first; li != NULL; li = li->li_next)
3673 item_lock(&li->li_tv, deep - 1, lock);
3674 }
3675 break;
3676 case VAR_DICT:
3677 if ((d = tv->vval.v_dict) != NULL)
3678 {
3679 if (lock)
3680 d->dv_lock |= VAR_LOCKED;
3681 else
3682 d->dv_lock &= ~VAR_LOCKED;
3683 if (deep < 0 || deep > 1)
3684 {
3685 /* recursive: lock/unlock the items the List contains */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003686 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003687 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
3688 {
3689 if (!HASHITEM_EMPTY(hi))
3690 {
3691 --todo;
3692 item_lock(&HI2DI(hi)->di_tv, deep - 1, lock);
3693 }
3694 }
3695 }
3696 }
3697 }
3698 --recurse;
3699}
3700
Bram Moolenaara40058a2005-07-11 22:42:07 +00003701/*
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +00003702 * Return TRUE if typeval "tv" is locked: Either that value is locked itself
3703 * or it refers to a List or Dictionary that is locked.
Bram Moolenaara40058a2005-07-11 22:42:07 +00003704 */
3705 static int
3706tv_islocked(tv)
3707 typval_T *tv;
3708{
3709 return (tv->v_lock & VAR_LOCKED)
3710 || (tv->v_type == VAR_LIST
3711 && tv->vval.v_list != NULL
3712 && (tv->vval.v_list->lv_lock & VAR_LOCKED))
3713 || (tv->v_type == VAR_DICT
3714 && tv->vval.v_dict != NULL
3715 && (tv->vval.v_dict->dv_lock & VAR_LOCKED));
3716}
3717
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718#if (defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)) || defined(PROTO)
3719/*
3720 * Delete all "menutrans_" variables.
3721 */
3722 void
3723del_menutrans_vars()
3724{
Bram Moolenaar33570922005-01-25 22:26:29 +00003725 hashitem_T *hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003726 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003727
Bram Moolenaar33570922005-01-25 22:26:29 +00003728 hash_lock(&globvarht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003729 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00003730 for (hi = globvarht.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaara7043832005-01-21 11:56:39 +00003731 {
3732 if (!HASHITEM_EMPTY(hi))
3733 {
3734 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00003735 if (STRNCMP(HI2DI(hi)->di_key, "menutrans_", 10) == 0)
3736 delete_var(&globvarht, hi);
Bram Moolenaara7043832005-01-21 11:56:39 +00003737 }
3738 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003739 hash_unlock(&globvarht);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740}
3741#endif
3742
3743#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3744
3745/*
3746 * Local string buffer for the next two functions to store a variable name
3747 * with its prefix. Allocated in cat_prefix_varname(), freed later in
3748 * get_user_var_name().
3749 */
3750
3751static char_u *cat_prefix_varname __ARGS((int prefix, char_u *name));
3752
3753static char_u *varnamebuf = NULL;
3754static int varnamebuflen = 0;
3755
3756/*
3757 * Function to concatenate a prefix and a variable name.
3758 */
3759 static char_u *
3760cat_prefix_varname(prefix, name)
3761 int prefix;
3762 char_u *name;
3763{
3764 int len;
3765
3766 len = (int)STRLEN(name) + 3;
3767 if (len > varnamebuflen)
3768 {
3769 vim_free(varnamebuf);
3770 len += 10; /* some additional space */
3771 varnamebuf = alloc(len);
3772 if (varnamebuf == NULL)
3773 {
3774 varnamebuflen = 0;
3775 return NULL;
3776 }
3777 varnamebuflen = len;
3778 }
3779 *varnamebuf = prefix;
3780 varnamebuf[1] = ':';
3781 STRCPY(varnamebuf + 2, name);
3782 return varnamebuf;
3783}
3784
3785/*
3786 * Function given to ExpandGeneric() to obtain the list of user defined
3787 * (global/buffer/window/built-in) variable names.
3788 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789 char_u *
3790get_user_var_name(xp, idx)
3791 expand_T *xp;
3792 int idx;
3793{
Bram Moolenaar532c7802005-01-27 14:44:31 +00003794 static long_u gdone;
3795 static long_u bdone;
3796 static long_u wdone;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003797#ifdef FEAT_WINDOWS
3798 static long_u tdone;
3799#endif
Bram Moolenaar532c7802005-01-27 14:44:31 +00003800 static int vidx;
3801 static hashitem_T *hi;
3802 hashtab_T *ht;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803
3804 if (idx == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003805 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003806 gdone = bdone = wdone = vidx = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003807#ifdef FEAT_WINDOWS
3808 tdone = 0;
3809#endif
3810 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003811
3812 /* Global variables */
3813 if (gdone < globvarht.ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003815 if (gdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003816 hi = globvarht.ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003817 else
3818 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003819 while (HASHITEM_EMPTY(hi))
3820 ++hi;
3821 if (STRNCMP("g:", xp->xp_pattern, 2) == 0)
3822 return cat_prefix_varname('g', hi->hi_key);
3823 return hi->hi_key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003825
3826 /* b: variables */
3827 ht = &curbuf->b_vars.dv_hashtab;
3828 if (bdone < ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003829 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003830 if (bdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003831 hi = ht->ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003832 else
3833 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003834 while (HASHITEM_EMPTY(hi))
3835 ++hi;
3836 return cat_prefix_varname('b', hi->hi_key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003838 if (bdone == ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003840 ++bdone;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841 return (char_u *)"b:changedtick";
3842 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003843
3844 /* w: variables */
3845 ht = &curwin->w_vars.dv_hashtab;
3846 if (wdone < ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00003848 if (wdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003849 hi = ht->ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003850 else
3851 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003852 while (HASHITEM_EMPTY(hi))
3853 ++hi;
3854 return cat_prefix_varname('w', hi->hi_key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003855 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003856
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003857#ifdef FEAT_WINDOWS
3858 /* t: variables */
3859 ht = &curtab->tp_vars.dv_hashtab;
3860 if (tdone < ht->ht_used)
3861 {
3862 if (tdone++ == 0)
3863 hi = ht->ht_array;
3864 else
3865 ++hi;
3866 while (HASHITEM_EMPTY(hi))
3867 ++hi;
3868 return cat_prefix_varname('t', hi->hi_key);
3869 }
3870#endif
3871
Bram Moolenaar33570922005-01-25 22:26:29 +00003872 /* v: variables */
3873 if (vidx < VV_LEN)
3874 return cat_prefix_varname('v', (char_u *)vimvars[vidx++].vv_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875
3876 vim_free(varnamebuf);
3877 varnamebuf = NULL;
3878 varnamebuflen = 0;
3879 return NULL;
3880}
3881
3882#endif /* FEAT_CMDL_COMPL */
3883
3884/*
3885 * types for expressions.
3886 */
3887typedef enum
3888{
3889 TYPE_UNKNOWN = 0
3890 , TYPE_EQUAL /* == */
3891 , TYPE_NEQUAL /* != */
3892 , TYPE_GREATER /* > */
3893 , TYPE_GEQUAL /* >= */
3894 , TYPE_SMALLER /* < */
3895 , TYPE_SEQUAL /* <= */
3896 , TYPE_MATCH /* =~ */
3897 , TYPE_NOMATCH /* !~ */
3898} exptype_T;
3899
3900/*
3901 * The "evaluate" argument: When FALSE, the argument is only parsed but not
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003902 * executed. The function may return OK, but the rettv will be of type
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903 * VAR_UNKNOWN. The function still returns FAIL for a syntax error.
3904 */
3905
3906/*
3907 * Handle zero level expression.
3908 * This calls eval1() and handles error message and nextcmd.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003909 * Put the result in "rettv" when returning OK and "evaluate" is TRUE.
Bram Moolenaar4463f292005-09-25 22:20:24 +00003910 * Note: "rettv.v_lock" is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911 * Return OK or FAIL.
3912 */
3913 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003914eval0(arg, rettv, nextcmd, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915 char_u *arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00003916 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917 char_u **nextcmd;
3918 int evaluate;
3919{
3920 int ret;
3921 char_u *p;
3922
3923 p = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003924 ret = eval1(&p, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 if (ret == FAIL || !ends_excmd(*p))
3926 {
3927 if (ret != FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003928 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003929 /*
3930 * Report the invalid expression unless the expression evaluation has
3931 * been cancelled due to an aborting error, an interrupt, or an
3932 * exception.
3933 */
3934 if (!aborting())
3935 EMSG2(_(e_invexpr2), arg);
3936 ret = FAIL;
3937 }
3938 if (nextcmd != NULL)
3939 *nextcmd = check_nextcmd(p);
3940
3941 return ret;
3942}
3943
3944/*
3945 * Handle top level expression:
Bram Moolenaarb67cc162009-02-04 15:27:06 +00003946 * expr2 ? expr1 : expr1
Bram Moolenaar071d4272004-06-13 20:20:40 +00003947 *
3948 * "arg" must point to the first non-white of the expression.
3949 * "arg" is advanced to the next non-white after the recognized expression.
3950 *
Bram Moolenaar4463f292005-09-25 22:20:24 +00003951 * Note: "rettv.v_lock" is not set.
3952 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 * Return OK or FAIL.
3954 */
3955 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003956eval1(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00003958 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959 int evaluate;
3960{
3961 int result;
Bram Moolenaar33570922005-01-25 22:26:29 +00003962 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003963
3964 /*
3965 * Get the first variable.
3966 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003967 if (eval2(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968 return FAIL;
3969
3970 if ((*arg)[0] == '?')
3971 {
3972 result = FALSE;
3973 if (evaluate)
3974 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003975 int error = FALSE;
3976
3977 if (get_tv_number_chk(rettv, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003979 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003980 if (error)
3981 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982 }
3983
3984 /*
3985 * Get the second variable.
3986 */
3987 *arg = skipwhite(*arg + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003988 if (eval1(arg, rettv, evaluate && result) == FAIL) /* recursive! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989 return FAIL;
3990
3991 /*
3992 * Check for the ":".
3993 */
3994 if ((*arg)[0] != ':')
3995 {
3996 EMSG(_("E109: Missing ':' after '?'"));
3997 if (evaluate && result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003998 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999 return FAIL;
4000 }
4001
4002 /*
4003 * Get the third variable.
4004 */
4005 *arg = skipwhite(*arg + 1);
4006 if (eval1(arg, &var2, evaluate && !result) == FAIL) /* recursive! */
4007 {
4008 if (evaluate && result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004009 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004010 return FAIL;
4011 }
4012 if (evaluate && !result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004013 *rettv = var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004014 }
4015
4016 return OK;
4017}
4018
4019/*
4020 * Handle first level expression:
4021 * expr2 || expr2 || expr2 logical OR
4022 *
4023 * "arg" must point to the first non-white of the expression.
4024 * "arg" is advanced to the next non-white after the recognized expression.
4025 *
4026 * Return OK or FAIL.
4027 */
4028 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004029eval2(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004031 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004032 int evaluate;
4033{
Bram Moolenaar33570922005-01-25 22:26:29 +00004034 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035 long result;
4036 int first;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004037 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038
4039 /*
4040 * Get the first variable.
4041 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004042 if (eval3(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004043 return FAIL;
4044
4045 /*
4046 * Repeat until there is no following "||".
4047 */
4048 first = TRUE;
4049 result = FALSE;
4050 while ((*arg)[0] == '|' && (*arg)[1] == '|')
4051 {
4052 if (evaluate && first)
4053 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004054 if (get_tv_number_chk(rettv, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004056 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004057 if (error)
4058 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059 first = FALSE;
4060 }
4061
4062 /*
4063 * Get the second variable.
4064 */
4065 *arg = skipwhite(*arg + 2);
4066 if (eval3(arg, &var2, evaluate && !result) == FAIL)
4067 return FAIL;
4068
4069 /*
4070 * Compute the result.
4071 */
4072 if (evaluate && !result)
4073 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004074 if (get_tv_number_chk(&var2, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004076 clear_tv(&var2);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004077 if (error)
4078 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 }
4080 if (evaluate)
4081 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004082 rettv->v_type = VAR_NUMBER;
4083 rettv->vval.v_number = result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 }
4085 }
4086
4087 return OK;
4088}
4089
4090/*
4091 * Handle second level expression:
4092 * expr3 && expr3 && expr3 logical AND
4093 *
4094 * "arg" must point to the first non-white of the expression.
4095 * "arg" is advanced to the next non-white after the recognized expression.
4096 *
4097 * Return OK or FAIL.
4098 */
4099 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004100eval3(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004101 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004102 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103 int evaluate;
4104{
Bram Moolenaar33570922005-01-25 22:26:29 +00004105 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106 long result;
4107 int first;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004108 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109
4110 /*
4111 * Get the first variable.
4112 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004113 if (eval4(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004114 return FAIL;
4115
4116 /*
4117 * Repeat until there is no following "&&".
4118 */
4119 first = TRUE;
4120 result = TRUE;
4121 while ((*arg)[0] == '&' && (*arg)[1] == '&')
4122 {
4123 if (evaluate && first)
4124 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004125 if (get_tv_number_chk(rettv, &error) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 result = FALSE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004127 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004128 if (error)
4129 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130 first = FALSE;
4131 }
4132
4133 /*
4134 * Get the second variable.
4135 */
4136 *arg = skipwhite(*arg + 2);
4137 if (eval4(arg, &var2, evaluate && result) == FAIL)
4138 return FAIL;
4139
4140 /*
4141 * Compute the result.
4142 */
4143 if (evaluate && result)
4144 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004145 if (get_tv_number_chk(&var2, &error) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 result = FALSE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004147 clear_tv(&var2);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004148 if (error)
4149 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 }
4151 if (evaluate)
4152 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004153 rettv->v_type = VAR_NUMBER;
4154 rettv->vval.v_number = result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155 }
4156 }
4157
4158 return OK;
4159}
4160
4161/*
4162 * Handle third level expression:
4163 * var1 == var2
4164 * var1 =~ var2
4165 * var1 != var2
4166 * var1 !~ var2
4167 * var1 > var2
4168 * var1 >= var2
4169 * var1 < var2
4170 * var1 <= var2
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004171 * var1 is var2
4172 * var1 isnot var2
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 *
4174 * "arg" must point to the first non-white of the expression.
4175 * "arg" is advanced to the next non-white after the recognized expression.
4176 *
4177 * Return OK or FAIL.
4178 */
4179 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004180eval4(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004182 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004183 int evaluate;
4184{
Bram Moolenaar33570922005-01-25 22:26:29 +00004185 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186 char_u *p;
4187 int i;
4188 exptype_T type = TYPE_UNKNOWN;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004189 int type_is = FALSE; /* TRUE for "is" and "isnot" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004190 int len = 2;
4191 long n1, n2;
4192 char_u *s1, *s2;
4193 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4194 regmatch_T regmatch;
4195 int ic;
4196 char_u *save_cpo;
4197
4198 /*
4199 * Get the first variable.
4200 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004201 if (eval5(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 return FAIL;
4203
4204 p = *arg;
4205 switch (p[0])
4206 {
4207 case '=': if (p[1] == '=')
4208 type = TYPE_EQUAL;
4209 else if (p[1] == '~')
4210 type = TYPE_MATCH;
4211 break;
4212 case '!': if (p[1] == '=')
4213 type = TYPE_NEQUAL;
4214 else if (p[1] == '~')
4215 type = TYPE_NOMATCH;
4216 break;
4217 case '>': if (p[1] != '=')
4218 {
4219 type = TYPE_GREATER;
4220 len = 1;
4221 }
4222 else
4223 type = TYPE_GEQUAL;
4224 break;
4225 case '<': if (p[1] != '=')
4226 {
4227 type = TYPE_SMALLER;
4228 len = 1;
4229 }
4230 else
4231 type = TYPE_SEQUAL;
4232 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004233 case 'i': if (p[1] == 's')
4234 {
4235 if (p[2] == 'n' && p[3] == 'o' && p[4] == 't')
4236 len = 5;
4237 if (!vim_isIDc(p[len]))
4238 {
4239 type = len == 2 ? TYPE_EQUAL : TYPE_NEQUAL;
4240 type_is = TRUE;
4241 }
4242 }
4243 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244 }
4245
4246 /*
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004247 * If there is a comparative operator, use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004248 */
4249 if (type != TYPE_UNKNOWN)
4250 {
4251 /* extra question mark appended: ignore case */
4252 if (p[len] == '?')
4253 {
4254 ic = TRUE;
4255 ++len;
4256 }
4257 /* extra '#' appended: match case */
4258 else if (p[len] == '#')
4259 {
4260 ic = FALSE;
4261 ++len;
4262 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004263 /* nothing appended: use 'ignorecase' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004264 else
4265 ic = p_ic;
4266
4267 /*
4268 * Get the second variable.
4269 */
4270 *arg = skipwhite(p + len);
4271 if (eval5(arg, &var2, evaluate) == FAIL)
4272 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004273 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274 return FAIL;
4275 }
4276
4277 if (evaluate)
4278 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004279 if (type_is && rettv->v_type != var2.v_type)
4280 {
4281 /* For "is" a different type always means FALSE, for "notis"
4282 * it means TRUE. */
4283 n1 = (type == TYPE_NEQUAL);
4284 }
4285 else if (rettv->v_type == VAR_LIST || var2.v_type == VAR_LIST)
4286 {
4287 if (type_is)
4288 {
4289 n1 = (rettv->v_type == var2.v_type
4290 && rettv->vval.v_list == var2.vval.v_list);
4291 if (type == TYPE_NEQUAL)
4292 n1 = !n1;
4293 }
4294 else if (rettv->v_type != var2.v_type
4295 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4296 {
4297 if (rettv->v_type != var2.v_type)
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004298 EMSG(_("E691: Can only compare List with List"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004299 else
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004300 EMSG(_("E692: Invalid operation for Lists"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004301 clear_tv(rettv);
4302 clear_tv(&var2);
4303 return FAIL;
4304 }
4305 else
4306 {
4307 /* Compare two Lists for being equal or unequal. */
4308 n1 = list_equal(rettv->vval.v_list, var2.vval.v_list, ic);
4309 if (type == TYPE_NEQUAL)
4310 n1 = !n1;
4311 }
4312 }
4313
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00004314 else if (rettv->v_type == VAR_DICT || var2.v_type == VAR_DICT)
4315 {
4316 if (type_is)
4317 {
4318 n1 = (rettv->v_type == var2.v_type
4319 && rettv->vval.v_dict == var2.vval.v_dict);
4320 if (type == TYPE_NEQUAL)
4321 n1 = !n1;
4322 }
4323 else if (rettv->v_type != var2.v_type
4324 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4325 {
4326 if (rettv->v_type != var2.v_type)
4327 EMSG(_("E735: Can only compare Dictionary with Dictionary"));
4328 else
4329 EMSG(_("E736: Invalid operation for Dictionary"));
4330 clear_tv(rettv);
4331 clear_tv(&var2);
4332 return FAIL;
4333 }
4334 else
4335 {
4336 /* Compare two Dictionaries for being equal or unequal. */
4337 n1 = dict_equal(rettv->vval.v_dict, var2.vval.v_dict, ic);
4338 if (type == TYPE_NEQUAL)
4339 n1 = !n1;
4340 }
4341 }
4342
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004343 else if (rettv->v_type == VAR_FUNC || var2.v_type == VAR_FUNC)
4344 {
4345 if (rettv->v_type != var2.v_type
4346 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4347 {
4348 if (rettv->v_type != var2.v_type)
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004349 EMSG(_("E693: Can only compare Funcref with Funcref"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004350 else
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004351 EMSG(_("E694: Invalid operation for Funcrefs"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004352 clear_tv(rettv);
4353 clear_tv(&var2);
4354 return FAIL;
4355 }
4356 else
4357 {
4358 /* Compare two Funcrefs for being equal or unequal. */
4359 if (rettv->vval.v_string == NULL
4360 || var2.vval.v_string == NULL)
4361 n1 = FALSE;
4362 else
4363 n1 = STRCMP(rettv->vval.v_string,
4364 var2.vval.v_string) == 0;
4365 if (type == TYPE_NEQUAL)
4366 n1 = !n1;
4367 }
4368 }
4369
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004370#ifdef FEAT_FLOAT
4371 /*
4372 * If one of the two variables is a float, compare as a float.
4373 * When using "=~" or "!~", always compare as string.
4374 */
4375 else if ((rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4376 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4377 {
4378 float_T f1, f2;
4379
4380 if (rettv->v_type == VAR_FLOAT)
4381 f1 = rettv->vval.v_float;
4382 else
4383 f1 = get_tv_number(rettv);
4384 if (var2.v_type == VAR_FLOAT)
4385 f2 = var2.vval.v_float;
4386 else
4387 f2 = get_tv_number(&var2);
4388 n1 = FALSE;
4389 switch (type)
4390 {
4391 case TYPE_EQUAL: n1 = (f1 == f2); break;
4392 case TYPE_NEQUAL: n1 = (f1 != f2); break;
4393 case TYPE_GREATER: n1 = (f1 > f2); break;
4394 case TYPE_GEQUAL: n1 = (f1 >= f2); break;
4395 case TYPE_SMALLER: n1 = (f1 < f2); break;
4396 case TYPE_SEQUAL: n1 = (f1 <= f2); break;
4397 case TYPE_UNKNOWN:
4398 case TYPE_MATCH:
4399 case TYPE_NOMATCH: break; /* avoid gcc warning */
4400 }
4401 }
4402#endif
4403
Bram Moolenaar071d4272004-06-13 20:20:40 +00004404 /*
4405 * If one of the two variables is a number, compare as a number.
4406 * When using "=~" or "!~", always compare as string.
4407 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004408 else if ((rettv->v_type == VAR_NUMBER || var2.v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4410 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004411 n1 = get_tv_number(rettv);
4412 n2 = get_tv_number(&var2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 switch (type)
4414 {
4415 case TYPE_EQUAL: n1 = (n1 == n2); break;
4416 case TYPE_NEQUAL: n1 = (n1 != n2); break;
4417 case TYPE_GREATER: n1 = (n1 > n2); break;
4418 case TYPE_GEQUAL: n1 = (n1 >= n2); break;
4419 case TYPE_SMALLER: n1 = (n1 < n2); break;
4420 case TYPE_SEQUAL: n1 = (n1 <= n2); break;
4421 case TYPE_UNKNOWN:
4422 case TYPE_MATCH:
4423 case TYPE_NOMATCH: break; /* avoid gcc warning */
4424 }
4425 }
4426 else
4427 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004428 s1 = get_tv_string_buf(rettv, buf1);
4429 s2 = get_tv_string_buf(&var2, buf2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004430 if (type != TYPE_MATCH && type != TYPE_NOMATCH)
4431 i = ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2);
4432 else
4433 i = 0;
4434 n1 = FALSE;
4435 switch (type)
4436 {
4437 case TYPE_EQUAL: n1 = (i == 0); break;
4438 case TYPE_NEQUAL: n1 = (i != 0); break;
4439 case TYPE_GREATER: n1 = (i > 0); break;
4440 case TYPE_GEQUAL: n1 = (i >= 0); break;
4441 case TYPE_SMALLER: n1 = (i < 0); break;
4442 case TYPE_SEQUAL: n1 = (i <= 0); break;
4443
4444 case TYPE_MATCH:
4445 case TYPE_NOMATCH:
4446 /* avoid 'l' flag in 'cpoptions' */
4447 save_cpo = p_cpo;
4448 p_cpo = (char_u *)"";
4449 regmatch.regprog = vim_regcomp(s2,
4450 RE_MAGIC + RE_STRING);
4451 regmatch.rm_ic = ic;
4452 if (regmatch.regprog != NULL)
4453 {
4454 n1 = vim_regexec_nl(&regmatch, s1, (colnr_T)0);
4455 vim_free(regmatch.regprog);
4456 if (type == TYPE_NOMATCH)
4457 n1 = !n1;
4458 }
4459 p_cpo = save_cpo;
4460 break;
4461
4462 case TYPE_UNKNOWN: break; /* avoid gcc warning */
4463 }
4464 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004465 clear_tv(rettv);
4466 clear_tv(&var2);
4467 rettv->v_type = VAR_NUMBER;
4468 rettv->vval.v_number = n1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469 }
4470 }
4471
4472 return OK;
4473}
4474
4475/*
4476 * Handle fourth level expression:
4477 * + number addition
4478 * - number subtraction
4479 * . string concatenation
4480 *
4481 * "arg" must point to the first non-white of the expression.
4482 * "arg" is advanced to the next non-white after the recognized expression.
4483 *
4484 * Return OK or FAIL.
4485 */
4486 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004487eval5(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004489 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490 int evaluate;
4491{
Bram Moolenaar33570922005-01-25 22:26:29 +00004492 typval_T var2;
4493 typval_T var3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 int op;
4495 long n1, n2;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004496#ifdef FEAT_FLOAT
4497 float_T f1 = 0, f2 = 0;
4498#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 char_u *s1, *s2;
4500 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4501 char_u *p;
4502
4503 /*
4504 * Get the first variable.
4505 */
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004506 if (eval6(arg, rettv, evaluate, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004507 return FAIL;
4508
4509 /*
4510 * Repeat computing, until no '+', '-' or '.' is following.
4511 */
4512 for (;;)
4513 {
4514 op = **arg;
4515 if (op != '+' && op != '-' && op != '.')
4516 break;
4517
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004518 if ((op != '+' || rettv->v_type != VAR_LIST)
4519#ifdef FEAT_FLOAT
4520 && (op == '.' || rettv->v_type != VAR_FLOAT)
4521#endif
4522 )
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004523 {
4524 /* For "list + ...", an illegal use of the first operand as
4525 * a number cannot be determined before evaluating the 2nd
4526 * operand: if this is also a list, all is ok.
4527 * For "something . ...", "something - ..." or "non-list + ...",
4528 * we know that the first operand needs to be a string or number
4529 * without evaluating the 2nd operand. So check before to avoid
4530 * side effects after an error. */
4531 if (evaluate && get_tv_string_chk(rettv) == NULL)
4532 {
4533 clear_tv(rettv);
4534 return FAIL;
4535 }
4536 }
4537
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538 /*
4539 * Get the second variable.
4540 */
4541 *arg = skipwhite(*arg + 1);
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004542 if (eval6(arg, &var2, evaluate, op == '.') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004543 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004544 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545 return FAIL;
4546 }
4547
4548 if (evaluate)
4549 {
4550 /*
4551 * Compute the result.
4552 */
4553 if (op == '.')
4554 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004555 s1 = get_tv_string_buf(rettv, buf1); /* already checked */
4556 s2 = get_tv_string_buf_chk(&var2, buf2);
4557 if (s2 == NULL) /* type error ? */
4558 {
4559 clear_tv(rettv);
4560 clear_tv(&var2);
4561 return FAIL;
4562 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00004563 p = concat_str(s1, s2);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004564 clear_tv(rettv);
4565 rettv->v_type = VAR_STRING;
4566 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00004568 else if (op == '+' && rettv->v_type == VAR_LIST
4569 && var2.v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004570 {
4571 /* concatenate Lists */
4572 if (list_concat(rettv->vval.v_list, var2.vval.v_list,
4573 &var3) == FAIL)
4574 {
4575 clear_tv(rettv);
4576 clear_tv(&var2);
4577 return FAIL;
4578 }
4579 clear_tv(rettv);
4580 *rettv = var3;
4581 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582 else
4583 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004584 int error = FALSE;
4585
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004586#ifdef FEAT_FLOAT
4587 if (rettv->v_type == VAR_FLOAT)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004588 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004589 f1 = rettv->vval.v_float;
4590 n1 = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004591 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004592 else
4593#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004594 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004595 n1 = get_tv_number_chk(rettv, &error);
4596 if (error)
4597 {
4598 /* This can only happen for "list + non-list". For
4599 * "non-list + ..." or "something - ...", we returned
4600 * before evaluating the 2nd operand. */
4601 clear_tv(rettv);
4602 return FAIL;
4603 }
4604#ifdef FEAT_FLOAT
4605 if (var2.v_type == VAR_FLOAT)
4606 f1 = n1;
4607#endif
4608 }
4609#ifdef FEAT_FLOAT
4610 if (var2.v_type == VAR_FLOAT)
4611 {
4612 f2 = var2.vval.v_float;
4613 n2 = 0;
4614 }
4615 else
4616#endif
4617 {
4618 n2 = get_tv_number_chk(&var2, &error);
4619 if (error)
4620 {
4621 clear_tv(rettv);
4622 clear_tv(&var2);
4623 return FAIL;
4624 }
4625#ifdef FEAT_FLOAT
4626 if (rettv->v_type == VAR_FLOAT)
4627 f2 = n2;
4628#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004629 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004630 clear_tv(rettv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004631
4632#ifdef FEAT_FLOAT
4633 /* If there is a float on either side the result is a float. */
4634 if (rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4635 {
4636 if (op == '+')
4637 f1 = f1 + f2;
4638 else
4639 f1 = f1 - f2;
4640 rettv->v_type = VAR_FLOAT;
4641 rettv->vval.v_float = f1;
4642 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004644#endif
4645 {
4646 if (op == '+')
4647 n1 = n1 + n2;
4648 else
4649 n1 = n1 - n2;
4650 rettv->v_type = VAR_NUMBER;
4651 rettv->vval.v_number = n1;
4652 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004654 clear_tv(&var2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655 }
4656 }
4657 return OK;
4658}
4659
4660/*
4661 * Handle fifth level expression:
4662 * * number multiplication
4663 * / number division
4664 * % number modulo
4665 *
4666 * "arg" must point to the first non-white of the expression.
4667 * "arg" is advanced to the next non-white after the recognized expression.
4668 *
4669 * Return OK or FAIL.
4670 */
4671 static int
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004672eval6(arg, rettv, evaluate, want_string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004674 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675 int evaluate;
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004676 int want_string; /* after "." operator */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677{
Bram Moolenaar33570922005-01-25 22:26:29 +00004678 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 int op;
4680 long n1, n2;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004681#ifdef FEAT_FLOAT
4682 int use_float = FALSE;
4683 float_T f1 = 0, f2;
4684#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004685 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686
4687 /*
4688 * Get the first variable.
4689 */
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004690 if (eval7(arg, rettv, evaluate, want_string) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004691 return FAIL;
4692
4693 /*
4694 * Repeat computing, until no '*', '/' or '%' is following.
4695 */
4696 for (;;)
4697 {
4698 op = **arg;
4699 if (op != '*' && op != '/' && op != '%')
4700 break;
4701
4702 if (evaluate)
4703 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004704#ifdef FEAT_FLOAT
4705 if (rettv->v_type == VAR_FLOAT)
4706 {
4707 f1 = rettv->vval.v_float;
4708 use_float = TRUE;
4709 n1 = 0;
4710 }
4711 else
4712#endif
4713 n1 = get_tv_number_chk(rettv, &error);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004714 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004715 if (error)
4716 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 }
4718 else
4719 n1 = 0;
4720
4721 /*
4722 * Get the second variable.
4723 */
4724 *arg = skipwhite(*arg + 1);
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004725 if (eval7(arg, &var2, evaluate, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 return FAIL;
4727
4728 if (evaluate)
4729 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004730#ifdef FEAT_FLOAT
4731 if (var2.v_type == VAR_FLOAT)
4732 {
4733 if (!use_float)
4734 {
4735 f1 = n1;
4736 use_float = TRUE;
4737 }
4738 f2 = var2.vval.v_float;
4739 n2 = 0;
4740 }
4741 else
4742#endif
4743 {
4744 n2 = get_tv_number_chk(&var2, &error);
4745 clear_tv(&var2);
4746 if (error)
4747 return FAIL;
4748#ifdef FEAT_FLOAT
4749 if (use_float)
4750 f2 = n2;
4751#endif
4752 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753
4754 /*
4755 * Compute the result.
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004756 * When either side is a float the result is a float.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004758#ifdef FEAT_FLOAT
4759 if (use_float)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004761 if (op == '*')
4762 f1 = f1 * f2;
4763 else if (op == '/')
4764 {
4765 /* We rely on the floating point library to handle divide
4766 * by zero to result in "inf" and not a crash. */
4767 f1 = f1 / f2;
4768 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004770 {
Bram Moolenaar1378fca2008-07-04 16:51:55 +00004771 EMSG(_("E804: Cannot use '%' with Float"));
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004772 return FAIL;
4773 }
4774 rettv->v_type = VAR_FLOAT;
4775 rettv->vval.v_float = f1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776 }
4777 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004778#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004780 if (op == '*')
4781 n1 = n1 * n2;
4782 else if (op == '/')
4783 {
4784 if (n2 == 0) /* give an error message? */
4785 {
4786 if (n1 == 0)
4787 n1 = -0x7fffffffL - 1L; /* similar to NaN */
4788 else if (n1 < 0)
4789 n1 = -0x7fffffffL;
4790 else
4791 n1 = 0x7fffffffL;
4792 }
4793 else
4794 n1 = n1 / n2;
4795 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004797 {
4798 if (n2 == 0) /* give an error message? */
4799 n1 = 0;
4800 else
4801 n1 = n1 % n2;
4802 }
4803 rettv->v_type = VAR_NUMBER;
4804 rettv->vval.v_number = n1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806 }
4807 }
4808
4809 return OK;
4810}
4811
4812/*
4813 * Handle sixth level expression:
4814 * number number constant
Bram Moolenaarbae0c162007-05-10 19:30:25 +00004815 * "string" string constant
4816 * 'string' literal string constant
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817 * &option-name option value
4818 * @r register contents
4819 * identifier variable value
4820 * function() function call
4821 * $VAR environment variable
4822 * (expression) nested expression
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00004823 * [expr, expr] List
4824 * {key: val, key: val} Dictionary
Bram Moolenaar071d4272004-06-13 20:20:40 +00004825 *
4826 * Also handle:
4827 * ! in front logical NOT
4828 * - in front unary minus
4829 * + in front unary plus (ignored)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004830 * trailing [] subscript in String or List
4831 * trailing .name entry in Dictionary
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832 *
4833 * "arg" must point to the first non-white of the expression.
4834 * "arg" is advanced to the next non-white after the recognized expression.
4835 *
4836 * Return OK or FAIL.
4837 */
4838 static int
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004839eval7(arg, rettv, evaluate, want_string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004841 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842 int evaluate;
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004843 int want_string; /* after "." operator */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845 long n;
4846 int len;
4847 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004848 char_u *start_leader, *end_leader;
4849 int ret = OK;
4850 char_u *alias;
4851
4852 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004853 * Initialise variable so that clear_tv() can't mistake this for a
Bram Moolenaar49cd9572005-01-03 21:06:01 +00004854 * string and free a string that isn't there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004856 rettv->v_type = VAR_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004857
4858 /*
4859 * Skip '!' and '-' characters. They are handled later.
4860 */
4861 start_leader = *arg;
4862 while (**arg == '!' || **arg == '-' || **arg == '+')
4863 *arg = skipwhite(*arg + 1);
4864 end_leader = *arg;
4865
4866 switch (**arg)
4867 {
4868 /*
4869 * Number constant.
4870 */
4871 case '0':
4872 case '1':
4873 case '2':
4874 case '3':
4875 case '4':
4876 case '5':
4877 case '6':
4878 case '7':
4879 case '8':
4880 case '9':
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004881 {
4882#ifdef FEAT_FLOAT
4883 char_u *p = skipdigits(*arg + 1);
4884 int get_float = FALSE;
4885
4886 /* We accept a float when the format matches
4887 * "[0-9]\+\.[0-9]\+\([eE][+-]\?[0-9]\+\)\?". This is very
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004888 * strict to avoid backwards compatibility problems.
4889 * Don't look for a float after the "." operator, so that
4890 * ":let vers = 1.2.3" doesn't fail. */
4891 if (!want_string && p[0] == '.' && vim_isdigit(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004892 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004893 get_float = TRUE;
4894 p = skipdigits(p + 2);
4895 if (*p == 'e' || *p == 'E')
4896 {
4897 ++p;
4898 if (*p == '-' || *p == '+')
4899 ++p;
4900 if (!vim_isdigit(*p))
4901 get_float = FALSE;
4902 else
4903 p = skipdigits(p + 1);
4904 }
4905 if (ASCII_ISALPHA(*p) || *p == '.')
4906 get_float = FALSE;
4907 }
4908 if (get_float)
4909 {
4910 float_T f;
4911
4912 *arg += string2float(*arg, &f);
4913 if (evaluate)
4914 {
4915 rettv->v_type = VAR_FLOAT;
4916 rettv->vval.v_float = f;
4917 }
4918 }
4919 else
4920#endif
4921 {
4922 vim_str2nr(*arg, NULL, &len, TRUE, TRUE, &n, NULL);
4923 *arg += len;
4924 if (evaluate)
4925 {
4926 rettv->v_type = VAR_NUMBER;
4927 rettv->vval.v_number = n;
4928 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 }
4930 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004931 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932
4933 /*
4934 * String constant: "string".
4935 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004936 case '"': ret = get_string_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 break;
4938
4939 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00004940 * Literal string constant: 'str''ing'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004942 case '\'': ret = get_lit_string_tv(arg, rettv, evaluate);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00004943 break;
4944
4945 /*
4946 * List: [expr, expr]
4947 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004948 case '[': ret = get_list_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 break;
4950
4951 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00004952 * Dictionary: {key: val, key: val}
4953 */
4954 case '{': ret = get_dict_tv(arg, rettv, evaluate);
4955 break;
4956
4957 /*
Bram Moolenaare9a41262005-01-15 22:18:47 +00004958 * Option value: &name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 */
Bram Moolenaare9a41262005-01-15 22:18:47 +00004960 case '&': ret = get_option_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961 break;
4962
4963 /*
4964 * Environment variable: $VAR.
4965 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004966 case '$': ret = get_env_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 break;
4968
4969 /*
4970 * Register contents: @r.
4971 */
4972 case '@': ++*arg;
4973 if (evaluate)
4974 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004975 rettv->v_type = VAR_STRING;
Bram Moolenaar92124a32005-06-17 22:03:40 +00004976 rettv->vval.v_string = get_reg_contents(**arg, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 }
4978 if (**arg != NUL)
4979 ++*arg;
4980 break;
4981
4982 /*
4983 * nested expression: (expression).
4984 */
4985 case '(': *arg = skipwhite(*arg + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004986 ret = eval1(arg, rettv, evaluate); /* recursive! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 if (**arg == ')')
4988 ++*arg;
4989 else if (ret == OK)
4990 {
4991 EMSG(_("E110: Missing ')'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004992 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004993 ret = FAIL;
4994 }
4995 break;
4996
Bram Moolenaar8c711452005-01-14 21:53:12 +00004997 default: ret = NOTDONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 break;
4999 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005000
5001 if (ret == NOTDONE)
5002 {
5003 /*
5004 * Must be a variable or function name.
5005 * Can also be a curly-braces kind of name: {expr}.
5006 */
5007 s = *arg;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005008 len = get_name_len(arg, &alias, evaluate, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005009 if (alias != NULL)
5010 s = alias;
5011
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005012 if (len <= 0)
Bram Moolenaar8c711452005-01-14 21:53:12 +00005013 ret = FAIL;
5014 else
5015 {
5016 if (**arg == '(') /* recursive! */
5017 {
5018 /* If "s" is the name of a variable of type VAR_FUNC
5019 * use its contents. */
5020 s = deref_func_name(s, &len);
5021
5022 /* Invoke the function. */
5023 ret = get_func_tv(s, len, rettv, arg,
5024 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
Bram Moolenaare9a41262005-01-15 22:18:47 +00005025 &len, evaluate, NULL);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005026 /* Stop the expression evaluation when immediately
5027 * aborting on error, or when an interrupt occurred or
5028 * an exception was thrown but not caught. */
5029 if (aborting())
5030 {
5031 if (ret == OK)
5032 clear_tv(rettv);
5033 ret = FAIL;
5034 }
5035 }
5036 else if (evaluate)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005037 ret = get_var_tv(s, len, rettv, TRUE);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005038 else
5039 ret = OK;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005040 }
5041
5042 if (alias != NULL)
5043 vim_free(alias);
5044 }
5045
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046 *arg = skipwhite(*arg);
5047
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005048 /* Handle following '[', '(' and '.' for expr[expr], expr.name,
5049 * expr(expr). */
5050 if (ret == OK)
5051 ret = handle_subscript(arg, rettv, evaluate, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052
5053 /*
5054 * Apply logical NOT and unary '-', from right to left, ignore '+'.
5055 */
5056 if (ret == OK && evaluate && end_leader > start_leader)
5057 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005058 int error = FALSE;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005059 int val = 0;
5060#ifdef FEAT_FLOAT
5061 float_T f = 0.0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005062
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005063 if (rettv->v_type == VAR_FLOAT)
5064 f = rettv->vval.v_float;
5065 else
5066#endif
5067 val = get_tv_number_chk(rettv, &error);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005068 if (error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005069 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005070 clear_tv(rettv);
5071 ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005073 else
5074 {
5075 while (end_leader > start_leader)
5076 {
5077 --end_leader;
5078 if (*end_leader == '!')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005079 {
5080#ifdef FEAT_FLOAT
5081 if (rettv->v_type == VAR_FLOAT)
5082 f = !f;
5083 else
5084#endif
5085 val = !val;
5086 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005087 else if (*end_leader == '-')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005088 {
5089#ifdef FEAT_FLOAT
5090 if (rettv->v_type == VAR_FLOAT)
5091 f = -f;
5092 else
5093#endif
5094 val = -val;
5095 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005096 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005097#ifdef FEAT_FLOAT
5098 if (rettv->v_type == VAR_FLOAT)
5099 {
5100 clear_tv(rettv);
5101 rettv->vval.v_float = f;
5102 }
5103 else
5104#endif
5105 {
5106 clear_tv(rettv);
5107 rettv->v_type = VAR_NUMBER;
5108 rettv->vval.v_number = val;
5109 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005110 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111 }
5112
5113 return ret;
5114}
5115
5116/*
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005117 * Evaluate an "[expr]" or "[expr:expr]" index. Also "dict.key".
5118 * "*arg" points to the '[' or '.'.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005119 * Returns FAIL or OK. "*arg" is advanced to after the ']'.
5120 */
5121 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005122eval_index(arg, rettv, evaluate, verbose)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005123 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005124 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005125 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005126 int verbose; /* give error messages */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005127{
5128 int empty1 = FALSE, empty2 = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00005129 typval_T var1, var2;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005130 long n1, n2 = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005131 long len = -1;
5132 int range = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005133 char_u *s;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005134 char_u *key = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005135
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005136 if (rettv->v_type == VAR_FUNC
5137#ifdef FEAT_FLOAT
5138 || rettv->v_type == VAR_FLOAT
5139#endif
5140 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005141 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005142 if (verbose)
5143 EMSG(_("E695: Cannot index a Funcref"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005144 return FAIL;
5145 }
5146
Bram Moolenaar8c711452005-01-14 21:53:12 +00005147 if (**arg == '.')
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005148 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005149 /*
5150 * dict.name
5151 */
5152 key = *arg + 1;
5153 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
5154 ;
5155 if (len == 0)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005156 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005157 *arg = skipwhite(key + len);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005158 }
5159 else
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005160 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005161 /*
5162 * something[idx]
5163 *
5164 * Get the (first) variable from inside the [].
5165 */
5166 *arg = skipwhite(*arg + 1);
5167 if (**arg == ':')
5168 empty1 = TRUE;
5169 else if (eval1(arg, &var1, evaluate) == FAIL) /* recursive! */
5170 return FAIL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005171 else if (evaluate && get_tv_string_chk(&var1) == NULL)
5172 {
5173 /* not a number or string */
5174 clear_tv(&var1);
5175 return FAIL;
5176 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005177
5178 /*
5179 * Get the second variable from inside the [:].
5180 */
5181 if (**arg == ':')
5182 {
5183 range = TRUE;
5184 *arg = skipwhite(*arg + 1);
5185 if (**arg == ']')
5186 empty2 = TRUE;
5187 else if (eval1(arg, &var2, evaluate) == FAIL) /* recursive! */
5188 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005189 if (!empty1)
5190 clear_tv(&var1);
5191 return FAIL;
5192 }
5193 else if (evaluate && get_tv_string_chk(&var2) == NULL)
5194 {
5195 /* not a number or string */
5196 if (!empty1)
5197 clear_tv(&var1);
5198 clear_tv(&var2);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005199 return FAIL;
5200 }
5201 }
5202
5203 /* Check for the ']'. */
5204 if (**arg != ']')
5205 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005206 if (verbose)
5207 EMSG(_(e_missbrac));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005208 clear_tv(&var1);
5209 if (range)
5210 clear_tv(&var2);
5211 return FAIL;
5212 }
5213 *arg = skipwhite(*arg + 1); /* skip the ']' */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005214 }
5215
5216 if (evaluate)
5217 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005218 n1 = 0;
5219 if (!empty1 && rettv->v_type != VAR_DICT)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005220 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005221 n1 = get_tv_number(&var1);
5222 clear_tv(&var1);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005223 }
5224 if (range)
5225 {
5226 if (empty2)
5227 n2 = -1;
5228 else
5229 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005230 n2 = get_tv_number(&var2);
5231 clear_tv(&var2);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005232 }
5233 }
5234
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005235 switch (rettv->v_type)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005236 {
5237 case VAR_NUMBER:
5238 case VAR_STRING:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005239 s = get_tv_string(rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005240 len = (long)STRLEN(s);
5241 if (range)
5242 {
5243 /* The resulting variable is a substring. If the indexes
5244 * are out of range the result is empty. */
5245 if (n1 < 0)
5246 {
5247 n1 = len + n1;
5248 if (n1 < 0)
5249 n1 = 0;
5250 }
5251 if (n2 < 0)
5252 n2 = len + n2;
5253 else if (n2 >= len)
5254 n2 = len;
5255 if (n1 >= len || n2 < 0 || n1 > n2)
5256 s = NULL;
5257 else
5258 s = vim_strnsave(s + n1, (int)(n2 - n1 + 1));
5259 }
5260 else
5261 {
5262 /* The resulting variable is a string of a single
5263 * character. If the index is too big or negative the
5264 * result is empty. */
5265 if (n1 >= len || n1 < 0)
5266 s = NULL;
5267 else
5268 s = vim_strnsave(s + n1, 1);
5269 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005270 clear_tv(rettv);
5271 rettv->v_type = VAR_STRING;
5272 rettv->vval.v_string = s;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005273 break;
5274
5275 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005276 len = list_len(rettv->vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005277 if (n1 < 0)
5278 n1 = len + n1;
5279 if (!empty1 && (n1 < 0 || n1 >= len))
5280 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005281 /* For a range we allow invalid values and return an empty
5282 * list. A list index out of range is an error. */
5283 if (!range)
5284 {
5285 if (verbose)
5286 EMSGN(_(e_listidx), n1);
5287 return FAIL;
5288 }
5289 n1 = len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005290 }
5291 if (range)
5292 {
Bram Moolenaar33570922005-01-25 22:26:29 +00005293 list_T *l;
5294 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005295
5296 if (n2 < 0)
5297 n2 = len + n2;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005298 else if (n2 >= len)
5299 n2 = len - 1;
5300 if (!empty2 && (n2 < 0 || n2 + 1 < n1))
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005301 n2 = -1;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005302 l = list_alloc();
5303 if (l == NULL)
5304 return FAIL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005305 for (item = list_find(rettv->vval.v_list, n1);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005306 n1 <= n2; ++n1)
5307 {
5308 if (list_append_tv(l, &item->li_tv) == FAIL)
5309 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00005310 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005311 return FAIL;
5312 }
5313 item = item->li_next;
5314 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005315 clear_tv(rettv);
5316 rettv->v_type = VAR_LIST;
5317 rettv->vval.v_list = l;
Bram Moolenaar0d660222005-01-07 21:51:51 +00005318 ++l->lv_refcount;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005319 }
5320 else
5321 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005322 copy_tv(&list_find(rettv->vval.v_list, n1)->li_tv, &var1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005323 clear_tv(rettv);
5324 *rettv = var1;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005325 }
5326 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005327
5328 case VAR_DICT:
5329 if (range)
5330 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005331 if (verbose)
5332 EMSG(_(e_dictrange));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005333 if (len == -1)
5334 clear_tv(&var1);
5335 return FAIL;
5336 }
5337 {
Bram Moolenaar33570922005-01-25 22:26:29 +00005338 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005339
5340 if (len == -1)
5341 {
5342 key = get_tv_string(&var1);
5343 if (*key == NUL)
5344 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005345 if (verbose)
5346 EMSG(_(e_emptykey));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005347 clear_tv(&var1);
5348 return FAIL;
5349 }
5350 }
5351
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005352 item = dict_find(rettv->vval.v_dict, key, (int)len);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005353
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005354 if (item == NULL && verbose)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005355 EMSG2(_(e_dictkey), key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005356 if (len == -1)
5357 clear_tv(&var1);
5358 if (item == NULL)
5359 return FAIL;
5360
5361 copy_tv(&item->di_tv, &var1);
5362 clear_tv(rettv);
5363 *rettv = var1;
5364 }
5365 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005366 }
5367 }
5368
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005369 return OK;
5370}
5371
5372/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373 * Get an option value.
5374 * "arg" points to the '&' or '+' before the option name.
5375 * "arg" is advanced to character after the option name.
5376 * Return OK or FAIL.
5377 */
5378 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005379get_option_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005380 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005381 typval_T *rettv; /* when NULL, only check if option exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005382 int evaluate;
5383{
5384 char_u *option_end;
5385 long numval;
5386 char_u *stringval;
5387 int opt_type;
5388 int c;
5389 int working = (**arg == '+'); /* has("+option") */
5390 int ret = OK;
5391 int opt_flags;
5392
5393 /*
5394 * Isolate the option name and find its value.
5395 */
5396 option_end = find_option_end(arg, &opt_flags);
5397 if (option_end == NULL)
5398 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005399 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400 EMSG2(_("E112: Option name missing: %s"), *arg);
5401 return FAIL;
5402 }
5403
5404 if (!evaluate)
5405 {
5406 *arg = option_end;
5407 return OK;
5408 }
5409
5410 c = *option_end;
5411 *option_end = NUL;
5412 opt_type = get_option_value(*arg, &numval,
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005413 rettv == NULL ? NULL : &stringval, opt_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414
5415 if (opt_type == -3) /* invalid name */
5416 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005417 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 EMSG2(_("E113: Unknown option: %s"), *arg);
5419 ret = FAIL;
5420 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005421 else if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422 {
5423 if (opt_type == -2) /* hidden string option */
5424 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005425 rettv->v_type = VAR_STRING;
5426 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427 }
5428 else if (opt_type == -1) /* hidden number option */
5429 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005430 rettv->v_type = VAR_NUMBER;
5431 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432 }
5433 else if (opt_type == 1) /* number option */
5434 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005435 rettv->v_type = VAR_NUMBER;
5436 rettv->vval.v_number = numval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437 }
5438 else /* string option */
5439 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005440 rettv->v_type = VAR_STRING;
5441 rettv->vval.v_string = stringval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442 }
5443 }
5444 else if (working && (opt_type == -2 || opt_type == -1))
5445 ret = FAIL;
5446
5447 *option_end = c; /* put back for error messages */
5448 *arg = option_end;
5449
5450 return ret;
5451}
5452
5453/*
5454 * Allocate a variable for a string constant.
5455 * Return OK or FAIL.
5456 */
5457 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005458get_string_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005459 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005460 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461 int evaluate;
5462{
5463 char_u *p;
5464 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005465 int extra = 0;
5466
5467 /*
5468 * Find the end of the string, skipping backslashed characters.
5469 */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005470 for (p = *arg + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 {
5472 if (*p == '\\' && p[1] != NUL)
5473 {
5474 ++p;
5475 /* A "\<x>" form occupies at least 4 characters, and produces up
5476 * to 6 characters: reserve space for 2 extra */
5477 if (*p == '<')
5478 extra += 2;
5479 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480 }
5481
5482 if (*p != '"')
5483 {
5484 EMSG2(_("E114: Missing quote: %s"), *arg);
5485 return FAIL;
5486 }
5487
5488 /* If only parsing, set *arg and return here */
5489 if (!evaluate)
5490 {
5491 *arg = p + 1;
5492 return OK;
5493 }
5494
5495 /*
5496 * Copy the string into allocated memory, handling backslashed
5497 * characters.
5498 */
5499 name = alloc((unsigned)(p - *arg + extra));
5500 if (name == NULL)
5501 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005502 rettv->v_type = VAR_STRING;
5503 rettv->vval.v_string = name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005504
Bram Moolenaar8c711452005-01-14 21:53:12 +00005505 for (p = *arg + 1; *p != NUL && *p != '"'; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506 {
5507 if (*p == '\\')
5508 {
5509 switch (*++p)
5510 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005511 case 'b': *name++ = BS; ++p; break;
5512 case 'e': *name++ = ESC; ++p; break;
5513 case 'f': *name++ = FF; ++p; break;
5514 case 'n': *name++ = NL; ++p; break;
5515 case 'r': *name++ = CAR; ++p; break;
5516 case 't': *name++ = TAB; ++p; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005517
5518 case 'X': /* hex: "\x1", "\x12" */
5519 case 'x':
5520 case 'u': /* Unicode: "\u0023" */
5521 case 'U':
5522 if (vim_isxdigit(p[1]))
5523 {
5524 int n, nr;
5525 int c = toupper(*p);
5526
5527 if (c == 'X')
5528 n = 2;
5529 else
5530 n = 4;
5531 nr = 0;
5532 while (--n >= 0 && vim_isxdigit(p[1]))
5533 {
5534 ++p;
5535 nr = (nr << 4) + hex2nr(*p);
5536 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005537 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538#ifdef FEAT_MBYTE
5539 /* For "\u" store the number according to
5540 * 'encoding'. */
5541 if (c != 'X')
Bram Moolenaar8c711452005-01-14 21:53:12 +00005542 name += (*mb_char2bytes)(nr, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543 else
5544#endif
Bram Moolenaar8c711452005-01-14 21:53:12 +00005545 *name++ = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547 break;
5548
5549 /* octal: "\1", "\12", "\123" */
5550 case '0':
5551 case '1':
5552 case '2':
5553 case '3':
5554 case '4':
5555 case '5':
5556 case '6':
Bram Moolenaar8c711452005-01-14 21:53:12 +00005557 case '7': *name = *p++ - '0';
5558 if (*p >= '0' && *p <= '7')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005560 *name = (*name << 3) + *p++ - '0';
5561 if (*p >= '0' && *p <= '7')
5562 *name = (*name << 3) + *p++ - '0';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005564 ++name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565 break;
5566
5567 /* Special key, e.g.: "\<C-W>" */
Bram Moolenaar8c711452005-01-14 21:53:12 +00005568 case '<': extra = trans_special(&p, name, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569 if (extra != 0)
5570 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005571 name += extra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572 break;
5573 }
5574 /* FALLTHROUGH */
5575
Bram Moolenaar8c711452005-01-14 21:53:12 +00005576 default: MB_COPY_CHAR(p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005577 break;
5578 }
5579 }
5580 else
Bram Moolenaar8c711452005-01-14 21:53:12 +00005581 MB_COPY_CHAR(p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005582
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005584 *name = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585 *arg = p + 1;
5586
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587 return OK;
5588}
5589
5590/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005591 * Allocate a variable for a 'str''ing' constant.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 * Return OK or FAIL.
5593 */
5594 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005595get_lit_string_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005597 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598 int evaluate;
5599{
5600 char_u *p;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005601 char_u *str;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005602 int reduce = 0;
5603
5604 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005605 * Find the end of the string, skipping ''.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005606 */
5607 for (p = *arg + 1; *p != NUL; mb_ptr_adv(p))
5608 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005609 if (*p == '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005610 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005611 if (p[1] != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005612 break;
5613 ++reduce;
5614 ++p;
5615 }
5616 }
5617
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 EMSG2(_("E115: Missing quote: %s"), *arg);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005621 return FAIL;
5622 }
5623
Bram Moolenaar8c711452005-01-14 21:53:12 +00005624 /* If only parsing return after setting "*arg" */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005625 if (!evaluate)
5626 {
5627 *arg = p + 1;
5628 return OK;
5629 }
5630
5631 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005632 * Copy the string into allocated memory, handling '' to ' reduction.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005633 */
5634 str = alloc((unsigned)((p - *arg) - reduce));
5635 if (str == NULL)
5636 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005637 rettv->v_type = VAR_STRING;
5638 rettv->vval.v_string = str;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005639
Bram Moolenaar8c711452005-01-14 21:53:12 +00005640 for (p = *arg + 1; *p != NUL; )
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005641 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005642 if (*p == '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005643 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005644 if (p[1] != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005645 break;
5646 ++p;
5647 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005648 MB_COPY_CHAR(p, str);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005649 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005650 *str = NUL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005651 *arg = p + 1;
5652
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005653 return OK;
5654}
5655
5656/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005657 * Allocate a variable for a List and fill it from "*arg".
5658 * Return OK or FAIL.
5659 */
5660 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005661get_list_tv(arg, rettv, evaluate)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005662 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005663 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005664 int evaluate;
5665{
Bram Moolenaar33570922005-01-25 22:26:29 +00005666 list_T *l = NULL;
5667 typval_T tv;
5668 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005669
5670 if (evaluate)
5671 {
5672 l = list_alloc();
5673 if (l == NULL)
5674 return FAIL;
5675 }
5676
5677 *arg = skipwhite(*arg + 1);
5678 while (**arg != ']' && **arg != NUL)
5679 {
5680 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
5681 goto failret;
5682 if (evaluate)
5683 {
5684 item = listitem_alloc();
5685 if (item != NULL)
5686 {
5687 item->li_tv = tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00005688 item->li_tv.v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005689 list_append(l, item);
5690 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005691 else
5692 clear_tv(&tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005693 }
5694
5695 if (**arg == ']')
5696 break;
5697 if (**arg != ',')
5698 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005699 EMSG2(_("E696: Missing comma in List: %s"), *arg);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005700 goto failret;
5701 }
5702 *arg = skipwhite(*arg + 1);
5703 }
5704
5705 if (**arg != ']')
5706 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005707 EMSG2(_("E697: Missing end of List ']': %s"), *arg);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005708failret:
5709 if (evaluate)
Bram Moolenaar685295c2006-10-15 20:37:38 +00005710 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005711 return FAIL;
5712 }
5713
5714 *arg = skipwhite(*arg + 1);
5715 if (evaluate)
5716 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005717 rettv->v_type = VAR_LIST;
5718 rettv->vval.v_list = l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005719 ++l->lv_refcount;
5720 }
5721
5722 return OK;
5723}
5724
5725/*
5726 * Allocate an empty header for a list.
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00005727 * Caller should take care of the reference count.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005728 */
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00005729 list_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005730list_alloc()
5731{
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00005732 list_T *l;
5733
5734 l = (list_T *)alloc_clear(sizeof(list_T));
5735 if (l != NULL)
5736 {
5737 /* Prepend the list to the list of lists for garbage collection. */
5738 if (first_list != NULL)
5739 first_list->lv_used_prev = l;
5740 l->lv_used_prev = NULL;
5741 l->lv_used_next = first_list;
5742 first_list = l;
5743 }
5744 return l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005745}
5746
5747/*
Bram Moolenaareddf53b2006-02-27 00:11:10 +00005748 * Allocate an empty list for a return value.
5749 * Returns OK or FAIL.
5750 */
5751 static int
5752rettv_list_alloc(rettv)
5753 typval_T *rettv;
5754{
5755 list_T *l = list_alloc();
5756
5757 if (l == NULL)
5758 return FAIL;
5759
5760 rettv->vval.v_list = l;
5761 rettv->v_type = VAR_LIST;
5762 ++l->lv_refcount;
5763 return OK;
5764}
5765
5766/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005767 * Unreference a list: decrement the reference count and free it when it
5768 * becomes zero.
5769 */
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00005770 void
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005771list_unref(l)
Bram Moolenaar33570922005-01-25 22:26:29 +00005772 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005773{
Bram Moolenaar685295c2006-10-15 20:37:38 +00005774 if (l != NULL && --l->lv_refcount <= 0)
5775 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005776}
5777
5778/*
5779 * Free a list, including all items it points to.
5780 * Ignores the reference count.
5781 */
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00005782 void
Bram Moolenaar685295c2006-10-15 20:37:38 +00005783list_free(l, recurse)
5784 list_T *l;
5785 int recurse; /* Free Lists and Dictionaries recursively. */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005786{
Bram Moolenaar33570922005-01-25 22:26:29 +00005787 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005788
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00005789 /* Remove the list from the list of lists for garbage collection. */
5790 if (l->lv_used_prev == NULL)
5791 first_list = l->lv_used_next;
5792 else
5793 l->lv_used_prev->lv_used_next = l->lv_used_next;
5794 if (l->lv_used_next != NULL)
5795 l->lv_used_next->lv_used_prev = l->lv_used_prev;
5796
Bram Moolenaard9fba312005-06-26 22:34:35 +00005797 for (item = l->lv_first; item != NULL; item = l->lv_first)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005798 {
Bram Moolenaard9fba312005-06-26 22:34:35 +00005799 /* Remove the item before deleting it. */
5800 l->lv_first = item->li_next;
Bram Moolenaar685295c2006-10-15 20:37:38 +00005801 if (recurse || (item->li_tv.v_type != VAR_LIST
5802 && item->li_tv.v_type != VAR_DICT))
5803 clear_tv(&item->li_tv);
5804 vim_free(item);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005805 }
5806 vim_free(l);
5807}
5808
5809/*
5810 * Allocate a list item.
5811 */
Bram Moolenaar33570922005-01-25 22:26:29 +00005812 static listitem_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005813listitem_alloc()
5814{
Bram Moolenaar33570922005-01-25 22:26:29 +00005815 return (listitem_T *)alloc(sizeof(listitem_T));
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005816}
5817
5818/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00005819 * Free a list item. Also clears the value. Does not notify watchers.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005820 */
5821 static void
5822listitem_free(item)
Bram Moolenaar33570922005-01-25 22:26:29 +00005823 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005824{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005825 clear_tv(&item->li_tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005826 vim_free(item);
5827}
5828
5829/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00005830 * Remove a list item from a List and free it. Also clears the value.
5831 */
5832 static void
5833listitem_remove(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00005834 list_T *l;
5835 listitem_T *item;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00005836{
5837 list_remove(l, item, item);
5838 listitem_free(item);
5839}
5840
5841/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005842 * Get the number of items in a list.
5843 */
5844 static long
5845list_len(l)
Bram Moolenaar33570922005-01-25 22:26:29 +00005846 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005847{
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005848 if (l == NULL)
5849 return 0L;
Bram Moolenaar758711c2005-02-02 23:11:38 +00005850 return l->lv_len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005851}
5852
5853/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005854 * Return TRUE when two lists have exactly the same values.
5855 */
5856 static int
5857list_equal(l1, l2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005858 list_T *l1;
5859 list_T *l2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005860 int ic; /* ignore case for strings */
5861{
Bram Moolenaar33570922005-01-25 22:26:29 +00005862 listitem_T *item1, *item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005863
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00005864 if (l1 == NULL || l2 == NULL)
5865 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005866 if (l1 == l2)
5867 return TRUE;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005868 if (list_len(l1) != list_len(l2))
5869 return FALSE;
5870
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005871 for (item1 = l1->lv_first, item2 = l2->lv_first;
5872 item1 != NULL && item2 != NULL;
5873 item1 = item1->li_next, item2 = item2->li_next)
5874 if (!tv_equal(&item1->li_tv, &item2->li_tv, ic))
5875 return FALSE;
5876 return item1 == NULL && item2 == NULL;
5877}
5878
Bram Moolenaar3fac56e2010-02-24 15:48:04 +01005879#if defined(FEAT_RUBY) || defined(FEAT_PYTHON) || defined(FEAT_MZSCHEME) \
5880 || defined(PROTO)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005881/*
5882 * Return the dictitem that an entry in a hashtable points to.
5883 */
5884 dictitem_T *
5885dict_lookup(hi)
5886 hashitem_T *hi;
5887{
5888 return HI2DI(hi);
5889}
5890#endif
5891
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005892/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005893 * Return TRUE when two dictionaries have exactly the same key/values.
5894 */
5895 static int
5896dict_equal(d1, d2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005897 dict_T *d1;
5898 dict_T *d2;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005899 int ic; /* ignore case for strings */
5900{
Bram Moolenaar33570922005-01-25 22:26:29 +00005901 hashitem_T *hi;
5902 dictitem_T *item2;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005903 int todo;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005904
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00005905 if (d1 == NULL || d2 == NULL)
5906 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005907 if (d1 == d2)
5908 return TRUE;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005909 if (dict_len(d1) != dict_len(d2))
5910 return FALSE;
5911
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005912 todo = (int)d1->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00005913 for (hi = d1->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005914 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005915 if (!HASHITEM_EMPTY(hi))
5916 {
5917 item2 = dict_find(d2, hi->hi_key, -1);
5918 if (item2 == NULL)
5919 return FALSE;
5920 if (!tv_equal(&HI2DI(hi)->di_tv, &item2->di_tv, ic))
5921 return FALSE;
5922 --todo;
5923 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005924 }
5925 return TRUE;
5926}
5927
5928/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005929 * Return TRUE if "tv1" and "tv2" have the same value.
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005930 * Compares the items just like "==" would compare them, but strings and
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005931 * numbers are different. Floats and numbers are also different.
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005932 */
5933 static int
5934tv_equal(tv1, tv2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005935 typval_T *tv1;
5936 typval_T *tv2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005937 int ic; /* ignore case */
5938{
5939 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005940 char_u *s1, *s2;
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005941 static int recursive = 0; /* cach recursive loops */
5942 int r;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005943
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005944 if (tv1->v_type != tv2->v_type)
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005945 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005946 /* Catch lists and dicts that have an endless loop by limiting
5947 * recursiveness to 1000. We guess they are equal then. */
5948 if (recursive >= 1000)
5949 return TRUE;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005950
5951 switch (tv1->v_type)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005952 {
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005953 case VAR_LIST:
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005954 ++recursive;
5955 r = list_equal(tv1->vval.v_list, tv2->vval.v_list, ic);
5956 --recursive;
5957 return r;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005958
5959 case VAR_DICT:
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005960 ++recursive;
5961 r = dict_equal(tv1->vval.v_dict, tv2->vval.v_dict, ic);
5962 --recursive;
5963 return r;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005964
5965 case VAR_FUNC:
5966 return (tv1->vval.v_string != NULL
5967 && tv2->vval.v_string != NULL
5968 && STRCMP(tv1->vval.v_string, tv2->vval.v_string) == 0);
5969
5970 case VAR_NUMBER:
5971 return tv1->vval.v_number == tv2->vval.v_number;
5972
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005973#ifdef FEAT_FLOAT
5974 case VAR_FLOAT:
5975 return tv1->vval.v_float == tv2->vval.v_float;
5976#endif
5977
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005978 case VAR_STRING:
5979 s1 = get_tv_string_buf(tv1, buf1);
5980 s2 = get_tv_string_buf(tv2, buf2);
5981 return ((ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2)) == 0);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005982 }
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005983
5984 EMSG2(_(e_intern2), "tv_equal()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005985 return TRUE;
5986}
5987
5988/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005989 * Locate item with index "n" in list "l" and return it.
5990 * A negative index is counted from the end; -1 is the last item.
5991 * Returns NULL when "n" is out of range.
5992 */
Bram Moolenaar33570922005-01-25 22:26:29 +00005993 static listitem_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005994list_find(l, n)
Bram Moolenaar33570922005-01-25 22:26:29 +00005995 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005996 long n;
5997{
Bram Moolenaar33570922005-01-25 22:26:29 +00005998 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005999 long idx;
6000
6001 if (l == NULL)
6002 return NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006003
6004 /* Negative index is relative to the end. */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006005 if (n < 0)
Bram Moolenaar758711c2005-02-02 23:11:38 +00006006 n = l->lv_len + n;
6007
6008 /* Check for index out of range. */
6009 if (n < 0 || n >= l->lv_len)
6010 return NULL;
6011
6012 /* When there is a cached index may start search from there. */
6013 if (l->lv_idx_item != NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006014 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006015 if (n < l->lv_idx / 2)
6016 {
6017 /* closest to the start of the list */
6018 item = l->lv_first;
6019 idx = 0;
6020 }
6021 else if (n > (l->lv_idx + l->lv_len) / 2)
6022 {
6023 /* closest to the end of the list */
6024 item = l->lv_last;
6025 idx = l->lv_len - 1;
6026 }
6027 else
6028 {
6029 /* closest to the cached index */
6030 item = l->lv_idx_item;
6031 idx = l->lv_idx;
6032 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006033 }
6034 else
6035 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006036 if (n < l->lv_len / 2)
6037 {
6038 /* closest to the start of the list */
6039 item = l->lv_first;
6040 idx = 0;
6041 }
6042 else
6043 {
6044 /* closest to the end of the list */
6045 item = l->lv_last;
6046 idx = l->lv_len - 1;
6047 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006048 }
Bram Moolenaar758711c2005-02-02 23:11:38 +00006049
6050 while (n > idx)
6051 {
6052 /* search forward */
6053 item = item->li_next;
6054 ++idx;
6055 }
6056 while (n < idx)
6057 {
6058 /* search backward */
6059 item = item->li_prev;
6060 --idx;
6061 }
6062
6063 /* cache the used index */
6064 l->lv_idx = idx;
6065 l->lv_idx_item = item;
6066
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006067 return item;
6068}
6069
6070/*
Bram Moolenaara5525202006-03-02 22:52:09 +00006071 * Get list item "l[idx]" as a number.
6072 */
6073 static long
6074list_find_nr(l, idx, errorp)
6075 list_T *l;
6076 long idx;
6077 int *errorp; /* set to TRUE when something wrong */
6078{
6079 listitem_T *li;
6080
6081 li = list_find(l, idx);
6082 if (li == NULL)
6083 {
6084 if (errorp != NULL)
6085 *errorp = TRUE;
6086 return -1L;
6087 }
6088 return get_tv_number_chk(&li->li_tv, errorp);
6089}
6090
6091/*
Bram Moolenaard812df62008-11-09 12:46:09 +00006092 * Get list item "l[idx - 1]" as a string. Returns NULL for failure.
6093 */
6094 char_u *
6095list_find_str(l, idx)
6096 list_T *l;
6097 long idx;
6098{
6099 listitem_T *li;
6100
6101 li = list_find(l, idx - 1);
6102 if (li == NULL)
6103 {
6104 EMSGN(_(e_listidx), idx);
6105 return NULL;
6106 }
6107 return get_tv_string(&li->li_tv);
6108}
6109
6110/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006111 * Locate "item" list "l" and return its index.
6112 * Returns -1 when "item" is not in the list.
6113 */
6114 static long
6115list_idx_of_item(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006116 list_T *l;
6117 listitem_T *item;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006118{
6119 long idx = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +00006120 listitem_T *li;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006121
6122 if (l == NULL)
6123 return -1;
6124 idx = 0;
6125 for (li = l->lv_first; li != NULL && li != item; li = li->li_next)
6126 ++idx;
6127 if (li == NULL)
6128 return -1;
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006129 return idx;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006130}
6131
6132/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006133 * Append item "item" to the end of list "l".
6134 */
6135 static void
6136list_append(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006137 list_T *l;
6138 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006139{
6140 if (l->lv_last == NULL)
6141 {
6142 /* empty list */
6143 l->lv_first = item;
6144 l->lv_last = item;
6145 item->li_prev = NULL;
6146 }
6147 else
6148 {
6149 l->lv_last->li_next = item;
6150 item->li_prev = l->lv_last;
6151 l->lv_last = item;
6152 }
Bram Moolenaar758711c2005-02-02 23:11:38 +00006153 ++l->lv_len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006154 item->li_next = NULL;
6155}
6156
6157/*
Bram Moolenaar33570922005-01-25 22:26:29 +00006158 * Append typval_T "tv" to the end of list "l".
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006159 * Return FAIL when out of memory.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006160 */
Bram Moolenaar7e506b62010-01-19 15:55:06 +01006161 int
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006162list_append_tv(l, tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00006163 list_T *l;
6164 typval_T *tv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006165{
Bram Moolenaar05159a02005-02-26 23:04:13 +00006166 listitem_T *li = listitem_alloc();
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006167
Bram Moolenaar05159a02005-02-26 23:04:13 +00006168 if (li == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006169 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00006170 copy_tv(tv, &li->li_tv);
6171 list_append(l, li);
6172 return OK;
6173}
6174
6175/*
Bram Moolenaar2641f772005-03-25 21:58:17 +00006176 * Add a dictionary to a list. Used by getqflist().
Bram Moolenaar05159a02005-02-26 23:04:13 +00006177 * Return FAIL when out of memory.
6178 */
6179 int
6180list_append_dict(list, dict)
6181 list_T *list;
6182 dict_T *dict;
6183{
6184 listitem_T *li = listitem_alloc();
6185
6186 if (li == NULL)
6187 return FAIL;
6188 li->li_tv.v_type = VAR_DICT;
6189 li->li_tv.v_lock = 0;
6190 li->li_tv.vval.v_dict = dict;
6191 list_append(list, li);
6192 ++dict->dv_refcount;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006193 return OK;
6194}
6195
6196/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006197 * Make a copy of "str" and append it as an item to list "l".
Bram Moolenaar4463f292005-09-25 22:20:24 +00006198 * When "len" >= 0 use "str[len]".
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006199 * Returns FAIL when out of memory.
6200 */
Bram Moolenaard812df62008-11-09 12:46:09 +00006201 int
Bram Moolenaar4463f292005-09-25 22:20:24 +00006202list_append_string(l, str, len)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006203 list_T *l;
6204 char_u *str;
Bram Moolenaar4463f292005-09-25 22:20:24 +00006205 int len;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006206{
6207 listitem_T *li = listitem_alloc();
6208
6209 if (li == NULL)
6210 return FAIL;
6211 list_append(l, li);
6212 li->li_tv.v_type = VAR_STRING;
6213 li->li_tv.v_lock = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006214 if (str == NULL)
6215 li->li_tv.vval.v_string = NULL;
6216 else if ((li->li_tv.vval.v_string = (len >= 0 ? vim_strnsave(str, len)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006217 : vim_strsave(str))) == NULL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006218 return FAIL;
6219 return OK;
6220}
6221
6222/*
Bram Moolenaar4463f292005-09-25 22:20:24 +00006223 * Append "n" to list "l".
6224 * Returns FAIL when out of memory.
6225 */
6226 static int
6227list_append_number(l, n)
6228 list_T *l;
6229 varnumber_T n;
6230{
6231 listitem_T *li;
6232
6233 li = listitem_alloc();
6234 if (li == NULL)
6235 return FAIL;
6236 li->li_tv.v_type = VAR_NUMBER;
6237 li->li_tv.v_lock = 0;
6238 li->li_tv.vval.v_number = n;
6239 list_append(l, li);
6240 return OK;
6241}
6242
6243/*
Bram Moolenaar33570922005-01-25 22:26:29 +00006244 * Insert typval_T "tv" in list "l" before "item".
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006245 * If "item" is NULL append at the end.
6246 * Return FAIL when out of memory.
6247 */
6248 static int
6249list_insert_tv(l, tv, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006250 list_T *l;
6251 typval_T *tv;
6252 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006253{
Bram Moolenaar33570922005-01-25 22:26:29 +00006254 listitem_T *ni = listitem_alloc();
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006255
6256 if (ni == NULL)
6257 return FAIL;
6258 copy_tv(tv, &ni->li_tv);
6259 if (item == NULL)
6260 /* Append new item at end of list. */
6261 list_append(l, ni);
6262 else
6263 {
6264 /* Insert new item before existing item. */
6265 ni->li_prev = item->li_prev;
6266 ni->li_next = item;
6267 if (item->li_prev == NULL)
Bram Moolenaar758711c2005-02-02 23:11:38 +00006268 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006269 l->lv_first = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006270 ++l->lv_idx;
6271 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006272 else
Bram Moolenaar758711c2005-02-02 23:11:38 +00006273 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006274 item->li_prev->li_next = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006275 l->lv_idx_item = NULL;
6276 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006277 item->li_prev = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006278 ++l->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006279 }
6280 return OK;
6281}
6282
6283/*
6284 * Extend "l1" with "l2".
6285 * If "bef" is NULL append at the end, otherwise insert before this item.
6286 * Returns FAIL when out of memory.
6287 */
6288 static int
6289list_extend(l1, l2, bef)
Bram Moolenaar33570922005-01-25 22:26:29 +00006290 list_T *l1;
6291 list_T *l2;
6292 listitem_T *bef;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006293{
Bram Moolenaar33570922005-01-25 22:26:29 +00006294 listitem_T *item;
Bram Moolenaardc9cf9c2008-08-08 10:36:31 +00006295 int todo = l2->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006296
Bram Moolenaardc9cf9c2008-08-08 10:36:31 +00006297 /* We also quit the loop when we have inserted the original item count of
6298 * the list, avoid a hang when we extend a list with itself. */
6299 for (item = l2->lv_first; item != NULL && --todo >= 0; item = item->li_next)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006300 if (list_insert_tv(l1, &item->li_tv, bef) == FAIL)
6301 return FAIL;
6302 return OK;
6303}
6304
6305/*
6306 * Concatenate lists "l1" and "l2" into a new list, stored in "tv".
6307 * Return FAIL when out of memory.
6308 */
6309 static int
6310list_concat(l1, l2, tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00006311 list_T *l1;
6312 list_T *l2;
6313 typval_T *tv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006314{
Bram Moolenaar33570922005-01-25 22:26:29 +00006315 list_T *l;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006316
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00006317 if (l1 == NULL || l2 == NULL)
6318 return FAIL;
6319
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006320 /* make a copy of the first list. */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006321 l = list_copy(l1, FALSE, 0);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006322 if (l == NULL)
6323 return FAIL;
6324 tv->v_type = VAR_LIST;
6325 tv->vval.v_list = l;
6326
6327 /* append all items from the second list */
6328 return list_extend(l, l2, NULL);
6329}
6330
6331/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006332 * Make a copy of list "orig". Shallow if "deep" is FALSE.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006333 * The refcount of the new list is set to 1.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006334 * See item_copy() for "copyID".
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006335 * Returns NULL when out of memory.
6336 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006337 static list_T *
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006338list_copy(orig, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006339 list_T *orig;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006340 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006341 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006342{
Bram Moolenaar33570922005-01-25 22:26:29 +00006343 list_T *copy;
6344 listitem_T *item;
6345 listitem_T *ni;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006346
6347 if (orig == NULL)
6348 return NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006349
6350 copy = list_alloc();
6351 if (copy != NULL)
6352 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006353 if (copyID != 0)
6354 {
6355 /* Do this before adding the items, because one of the items may
6356 * refer back to this list. */
6357 orig->lv_copyID = copyID;
6358 orig->lv_copylist = copy;
6359 }
6360 for (item = orig->lv_first; item != NULL && !got_int;
6361 item = item->li_next)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006362 {
6363 ni = listitem_alloc();
6364 if (ni == NULL)
6365 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006366 if (deep)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006367 {
6368 if (item_copy(&item->li_tv, &ni->li_tv, deep, copyID) == FAIL)
6369 {
6370 vim_free(ni);
6371 break;
6372 }
6373 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006374 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00006375 copy_tv(&item->li_tv, &ni->li_tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006376 list_append(copy, ni);
6377 }
6378 ++copy->lv_refcount;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006379 if (item != NULL)
6380 {
6381 list_unref(copy);
6382 copy = NULL;
6383 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006384 }
6385
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006386 return copy;
6387}
6388
6389/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006390 * Remove items "item" to "item2" from list "l".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006391 * Does not free the listitem or the value!
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006392 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006393 static void
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006394list_remove(l, item, item2)
Bram Moolenaar33570922005-01-25 22:26:29 +00006395 list_T *l;
6396 listitem_T *item;
6397 listitem_T *item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006398{
Bram Moolenaar33570922005-01-25 22:26:29 +00006399 listitem_T *ip;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006400
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006401 /* notify watchers */
6402 for (ip = item; ip != NULL; ip = ip->li_next)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006403 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006404 --l->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006405 list_fix_watch(l, ip);
6406 if (ip == item2)
6407 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006408 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006409
6410 if (item2->li_next == NULL)
6411 l->lv_last = item->li_prev;
6412 else
6413 item2->li_next->li_prev = item->li_prev;
6414 if (item->li_prev == NULL)
6415 l->lv_first = item2->li_next;
6416 else
6417 item->li_prev->li_next = item2->li_next;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006418 l->lv_idx_item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006419}
6420
6421/*
6422 * Return an allocated string with the string representation of a list.
6423 * May return NULL.
6424 */
6425 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006426list2string(tv, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006427 typval_T *tv;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006428 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006429{
6430 garray_T ga;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006431
6432 if (tv->vval.v_list == NULL)
6433 return NULL;
6434 ga_init2(&ga, (int)sizeof(char), 80);
6435 ga_append(&ga, '[');
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006436 if (list_join(&ga, tv->vval.v_list, (char_u *)", ", FALSE, copyID) == FAIL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006437 {
6438 vim_free(ga.ga_data);
6439 return NULL;
6440 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006441 ga_append(&ga, ']');
6442 ga_append(&ga, NUL);
6443 return (char_u *)ga.ga_data;
6444}
6445
6446/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006447 * Join list "l" into a string in "*gap", using separator "sep".
6448 * When "echo" is TRUE use String as echoed, otherwise as inside a List.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006449 * Return FAIL or OK.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006450 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006451 static int
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006452list_join(gap, l, sep, echo, copyID)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006453 garray_T *gap;
Bram Moolenaar33570922005-01-25 22:26:29 +00006454 list_T *l;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006455 char_u *sep;
6456 int echo;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006457 int copyID;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006458{
6459 int first = TRUE;
6460 char_u *tofree;
6461 char_u numbuf[NUMBUFLEN];
Bram Moolenaar33570922005-01-25 22:26:29 +00006462 listitem_T *item;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006463 char_u *s;
6464
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006465 for (item = l->lv_first; item != NULL && !got_int; item = item->li_next)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006466 {
6467 if (first)
6468 first = FALSE;
6469 else
6470 ga_concat(gap, sep);
6471
6472 if (echo)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006473 s = echo_string(&item->li_tv, &tofree, numbuf, copyID);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006474 else
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006475 s = tv2string(&item->li_tv, &tofree, numbuf, copyID);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006476 if (s != NULL)
6477 ga_concat(gap, s);
6478 vim_free(tofree);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006479 if (s == NULL)
6480 return FAIL;
Bram Moolenaarf68f6562010-01-19 12:48:05 +01006481 line_breakcheck();
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006482 }
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006483 return OK;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006484}
6485
6486/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006487 * Garbage collection for lists and dictionaries.
6488 *
6489 * We use reference counts to be able to free most items right away when they
6490 * are no longer used. But for composite items it's possible that it becomes
6491 * unused while the reference count is > 0: When there is a recursive
6492 * reference. Example:
6493 * :let l = [1, 2, 3]
6494 * :let d = {9: l}
6495 * :let l[1] = d
6496 *
6497 * Since this is quite unusual we handle this with garbage collection: every
6498 * once in a while find out which lists and dicts are not referenced from any
6499 * variable.
6500 *
6501 * Here is a good reference text about garbage collection (refers to Python
6502 * but it applies to all reference-counting mechanisms):
6503 * http://python.ca/nas/python/gc/
Bram Moolenaard9fba312005-06-26 22:34:35 +00006504 */
Bram Moolenaard9fba312005-06-26 22:34:35 +00006505
6506/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006507 * Do garbage collection for lists and dicts.
6508 * Return TRUE if some memory was freed.
Bram Moolenaard9fba312005-06-26 22:34:35 +00006509 */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006510 int
6511garbage_collect()
Bram Moolenaard9fba312005-06-26 22:34:35 +00006512{
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006513 int copyID;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006514 buf_T *buf;
6515 win_T *wp;
6516 int i;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +00006517 funccall_T *fc, **pfc;
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006518 int did_free;
6519 int did_free_funccal = FALSE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006520#ifdef FEAT_WINDOWS
6521 tabpage_T *tp;
6522#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006523
Bram Moolenaar9fecb462006-09-05 10:59:47 +00006524 /* Only do this once. */
6525 want_garbage_collect = FALSE;
6526 may_garbage_collect = FALSE;
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00006527 garbage_collect_at_exit = FALSE;
Bram Moolenaar9fecb462006-09-05 10:59:47 +00006528
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006529 /* We advance by two because we add one for items referenced through
6530 * previous_funccal. */
6531 current_copyID += COPYID_INC;
6532 copyID = current_copyID;
6533
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006534 /*
6535 * 1. Go through all accessible variables and mark all lists and dicts
6536 * with copyID.
6537 */
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006538
6539 /* Don't free variables in the previous_funccal list unless they are only
6540 * referenced through previous_funccal. This must be first, because if
Bram Moolenaar2c2398c2009-06-03 11:22:45 +00006541 * the item is referenced elsewhere the funccal must not be freed. */
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006542 for (fc = previous_funccal; fc != NULL; fc = fc->caller)
6543 {
6544 set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID + 1);
6545 set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID + 1);
6546 }
6547
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006548 /* script-local variables */
6549 for (i = 1; i <= ga_scripts.ga_len; ++i)
6550 set_ref_in_ht(&SCRIPT_VARS(i), copyID);
6551
6552 /* buffer-local variables */
6553 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
6554 set_ref_in_ht(&buf->b_vars.dv_hashtab, copyID);
6555
6556 /* window-local variables */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006557 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006558 set_ref_in_ht(&wp->w_vars.dv_hashtab, copyID);
6559
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006560#ifdef FEAT_WINDOWS
6561 /* tabpage-local variables */
6562 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6563 set_ref_in_ht(&tp->tp_vars.dv_hashtab, copyID);
6564#endif
6565
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006566 /* global variables */
6567 set_ref_in_ht(&globvarht, copyID);
6568
6569 /* function-local variables */
6570 for (fc = current_funccal; fc != NULL; fc = fc->caller)
6571 {
6572 set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID);
6573 set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID);
6574 }
6575
Bram Moolenaard812df62008-11-09 12:46:09 +00006576 /* v: vars */
6577 set_ref_in_ht(&vimvarht, copyID);
6578
Bram Moolenaar2c2398c2009-06-03 11:22:45 +00006579 /*
6580 * 2. Free lists and dictionaries that are not referenced.
6581 */
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006582 did_free = free_unref_items(copyID);
6583
Bram Moolenaar2c2398c2009-06-03 11:22:45 +00006584 /*
6585 * 3. Check if any funccal can be freed now.
6586 */
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006587 for (pfc = &previous_funccal; *pfc != NULL; )
6588 {
6589 if (can_free_funccal(*pfc, copyID))
6590 {
6591 fc = *pfc;
6592 *pfc = fc->caller;
6593 free_funccal(fc, TRUE);
6594 did_free = TRUE;
6595 did_free_funccal = TRUE;
6596 }
6597 else
6598 pfc = &(*pfc)->caller;
6599 }
6600 if (did_free_funccal)
6601 /* When a funccal was freed some more items might be garbage
6602 * collected, so run again. */
6603 (void)garbage_collect();
6604
6605 return did_free;
6606}
6607
6608/*
6609 * Free lists and dictionaries that are no longer referenced.
6610 */
6611 static int
6612free_unref_items(copyID)
6613 int copyID;
6614{
6615 dict_T *dd;
6616 list_T *ll;
6617 int did_free = FALSE;
6618
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006619 /*
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006620 * Go through the list of dicts and free items without the copyID.
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006621 */
6622 for (dd = first_dict; dd != NULL; )
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006623 if ((dd->dv_copyID & COPYID_MASK) != (copyID & COPYID_MASK))
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006624 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006625 /* Free the Dictionary and ordinary items it contains, but don't
6626 * recurse into Lists and Dictionaries, they will be in the list
6627 * of dicts or list of lists. */
6628 dict_free(dd, FALSE);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006629 did_free = TRUE;
6630
6631 /* restart, next dict may also have been freed */
6632 dd = first_dict;
6633 }
6634 else
6635 dd = dd->dv_used_next;
6636
6637 /*
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006638 * Go through the list of lists and free items without the copyID.
6639 * But don't free a list that has a watcher (used in a for loop), these
6640 * are not referenced anywhere.
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006641 */
6642 for (ll = first_list; ll != NULL; )
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006643 if ((ll->lv_copyID & COPYID_MASK) != (copyID & COPYID_MASK)
6644 && ll->lv_watch == NULL)
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006645 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006646 /* Free the List and ordinary items it contains, but don't recurse
6647 * into Lists and Dictionaries, they will be in the list of dicts
6648 * or list of lists. */
6649 list_free(ll, FALSE);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006650 did_free = TRUE;
6651
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00006652 /* restart, next list may also have been freed */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006653 ll = first_list;
6654 }
6655 else
6656 ll = ll->lv_used_next;
6657
6658 return did_free;
6659}
6660
6661/*
6662 * Mark all lists and dicts referenced through hashtab "ht" with "copyID".
6663 */
6664 static void
6665set_ref_in_ht(ht, copyID)
6666 hashtab_T *ht;
6667 int copyID;
6668{
6669 int todo;
6670 hashitem_T *hi;
6671
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006672 todo = (int)ht->ht_used;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006673 for (hi = ht->ht_array; todo > 0; ++hi)
6674 if (!HASHITEM_EMPTY(hi))
6675 {
6676 --todo;
6677 set_ref_in_item(&HI2DI(hi)->di_tv, copyID);
6678 }
6679}
6680
6681/*
6682 * Mark all lists and dicts referenced through list "l" with "copyID".
6683 */
6684 static void
6685set_ref_in_list(l, copyID)
6686 list_T *l;
6687 int copyID;
6688{
6689 listitem_T *li;
6690
6691 for (li = l->lv_first; li != NULL; li = li->li_next)
6692 set_ref_in_item(&li->li_tv, copyID);
6693}
6694
6695/*
6696 * Mark all lists and dicts referenced through typval "tv" with "copyID".
6697 */
6698 static void
6699set_ref_in_item(tv, copyID)
6700 typval_T *tv;
6701 int copyID;
6702{
6703 dict_T *dd;
6704 list_T *ll;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006705
6706 switch (tv->v_type)
6707 {
6708 case VAR_DICT:
6709 dd = tv->vval.v_dict;
Bram Moolenaard812df62008-11-09 12:46:09 +00006710 if (dd != NULL && dd->dv_copyID != copyID)
Bram Moolenaard9fba312005-06-26 22:34:35 +00006711 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006712 /* Didn't see this dict yet. */
6713 dd->dv_copyID = copyID;
6714 set_ref_in_ht(&dd->dv_hashtab, copyID);
Bram Moolenaard9fba312005-06-26 22:34:35 +00006715 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006716 break;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006717
6718 case VAR_LIST:
6719 ll = tv->vval.v_list;
Bram Moolenaard812df62008-11-09 12:46:09 +00006720 if (ll != NULL && ll->lv_copyID != copyID)
Bram Moolenaard9fba312005-06-26 22:34:35 +00006721 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006722 /* Didn't see this list yet. */
6723 ll->lv_copyID = copyID;
6724 set_ref_in_list(ll, copyID);
Bram Moolenaard9fba312005-06-26 22:34:35 +00006725 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006726 break;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006727 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006728 return;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006729}
6730
6731/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006732 * Allocate an empty header for a dictionary.
6733 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00006734 dict_T *
Bram Moolenaar8c711452005-01-14 21:53:12 +00006735dict_alloc()
6736{
Bram Moolenaar33570922005-01-25 22:26:29 +00006737 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006738
Bram Moolenaar33570922005-01-25 22:26:29 +00006739 d = (dict_T *)alloc(sizeof(dict_T));
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006740 if (d != NULL)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006741 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006742 /* Add the list to the list of dicts for garbage collection. */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006743 if (first_dict != NULL)
6744 first_dict->dv_used_prev = d;
6745 d->dv_used_next = first_dict;
6746 d->dv_used_prev = NULL;
Bram Moolenaar685295c2006-10-15 20:37:38 +00006747 first_dict = d;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006748
Bram Moolenaar33570922005-01-25 22:26:29 +00006749 hash_init(&d->dv_hashtab);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006750 d->dv_lock = 0;
6751 d->dv_refcount = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006752 d->dv_copyID = 0;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006753 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006754 return d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006755}
6756
6757/*
6758 * Unreference a Dictionary: decrement the reference count and free it when it
6759 * becomes zero.
6760 */
6761 static void
6762dict_unref(d)
Bram Moolenaar33570922005-01-25 22:26:29 +00006763 dict_T *d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006764{
Bram Moolenaar685295c2006-10-15 20:37:38 +00006765 if (d != NULL && --d->dv_refcount <= 0)
6766 dict_free(d, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006767}
6768
6769/*
6770 * Free a Dictionary, including all items it contains.
6771 * Ignores the reference count.
6772 */
6773 static void
Bram Moolenaar685295c2006-10-15 20:37:38 +00006774dict_free(d, recurse)
6775 dict_T *d;
6776 int recurse; /* Free Lists and Dictionaries recursively. */
Bram Moolenaar8c711452005-01-14 21:53:12 +00006777{
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006778 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00006779 hashitem_T *hi;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006780 dictitem_T *di;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006781
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006782 /* Remove the dict from the list of dicts for garbage collection. */
6783 if (d->dv_used_prev == NULL)
6784 first_dict = d->dv_used_next;
6785 else
6786 d->dv_used_prev->dv_used_next = d->dv_used_next;
6787 if (d->dv_used_next != NULL)
6788 d->dv_used_next->dv_used_prev = d->dv_used_prev;
6789
6790 /* Lock the hashtab, we don't want it to resize while freeing items. */
Bram Moolenaard9fba312005-06-26 22:34:35 +00006791 hash_lock(&d->dv_hashtab);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006792 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00006793 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +00006794 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006795 if (!HASHITEM_EMPTY(hi))
6796 {
Bram Moolenaard9fba312005-06-26 22:34:35 +00006797 /* Remove the item before deleting it, just in case there is
6798 * something recursive causing trouble. */
6799 di = HI2DI(hi);
6800 hash_remove(&d->dv_hashtab, hi);
Bram Moolenaar685295c2006-10-15 20:37:38 +00006801 if (recurse || (di->di_tv.v_type != VAR_LIST
6802 && di->di_tv.v_type != VAR_DICT))
6803 clear_tv(&di->di_tv);
6804 vim_free(di);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006805 --todo;
6806 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00006807 }
Bram Moolenaar33570922005-01-25 22:26:29 +00006808 hash_clear(&d->dv_hashtab);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006809 vim_free(d);
6810}
6811
6812/*
6813 * Allocate a Dictionary item.
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006814 * The "key" is copied to the new item.
6815 * Note that the value of the item "di_tv" still needs to be initialized!
6816 * Returns NULL when out of memory.
Bram Moolenaar8c711452005-01-14 21:53:12 +00006817 */
Bram Moolenaar7e506b62010-01-19 15:55:06 +01006818 dictitem_T *
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006819dictitem_alloc(key)
6820 char_u *key;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006821{
Bram Moolenaar33570922005-01-25 22:26:29 +00006822 dictitem_T *di;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006823
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006824 di = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T) + STRLEN(key)));
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006825 if (di != NULL)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006826 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006827 STRCPY(di->di_key, key);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006828 di->di_flags = 0;
6829 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006830 return di;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006831}
6832
6833/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006834 * Make a copy of a Dictionary item.
6835 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006836 static dictitem_T *
Bram Moolenaare9a41262005-01-15 22:18:47 +00006837dictitem_copy(org)
Bram Moolenaar33570922005-01-25 22:26:29 +00006838 dictitem_T *org;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006839{
Bram Moolenaar33570922005-01-25 22:26:29 +00006840 dictitem_T *di;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006841
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006842 di = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
6843 + STRLEN(org->di_key)));
Bram Moolenaare9a41262005-01-15 22:18:47 +00006844 if (di != NULL)
6845 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006846 STRCPY(di->di_key, org->di_key);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006847 di->di_flags = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006848 copy_tv(&org->di_tv, &di->di_tv);
6849 }
6850 return di;
6851}
6852
6853/*
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006854 * Remove item "item" from Dictionary "dict" and free it.
6855 */
6856 static void
6857dictitem_remove(dict, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006858 dict_T *dict;
6859 dictitem_T *item;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006860{
Bram Moolenaar33570922005-01-25 22:26:29 +00006861 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006862
Bram Moolenaar33570922005-01-25 22:26:29 +00006863 hi = hash_find(&dict->dv_hashtab, item->di_key);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006864 if (HASHITEM_EMPTY(hi))
6865 EMSG2(_(e_intern2), "dictitem_remove()");
6866 else
Bram Moolenaar33570922005-01-25 22:26:29 +00006867 hash_remove(&dict->dv_hashtab, hi);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006868 dictitem_free(item);
6869}
6870
6871/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006872 * Free a dict item. Also clears the value.
6873 */
Bram Moolenaar7e506b62010-01-19 15:55:06 +01006874 void
Bram Moolenaar8c711452005-01-14 21:53:12 +00006875dictitem_free(item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006876 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006877{
Bram Moolenaar8c711452005-01-14 21:53:12 +00006878 clear_tv(&item->di_tv);
6879 vim_free(item);
6880}
6881
6882/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006883 * Make a copy of dict "d". Shallow if "deep" is FALSE.
6884 * The refcount of the new dict is set to 1.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006885 * See item_copy() for "copyID".
Bram Moolenaare9a41262005-01-15 22:18:47 +00006886 * Returns NULL when out of memory.
6887 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006888 static dict_T *
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006889dict_copy(orig, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006890 dict_T *orig;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006891 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006892 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006893{
Bram Moolenaar33570922005-01-25 22:26:29 +00006894 dict_T *copy;
6895 dictitem_T *di;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006896 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00006897 hashitem_T *hi;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006898
6899 if (orig == NULL)
6900 return NULL;
6901
6902 copy = dict_alloc();
6903 if (copy != NULL)
6904 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006905 if (copyID != 0)
6906 {
6907 orig->dv_copyID = copyID;
6908 orig->dv_copydict = copy;
6909 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006910 todo = (int)orig->dv_hashtab.ht_used;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006911 for (hi = orig->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +00006912 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006913 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +00006914 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006915 --todo;
6916
6917 di = dictitem_alloc(hi->hi_key);
6918 if (di == NULL)
6919 break;
6920 if (deep)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006921 {
6922 if (item_copy(&HI2DI(hi)->di_tv, &di->di_tv, deep,
6923 copyID) == FAIL)
6924 {
6925 vim_free(di);
6926 break;
6927 }
6928 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006929 else
6930 copy_tv(&HI2DI(hi)->di_tv, &di->di_tv);
6931 if (dict_add(copy, di) == FAIL)
6932 {
6933 dictitem_free(di);
6934 break;
6935 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006936 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006937 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006938
Bram Moolenaare9a41262005-01-15 22:18:47 +00006939 ++copy->dv_refcount;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006940 if (todo > 0)
6941 {
6942 dict_unref(copy);
6943 copy = NULL;
6944 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006945 }
6946
6947 return copy;
6948}
6949
6950/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006951 * Add item "item" to Dictionary "d".
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006952 * Returns FAIL when out of memory and when key already existed.
Bram Moolenaar8c711452005-01-14 21:53:12 +00006953 */
Bram Moolenaar7e506b62010-01-19 15:55:06 +01006954 int
Bram Moolenaar8c711452005-01-14 21:53:12 +00006955dict_add(d, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006956 dict_T *d;
6957 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006958{
Bram Moolenaar33570922005-01-25 22:26:29 +00006959 return hash_add(&d->dv_hashtab, item->di_key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006960}
6961
Bram Moolenaar8c711452005-01-14 21:53:12 +00006962/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00006963 * Add a number or string entry to dictionary "d".
6964 * When "str" is NULL use number "nr", otherwise use "str".
6965 * Returns FAIL when out of memory and when key already exists.
6966 */
6967 int
6968dict_add_nr_str(d, key, nr, str)
6969 dict_T *d;
6970 char *key;
6971 long nr;
6972 char_u *str;
6973{
6974 dictitem_T *item;
6975
6976 item = dictitem_alloc((char_u *)key);
6977 if (item == NULL)
6978 return FAIL;
6979 item->di_tv.v_lock = 0;
6980 if (str == NULL)
6981 {
6982 item->di_tv.v_type = VAR_NUMBER;
6983 item->di_tv.vval.v_number = nr;
6984 }
6985 else
6986 {
6987 item->di_tv.v_type = VAR_STRING;
6988 item->di_tv.vval.v_string = vim_strsave(str);
6989 }
6990 if (dict_add(d, item) == FAIL)
6991 {
6992 dictitem_free(item);
6993 return FAIL;
6994 }
6995 return OK;
6996}
6997
6998/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006999 * Get the number of items in a Dictionary.
7000 */
7001 static long
7002dict_len(d)
Bram Moolenaar33570922005-01-25 22:26:29 +00007003 dict_T *d;
Bram Moolenaare9a41262005-01-15 22:18:47 +00007004{
Bram Moolenaare9a41262005-01-15 22:18:47 +00007005 if (d == NULL)
7006 return 0L;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007007 return (long)d->dv_hashtab.ht_used;
Bram Moolenaare9a41262005-01-15 22:18:47 +00007008}
7009
7010/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00007011 * Find item "key[len]" in Dictionary "d".
7012 * If "len" is negative use strlen(key).
7013 * Returns NULL when not found.
7014 */
Bram Moolenaar33570922005-01-25 22:26:29 +00007015 static dictitem_T *
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007016dict_find(d, key, len)
Bram Moolenaar33570922005-01-25 22:26:29 +00007017 dict_T *d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007018 char_u *key;
7019 int len;
7020{
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007021#define AKEYLEN 200
7022 char_u buf[AKEYLEN];
7023 char_u *akey;
7024 char_u *tofree = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00007025 hashitem_T *hi;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007026
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007027 if (len < 0)
7028 akey = key;
7029 else if (len >= AKEYLEN)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00007030 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007031 tofree = akey = vim_strnsave(key, len);
7032 if (akey == NULL)
7033 return NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00007034 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007035 else
7036 {
7037 /* Avoid a malloc/free by using buf[]. */
Bram Moolenaarce0842a2005-07-18 21:58:11 +00007038 vim_strncpy(buf, key, len);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007039 akey = buf;
7040 }
7041
Bram Moolenaar33570922005-01-25 22:26:29 +00007042 hi = hash_find(&d->dv_hashtab, akey);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007043 vim_free(tofree);
7044 if (HASHITEM_EMPTY(hi))
7045 return NULL;
7046 return HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007047}
7048
7049/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00007050 * Get a string item from a dictionary.
7051 * When "save" is TRUE allocate memory for it.
Bram Moolenaar2641f772005-03-25 21:58:17 +00007052 * Returns NULL if the entry doesn't exist or out of memory.
7053 */
7054 char_u *
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00007055get_dict_string(d, key, save)
Bram Moolenaar2641f772005-03-25 21:58:17 +00007056 dict_T *d;
7057 char_u *key;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00007058 int save;
Bram Moolenaar2641f772005-03-25 21:58:17 +00007059{
7060 dictitem_T *di;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00007061 char_u *s;
Bram Moolenaar2641f772005-03-25 21:58:17 +00007062
7063 di = dict_find(d, key, -1);
7064 if (di == NULL)
7065 return NULL;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00007066 s = get_tv_string(&di->di_tv);
7067 if (save && s != NULL)
7068 s = vim_strsave(s);
7069 return s;
Bram Moolenaar2641f772005-03-25 21:58:17 +00007070}
7071
7072/*
7073 * Get a number item from a dictionary.
7074 * Returns 0 if the entry doesn't exist or out of memory.
7075 */
7076 long
7077get_dict_number(d, key)
7078 dict_T *d;
7079 char_u *key;
7080{
7081 dictitem_T *di;
7082
7083 di = dict_find(d, key, -1);
7084 if (di == NULL)
7085 return 0;
7086 return get_tv_number(&di->di_tv);
7087}
7088
7089/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00007090 * Return an allocated string with the string representation of a Dictionary.
7091 * May return NULL.
7092 */
7093 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007094dict2string(tv, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007095 typval_T *tv;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007096 int copyID;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007097{
7098 garray_T ga;
7099 int first = TRUE;
7100 char_u *tofree;
7101 char_u numbuf[NUMBUFLEN];
Bram Moolenaar33570922005-01-25 22:26:29 +00007102 hashitem_T *hi;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007103 char_u *s;
Bram Moolenaar33570922005-01-25 22:26:29 +00007104 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007105 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007106
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007107 if ((d = tv->vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007108 return NULL;
7109 ga_init2(&ga, (int)sizeof(char), 80);
7110 ga_append(&ga, '{');
7111
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007112 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007113 for (hi = d->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007114 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007115 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +00007116 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007117 --todo;
7118
7119 if (first)
7120 first = FALSE;
7121 else
7122 ga_concat(&ga, (char_u *)", ");
7123
7124 tofree = string_quote(hi->hi_key, FALSE);
7125 if (tofree != NULL)
7126 {
7127 ga_concat(&ga, tofree);
7128 vim_free(tofree);
7129 }
7130 ga_concat(&ga, (char_u *)": ");
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007131 s = tv2string(&HI2DI(hi)->di_tv, &tofree, numbuf, copyID);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007132 if (s != NULL)
7133 ga_concat(&ga, s);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007134 vim_free(tofree);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007135 if (s == NULL)
7136 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007137 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007138 }
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007139 if (todo > 0)
7140 {
7141 vim_free(ga.ga_data);
7142 return NULL;
7143 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007144
7145 ga_append(&ga, '}');
7146 ga_append(&ga, NUL);
7147 return (char_u *)ga.ga_data;
7148}
7149
7150/*
7151 * Allocate a variable for a Dictionary and fill it from "*arg".
7152 * Return OK or FAIL. Returns NOTDONE for {expr}.
7153 */
7154 static int
7155get_dict_tv(arg, rettv, evaluate)
7156 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00007157 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007158 int evaluate;
7159{
Bram Moolenaar33570922005-01-25 22:26:29 +00007160 dict_T *d = NULL;
7161 typval_T tvkey;
7162 typval_T tv;
Bram Moolenaarad6c2272007-09-17 20:21:33 +00007163 char_u *key = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00007164 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007165 char_u *start = skipwhite(*arg + 1);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007166 char_u buf[NUMBUFLEN];
Bram Moolenaar8c711452005-01-14 21:53:12 +00007167
7168 /*
7169 * First check if it's not a curly-braces thing: {expr}.
7170 * Must do this without evaluating, otherwise a function may be called
7171 * twice. Unfortunately this means we need to call eval1() twice for the
7172 * first item.
Bram Moolenaare9a41262005-01-15 22:18:47 +00007173 * But {} is an empty Dictionary.
Bram Moolenaar8c711452005-01-14 21:53:12 +00007174 */
Bram Moolenaare9a41262005-01-15 22:18:47 +00007175 if (*start != '}')
7176 {
7177 if (eval1(&start, &tv, FALSE) == FAIL) /* recursive! */
7178 return FAIL;
7179 if (*start == '}')
7180 return NOTDONE;
7181 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007182
7183 if (evaluate)
7184 {
7185 d = dict_alloc();
7186 if (d == NULL)
7187 return FAIL;
7188 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007189 tvkey.v_type = VAR_UNKNOWN;
7190 tv.v_type = VAR_UNKNOWN;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007191
7192 *arg = skipwhite(*arg + 1);
7193 while (**arg != '}' && **arg != NUL)
7194 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007195 if (eval1(arg, &tvkey, evaluate) == FAIL) /* recursive! */
Bram Moolenaar8c711452005-01-14 21:53:12 +00007196 goto failret;
7197 if (**arg != ':')
7198 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007199 EMSG2(_("E720: Missing colon in Dictionary: %s"), *arg);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007200 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007201 goto failret;
7202 }
Bram Moolenaar037cc642007-09-13 18:40:54 +00007203 if (evaluate)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007204 {
Bram Moolenaar037cc642007-09-13 18:40:54 +00007205 key = get_tv_string_buf_chk(&tvkey, buf);
7206 if (key == NULL || *key == NUL)
7207 {
7208 /* "key" is NULL when get_tv_string_buf_chk() gave an errmsg */
7209 if (key != NULL)
7210 EMSG(_(e_emptykey));
7211 clear_tv(&tvkey);
7212 goto failret;
7213 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007214 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007215
7216 *arg = skipwhite(*arg + 1);
7217 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
7218 {
Bram Moolenaar037cc642007-09-13 18:40:54 +00007219 if (evaluate)
7220 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007221 goto failret;
7222 }
7223 if (evaluate)
7224 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007225 item = dict_find(d, key, -1);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007226 if (item != NULL)
7227 {
Bram Moolenaarb982ca52005-03-28 21:02:15 +00007228 EMSG2(_("E721: Duplicate key in Dictionary: \"%s\""), key);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007229 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007230 clear_tv(&tv);
7231 goto failret;
7232 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007233 item = dictitem_alloc(key);
7234 clear_tv(&tvkey);
7235 if (item != NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007236 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00007237 item->di_tv = tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00007238 item->di_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007239 if (dict_add(d, item) == FAIL)
7240 dictitem_free(item);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007241 }
7242 }
7243
7244 if (**arg == '}')
7245 break;
7246 if (**arg != ',')
7247 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007248 EMSG2(_("E722: Missing comma in Dictionary: %s"), *arg);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007249 goto failret;
7250 }
7251 *arg = skipwhite(*arg + 1);
7252 }
7253
7254 if (**arg != '}')
7255 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007256 EMSG2(_("E723: Missing end of Dictionary '}': %s"), *arg);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007257failret:
7258 if (evaluate)
Bram Moolenaar685295c2006-10-15 20:37:38 +00007259 dict_free(d, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007260 return FAIL;
7261 }
7262
7263 *arg = skipwhite(*arg + 1);
7264 if (evaluate)
7265 {
7266 rettv->v_type = VAR_DICT;
7267 rettv->vval.v_dict = d;
7268 ++d->dv_refcount;
7269 }
7270
7271 return OK;
7272}
7273
Bram Moolenaar8c711452005-01-14 21:53:12 +00007274/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007275 * Return a string with the string representation of a variable.
7276 * If the memory is allocated "tofree" is set to it, otherwise NULL.
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007277 * "numbuf" is used for a number.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007278 * Does not put quotes around strings, as ":echo" displays values.
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007279 * When "copyID" is not NULL replace recursive lists and dicts with "...".
Bram Moolenaar92c5aba2007-08-14 20:29:31 +00007280 * May return NULL.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007281 */
7282 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007283echo_string(tv, tofree, numbuf, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007284 typval_T *tv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007285 char_u **tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007286 char_u *numbuf;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007287 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007288{
Bram Moolenaare9a41262005-01-15 22:18:47 +00007289 static int recurse = 0;
7290 char_u *r = NULL;
7291
Bram Moolenaar33570922005-01-25 22:26:29 +00007292 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +00007293 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007294 EMSG(_("E724: variable nested too deep for displaying"));
Bram Moolenaare9a41262005-01-15 22:18:47 +00007295 *tofree = NULL;
7296 return NULL;
7297 }
7298 ++recurse;
7299
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007300 switch (tv->v_type)
7301 {
7302 case VAR_FUNC:
7303 *tofree = NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00007304 r = tv->vval.v_string;
7305 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007306
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007307 case VAR_LIST:
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007308 if (tv->vval.v_list == NULL)
7309 {
7310 *tofree = NULL;
7311 r = NULL;
7312 }
7313 else if (copyID != 0 && tv->vval.v_list->lv_copyID == copyID)
7314 {
7315 *tofree = NULL;
7316 r = (char_u *)"[...]";
7317 }
7318 else
7319 {
7320 tv->vval.v_list->lv_copyID = copyID;
7321 *tofree = list2string(tv, copyID);
7322 r = *tofree;
7323 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007324 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007325
Bram Moolenaar8c711452005-01-14 21:53:12 +00007326 case VAR_DICT:
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007327 if (tv->vval.v_dict == NULL)
7328 {
7329 *tofree = NULL;
7330 r = NULL;
7331 }
7332 else if (copyID != 0 && tv->vval.v_dict->dv_copyID == copyID)
7333 {
7334 *tofree = NULL;
7335 r = (char_u *)"{...}";
7336 }
7337 else
7338 {
7339 tv->vval.v_dict->dv_copyID = copyID;
7340 *tofree = dict2string(tv, copyID);
7341 r = *tofree;
7342 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007343 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007344
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007345 case VAR_STRING:
7346 case VAR_NUMBER:
Bram Moolenaare9a41262005-01-15 22:18:47 +00007347 *tofree = NULL;
7348 r = get_tv_string_buf(tv, numbuf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007349 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007350
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007351#ifdef FEAT_FLOAT
7352 case VAR_FLOAT:
7353 *tofree = NULL;
7354 vim_snprintf((char *)numbuf, NUMBUFLEN, "%g", tv->vval.v_float);
7355 r = numbuf;
7356 break;
7357#endif
7358
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007359 default:
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007360 EMSG2(_(e_intern2), "echo_string()");
Bram Moolenaare9a41262005-01-15 22:18:47 +00007361 *tofree = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007362 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007363
7364 --recurse;
7365 return r;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007366}
7367
7368/*
7369 * Return a string with the string representation of a variable.
7370 * If the memory is allocated "tofree" is set to it, otherwise NULL.
7371 * "numbuf" is used for a number.
7372 * Puts quotes around strings, so that they can be parsed back by eval().
Bram Moolenaar92c5aba2007-08-14 20:29:31 +00007373 * May return NULL.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007374 */
7375 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007376tv2string(tv, tofree, numbuf, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007377 typval_T *tv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007378 char_u **tofree;
7379 char_u *numbuf;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007380 int copyID;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007381{
7382 switch (tv->v_type)
7383 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007384 case VAR_FUNC:
7385 *tofree = string_quote(tv->vval.v_string, TRUE);
7386 return *tofree;
7387 case VAR_STRING:
7388 *tofree = string_quote(tv->vval.v_string, FALSE);
7389 return *tofree;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007390#ifdef FEAT_FLOAT
7391 case VAR_FLOAT:
7392 *tofree = NULL;
7393 vim_snprintf((char *)numbuf, NUMBUFLEN - 1, "%g", tv->vval.v_float);
7394 return numbuf;
7395#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +00007396 case VAR_NUMBER:
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007397 case VAR_LIST:
Bram Moolenaar8c711452005-01-14 21:53:12 +00007398 case VAR_DICT:
Bram Moolenaare9a41262005-01-15 22:18:47 +00007399 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007400 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007401 EMSG2(_(e_intern2), "tv2string()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007402 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007403 return echo_string(tv, tofree, numbuf, copyID);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007404}
7405
7406/*
Bram Moolenaar33570922005-01-25 22:26:29 +00007407 * Return string "str" in ' quotes, doubling ' characters.
7408 * If "str" is NULL an empty string is assumed.
Bram Moolenaar8c711452005-01-14 21:53:12 +00007409 * If "function" is TRUE make it function('string').
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007410 */
7411 static char_u *
7412string_quote(str, function)
7413 char_u *str;
7414 int function;
7415{
Bram Moolenaar33570922005-01-25 22:26:29 +00007416 unsigned len;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007417 char_u *p, *r, *s;
7418
Bram Moolenaar33570922005-01-25 22:26:29 +00007419 len = (function ? 13 : 3);
7420 if (str != NULL)
7421 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007422 len += (unsigned)STRLEN(str);
Bram Moolenaar33570922005-01-25 22:26:29 +00007423 for (p = str; *p != NUL; mb_ptr_adv(p))
7424 if (*p == '\'')
7425 ++len;
7426 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007427 s = r = alloc(len);
7428 if (r != NULL)
7429 {
7430 if (function)
7431 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00007432 STRCPY(r, "function('");
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007433 r += 10;
7434 }
7435 else
Bram Moolenaar8c711452005-01-14 21:53:12 +00007436 *r++ = '\'';
Bram Moolenaar33570922005-01-25 22:26:29 +00007437 if (str != NULL)
7438 for (p = str; *p != NUL; )
7439 {
7440 if (*p == '\'')
7441 *r++ = '\'';
7442 MB_COPY_CHAR(p, r);
7443 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007444 *r++ = '\'';
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007445 if (function)
7446 *r++ = ')';
7447 *r++ = NUL;
7448 }
7449 return s;
7450}
7451
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007452#ifdef FEAT_FLOAT
7453/*
7454 * Convert the string "text" to a floating point number.
7455 * This uses strtod(). setlocale(LC_NUMERIC, "C") has been used to make sure
7456 * this always uses a decimal point.
7457 * Returns the length of the text that was consumed.
7458 */
7459 static int
7460string2float(text, value)
7461 char_u *text;
7462 float_T *value; /* result stored here */
7463{
7464 char *s = (char *)text;
7465 float_T f;
7466
7467 f = strtod(s, &s);
7468 *value = f;
7469 return (int)((char_u *)s - text);
7470}
7471#endif
7472
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007473/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007474 * Get the value of an environment variable.
7475 * "arg" is pointing to the '$'. It is advanced to after the name.
7476 * If the environment variable was not set, silently assume it is empty.
7477 * Always return OK.
7478 */
7479 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007480get_env_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007481 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00007482 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007483 int evaluate;
7484{
7485 char_u *string = NULL;
7486 int len;
7487 int cc;
7488 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +00007489 int mustfree = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007490
7491 ++*arg;
7492 name = *arg;
7493 len = get_env_len(arg);
7494 if (evaluate)
7495 {
7496 if (len != 0)
7497 {
7498 cc = name[len];
7499 name[len] = NUL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00007500 /* first try vim_getenv(), fast for normal environment vars */
7501 string = vim_getenv(name, &mustfree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007502 if (string != NULL && *string != NUL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00007503 {
7504 if (!mustfree)
7505 string = vim_strsave(string);
7506 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007507 else
7508 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00007509 if (mustfree)
7510 vim_free(string);
7511
Bram Moolenaar071d4272004-06-13 20:20:40 +00007512 /* next try expanding things like $VIM and ${HOME} */
7513 string = expand_env_save(name - 1);
7514 if (string != NULL && *string == '$')
7515 {
7516 vim_free(string);
7517 string = NULL;
7518 }
7519 }
7520 name[len] = cc;
7521 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007522 rettv->v_type = VAR_STRING;
7523 rettv->vval.v_string = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007524 }
7525
7526 return OK;
7527}
7528
7529/*
7530 * Array with names and number of arguments of all internal functions
7531 * MUST BE KEPT SORTED IN strcmp() ORDER FOR BINARY SEARCH!
7532 */
7533static struct fst
7534{
7535 char *f_name; /* function name */
7536 char f_min_argc; /* minimal number of arguments */
7537 char f_max_argc; /* maximal number of arguments */
Bram Moolenaar33570922005-01-25 22:26:29 +00007538 void (*f_func) __ARGS((typval_T *args, typval_T *rvar));
Bram Moolenaarbae0c162007-05-10 19:30:25 +00007539 /* implementation of function */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007540} functions[] =
7541{
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007542#ifdef FEAT_FLOAT
7543 {"abs", 1, 1, f_abs},
7544#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +00007545 {"add", 2, 2, f_add},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007546 {"append", 2, 2, f_append},
7547 {"argc", 0, 0, f_argc},
7548 {"argidx", 0, 0, f_argidx},
Bram Moolenaare2f98b92006-03-29 21:18:24 +00007549 {"argv", 0, 1, f_argv},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007550#ifdef FEAT_FLOAT
7551 {"atan", 1, 1, f_atan},
7552#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007553 {"browse", 4, 4, f_browse},
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00007554 {"browsedir", 2, 2, f_browsedir},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007555 {"bufexists", 1, 1, f_bufexists},
7556 {"buffer_exists", 1, 1, f_bufexists}, /* obsolete */
7557 {"buffer_name", 1, 1, f_bufname}, /* obsolete */
7558 {"buffer_number", 1, 1, f_bufnr}, /* obsolete */
7559 {"buflisted", 1, 1, f_buflisted},
7560 {"bufloaded", 1, 1, f_bufloaded},
7561 {"bufname", 1, 1, f_bufname},
Bram Moolenaar0e34f622006-03-03 23:00:03 +00007562 {"bufnr", 1, 2, f_bufnr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007563 {"bufwinnr", 1, 1, f_bufwinnr},
7564 {"byte2line", 1, 1, f_byte2line},
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007565 {"byteidx", 2, 2, f_byteidx},
Bram Moolenaare9a41262005-01-15 22:18:47 +00007566 {"call", 2, 3, f_call},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007567#ifdef FEAT_FLOAT
7568 {"ceil", 1, 1, f_ceil},
7569#endif
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00007570 {"changenr", 0, 0, f_changenr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007571 {"char2nr", 1, 1, f_char2nr},
7572 {"cindent", 1, 1, f_cindent},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007573 {"clearmatches", 0, 0, f_clearmatches},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007574 {"col", 1, 1, f_col},
Bram Moolenaar572cb562005-08-05 21:35:02 +00007575#if defined(FEAT_INS_EXPAND)
Bram Moolenaarade00832006-03-10 21:46:58 +00007576 {"complete", 2, 2, f_complete},
Bram Moolenaar572cb562005-08-05 21:35:02 +00007577 {"complete_add", 1, 1, f_complete_add},
7578 {"complete_check", 0, 0, f_complete_check},
7579#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007580 {"confirm", 1, 4, f_confirm},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007581 {"copy", 1, 1, f_copy},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007582#ifdef FEAT_FLOAT
7583 {"cos", 1, 1, f_cos},
7584#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007585 {"count", 2, 4, f_count},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007586 {"cscope_connection",0,3, f_cscope_connection},
Bram Moolenaara5525202006-03-02 22:52:09 +00007587 {"cursor", 1, 3, f_cursor},
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007588 {"deepcopy", 1, 2, f_deepcopy},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007589 {"delete", 1, 1, f_delete},
7590 {"did_filetype", 0, 0, f_did_filetype},
Bram Moolenaar47136d72004-10-12 20:02:24 +00007591 {"diff_filler", 1, 1, f_diff_filler},
7592 {"diff_hlID", 2, 2, f_diff_hlID},
Bram Moolenaare49b69a2005-01-08 16:11:57 +00007593 {"empty", 1, 1, f_empty},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007594 {"escape", 2, 2, f_escape},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007595 {"eval", 1, 1, f_eval},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007596 {"eventhandler", 0, 0, f_eventhandler},
7597 {"executable", 1, 1, f_executable},
7598 {"exists", 1, 1, f_exists},
7599 {"expand", 1, 2, f_expand},
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007600 {"extend", 2, 3, f_extend},
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007601 {"feedkeys", 1, 2, f_feedkeys},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007602 {"file_readable", 1, 1, f_filereadable}, /* obsolete */
7603 {"filereadable", 1, 1, f_filereadable},
7604 {"filewritable", 1, 1, f_filewritable},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007605 {"filter", 2, 2, f_filter},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007606 {"finddir", 1, 3, f_finddir},
7607 {"findfile", 1, 3, f_findfile},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007608#ifdef FEAT_FLOAT
7609 {"float2nr", 1, 1, f_float2nr},
7610 {"floor", 1, 1, f_floor},
7611#endif
Bram Moolenaaraebaf892008-05-28 14:49:58 +00007612 {"fnameescape", 1, 1, f_fnameescape},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007613 {"fnamemodify", 2, 2, f_fnamemodify},
7614 {"foldclosed", 1, 1, f_foldclosed},
7615 {"foldclosedend", 1, 1, f_foldclosedend},
7616 {"foldlevel", 1, 1, f_foldlevel},
7617 {"foldtext", 0, 0, f_foldtext},
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00007618 {"foldtextresult", 1, 1, f_foldtextresult},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007619 {"foreground", 0, 0, f_foreground},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007620 {"function", 1, 1, f_function},
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00007621 {"garbagecollect", 0, 1, f_garbagecollect},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007622 {"get", 2, 3, f_get},
Bram Moolenaar80fc0432005-07-20 22:06:07 +00007623 {"getbufline", 2, 3, f_getbufline},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007624 {"getbufvar", 2, 2, f_getbufvar},
7625 {"getchar", 0, 1, f_getchar},
7626 {"getcharmod", 0, 0, f_getcharmod},
7627 {"getcmdline", 0, 0, f_getcmdline},
7628 {"getcmdpos", 0, 0, f_getcmdpos},
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007629 {"getcmdtype", 0, 0, f_getcmdtype},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007630 {"getcwd", 0, 0, f_getcwd},
Bram Moolenaar46c9c732004-12-12 11:37:09 +00007631 {"getfontname", 0, 1, f_getfontname},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007632 {"getfperm", 1, 1, f_getfperm},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007633 {"getfsize", 1, 1, f_getfsize},
7634 {"getftime", 1, 1, f_getftime},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007635 {"getftype", 1, 1, f_getftype},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007636 {"getline", 1, 2, f_getline},
Bram Moolenaar280f1262006-01-30 00:14:18 +00007637 {"getloclist", 1, 1, f_getqflist},
Bram Moolenaar2240aeb2007-07-27 19:33:14 +00007638 {"getmatches", 0, 0, f_getmatches},
Bram Moolenaar18081e32008-02-20 19:11:07 +00007639 {"getpid", 0, 0, f_getpid},
Bram Moolenaara5525202006-03-02 22:52:09 +00007640 {"getpos", 1, 1, f_getpos},
Bram Moolenaar2641f772005-03-25 21:58:17 +00007641 {"getqflist", 0, 0, f_getqflist},
Bram Moolenaar67fe1a12005-05-22 22:12:58 +00007642 {"getreg", 0, 2, f_getreg},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007643 {"getregtype", 0, 1, f_getregtype},
Bram Moolenaar99ebf042006-04-15 20:28:54 +00007644 {"gettabwinvar", 3, 3, f_gettabwinvar},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007645 {"getwinposx", 0, 0, f_getwinposx},
7646 {"getwinposy", 0, 0, f_getwinposy},
7647 {"getwinvar", 2, 2, f_getwinvar},
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00007648 {"glob", 1, 2, f_glob},
7649 {"globpath", 2, 3, f_globpath},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007650 {"has", 1, 1, f_has},
Bram Moolenaare9a41262005-01-15 22:18:47 +00007651 {"has_key", 2, 2, f_has_key},
Bram Moolenaard267b9c2007-04-26 15:06:45 +00007652 {"haslocaldir", 0, 0, f_haslocaldir},
Bram Moolenaar2c932302006-03-18 21:42:09 +00007653 {"hasmapto", 1, 3, f_hasmapto},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007654 {"highlightID", 1, 1, f_hlID}, /* obsolete */
7655 {"highlight_exists",1, 1, f_hlexists}, /* obsolete */
7656 {"histadd", 2, 2, f_histadd},
7657 {"histdel", 1, 2, f_histdel},
7658 {"histget", 1, 2, f_histget},
7659 {"histnr", 1, 1, f_histnr},
7660 {"hlID", 1, 1, f_hlID},
7661 {"hlexists", 1, 1, f_hlexists},
7662 {"hostname", 0, 0, f_hostname},
7663 {"iconv", 3, 3, f_iconv},
7664 {"indent", 1, 1, f_indent},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007665 {"index", 2, 4, f_index},
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007666 {"input", 1, 3, f_input},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007667 {"inputdialog", 1, 3, f_inputdialog},
Bram Moolenaar6efa2b32005-09-10 19:26:26 +00007668 {"inputlist", 1, 1, f_inputlist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007669 {"inputrestore", 0, 0, f_inputrestore},
7670 {"inputsave", 0, 0, f_inputsave},
7671 {"inputsecret", 1, 2, f_inputsecret},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007672 {"insert", 2, 3, f_insert},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007673 {"isdirectory", 1, 1, f_isdirectory},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00007674 {"islocked", 1, 1, f_islocked},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007675 {"items", 1, 1, f_items},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007676 {"join", 1, 2, f_join},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007677 {"keys", 1, 1, f_keys},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007678 {"last_buffer_nr", 0, 0, f_last_buffer_nr},/* obsolete */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007679 {"len", 1, 1, f_len},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007680 {"libcall", 3, 3, f_libcall},
7681 {"libcallnr", 3, 3, f_libcallnr},
7682 {"line", 1, 1, f_line},
7683 {"line2byte", 1, 1, f_line2byte},
7684 {"lispindent", 1, 1, f_lispindent},
7685 {"localtime", 0, 0, f_localtime},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007686#ifdef FEAT_FLOAT
7687 {"log10", 1, 1, f_log10},
7688#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007689 {"map", 2, 2, f_map},
Bram Moolenaar2c932302006-03-18 21:42:09 +00007690 {"maparg", 1, 3, f_maparg},
7691 {"mapcheck", 1, 3, f_mapcheck},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007692 {"match", 2, 4, f_match},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007693 {"matchadd", 2, 4, f_matchadd},
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007694 {"matcharg", 1, 1, f_matcharg},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007695 {"matchdelete", 1, 1, f_matchdelete},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007696 {"matchend", 2, 4, f_matchend},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00007697 {"matchlist", 2, 4, f_matchlist},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007698 {"matchstr", 2, 4, f_matchstr},
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007699 {"max", 1, 1, f_max},
7700 {"min", 1, 1, f_min},
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007701#ifdef vim_mkdir
7702 {"mkdir", 1, 3, f_mkdir},
7703#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007704 {"mode", 0, 1, f_mode},
Bram Moolenaar7e506b62010-01-19 15:55:06 +01007705#ifdef FEAT_MZSCHEME
7706 {"mzeval", 1, 1, f_mzeval},
7707#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007708 {"nextnonblank", 1, 1, f_nextnonblank},
7709 {"nr2char", 1, 1, f_nr2char},
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007710 {"pathshorten", 1, 1, f_pathshorten},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007711#ifdef FEAT_FLOAT
7712 {"pow", 2, 2, f_pow},
7713#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007714 {"prevnonblank", 1, 1, f_prevnonblank},
Bram Moolenaar4be06f92005-07-29 22:36:03 +00007715 {"printf", 2, 19, f_printf},
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007716 {"pumvisible", 0, 0, f_pumvisible},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007717 {"range", 1, 3, f_range},
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007718 {"readfile", 1, 3, f_readfile},
Bram Moolenaare580b0c2006-03-21 21:33:03 +00007719 {"reltime", 0, 2, f_reltime},
7720 {"reltimestr", 1, 1, f_reltimestr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007721 {"remote_expr", 2, 3, f_remote_expr},
7722 {"remote_foreground", 1, 1, f_remote_foreground},
7723 {"remote_peek", 1, 2, f_remote_peek},
7724 {"remote_read", 1, 1, f_remote_read},
7725 {"remote_send", 2, 3, f_remote_send},
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007726 {"remove", 2, 3, f_remove},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007727 {"rename", 2, 2, f_rename},
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007728 {"repeat", 2, 2, f_repeat},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007729 {"resolve", 1, 1, f_resolve},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007730 {"reverse", 1, 1, f_reverse},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007731#ifdef FEAT_FLOAT
7732 {"round", 1, 1, f_round},
7733#endif
Bram Moolenaar76929292008-01-06 19:07:36 +00007734 {"search", 1, 4, f_search},
Bram Moolenaare6facf92005-09-13 21:22:27 +00007735 {"searchdecl", 1, 3, f_searchdecl},
Bram Moolenaar76929292008-01-06 19:07:36 +00007736 {"searchpair", 3, 7, f_searchpair},
7737 {"searchpairpos", 3, 7, f_searchpairpos},
7738 {"searchpos", 1, 4, f_searchpos},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007739 {"server2client", 2, 2, f_server2client},
7740 {"serverlist", 0, 0, f_serverlist},
7741 {"setbufvar", 3, 3, f_setbufvar},
7742 {"setcmdpos", 1, 1, f_setcmdpos},
7743 {"setline", 2, 2, f_setline},
Bram Moolenaar17c7c012006-01-26 22:25:15 +00007744 {"setloclist", 2, 3, f_setloclist},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007745 {"setmatches", 1, 1, f_setmatches},
Bram Moolenaar0e34f622006-03-03 23:00:03 +00007746 {"setpos", 2, 2, f_setpos},
Bram Moolenaarf4630b62005-05-20 21:31:17 +00007747 {"setqflist", 1, 2, f_setqflist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007748 {"setreg", 2, 3, f_setreg},
Bram Moolenaar99ebf042006-04-15 20:28:54 +00007749 {"settabwinvar", 4, 4, f_settabwinvar},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007750 {"setwinvar", 3, 3, f_setwinvar},
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007751 {"shellescape", 1, 2, f_shellescape},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007752 {"simplify", 1, 1, f_simplify},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007753#ifdef FEAT_FLOAT
7754 {"sin", 1, 1, f_sin},
7755#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +00007756 {"sort", 1, 2, f_sort},
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00007757 {"soundfold", 1, 1, f_soundfold},
Bram Moolenaar4463f292005-09-25 22:20:24 +00007758 {"spellbadword", 0, 1, f_spellbadword},
Bram Moolenaar69e0ff92005-09-30 21:23:56 +00007759 {"spellsuggest", 1, 3, f_spellsuggest},
Bram Moolenaar67fe1a12005-05-22 22:12:58 +00007760 {"split", 1, 3, f_split},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007761#ifdef FEAT_FLOAT
7762 {"sqrt", 1, 1, f_sqrt},
7763 {"str2float", 1, 1, f_str2float},
7764#endif
Bram Moolenaar2c932302006-03-18 21:42:09 +00007765 {"str2nr", 1, 2, f_str2nr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007766#ifdef HAVE_STRFTIME
7767 {"strftime", 1, 2, f_strftime},
7768#endif
Bram Moolenaar33570922005-01-25 22:26:29 +00007769 {"stridx", 2, 3, f_stridx},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007770 {"string", 1, 1, f_string},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007771 {"strlen", 1, 1, f_strlen},
7772 {"strpart", 2, 3, f_strpart},
Bram Moolenaar532c7802005-01-27 14:44:31 +00007773 {"strridx", 2, 3, f_strridx},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007774 {"strtrans", 1, 1, f_strtrans},
7775 {"submatch", 1, 1, f_submatch},
7776 {"substitute", 4, 4, f_substitute},
7777 {"synID", 3, 3, f_synID},
7778 {"synIDattr", 2, 3, f_synIDattr},
7779 {"synIDtrans", 1, 1, f_synIDtrans},
Bram Moolenaar9d188ab2008-01-10 21:24:39 +00007780 {"synstack", 2, 2, f_synstack},
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007781 {"system", 1, 2, f_system},
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007782 {"tabpagebuflist", 0, 1, f_tabpagebuflist},
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007783 {"tabpagenr", 0, 1, f_tabpagenr},
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007784 {"tabpagewinnr", 1, 2, f_tabpagewinnr},
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00007785 {"tagfiles", 0, 0, f_tagfiles},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00007786 {"taglist", 1, 1, f_taglist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007787 {"tempname", 0, 0, f_tempname},
Bram Moolenaard52d9742005-08-21 22:20:28 +00007788 {"test", 1, 1, f_test},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007789 {"tolower", 1, 1, f_tolower},
7790 {"toupper", 1, 1, f_toupper},
Bram Moolenaar8299df92004-07-10 09:47:34 +00007791 {"tr", 3, 3, f_tr},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007792#ifdef FEAT_FLOAT
7793 {"trunc", 1, 1, f_trunc},
7794#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007795 {"type", 1, 1, f_type},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007796 {"values", 1, 1, f_values},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007797 {"virtcol", 1, 1, f_virtcol},
7798 {"visualmode", 0, 1, f_visualmode},
7799 {"winbufnr", 1, 1, f_winbufnr},
7800 {"wincol", 0, 0, f_wincol},
7801 {"winheight", 1, 1, f_winheight},
7802 {"winline", 0, 0, f_winline},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007803 {"winnr", 0, 1, f_winnr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007804 {"winrestcmd", 0, 0, f_winrestcmd},
Bram Moolenaar768b8c42006-03-04 21:58:33 +00007805 {"winrestview", 1, 1, f_winrestview},
7806 {"winsaveview", 0, 0, f_winsaveview},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007807 {"winwidth", 1, 1, f_winwidth},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00007808 {"writefile", 2, 3, f_writefile},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007809};
7810
7811#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
7812
7813/*
7814 * Function given to ExpandGeneric() to obtain the list of internal
7815 * or user defined function names.
7816 */
7817 char_u *
7818get_function_name(xp, idx)
7819 expand_T *xp;
7820 int idx;
7821{
7822 static int intidx = -1;
7823 char_u *name;
7824
7825 if (idx == 0)
7826 intidx = -1;
7827 if (intidx < 0)
7828 {
7829 name = get_user_func_name(xp, idx);
7830 if (name != NULL)
7831 return name;
7832 }
7833 if (++intidx < (int)(sizeof(functions) / sizeof(struct fst)))
7834 {
7835 STRCPY(IObuff, functions[intidx].f_name);
7836 STRCAT(IObuff, "(");
7837 if (functions[intidx].f_max_argc == 0)
7838 STRCAT(IObuff, ")");
7839 return IObuff;
7840 }
7841
7842 return NULL;
7843}
7844
7845/*
7846 * Function given to ExpandGeneric() to obtain the list of internal or
7847 * user defined variable or function names.
7848 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007849 char_u *
7850get_expr_name(xp, idx)
7851 expand_T *xp;
7852 int idx;
7853{
7854 static int intidx = -1;
7855 char_u *name;
7856
7857 if (idx == 0)
7858 intidx = -1;
7859 if (intidx < 0)
7860 {
7861 name = get_function_name(xp, idx);
7862 if (name != NULL)
7863 return name;
7864 }
7865 return get_user_var_name(xp, ++intidx);
7866}
7867
7868#endif /* FEAT_CMDL_COMPL */
7869
7870/*
7871 * Find internal function in table above.
7872 * Return index, or -1 if not found
7873 */
7874 static int
7875find_internal_func(name)
7876 char_u *name; /* name of the function */
7877{
7878 int first = 0;
7879 int last = (int)(sizeof(functions) / sizeof(struct fst)) - 1;
7880 int cmp;
7881 int x;
7882
7883 /*
7884 * Find the function name in the table. Binary search.
7885 */
7886 while (first <= last)
7887 {
7888 x = first + ((unsigned)(last - first) >> 1);
7889 cmp = STRCMP(name, functions[x].f_name);
7890 if (cmp < 0)
7891 last = x - 1;
7892 else if (cmp > 0)
7893 first = x + 1;
7894 else
7895 return x;
7896 }
7897 return -1;
7898}
7899
7900/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007901 * Check if "name" is a variable of type VAR_FUNC. If so, return the function
7902 * name it contains, otherwise return "name".
7903 */
7904 static char_u *
7905deref_func_name(name, lenp)
7906 char_u *name;
7907 int *lenp;
7908{
Bram Moolenaar33570922005-01-25 22:26:29 +00007909 dictitem_T *v;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007910 int cc;
7911
7912 cc = name[*lenp];
7913 name[*lenp] = NUL;
Bram Moolenaara7043832005-01-21 11:56:39 +00007914 v = find_var(name, NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007915 name[*lenp] = cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00007916 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007917 {
Bram Moolenaar33570922005-01-25 22:26:29 +00007918 if (v->di_tv.vval.v_string == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007919 {
7920 *lenp = 0;
7921 return (char_u *)""; /* just in case */
7922 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007923 *lenp = (int)STRLEN(v->di_tv.vval.v_string);
Bram Moolenaar33570922005-01-25 22:26:29 +00007924 return v->di_tv.vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007925 }
7926
7927 return name;
7928}
7929
7930/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007931 * Allocate a variable for the result of a function.
7932 * Return OK or FAIL.
7933 */
7934 static int
Bram Moolenaare9a41262005-01-15 22:18:47 +00007935get_func_tv(name, len, rettv, arg, firstline, lastline, doesrange,
7936 evaluate, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007937 char_u *name; /* name of the function */
7938 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +00007939 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007940 char_u **arg; /* argument, pointing to the '(' */
7941 linenr_T firstline; /* first line of range */
7942 linenr_T lastline; /* last line of range */
7943 int *doesrange; /* return: function handled range */
7944 int evaluate;
Bram Moolenaar33570922005-01-25 22:26:29 +00007945 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007946{
7947 char_u *argp;
7948 int ret = OK;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007949 typval_T argvars[MAX_FUNC_ARGS + 1]; /* vars for arguments */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007950 int argcount = 0; /* number of arguments found */
7951
7952 /*
7953 * Get the arguments.
7954 */
7955 argp = *arg;
7956 while (argcount < MAX_FUNC_ARGS)
7957 {
7958 argp = skipwhite(argp + 1); /* skip the '(' or ',' */
7959 if (*argp == ')' || *argp == ',' || *argp == NUL)
7960 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007961 if (eval1(&argp, &argvars[argcount], evaluate) == FAIL)
7962 {
7963 ret = FAIL;
7964 break;
7965 }
7966 ++argcount;
7967 if (*argp != ',')
7968 break;
7969 }
7970 if (*argp == ')')
7971 ++argp;
7972 else
7973 ret = FAIL;
7974
7975 if (ret == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007976 ret = call_func(name, len, rettv, argcount, argvars,
Bram Moolenaare9a41262005-01-15 22:18:47 +00007977 firstline, lastline, doesrange, evaluate, selfdict);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007978 else if (!aborting())
Bram Moolenaar33570922005-01-25 22:26:29 +00007979 {
7980 if (argcount == MAX_FUNC_ARGS)
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +00007981 emsg_funcname(N_("E740: Too many arguments for function %s"), name);
Bram Moolenaar33570922005-01-25 22:26:29 +00007982 else
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +00007983 emsg_funcname(N_("E116: Invalid arguments for function %s"), name);
Bram Moolenaar33570922005-01-25 22:26:29 +00007984 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007985
7986 while (--argcount >= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007987 clear_tv(&argvars[argcount]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007988
7989 *arg = skipwhite(argp);
7990 return ret;
7991}
7992
7993
7994/*
7995 * Call a function with its resolved parameters
Bram Moolenaar280f1262006-01-30 00:14:18 +00007996 * Return OK when the function can't be called, FAIL otherwise.
7997 * Also returns OK when an error was encountered while executing the function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007998 */
7999 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008000call_func(name, len, rettv, argcount, argvars, firstline, lastline,
Bram Moolenaare9a41262005-01-15 22:18:47 +00008001 doesrange, evaluate, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008002 char_u *name; /* name of the function */
8003 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +00008004 typval_T *rettv; /* return value goes here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008005 int argcount; /* number of "argvars" */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00008006 typval_T *argvars; /* vars for arguments, must have "argcount"
8007 PLUS ONE elements! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008008 linenr_T firstline; /* first line of range */
8009 linenr_T lastline; /* last line of range */
8010 int *doesrange; /* return: function handled range */
8011 int evaluate;
Bram Moolenaar33570922005-01-25 22:26:29 +00008012 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008013{
8014 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008015#define ERROR_UNKNOWN 0
8016#define ERROR_TOOMANY 1
8017#define ERROR_TOOFEW 2
8018#define ERROR_SCRIPT 3
Bram Moolenaare9a41262005-01-15 22:18:47 +00008019#define ERROR_DICT 4
8020#define ERROR_NONE 5
8021#define ERROR_OTHER 6
Bram Moolenaar071d4272004-06-13 20:20:40 +00008022 int error = ERROR_NONE;
8023 int i;
8024 int llen;
8025 ufunc_T *fp;
8026 int cc;
8027#define FLEN_FIXED 40
8028 char_u fname_buf[FLEN_FIXED + 1];
8029 char_u *fname;
8030
8031 /*
8032 * In a script change <SID>name() and s:name() to K_SNR 123_name().
8033 * Change <SNR>123_name() to K_SNR 123_name().
8034 * Use fname_buf[] when it fits, otherwise allocate memory (slow).
8035 */
8036 cc = name[len];
8037 name[len] = NUL;
8038 llen = eval_fname_script(name);
8039 if (llen > 0)
8040 {
8041 fname_buf[0] = K_SPECIAL;
8042 fname_buf[1] = KS_EXTRA;
8043 fname_buf[2] = (int)KE_SNR;
8044 i = 3;
8045 if (eval_fname_sid(name)) /* "<SID>" or "s:" */
8046 {
8047 if (current_SID <= 0)
8048 error = ERROR_SCRIPT;
8049 else
8050 {
8051 sprintf((char *)fname_buf + 3, "%ld_", (long)current_SID);
8052 i = (int)STRLEN(fname_buf);
8053 }
8054 }
8055 if (i + STRLEN(name + llen) < FLEN_FIXED)
8056 {
8057 STRCPY(fname_buf + i, name + llen);
8058 fname = fname_buf;
8059 }
8060 else
8061 {
8062 fname = alloc((unsigned)(i + STRLEN(name + llen) + 1));
8063 if (fname == NULL)
8064 error = ERROR_OTHER;
8065 else
8066 {
8067 mch_memmove(fname, fname_buf, (size_t)i);
8068 STRCPY(fname + i, name + llen);
8069 }
8070 }
8071 }
8072 else
8073 fname = name;
8074
8075 *doesrange = FALSE;
8076
8077
8078 /* execute the function if no errors detected and executing */
8079 if (evaluate && error == ERROR_NONE)
8080 {
Bram Moolenaar798b30b2009-04-22 10:56:16 +00008081 rettv->v_type = VAR_NUMBER; /* default rettv is number zero */
8082 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008083 error = ERROR_UNKNOWN;
8084
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008085 if (!builtin_function(fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008086 {
8087 /*
8088 * User defined function.
8089 */
8090 fp = find_func(fname);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008091
Bram Moolenaar071d4272004-06-13 20:20:40 +00008092#ifdef FEAT_AUTOCMD
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008093 /* Trigger FuncUndefined event, may load the function. */
8094 if (fp == NULL
8095 && apply_autocmds(EVENT_FUNCUNDEFINED,
8096 fname, fname, TRUE, NULL)
8097 && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00008098 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008099 /* executed an autocommand, search for the function again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008100 fp = find_func(fname);
8101 }
8102#endif
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008103 /* Try loading a package. */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00008104 if (fp == NULL && script_autoload(fname, TRUE) && !aborting())
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008105 {
8106 /* loaded a package, search for the function again */
8107 fp = find_func(fname);
8108 }
8109
Bram Moolenaar071d4272004-06-13 20:20:40 +00008110 if (fp != NULL)
8111 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008112 if (fp->uf_flags & FC_RANGE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008113 *doesrange = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008114 if (argcount < fp->uf_args.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008115 error = ERROR_TOOFEW;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008116 else if (!fp->uf_varargs && argcount > fp->uf_args.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008117 error = ERROR_TOOMANY;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008118 else if ((fp->uf_flags & FC_DICT) && selfdict == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00008119 error = ERROR_DICT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008120 else
8121 {
8122 /*
8123 * Call the user function.
8124 * Save and restore search patterns, script variables and
8125 * redo buffer.
8126 */
8127 save_search_patterns();
8128 saveRedobuff();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008129 ++fp->uf_calls;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008130 call_user_func(fp, argcount, argvars, rettv,
Bram Moolenaare9a41262005-01-15 22:18:47 +00008131 firstline, lastline,
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008132 (fp->uf_flags & FC_DICT) ? selfdict : NULL);
8133 if (--fp->uf_calls <= 0 && isdigit(*fp->uf_name)
8134 && fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00008135 /* Function was unreferenced while being used, free it
8136 * now. */
8137 func_free(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008138 restoreRedobuff();
8139 restore_search_patterns();
8140 error = ERROR_NONE;
8141 }
8142 }
8143 }
8144 else
8145 {
8146 /*
8147 * Find the function name in the table, call its implementation.
8148 */
8149 i = find_internal_func(fname);
8150 if (i >= 0)
8151 {
8152 if (argcount < functions[i].f_min_argc)
8153 error = ERROR_TOOFEW;
8154 else if (argcount > functions[i].f_max_argc)
8155 error = ERROR_TOOMANY;
8156 else
8157 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008158 argvars[argcount].v_type = VAR_UNKNOWN;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008159 functions[i].f_func(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008160 error = ERROR_NONE;
8161 }
8162 }
8163 }
8164 /*
8165 * The function call (or "FuncUndefined" autocommand sequence) might
8166 * have been aborted by an error, an interrupt, or an explicitly thrown
8167 * exception that has not been caught so far. This situation can be
8168 * tested for by calling aborting(). For an error in an internal
8169 * function or for the "E132" error in call_user_func(), however, the
8170 * throw point at which the "force_abort" flag (temporarily reset by
8171 * emsg()) is normally updated has not been reached yet. We need to
8172 * update that flag first to make aborting() reliable.
8173 */
8174 update_force_abort();
8175 }
8176 if (error == ERROR_NONE)
8177 ret = OK;
8178
8179 /*
8180 * Report an error unless the argument evaluation or function call has been
8181 * cancelled due to an aborting error, an interrupt, or an exception.
8182 */
Bram Moolenaar8c711452005-01-14 21:53:12 +00008183 if (!aborting())
8184 {
8185 switch (error)
8186 {
8187 case ERROR_UNKNOWN:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008188 emsg_funcname(N_("E117: Unknown function: %s"), name);
Bram Moolenaar8c711452005-01-14 21:53:12 +00008189 break;
8190 case ERROR_TOOMANY:
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008191 emsg_funcname(e_toomanyarg, name);
Bram Moolenaar8c711452005-01-14 21:53:12 +00008192 break;
8193 case ERROR_TOOFEW:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008194 emsg_funcname(N_("E119: Not enough arguments for function: %s"),
Bram Moolenaar8c711452005-01-14 21:53:12 +00008195 name);
8196 break;
8197 case ERROR_SCRIPT:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008198 emsg_funcname(N_("E120: Using <SID> not in a script context: %s"),
Bram Moolenaar8c711452005-01-14 21:53:12 +00008199 name);
8200 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00008201 case ERROR_DICT:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008202 emsg_funcname(N_("E725: Calling dict function without Dictionary: %s"),
Bram Moolenaare9a41262005-01-15 22:18:47 +00008203 name);
8204 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00008205 }
8206 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008207
8208 name[len] = cc;
8209 if (fname != name && fname != fname_buf)
8210 vim_free(fname);
8211
8212 return ret;
8213}
8214
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008215/*
8216 * Give an error message with a function name. Handle <SNR> things.
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +00008217 * "ermsg" is to be passed without translation, use N_() instead of _().
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008218 */
8219 static void
Bram Moolenaar89d40322006-08-29 15:30:07 +00008220emsg_funcname(ermsg, name)
8221 char *ermsg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008222 char_u *name;
8223{
8224 char_u *p;
8225
8226 if (*name == K_SPECIAL)
8227 p = concat_str((char_u *)"<SNR>", name + 3);
8228 else
8229 p = name;
Bram Moolenaar89d40322006-08-29 15:30:07 +00008230 EMSG2(_(ermsg), p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008231 if (p != name)
8232 vim_free(p);
8233}
8234
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008235/*
8236 * Return TRUE for a non-zero Number and a non-empty String.
8237 */
8238 static int
8239non_zero_arg(argvars)
8240 typval_T *argvars;
8241{
8242 return ((argvars[0].v_type == VAR_NUMBER
8243 && argvars[0].vval.v_number != 0)
8244 || (argvars[0].v_type == VAR_STRING
8245 && argvars[0].vval.v_string != NULL
8246 && *argvars[0].vval.v_string != NUL));
8247}
8248
Bram Moolenaar071d4272004-06-13 20:20:40 +00008249/*********************************************
8250 * Implementation of the built-in functions
8251 */
8252
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008253#ifdef FEAT_FLOAT
8254/*
8255 * "abs(expr)" function
8256 */
8257 static void
8258f_abs(argvars, rettv)
8259 typval_T *argvars;
8260 typval_T *rettv;
8261{
8262 if (argvars[0].v_type == VAR_FLOAT)
8263 {
8264 rettv->v_type = VAR_FLOAT;
8265 rettv->vval.v_float = fabs(argvars[0].vval.v_float);
8266 }
8267 else
8268 {
8269 varnumber_T n;
8270 int error = FALSE;
8271
8272 n = get_tv_number_chk(&argvars[0], &error);
8273 if (error)
8274 rettv->vval.v_number = -1;
8275 else if (n > 0)
8276 rettv->vval.v_number = n;
8277 else
8278 rettv->vval.v_number = -n;
8279 }
8280}
8281#endif
8282
Bram Moolenaar071d4272004-06-13 20:20:40 +00008283/*
Bram Moolenaar0d660222005-01-07 21:51:51 +00008284 * "add(list, item)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +00008285 */
8286 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +00008287f_add(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008288 typval_T *argvars;
8289 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008290{
Bram Moolenaar33570922005-01-25 22:26:29 +00008291 list_T *l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008292
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008293 rettv->vval.v_number = 1; /* Default: Failed */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008294 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008295 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00008296 if ((l = argvars[0].vval.v_list) != NULL
8297 && !tv_check_lock(l->lv_lock, (char_u *)"add()")
8298 && list_append_tv(l, &argvars[1]) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008299 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008300 }
8301 else
Bram Moolenaar0d660222005-01-07 21:51:51 +00008302 EMSG(_(e_listreq));
8303}
8304
8305/*
8306 * "append(lnum, string/list)" function
8307 */
8308 static void
8309f_append(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008310 typval_T *argvars;
8311 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00008312{
8313 long lnum;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008314 char_u *line;
Bram Moolenaar33570922005-01-25 22:26:29 +00008315 list_T *l = NULL;
8316 listitem_T *li = NULL;
8317 typval_T *tv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00008318 long added = 0;
8319
Bram Moolenaar0d660222005-01-07 21:51:51 +00008320 lnum = get_tv_lnum(argvars);
8321 if (lnum >= 0
8322 && lnum <= curbuf->b_ml.ml_line_count
8323 && u_save(lnum, lnum + 1) == OK)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008324 {
Bram Moolenaar0d660222005-01-07 21:51:51 +00008325 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008326 {
Bram Moolenaar0d660222005-01-07 21:51:51 +00008327 l = argvars[1].vval.v_list;
8328 if (l == NULL)
8329 return;
8330 li = l->lv_first;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008331 }
Bram Moolenaar0d660222005-01-07 21:51:51 +00008332 for (;;)
8333 {
8334 if (l == NULL)
8335 tv = &argvars[1]; /* append a string */
8336 else if (li == NULL)
8337 break; /* end of list */
8338 else
8339 tv = &li->li_tv; /* append item from list */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008340 line = get_tv_string_chk(tv);
8341 if (line == NULL) /* type error */
8342 {
8343 rettv->vval.v_number = 1; /* Failed */
8344 break;
8345 }
8346 ml_append(lnum + added, line, (colnr_T)0, FALSE);
Bram Moolenaar0d660222005-01-07 21:51:51 +00008347 ++added;
8348 if (l == NULL)
8349 break;
8350 li = li->li_next;
8351 }
8352
8353 appended_lines_mark(lnum, added);
8354 if (curwin->w_cursor.lnum > lnum)
8355 curwin->w_cursor.lnum += added;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008356 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008357 else
8358 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008359}
8360
8361/*
8362 * "argc()" function
8363 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008364 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008365f_argc(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008366 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008367 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008368{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008369 rettv->vval.v_number = ARGCOUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008370}
8371
8372/*
8373 * "argidx()" function
8374 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008375 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008376f_argidx(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008377 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008378 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008379{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008380 rettv->vval.v_number = curwin->w_arg_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008381}
8382
8383/*
8384 * "argv(nr)" function
8385 */
8386 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008387f_argv(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008388 typval_T *argvars;
8389 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008390{
8391 int idx;
8392
Bram Moolenaare2f98b92006-03-29 21:18:24 +00008393 if (argvars[0].v_type != VAR_UNKNOWN)
8394 {
8395 idx = get_tv_number_chk(&argvars[0], NULL);
8396 if (idx >= 0 && idx < ARGCOUNT)
8397 rettv->vval.v_string = vim_strsave(alist_name(&ARGLIST[idx]));
8398 else
8399 rettv->vval.v_string = NULL;
8400 rettv->v_type = VAR_STRING;
8401 }
8402 else if (rettv_list_alloc(rettv) == OK)
8403 for (idx = 0; idx < ARGCOUNT; ++idx)
8404 list_append_string(rettv->vval.v_list,
8405 alist_name(&ARGLIST[idx]), -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008406}
8407
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008408#ifdef FEAT_FLOAT
8409static int get_float_arg __ARGS((typval_T *argvars, float_T *f));
8410
8411/*
8412 * Get the float value of "argvars[0]" into "f".
8413 * Returns FAIL when the argument is not a Number or Float.
8414 */
8415 static int
8416get_float_arg(argvars, f)
8417 typval_T *argvars;
8418 float_T *f;
8419{
8420 if (argvars[0].v_type == VAR_FLOAT)
8421 {
8422 *f = argvars[0].vval.v_float;
8423 return OK;
8424 }
8425 if (argvars[0].v_type == VAR_NUMBER)
8426 {
8427 *f = (float_T)argvars[0].vval.v_number;
8428 return OK;
8429 }
8430 EMSG(_("E808: Number or Float required"));
8431 return FAIL;
8432}
8433
8434/*
8435 * "atan()" function
8436 */
8437 static void
8438f_atan(argvars, rettv)
8439 typval_T *argvars;
8440 typval_T *rettv;
8441{
8442 float_T f;
8443
8444 rettv->v_type = VAR_FLOAT;
8445 if (get_float_arg(argvars, &f) == OK)
8446 rettv->vval.v_float = atan(f);
8447 else
8448 rettv->vval.v_float = 0.0;
8449}
8450#endif
8451
Bram Moolenaar071d4272004-06-13 20:20:40 +00008452/*
8453 * "browse(save, title, initdir, default)" function
8454 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008455 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008456f_browse(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008457 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008458 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008459{
8460#ifdef FEAT_BROWSE
8461 int save;
8462 char_u *title;
8463 char_u *initdir;
8464 char_u *defname;
8465 char_u buf[NUMBUFLEN];
8466 char_u buf2[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008467 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008468
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008469 save = get_tv_number_chk(&argvars[0], &error);
8470 title = get_tv_string_chk(&argvars[1]);
8471 initdir = get_tv_string_buf_chk(&argvars[2], buf);
8472 defname = get_tv_string_buf_chk(&argvars[3], buf2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008473
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008474 if (error || title == NULL || initdir == NULL || defname == NULL)
8475 rettv->vval.v_string = NULL;
8476 else
8477 rettv->vval.v_string =
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008478 do_browse(save ? BROWSE_SAVE : 0,
8479 title, defname, NULL, initdir, NULL, curbuf);
8480#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008481 rettv->vval.v_string = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008482#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008483 rettv->v_type = VAR_STRING;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008484}
8485
8486/*
8487 * "browsedir(title, initdir)" function
8488 */
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008489 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008490f_browsedir(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008491 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008492 typval_T *rettv;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008493{
8494#ifdef FEAT_BROWSE
8495 char_u *title;
8496 char_u *initdir;
8497 char_u buf[NUMBUFLEN];
8498
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008499 title = get_tv_string_chk(&argvars[0]);
8500 initdir = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008501
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008502 if (title == NULL || initdir == NULL)
8503 rettv->vval.v_string = NULL;
8504 else
8505 rettv->vval.v_string = do_browse(BROWSE_DIR,
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008506 title, NULL, NULL, initdir, NULL, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008507#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008508 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008509#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008510 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008511}
8512
Bram Moolenaar33570922005-01-25 22:26:29 +00008513static buf_T *find_buffer __ARGS((typval_T *avar));
Bram Moolenaar0d660222005-01-07 21:51:51 +00008514
Bram Moolenaar071d4272004-06-13 20:20:40 +00008515/*
8516 * Find a buffer by number or exact name.
8517 */
8518 static buf_T *
8519find_buffer(avar)
Bram Moolenaar33570922005-01-25 22:26:29 +00008520 typval_T *avar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008521{
8522 buf_T *buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008523
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008524 if (avar->v_type == VAR_NUMBER)
8525 buf = buflist_findnr((int)avar->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +00008526 else if (avar->v_type == VAR_STRING && avar->vval.v_string != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008527 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008528 buf = buflist_findname_exp(avar->vval.v_string);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00008529 if (buf == NULL)
8530 {
8531 /* No full path name match, try a match with a URL or a "nofile"
8532 * buffer, these don't use the full path. */
8533 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
8534 if (buf->b_fname != NULL
8535 && (path_with_url(buf->b_fname)
8536#ifdef FEAT_QUICKFIX
8537 || bt_nofile(buf)
8538#endif
8539 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008540 && STRCMP(buf->b_fname, avar->vval.v_string) == 0)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00008541 break;
8542 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008543 }
8544 return buf;
8545}
8546
8547/*
8548 * "bufexists(expr)" function
8549 */
8550 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008551f_bufexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008552 typval_T *argvars;
8553 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008554{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008555 rettv->vval.v_number = (find_buffer(&argvars[0]) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008556}
8557
8558/*
8559 * "buflisted(expr)" function
8560 */
8561 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008562f_buflisted(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008563 typval_T *argvars;
8564 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008565{
8566 buf_T *buf;
8567
8568 buf = find_buffer(&argvars[0]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008569 rettv->vval.v_number = (buf != NULL && buf->b_p_bl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008570}
8571
8572/*
8573 * "bufloaded(expr)" function
8574 */
8575 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008576f_bufloaded(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008577 typval_T *argvars;
8578 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008579{
8580 buf_T *buf;
8581
8582 buf = find_buffer(&argvars[0]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008583 rettv->vval.v_number = (buf != NULL && buf->b_ml.ml_mfp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008584}
8585
Bram Moolenaar33570922005-01-25 22:26:29 +00008586static buf_T *get_buf_tv __ARGS((typval_T *tv));
Bram Moolenaar0d660222005-01-07 21:51:51 +00008587
Bram Moolenaar071d4272004-06-13 20:20:40 +00008588/*
8589 * Get buffer by number or pattern.
8590 */
8591 static buf_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008592get_buf_tv(tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008593 typval_T *tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008594{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008595 char_u *name = tv->vval.v_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008596 int save_magic;
8597 char_u *save_cpo;
8598 buf_T *buf;
8599
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008600 if (tv->v_type == VAR_NUMBER)
8601 return buflist_findnr((int)tv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +00008602 if (tv->v_type != VAR_STRING)
8603 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008604 if (name == NULL || *name == NUL)
8605 return curbuf;
8606 if (name[0] == '$' && name[1] == NUL)
8607 return lastbuf;
8608
8609 /* Ignore 'magic' and 'cpoptions' here to make scripts portable */
8610 save_magic = p_magic;
8611 p_magic = TRUE;
8612 save_cpo = p_cpo;
8613 p_cpo = (char_u *)"";
8614
8615 buf = buflist_findnr(buflist_findpat(name, name + STRLEN(name),
8616 TRUE, FALSE));
8617
8618 p_magic = save_magic;
8619 p_cpo = save_cpo;
8620
8621 /* If not found, try expanding the name, like done for bufexists(). */
8622 if (buf == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008623 buf = find_buffer(tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008624
8625 return buf;
8626}
8627
8628/*
8629 * "bufname(expr)" function
8630 */
8631 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008632f_bufname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008633 typval_T *argvars;
8634 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008635{
8636 buf_T *buf;
8637
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008638 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008639 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008640 buf = get_buf_tv(&argvars[0]);
8641 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008642 if (buf != NULL && buf->b_fname != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008643 rettv->vval.v_string = vim_strsave(buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008644 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008645 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008646 --emsg_off;
8647}
8648
8649/*
8650 * "bufnr(expr)" function
8651 */
8652 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008653f_bufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008654 typval_T *argvars;
8655 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008656{
8657 buf_T *buf;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008658 int error = FALSE;
8659 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008660
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008661 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008662 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008663 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008664 --emsg_off;
8665
8666 /* If the buffer isn't found and the second argument is not zero create a
8667 * new buffer. */
8668 if (buf == NULL
8669 && argvars[1].v_type != VAR_UNKNOWN
8670 && get_tv_number_chk(&argvars[1], &error) != 0
8671 && !error
8672 && (name = get_tv_string_chk(&argvars[0])) != NULL
8673 && !error)
8674 buf = buflist_new(name, NULL, (linenr_T)1, 0);
8675
Bram Moolenaar071d4272004-06-13 20:20:40 +00008676 if (buf != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008677 rettv->vval.v_number = buf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008678 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008679 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008680}
8681
8682/*
8683 * "bufwinnr(nr)" function
8684 */
8685 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008686f_bufwinnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008687 typval_T *argvars;
8688 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008689{
8690#ifdef FEAT_WINDOWS
8691 win_T *wp;
8692 int winnr = 0;
8693#endif
8694 buf_T *buf;
8695
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008696 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008697 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008698 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008699#ifdef FEAT_WINDOWS
8700 for (wp = firstwin; wp; wp = wp->w_next)
8701 {
8702 ++winnr;
8703 if (wp->w_buffer == buf)
8704 break;
8705 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008706 rettv->vval.v_number = (wp != NULL ? winnr : -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008707#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008708 rettv->vval.v_number = (curwin->w_buffer == buf ? 1 : -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008709#endif
8710 --emsg_off;
8711}
8712
8713/*
8714 * "byte2line(byte)" function
8715 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008716 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008717f_byte2line(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00008718 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008719 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008720{
8721#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008722 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008723#else
8724 long boff = 0;
8725
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008726 boff = get_tv_number(&argvars[0]) - 1; /* boff gets -1 on type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008727 if (boff < 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008728 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008729 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008730 rettv->vval.v_number = ml_find_line_or_offset(curbuf,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008731 (linenr_T)0, &boff);
8732#endif
8733}
8734
8735/*
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008736 * "byteidx()" function
8737 */
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008738 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008739f_byteidx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008740 typval_T *argvars;
8741 typval_T *rettv;
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008742{
8743#ifdef FEAT_MBYTE
8744 char_u *t;
8745#endif
8746 char_u *str;
8747 long idx;
8748
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008749 str = get_tv_string_chk(&argvars[0]);
8750 idx = get_tv_number_chk(&argvars[1], NULL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008751 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008752 if (str == NULL || idx < 0)
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008753 return;
8754
8755#ifdef FEAT_MBYTE
8756 t = str;
8757 for ( ; idx > 0; idx--)
8758 {
8759 if (*t == NUL) /* EOL reached */
8760 return;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008761 t += (*mb_ptr2len)(t);
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008762 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008763 rettv->vval.v_number = (varnumber_T)(t - str);
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008764#else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008765 if ((size_t)idx <= STRLEN(str))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008766 rettv->vval.v_number = idx;
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008767#endif
8768}
8769
8770/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008771 * "call(func, arglist)" function
8772 */
8773 static void
8774f_call(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008775 typval_T *argvars;
8776 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008777{
8778 char_u *func;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00008779 typval_T argv[MAX_FUNC_ARGS + 1];
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008780 int argc = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +00008781 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008782 int dummy;
Bram Moolenaar33570922005-01-25 22:26:29 +00008783 dict_T *selfdict = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008784
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008785 if (argvars[1].v_type != VAR_LIST)
8786 {
8787 EMSG(_(e_listreq));
8788 return;
8789 }
8790 if (argvars[1].vval.v_list == NULL)
8791 return;
8792
8793 if (argvars[0].v_type == VAR_FUNC)
8794 func = argvars[0].vval.v_string;
8795 else
8796 func = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008797 if (*func == NUL)
8798 return; /* type error or empty name */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008799
Bram Moolenaare9a41262005-01-15 22:18:47 +00008800 if (argvars[2].v_type != VAR_UNKNOWN)
8801 {
8802 if (argvars[2].v_type != VAR_DICT)
8803 {
8804 EMSG(_(e_dictreq));
8805 return;
8806 }
8807 selfdict = argvars[2].vval.v_dict;
8808 }
8809
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008810 for (item = argvars[1].vval.v_list->lv_first; item != NULL;
8811 item = item->li_next)
8812 {
8813 if (argc == MAX_FUNC_ARGS)
8814 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00008815 EMSG(_("E699: Too many arguments"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008816 break;
8817 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00008818 /* Make a copy of each argument. This is needed to be able to set
8819 * v_lock to VAR_FIXED in the copy without changing the original list.
8820 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008821 copy_tv(&item->li_tv, &argv[argc++]);
8822 }
8823
8824 if (item == NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008825 (void)call_func(func, (int)STRLEN(func), rettv, argc, argv,
Bram Moolenaare9a41262005-01-15 22:18:47 +00008826 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
8827 &dummy, TRUE, selfdict);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008828
8829 /* Free the arguments. */
8830 while (argc > 0)
8831 clear_tv(&argv[--argc]);
8832}
8833
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008834#ifdef FEAT_FLOAT
8835/*
8836 * "ceil({float})" function
8837 */
8838 static void
8839f_ceil(argvars, rettv)
8840 typval_T *argvars;
8841 typval_T *rettv;
8842{
8843 float_T f;
8844
8845 rettv->v_type = VAR_FLOAT;
8846 if (get_float_arg(argvars, &f) == OK)
8847 rettv->vval.v_float = ceil(f);
8848 else
8849 rettv->vval.v_float = 0.0;
8850}
8851#endif
8852
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008853/*
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00008854 * "changenr()" function
8855 */
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00008856 static void
8857f_changenr(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008858 typval_T *argvars UNUSED;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00008859 typval_T *rettv;
8860{
8861 rettv->vval.v_number = curbuf->b_u_seq_cur;
8862}
8863
8864/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008865 * "char2nr(string)" function
8866 */
8867 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008868f_char2nr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008869 typval_T *argvars;
8870 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008871{
8872#ifdef FEAT_MBYTE
8873 if (has_mbyte)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008874 rettv->vval.v_number = (*mb_ptr2char)(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008875 else
8876#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008877 rettv->vval.v_number = get_tv_string(&argvars[0])[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00008878}
8879
8880/*
8881 * "cindent(lnum)" function
8882 */
8883 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008884f_cindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008885 typval_T *argvars;
8886 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008887{
8888#ifdef FEAT_CINDENT
8889 pos_T pos;
8890 linenr_T lnum;
8891
8892 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008893 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008894 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
8895 {
8896 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008897 rettv->vval.v_number = get_c_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008898 curwin->w_cursor = pos;
8899 }
8900 else
8901#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008902 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008903}
8904
8905/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +00008906 * "clearmatches()" function
8907 */
Bram Moolenaar6ee10162007-07-26 20:58:42 +00008908 static void
8909f_clearmatches(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008910 typval_T *argvars UNUSED;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00008911 typval_T *rettv UNUSED;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00008912{
8913#ifdef FEAT_SEARCH_EXTRA
8914 clear_matches(curwin);
8915#endif
8916}
8917
8918/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008919 * "col(string)" function
8920 */
8921 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008922f_col(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008923 typval_T *argvars;
8924 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008925{
8926 colnr_T col = 0;
8927 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008928 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008929
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008930 fp = var2fpos(&argvars[0], FALSE, &fnum);
8931 if (fp != NULL && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008932 {
8933 if (fp->col == MAXCOL)
8934 {
8935 /* '> can be MAXCOL, get the length of the line then */
8936 if (fp->lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008937 col = (colnr_T)STRLEN(ml_get(fp->lnum)) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008938 else
8939 col = MAXCOL;
8940 }
8941 else
8942 {
8943 col = fp->col + 1;
8944#ifdef FEAT_VIRTUALEDIT
8945 /* col(".") when the cursor is on the NUL at the end of the line
8946 * because of "coladd" can be seen as an extra column. */
8947 if (virtual_active() && fp == &curwin->w_cursor)
8948 {
8949 char_u *p = ml_get_cursor();
8950
8951 if (curwin->w_cursor.coladd >= (colnr_T)chartabsize(p,
8952 curwin->w_virtcol - curwin->w_cursor.coladd))
8953 {
8954# ifdef FEAT_MBYTE
8955 int l;
8956
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008957 if (*p != NUL && p[(l = (*mb_ptr2len)(p))] == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008958 col += l;
8959# else
8960 if (*p != NUL && p[1] == NUL)
8961 ++col;
8962# endif
8963 }
8964 }
8965#endif
8966 }
8967 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008968 rettv->vval.v_number = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008969}
8970
Bram Moolenaar572cb562005-08-05 21:35:02 +00008971#if defined(FEAT_INS_EXPAND)
8972/*
Bram Moolenaarade00832006-03-10 21:46:58 +00008973 * "complete()" function
8974 */
Bram Moolenaarade00832006-03-10 21:46:58 +00008975 static void
8976f_complete(argvars, rettv)
8977 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00008978 typval_T *rettv UNUSED;
Bram Moolenaarade00832006-03-10 21:46:58 +00008979{
8980 int startcol;
8981
8982 if ((State & INSERT) == 0)
8983 {
8984 EMSG(_("E785: complete() can only be used in Insert mode"));
8985 return;
8986 }
Bram Moolenaarce6ef252006-07-12 19:49:41 +00008987
8988 /* Check for undo allowed here, because if something was already inserted
8989 * the line was already saved for undo and this check isn't done. */
8990 if (!undo_allowed())
8991 return;
8992
Bram Moolenaarade00832006-03-10 21:46:58 +00008993 if (argvars[1].v_type != VAR_LIST || argvars[1].vval.v_list == NULL)
8994 {
8995 EMSG(_(e_invarg));
8996 return;
8997 }
8998
8999 startcol = get_tv_number_chk(&argvars[0], NULL);
9000 if (startcol <= 0)
9001 return;
9002
9003 set_completion(startcol - 1, argvars[1].vval.v_list);
9004}
9005
9006/*
Bram Moolenaar572cb562005-08-05 21:35:02 +00009007 * "complete_add()" function
9008 */
Bram Moolenaar572cb562005-08-05 21:35:02 +00009009 static void
9010f_complete_add(argvars, rettv)
9011 typval_T *argvars;
9012 typval_T *rettv;
9013{
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00009014 rettv->vval.v_number = ins_compl_add_tv(&argvars[0], 0);
Bram Moolenaar572cb562005-08-05 21:35:02 +00009015}
9016
9017/*
9018 * "complete_check()" function
9019 */
Bram Moolenaar572cb562005-08-05 21:35:02 +00009020 static void
9021f_complete_check(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009022 typval_T *argvars UNUSED;
Bram Moolenaar572cb562005-08-05 21:35:02 +00009023 typval_T *rettv;
9024{
9025 int saved = RedrawingDisabled;
9026
9027 RedrawingDisabled = 0;
9028 ins_compl_check_keys(0);
9029 rettv->vval.v_number = compl_interrupted;
9030 RedrawingDisabled = saved;
9031}
9032#endif
9033
Bram Moolenaar071d4272004-06-13 20:20:40 +00009034/*
9035 * "confirm(message, buttons[, default [, type]])" function
9036 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009037 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009038f_confirm(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009039 typval_T *argvars UNUSED;
9040 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009041{
9042#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
9043 char_u *message;
9044 char_u *buttons = NULL;
9045 char_u buf[NUMBUFLEN];
9046 char_u buf2[NUMBUFLEN];
9047 int def = 1;
9048 int type = VIM_GENERIC;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009049 char_u *typestr;
9050 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009051
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009052 message = get_tv_string_chk(&argvars[0]);
9053 if (message == NULL)
9054 error = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009055 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009056 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009057 buttons = get_tv_string_buf_chk(&argvars[1], buf);
9058 if (buttons == NULL)
9059 error = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009060 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009061 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009062 def = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009063 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009064 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009065 typestr = get_tv_string_buf_chk(&argvars[3], buf2);
9066 if (typestr == NULL)
9067 error = TRUE;
9068 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00009069 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009070 switch (TOUPPER_ASC(*typestr))
9071 {
9072 case 'E': type = VIM_ERROR; break;
9073 case 'Q': type = VIM_QUESTION; break;
9074 case 'I': type = VIM_INFO; break;
9075 case 'W': type = VIM_WARNING; break;
9076 case 'G': type = VIM_GENERIC; break;
9077 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009078 }
9079 }
9080 }
9081 }
9082
9083 if (buttons == NULL || *buttons == NUL)
9084 buttons = (char_u *)_("&Ok");
9085
Bram Moolenaar798b30b2009-04-22 10:56:16 +00009086 if (!error)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009087 rettv->vval.v_number = do_dialog(type, NULL, message, buttons,
Bram Moolenaar071d4272004-06-13 20:20:40 +00009088 def, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009089#endif
9090}
9091
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009092/*
9093 * "copy()" function
9094 */
9095 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009096f_copy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009097 typval_T *argvars;
9098 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009099{
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009100 item_copy(&argvars[0], rettv, FALSE, 0);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009101}
Bram Moolenaar071d4272004-06-13 20:20:40 +00009102
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009103#ifdef FEAT_FLOAT
9104/*
9105 * "cos()" function
9106 */
9107 static void
9108f_cos(argvars, rettv)
9109 typval_T *argvars;
9110 typval_T *rettv;
9111{
9112 float_T f;
9113
9114 rettv->v_type = VAR_FLOAT;
9115 if (get_float_arg(argvars, &f) == OK)
9116 rettv->vval.v_float = cos(f);
9117 else
9118 rettv->vval.v_float = 0.0;
9119}
9120#endif
9121
Bram Moolenaar071d4272004-06-13 20:20:40 +00009122/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009123 * "count()" function
9124 */
9125 static void
9126f_count(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009127 typval_T *argvars;
9128 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009129{
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009130 long n = 0;
9131 int ic = FALSE;
9132
Bram Moolenaare9a41262005-01-15 22:18:47 +00009133 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009134 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009135 listitem_T *li;
9136 list_T *l;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009137 long idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009138
Bram Moolenaare9a41262005-01-15 22:18:47 +00009139 if ((l = argvars[0].vval.v_list) != NULL)
9140 {
9141 li = l->lv_first;
9142 if (argvars[2].v_type != VAR_UNKNOWN)
9143 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009144 int error = FALSE;
9145
9146 ic = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009147 if (argvars[3].v_type != VAR_UNKNOWN)
9148 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009149 idx = get_tv_number_chk(&argvars[3], &error);
9150 if (!error)
9151 {
9152 li = list_find(l, idx);
9153 if (li == NULL)
9154 EMSGN(_(e_listidx), idx);
9155 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009156 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009157 if (error)
9158 li = NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009159 }
9160
9161 for ( ; li != NULL; li = li->li_next)
9162 if (tv_equal(&li->li_tv, &argvars[1], ic))
9163 ++n;
9164 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009165 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009166 else if (argvars[0].v_type == VAR_DICT)
9167 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009168 int todo;
9169 dict_T *d;
9170 hashitem_T *hi;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009171
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009172 if ((d = argvars[0].vval.v_dict) != NULL)
9173 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009174 int error = FALSE;
9175
Bram Moolenaare9a41262005-01-15 22:18:47 +00009176 if (argvars[2].v_type != VAR_UNKNOWN)
9177 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009178 ic = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009179 if (argvars[3].v_type != VAR_UNKNOWN)
9180 EMSG(_(e_invarg));
9181 }
9182
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009183 todo = error ? 0 : (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00009184 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009185 {
9186 if (!HASHITEM_EMPTY(hi))
9187 {
9188 --todo;
9189 if (tv_equal(&HI2DI(hi)->di_tv, &argvars[1], ic))
9190 ++n;
9191 }
9192 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009193 }
9194 }
9195 else
9196 EMSG2(_(e_listdictarg), "count()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009197 rettv->vval.v_number = n;
9198}
9199
9200/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009201 * "cscope_connection([{num} , {dbpath} [, {prepend}]])" function
9202 *
9203 * Checks the existence of a cscope connection.
9204 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009205 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009206f_cscope_connection(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009207 typval_T *argvars UNUSED;
9208 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009209{
9210#ifdef FEAT_CSCOPE
9211 int num = 0;
9212 char_u *dbpath = NULL;
9213 char_u *prepend = NULL;
9214 char_u buf[NUMBUFLEN];
9215
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009216 if (argvars[0].v_type != VAR_UNKNOWN
9217 && argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009218 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009219 num = (int)get_tv_number(&argvars[0]);
9220 dbpath = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009221 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009222 prepend = get_tv_string_buf(&argvars[2], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009223 }
9224
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009225 rettv->vval.v_number = cs_connection(num, dbpath, prepend);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009226#endif
9227}
9228
9229/*
9230 * "cursor(lnum, col)" function
9231 *
Bram Moolenaar798b30b2009-04-22 10:56:16 +00009232 * Moves the cursor to the specified line and column.
9233 * Returns 0 when the position could be set, -1 otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009234 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009235 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009236f_cursor(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009237 typval_T *argvars;
9238 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009239{
9240 long line, col;
Bram Moolenaara5525202006-03-02 22:52:09 +00009241#ifdef FEAT_VIRTUALEDIT
9242 long coladd = 0;
9243#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009244
Bram Moolenaar798b30b2009-04-22 10:56:16 +00009245 rettv->vval.v_number = -1;
Bram Moolenaara5525202006-03-02 22:52:09 +00009246 if (argvars[1].v_type == VAR_UNKNOWN)
9247 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009248 pos_T pos;
Bram Moolenaara5525202006-03-02 22:52:09 +00009249
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009250 if (list2fpos(argvars, &pos, NULL) == FAIL)
Bram Moolenaara5525202006-03-02 22:52:09 +00009251 return;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009252 line = pos.lnum;
9253 col = pos.col;
Bram Moolenaara5525202006-03-02 22:52:09 +00009254#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009255 coladd = pos.coladd;
Bram Moolenaara5525202006-03-02 22:52:09 +00009256#endif
9257 }
9258 else
9259 {
9260 line = get_tv_lnum(argvars);
9261 col = get_tv_number_chk(&argvars[1], NULL);
9262#ifdef FEAT_VIRTUALEDIT
9263 if (argvars[2].v_type != VAR_UNKNOWN)
9264 coladd = get_tv_number_chk(&argvars[2], NULL);
9265#endif
9266 }
9267 if (line < 0 || col < 0
9268#ifdef FEAT_VIRTUALEDIT
9269 || coladd < 0
9270#endif
9271 )
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009272 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009273 if (line > 0)
9274 curwin->w_cursor.lnum = line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009275 if (col > 0)
9276 curwin->w_cursor.col = col - 1;
9277#ifdef FEAT_VIRTUALEDIT
Bram Moolenaara5525202006-03-02 22:52:09 +00009278 curwin->w_cursor.coladd = coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009279#endif
9280
9281 /* Make sure the cursor is in a valid position. */
9282 check_cursor();
9283#ifdef FEAT_MBYTE
9284 /* Correct cursor for multi-byte character. */
9285 if (has_mbyte)
9286 mb_adjust_cursor();
9287#endif
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00009288
9289 curwin->w_set_curswant = TRUE;
Bram Moolenaar798b30b2009-04-22 10:56:16 +00009290 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009291}
9292
9293/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009294 * "deepcopy()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +00009295 */
9296 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009297f_deepcopy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009298 typval_T *argvars;
9299 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009300{
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009301 int noref = 0;
9302
9303 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009304 noref = get_tv_number_chk(&argvars[1], NULL);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009305 if (noref < 0 || noref > 1)
9306 EMSG(_(e_invarg));
9307 else
Bram Moolenaar2c2398c2009-06-03 11:22:45 +00009308 {
9309 current_copyID += COPYID_INC;
9310 item_copy(&argvars[0], rettv, TRUE, noref == 0 ? current_copyID : 0);
9311 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009312}
9313
9314/*
9315 * "delete()" function
9316 */
9317 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009318f_delete(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009319 typval_T *argvars;
9320 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009321{
9322 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009323 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009324 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009325 rettv->vval.v_number = mch_remove(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009326}
9327
9328/*
9329 * "did_filetype()" function
9330 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009331 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009332f_did_filetype(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009333 typval_T *argvars UNUSED;
9334 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009335{
9336#ifdef FEAT_AUTOCMD
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009337 rettv->vval.v_number = did_filetype;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009338#endif
9339}
9340
9341/*
Bram Moolenaar47136d72004-10-12 20:02:24 +00009342 * "diff_filler()" function
9343 */
Bram Moolenaar47136d72004-10-12 20:02:24 +00009344 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009345f_diff_filler(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009346 typval_T *argvars UNUSED;
9347 typval_T *rettv UNUSED;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009348{
9349#ifdef FEAT_DIFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009350 rettv->vval.v_number = diff_check_fill(curwin, get_tv_lnum(argvars));
Bram Moolenaar47136d72004-10-12 20:02:24 +00009351#endif
9352}
9353
9354/*
9355 * "diff_hlID()" function
9356 */
Bram Moolenaar47136d72004-10-12 20:02:24 +00009357 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009358f_diff_hlID(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009359 typval_T *argvars UNUSED;
9360 typval_T *rettv UNUSED;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009361{
9362#ifdef FEAT_DIFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009363 linenr_T lnum = get_tv_lnum(argvars);
Bram Moolenaar47136d72004-10-12 20:02:24 +00009364 static linenr_T prev_lnum = 0;
9365 static int changedtick = 0;
9366 static int fnum = 0;
9367 static int change_start = 0;
9368 static int change_end = 0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00009369 static hlf_T hlID = (hlf_T)0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009370 int filler_lines;
9371 int col;
9372
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009373 if (lnum < 0) /* ignore type error in {lnum} arg */
9374 lnum = 0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009375 if (lnum != prev_lnum
9376 || changedtick != curbuf->b_changedtick
9377 || fnum != curbuf->b_fnum)
9378 {
9379 /* New line, buffer, change: need to get the values. */
9380 filler_lines = diff_check(curwin, lnum);
9381 if (filler_lines < 0)
9382 {
9383 if (filler_lines == -1)
9384 {
9385 change_start = MAXCOL;
9386 change_end = -1;
9387 if (diff_find_change(curwin, lnum, &change_start, &change_end))
9388 hlID = HLF_ADD; /* added line */
9389 else
9390 hlID = HLF_CHD; /* changed line */
9391 }
9392 else
9393 hlID = HLF_ADD; /* added line */
9394 }
9395 else
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009396 hlID = (hlf_T)0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009397 prev_lnum = lnum;
9398 changedtick = curbuf->b_changedtick;
9399 fnum = curbuf->b_fnum;
9400 }
9401
9402 if (hlID == HLF_CHD || hlID == HLF_TXD)
9403 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009404 col = get_tv_number(&argvars[1]) - 1; /* ignore type error in {col} */
Bram Moolenaar47136d72004-10-12 20:02:24 +00009405 if (col >= change_start && col <= change_end)
9406 hlID = HLF_TXD; /* changed text */
9407 else
9408 hlID = HLF_CHD; /* changed line */
9409 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009410 rettv->vval.v_number = hlID == (hlf_T)0 ? 0 : (int)hlID;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009411#endif
9412}
9413
9414/*
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009415 * "empty({expr})" function
9416 */
9417 static void
9418f_empty(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009419 typval_T *argvars;
9420 typval_T *rettv;
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009421{
9422 int n;
9423
9424 switch (argvars[0].v_type)
9425 {
9426 case VAR_STRING:
9427 case VAR_FUNC:
9428 n = argvars[0].vval.v_string == NULL
9429 || *argvars[0].vval.v_string == NUL;
9430 break;
9431 case VAR_NUMBER:
9432 n = argvars[0].vval.v_number == 0;
9433 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009434#ifdef FEAT_FLOAT
9435 case VAR_FLOAT:
9436 n = argvars[0].vval.v_float == 0.0;
9437 break;
9438#endif
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009439 case VAR_LIST:
9440 n = argvars[0].vval.v_list == NULL
9441 || argvars[0].vval.v_list->lv_first == NULL;
9442 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009443 case VAR_DICT:
9444 n = argvars[0].vval.v_dict == NULL
Bram Moolenaar33570922005-01-25 22:26:29 +00009445 || argvars[0].vval.v_dict->dv_hashtab.ht_used == 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009446 break;
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009447 default:
9448 EMSG2(_(e_intern2), "f_empty()");
9449 n = 0;
9450 }
9451
9452 rettv->vval.v_number = n;
9453}
9454
9455/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009456 * "escape({string}, {chars})" function
9457 */
9458 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009459f_escape(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009460 typval_T *argvars;
9461 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009462{
9463 char_u buf[NUMBUFLEN];
9464
Bram Moolenaar758711c2005-02-02 23:11:38 +00009465 rettv->vval.v_string = vim_strsave_escaped(get_tv_string(&argvars[0]),
9466 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009467 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009468}
9469
9470/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009471 * "eval()" function
9472 */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009473 static void
9474f_eval(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009475 typval_T *argvars;
9476 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009477{
9478 char_u *s;
9479
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009480 s = get_tv_string_chk(&argvars[0]);
9481 if (s != NULL)
9482 s = skipwhite(s);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009483
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009484 if (s == NULL || eval1(&s, rettv, TRUE) == FAIL)
9485 {
9486 rettv->v_type = VAR_NUMBER;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009487 rettv->vval.v_number = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009488 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009489 else if (*s != NUL)
9490 EMSG(_(e_trailing));
9491}
9492
9493/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009494 * "eventhandler()" function
9495 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009496 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009497f_eventhandler(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009498 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00009499 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009500{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009501 rettv->vval.v_number = vgetc_busy;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009502}
9503
9504/*
9505 * "executable()" function
9506 */
9507 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009508f_executable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009509 typval_T *argvars;
9510 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009511{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009512 rettv->vval.v_number = mch_can_exe(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009513}
9514
9515/*
9516 * "exists()" function
9517 */
9518 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009519f_exists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009520 typval_T *argvars;
9521 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009522{
9523 char_u *p;
9524 char_u *name;
9525 int n = FALSE;
9526 int len = 0;
9527
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009528 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009529 if (*p == '$') /* environment variable */
9530 {
9531 /* first try "normal" environment variables (fast) */
9532 if (mch_getenv(p + 1) != NULL)
9533 n = TRUE;
9534 else
9535 {
9536 /* try expanding things like $VIM and ${HOME} */
9537 p = expand_env_save(p);
9538 if (p != NULL && *p != '$')
9539 n = TRUE;
9540 vim_free(p);
9541 }
9542 }
9543 else if (*p == '&' || *p == '+') /* option */
Bram Moolenaar79783442006-05-05 21:18:03 +00009544 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009545 n = (get_option_tv(&p, NULL, TRUE) == OK);
Bram Moolenaar79783442006-05-05 21:18:03 +00009546 if (*skipwhite(p) != NUL)
9547 n = FALSE; /* trailing garbage */
9548 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009549 else if (*p == '*') /* internal or user defined function */
9550 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009551 n = function_exists(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009552 }
9553 else if (*p == ':')
9554 {
9555 n = cmd_exists(p + 1);
9556 }
9557 else if (*p == '#')
9558 {
9559#ifdef FEAT_AUTOCMD
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00009560 if (p[1] == '#')
9561 n = autocmd_supported(p + 2);
9562 else
9563 n = au_exists(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009564#endif
9565 }
9566 else /* internal variable */
9567 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009568 char_u *tofree;
9569 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009570
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009571 /* get_name_len() takes care of expanding curly braces */
9572 name = p;
9573 len = get_name_len(&p, &tofree, TRUE, FALSE);
9574 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009575 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009576 if (tofree != NULL)
9577 name = tofree;
9578 n = (get_var_tv(name, len, &tv, FALSE) == OK);
9579 if (n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009580 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009581 /* handle d.key, l[idx], f(expr) */
9582 n = (handle_subscript(&p, &tv, TRUE, FALSE) == OK);
9583 if (n)
9584 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009585 }
9586 }
Bram Moolenaar79783442006-05-05 21:18:03 +00009587 if (*p != NUL)
9588 n = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009589
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009590 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009591 }
9592
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009593 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009594}
9595
9596/*
9597 * "expand()" function
9598 */
9599 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009600f_expand(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009601 typval_T *argvars;
9602 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009603{
9604 char_u *s;
9605 int len;
9606 char_u *errormsg;
9607 int flags = WILD_SILENT|WILD_USE_NL|WILD_LIST_NOTFOUND;
9608 expand_T xpc;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009609 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009610
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009611 rettv->v_type = VAR_STRING;
9612 s = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009613 if (*s == '%' || *s == '#' || *s == '<')
9614 {
9615 ++emsg_off;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009616 rettv->vval.v_string = eval_vars(s, s, &len, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009617 --emsg_off;
9618 }
9619 else
9620 {
9621 /* When the optional second argument is non-zero, don't remove matches
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00009622 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009623 if (argvars[1].v_type != VAR_UNKNOWN
9624 && get_tv_number_chk(&argvars[1], &error))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009625 flags |= WILD_KEEP_ALL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009626 if (!error)
9627 {
9628 ExpandInit(&xpc);
9629 xpc.xp_context = EXPAND_FILES;
9630 rettv->vval.v_string = ExpandOne(&xpc, s, NULL, flags, WILD_ALL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009631 }
9632 else
9633 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009634 }
9635}
9636
9637/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009638 * "extend(list, list [, idx])" function
Bram Moolenaare9a41262005-01-15 22:18:47 +00009639 * "extend(dict, dict [, action])" function
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009640 */
9641 static void
9642f_extend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009643 typval_T *argvars;
9644 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009645{
Bram Moolenaare9a41262005-01-15 22:18:47 +00009646 if (argvars[0].v_type == VAR_LIST && argvars[1].v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009647 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009648 list_T *l1, *l2;
9649 listitem_T *item;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009650 long before;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009651 int error = FALSE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009652
Bram Moolenaare9a41262005-01-15 22:18:47 +00009653 l1 = argvars[0].vval.v_list;
9654 l2 = argvars[1].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009655 if (l1 != NULL && !tv_check_lock(l1->lv_lock, (char_u *)"extend()")
9656 && l2 != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009657 {
9658 if (argvars[2].v_type != VAR_UNKNOWN)
9659 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009660 before = get_tv_number_chk(&argvars[2], &error);
9661 if (error)
9662 return; /* type error; errmsg already given */
9663
Bram Moolenaar758711c2005-02-02 23:11:38 +00009664 if (before == l1->lv_len)
9665 item = NULL;
9666 else
Bram Moolenaare9a41262005-01-15 22:18:47 +00009667 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00009668 item = list_find(l1, before);
9669 if (item == NULL)
9670 {
9671 EMSGN(_(e_listidx), before);
9672 return;
9673 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009674 }
9675 }
9676 else
9677 item = NULL;
9678 list_extend(l1, l2, item);
9679
Bram Moolenaare9a41262005-01-15 22:18:47 +00009680 copy_tv(&argvars[0], rettv);
9681 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009682 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009683 else if (argvars[0].v_type == VAR_DICT && argvars[1].v_type == VAR_DICT)
9684 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009685 dict_T *d1, *d2;
9686 dictitem_T *di1;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009687 char_u *action;
9688 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +00009689 hashitem_T *hi2;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009690 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009691
9692 d1 = argvars[0].vval.v_dict;
9693 d2 = argvars[1].vval.v_dict;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009694 if (d1 != NULL && !tv_check_lock(d1->dv_lock, (char_u *)"extend()")
9695 && d2 != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009696 {
9697 /* Check the third argument. */
9698 if (argvars[2].v_type != VAR_UNKNOWN)
9699 {
9700 static char *(av[]) = {"keep", "force", "error"};
9701
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009702 action = get_tv_string_chk(&argvars[2]);
9703 if (action == NULL)
9704 return; /* type error; errmsg already given */
Bram Moolenaare9a41262005-01-15 22:18:47 +00009705 for (i = 0; i < 3; ++i)
9706 if (STRCMP(action, av[i]) == 0)
9707 break;
9708 if (i == 3)
9709 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009710 EMSG2(_(e_invarg2), action);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009711 return;
9712 }
9713 }
9714 else
9715 action = (char_u *)"force";
9716
9717 /* Go over all entries in the second dict and add them to the
9718 * first dict. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009719 todo = (int)d2->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00009720 for (hi2 = d2->dv_hashtab.ht_array; todo > 0; ++hi2)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009721 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009722 if (!HASHITEM_EMPTY(hi2))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009723 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009724 --todo;
9725 di1 = dict_find(d1, hi2->hi_key, -1);
9726 if (di1 == NULL)
9727 {
9728 di1 = dictitem_copy(HI2DI(hi2));
9729 if (di1 != NULL && dict_add(d1, di1) == FAIL)
9730 dictitem_free(di1);
9731 }
9732 else if (*action == 'e')
9733 {
9734 EMSG2(_("E737: Key already exists: %s"), hi2->hi_key);
9735 break;
9736 }
9737 else if (*action == 'f')
9738 {
9739 clear_tv(&di1->di_tv);
9740 copy_tv(&HI2DI(hi2)->di_tv, &di1->di_tv);
9741 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009742 }
9743 }
9744
Bram Moolenaare9a41262005-01-15 22:18:47 +00009745 copy_tv(&argvars[0], rettv);
9746 }
9747 }
9748 else
9749 EMSG2(_(e_listdictarg), "extend()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009750}
9751
9752/*
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009753 * "feedkeys()" function
9754 */
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009755 static void
9756f_feedkeys(argvars, rettv)
9757 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009758 typval_T *rettv UNUSED;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009759{
9760 int remap = TRUE;
9761 char_u *keys, *flags;
9762 char_u nbuf[NUMBUFLEN];
9763 int typed = FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009764 char_u *keys_esc;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009765
Bram Moolenaar3d43a662007-04-27 20:15:55 +00009766 /* This is not allowed in the sandbox. If the commands would still be
9767 * executed in the sandbox it would be OK, but it probably happens later,
9768 * when "sandbox" is no longer set. */
9769 if (check_secure())
9770 return;
9771
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009772 keys = get_tv_string(&argvars[0]);
9773 if (*keys != NUL)
9774 {
9775 if (argvars[1].v_type != VAR_UNKNOWN)
9776 {
9777 flags = get_tv_string_buf(&argvars[1], nbuf);
9778 for ( ; *flags != NUL; ++flags)
9779 {
9780 switch (*flags)
9781 {
9782 case 'n': remap = FALSE; break;
9783 case 'm': remap = TRUE; break;
9784 case 't': typed = TRUE; break;
9785 }
9786 }
9787 }
9788
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009789 /* Need to escape K_SPECIAL and CSI before putting the string in the
9790 * typeahead buffer. */
9791 keys_esc = vim_strsave_escape_csi(keys);
9792 if (keys_esc != NULL)
9793 {
9794 ins_typebuf(keys_esc, (remap ? REMAP_YES : REMAP_NONE),
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009795 typebuf.tb_len, !typed, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009796 vim_free(keys_esc);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00009797 if (vgetc_busy)
9798 typebuf_was_filled = TRUE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009799 }
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009800 }
9801}
9802
9803/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009804 * "filereadable()" function
9805 */
9806 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009807f_filereadable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009808 typval_T *argvars;
9809 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009810{
Bram Moolenaarc236c162008-07-13 17:41:49 +00009811 int fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009812 char_u *p;
9813 int n;
9814
Bram Moolenaarc236c162008-07-13 17:41:49 +00009815#ifndef O_NONBLOCK
9816# define O_NONBLOCK 0
9817#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009818 p = get_tv_string(&argvars[0]);
Bram Moolenaarc236c162008-07-13 17:41:49 +00009819 if (*p && !mch_isdir(p) && (fd = mch_open((char *)p,
9820 O_RDONLY | O_NONBLOCK, 0)) >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009821 {
9822 n = TRUE;
Bram Moolenaarc236c162008-07-13 17:41:49 +00009823 close(fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009824 }
9825 else
9826 n = FALSE;
9827
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009828 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009829}
9830
9831/*
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00009832 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
Bram Moolenaar071d4272004-06-13 20:20:40 +00009833 * rights to write into.
9834 */
9835 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009836f_filewritable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009837 typval_T *argvars;
9838 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009839{
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00009840 rettv->vval.v_number = filewritable(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009841}
9842
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009843static void findfilendir __ARGS((typval_T *argvars, typval_T *rettv, int find_what));
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009844
9845 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009846findfilendir(argvars, rettv, find_what)
Bram Moolenaar33570922005-01-25 22:26:29 +00009847 typval_T *argvars;
9848 typval_T *rettv;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009849 int find_what;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009850{
9851#ifdef FEAT_SEARCHPATH
9852 char_u *fname;
9853 char_u *fresult = NULL;
9854 char_u *path = *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path;
9855 char_u *p;
9856 char_u pathbuf[NUMBUFLEN];
9857 int count = 1;
9858 int first = TRUE;
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009859 int error = FALSE;
9860#endif
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009861
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009862 rettv->vval.v_string = NULL;
9863 rettv->v_type = VAR_STRING;
9864
9865#ifdef FEAT_SEARCHPATH
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009866 fname = get_tv_string(&argvars[0]);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009867
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009868 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009869 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009870 p = get_tv_string_buf_chk(&argvars[1], pathbuf);
9871 if (p == NULL)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009872 error = TRUE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009873 else
9874 {
9875 if (*p != NUL)
9876 path = p;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009877
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009878 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009879 count = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009880 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009881 }
9882
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009883 if (count < 0 && rettv_list_alloc(rettv) == FAIL)
9884 error = TRUE;
9885
9886 if (*fname != NUL && !error)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009887 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009888 do
9889 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009890 if (rettv->v_type == VAR_STRING)
9891 vim_free(fresult);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009892 fresult = find_file_in_path_option(first ? fname : NULL,
9893 first ? (int)STRLEN(fname) : 0,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009894 0, first, path,
9895 find_what,
9896 curbuf->b_ffname,
9897 find_what == FINDFILE_DIR
9898 ? (char_u *)"" : curbuf->b_p_sua);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009899 first = FALSE;
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009900
9901 if (fresult != NULL && rettv->v_type == VAR_LIST)
9902 list_append_string(rettv->vval.v_list, fresult, -1);
9903
9904 } while ((rettv->v_type == VAR_LIST || --count > 0) && fresult != NULL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009905 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009906
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009907 if (rettv->v_type == VAR_STRING)
9908 rettv->vval.v_string = fresult;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009909#endif
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009910}
9911
Bram Moolenaar33570922005-01-25 22:26:29 +00009912static void filter_map __ARGS((typval_T *argvars, typval_T *rettv, int map));
9913static int filter_map_one __ARGS((typval_T *tv, char_u *expr, int map, int *remp));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009914
9915/*
9916 * Implementation of map() and filter().
9917 */
9918 static void
9919filter_map(argvars, rettv, map)
Bram Moolenaar33570922005-01-25 22:26:29 +00009920 typval_T *argvars;
9921 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009922 int map;
9923{
9924 char_u buf[NUMBUFLEN];
Bram Moolenaare9a41262005-01-15 22:18:47 +00009925 char_u *expr;
Bram Moolenaar33570922005-01-25 22:26:29 +00009926 listitem_T *li, *nli;
9927 list_T *l = NULL;
9928 dictitem_T *di;
9929 hashtab_T *ht;
9930 hashitem_T *hi;
9931 dict_T *d = NULL;
9932 typval_T save_val;
9933 typval_T save_key;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009934 int rem;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009935 int todo;
Bram Moolenaar89d40322006-08-29 15:30:07 +00009936 char_u *ermsg = map ? (char_u *)"map()" : (char_u *)"filter()";
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009937 int save_did_emsg;
Bram Moolenaar627b1d32009-11-17 11:20:35 +00009938 int index = 0;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009939
Bram Moolenaare9a41262005-01-15 22:18:47 +00009940 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009941 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009942 if ((l = argvars[0].vval.v_list) == NULL
Bram Moolenaar89d40322006-08-29 15:30:07 +00009943 || (map && tv_check_lock(l->lv_lock, ermsg)))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009944 return;
9945 }
9946 else if (argvars[0].v_type == VAR_DICT)
9947 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009948 if ((d = argvars[0].vval.v_dict) == NULL
Bram Moolenaar89d40322006-08-29 15:30:07 +00009949 || (map && tv_check_lock(d->dv_lock, ermsg)))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009950 return;
9951 }
9952 else
9953 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00009954 EMSG2(_(e_listdictarg), ermsg);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009955 return;
9956 }
9957
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009958 expr = get_tv_string_buf_chk(&argvars[1], buf);
9959 /* On type errors, the preceding call has already displayed an error
9960 * message. Avoid a misleading error message for an empty string that
9961 * was not passed as argument. */
9962 if (expr != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009963 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009964 prepare_vimvar(VV_VAL, &save_val);
9965 expr = skipwhite(expr);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009966
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009967 /* We reset "did_emsg" to be able to detect whether an error
9968 * occurred during evaluation of the expression. */
9969 save_did_emsg = did_emsg;
9970 did_emsg = FALSE;
Bram Moolenaar280f1262006-01-30 00:14:18 +00009971
Bram Moolenaar627b1d32009-11-17 11:20:35 +00009972 prepare_vimvar(VV_KEY, &save_key);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009973 if (argvars[0].v_type == VAR_DICT)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009974 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009975 vimvars[VV_KEY].vv_type = VAR_STRING;
9976
9977 ht = &d->dv_hashtab;
9978 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009979 todo = (int)ht->ht_used;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009980 for (hi = ht->ht_array; todo > 0; ++hi)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009981 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009982 if (!HASHITEM_EMPTY(hi))
9983 {
9984 --todo;
9985 di = HI2DI(hi);
Bram Moolenaar89d40322006-08-29 15:30:07 +00009986 if (tv_check_lock(di->di_tv.v_lock, ermsg))
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009987 break;
9988 vimvars[VV_KEY].vv_str = vim_strsave(di->di_key);
Bram Moolenaar280f1262006-01-30 00:14:18 +00009989 if (filter_map_one(&di->di_tv, expr, map, &rem) == FAIL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009990 || did_emsg)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009991 break;
9992 if (!map && rem)
9993 dictitem_remove(d, di);
9994 clear_tv(&vimvars[VV_KEY].vv_tv);
9995 }
9996 }
9997 hash_unlock(ht);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009998 }
9999 else
10000 {
Bram Moolenaar627b1d32009-11-17 11:20:35 +000010001 vimvars[VV_KEY].vv_type = VAR_NUMBER;
10002
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010003 for (li = l->lv_first; li != NULL; li = nli)
10004 {
Bram Moolenaar89d40322006-08-29 15:30:07 +000010005 if (tv_check_lock(li->li_tv.v_lock, ermsg))
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000010006 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010007 nli = li->li_next;
Bram Moolenaar627b1d32009-11-17 11:20:35 +000010008 vimvars[VV_KEY].vv_nr = index;
Bram Moolenaar280f1262006-01-30 00:14:18 +000010009 if (filter_map_one(&li->li_tv, expr, map, &rem) == FAIL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000010010 || did_emsg)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010011 break;
10012 if (!map && rem)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010013 listitem_remove(l, li);
Bram Moolenaar627b1d32009-11-17 11:20:35 +000010014 ++index;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010015 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010016 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010017
Bram Moolenaar627b1d32009-11-17 11:20:35 +000010018 restore_vimvar(VV_KEY, &save_key);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010019 restore_vimvar(VV_VAL, &save_val);
Bram Moolenaar280f1262006-01-30 00:14:18 +000010020
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000010021 did_emsg |= save_did_emsg;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010022 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000010023
10024 copy_tv(&argvars[0], rettv);
10025}
10026
10027 static int
10028filter_map_one(tv, expr, map, remp)
Bram Moolenaar33570922005-01-25 22:26:29 +000010029 typval_T *tv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010030 char_u *expr;
10031 int map;
10032 int *remp;
10033{
Bram Moolenaar33570922005-01-25 22:26:29 +000010034 typval_T rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010035 char_u *s;
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010036 int retval = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010037
Bram Moolenaar33570922005-01-25 22:26:29 +000010038 copy_tv(tv, &vimvars[VV_VAL].vv_tv);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010039 s = expr;
10040 if (eval1(&s, &rettv, TRUE) == FAIL)
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010041 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010042 if (*s != NUL) /* check for trailing chars after expr */
10043 {
10044 EMSG2(_(e_invexpr2), s);
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010045 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010046 }
10047 if (map)
10048 {
10049 /* map(): replace the list item value */
10050 clear_tv(tv);
Bram Moolenaar4463f292005-09-25 22:20:24 +000010051 rettv.v_lock = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010052 *tv = rettv;
10053 }
10054 else
10055 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010056 int error = FALSE;
10057
Bram Moolenaare9a41262005-01-15 22:18:47 +000010058 /* filter(): when expr is zero remove the item */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010059 *remp = (get_tv_number_chk(&rettv, &error) == 0);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010060 clear_tv(&rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010061 /* On type error, nothing has been removed; return FAIL to stop the
10062 * loop. The error message was given by get_tv_number_chk(). */
10063 if (error)
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010064 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010065 }
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010066 retval = OK;
10067theend:
Bram Moolenaar33570922005-01-25 22:26:29 +000010068 clear_tv(&vimvars[VV_VAL].vv_tv);
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010069 return retval;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010070}
10071
10072/*
10073 * "filter()" function
10074 */
10075 static void
10076f_filter(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010077 typval_T *argvars;
10078 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010079{
10080 filter_map(argvars, rettv, FALSE);
10081}
10082
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000010083/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010084 * "finddir({fname}[, {path}[, {count}]])" function
10085 */
10086 static void
10087f_finddir(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010088 typval_T *argvars;
10089 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010090{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +000010091 findfilendir(argvars, rettv, FINDFILE_DIR);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010092}
10093
10094/*
10095 * "findfile({fname}[, {path}[, {count}]])" function
10096 */
10097 static void
10098f_findfile(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010099 typval_T *argvars;
10100 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010101{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +000010102 findfilendir(argvars, rettv, FINDFILE_FILE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010103}
10104
Bram Moolenaar8c8de832008-06-24 22:58:06 +000010105#ifdef FEAT_FLOAT
10106/*
10107 * "float2nr({float})" function
10108 */
10109 static void
10110f_float2nr(argvars, rettv)
10111 typval_T *argvars;
10112 typval_T *rettv;
10113{
10114 float_T f;
10115
10116 if (get_float_arg(argvars, &f) == OK)
10117 {
10118 if (f < -0x7fffffff)
10119 rettv->vval.v_number = -0x7fffffff;
10120 else if (f > 0x7fffffff)
10121 rettv->vval.v_number = 0x7fffffff;
10122 else
10123 rettv->vval.v_number = (varnumber_T)f;
10124 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000010125}
10126
10127/*
10128 * "floor({float})" function
10129 */
10130 static void
10131f_floor(argvars, rettv)
10132 typval_T *argvars;
10133 typval_T *rettv;
10134{
10135 float_T f;
10136
10137 rettv->v_type = VAR_FLOAT;
10138 if (get_float_arg(argvars, &f) == OK)
10139 rettv->vval.v_float = floor(f);
10140 else
10141 rettv->vval.v_float = 0.0;
10142}
10143#endif
10144
Bram Moolenaar0d660222005-01-07 21:51:51 +000010145/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +000010146 * "fnameescape({string})" function
10147 */
10148 static void
10149f_fnameescape(argvars, rettv)
10150 typval_T *argvars;
10151 typval_T *rettv;
10152{
10153 rettv->vval.v_string = vim_strsave_fnameescape(
10154 get_tv_string(&argvars[0]), FALSE);
10155 rettv->v_type = VAR_STRING;
10156}
10157
10158/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010159 * "fnamemodify({fname}, {mods})" function
10160 */
10161 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010162f_fnamemodify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010163 typval_T *argvars;
10164 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010165{
10166 char_u *fname;
10167 char_u *mods;
10168 int usedlen = 0;
10169 int len;
10170 char_u *fbuf = NULL;
10171 char_u buf[NUMBUFLEN];
10172
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010173 fname = get_tv_string_chk(&argvars[0]);
10174 mods = get_tv_string_buf_chk(&argvars[1], buf);
10175 if (fname == NULL || mods == NULL)
10176 fname = NULL;
10177 else
10178 {
10179 len = (int)STRLEN(fname);
10180 (void)modify_fname(mods, &usedlen, &fname, &fbuf, &len);
10181 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010182
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010183 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010184 if (fname == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010185 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010186 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010187 rettv->vval.v_string = vim_strnsave(fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010188 vim_free(fbuf);
10189}
10190
Bram Moolenaar33570922005-01-25 22:26:29 +000010191static void foldclosed_both __ARGS((typval_T *argvars, typval_T *rettv, int end));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010192
10193/*
10194 * "foldclosed()" function
10195 */
10196 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010197foldclosed_both(argvars, rettv, end)
Bram Moolenaar33570922005-01-25 22:26:29 +000010198 typval_T *argvars;
10199 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010200 int end;
10201{
10202#ifdef FEAT_FOLDING
10203 linenr_T lnum;
10204 linenr_T first, last;
10205
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010206 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010207 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
10208 {
10209 if (hasFoldingWin(curwin, lnum, &first, &last, FALSE, NULL))
10210 {
10211 if (end)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010212 rettv->vval.v_number = (varnumber_T)last;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010213 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010214 rettv->vval.v_number = (varnumber_T)first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010215 return;
10216 }
10217 }
10218#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010219 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010220}
10221
10222/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010223 * "foldclosed()" function
10224 */
10225 static void
10226f_foldclosed(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010227 typval_T *argvars;
10228 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010229{
10230 foldclosed_both(argvars, rettv, FALSE);
10231}
10232
10233/*
10234 * "foldclosedend()" function
10235 */
10236 static void
10237f_foldclosedend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010238 typval_T *argvars;
10239 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010240{
10241 foldclosed_both(argvars, rettv, TRUE);
10242}
10243
10244/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010245 * "foldlevel()" function
10246 */
10247 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010248f_foldlevel(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010249 typval_T *argvars;
10250 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010251{
10252#ifdef FEAT_FOLDING
10253 linenr_T lnum;
10254
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010255 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010256 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010257 rettv->vval.v_number = foldLevel(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010258#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010259}
10260
10261/*
10262 * "foldtext()" function
10263 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010264 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010265f_foldtext(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010266 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010267 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010268{
10269#ifdef FEAT_FOLDING
10270 linenr_T lnum;
10271 char_u *s;
10272 char_u *r;
10273 int len;
10274 char *txt;
10275#endif
10276
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010277 rettv->v_type = VAR_STRING;
10278 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010279#ifdef FEAT_FOLDING
Bram Moolenaare9a41262005-01-15 22:18:47 +000010280 if ((linenr_T)vimvars[VV_FOLDSTART].vv_nr > 0
10281 && (linenr_T)vimvars[VV_FOLDEND].vv_nr
10282 <= curbuf->b_ml.ml_line_count
10283 && vimvars[VV_FOLDDASHES].vv_str != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010284 {
10285 /* Find first non-empty line in the fold. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000010286 lnum = (linenr_T)vimvars[VV_FOLDSTART].vv_nr;
10287 while (lnum < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010288 {
10289 if (!linewhite(lnum))
10290 break;
10291 ++lnum;
10292 }
10293
10294 /* Find interesting text in this line. */
10295 s = skipwhite(ml_get(lnum));
10296 /* skip C comment-start */
10297 if (s[0] == '/' && (s[1] == '*' || s[1] == '/'))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010298 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000010299 s = skipwhite(s + 2);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010300 if (*skipwhite(s) == NUL
Bram Moolenaare9a41262005-01-15 22:18:47 +000010301 && lnum + 1 < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010302 {
10303 s = skipwhite(ml_get(lnum + 1));
10304 if (*s == '*')
10305 s = skipwhite(s + 1);
10306 }
10307 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010308 txt = _("+-%s%3ld lines: ");
10309 r = alloc((unsigned)(STRLEN(txt)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010310 + STRLEN(vimvars[VV_FOLDDASHES].vv_str) /* for %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010311 + 20 /* for %3ld */
10312 + STRLEN(s))); /* concatenated */
10313 if (r != NULL)
10314 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000010315 sprintf((char *)r, txt, vimvars[VV_FOLDDASHES].vv_str,
10316 (long)((linenr_T)vimvars[VV_FOLDEND].vv_nr
10317 - (linenr_T)vimvars[VV_FOLDSTART].vv_nr + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010318 len = (int)STRLEN(r);
10319 STRCAT(r, s);
10320 /* remove 'foldmarker' and 'commentstring' */
10321 foldtext_cleanup(r + len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010322 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010323 }
10324 }
10325#endif
10326}
10327
10328/*
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010329 * "foldtextresult(lnum)" function
10330 */
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010331 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010332f_foldtextresult(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010333 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010334 typval_T *rettv;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010335{
10336#ifdef FEAT_FOLDING
10337 linenr_T lnum;
10338 char_u *text;
10339 char_u buf[51];
10340 foldinfo_T foldinfo;
10341 int fold_count;
10342#endif
10343
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010344 rettv->v_type = VAR_STRING;
10345 rettv->vval.v_string = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010346#ifdef FEAT_FOLDING
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010347 lnum = get_tv_lnum(argvars);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010348 /* treat illegal types and illegal string values for {lnum} the same */
10349 if (lnum < 0)
10350 lnum = 0;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010351 fold_count = foldedCount(curwin, lnum, &foldinfo);
10352 if (fold_count > 0)
10353 {
10354 text = get_foldtext(curwin, lnum, lnum + fold_count - 1,
10355 &foldinfo, buf);
10356 if (text == buf)
10357 text = vim_strsave(text);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010358 rettv->vval.v_string = text;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010359 }
10360#endif
10361}
10362
10363/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010364 * "foreground()" function
10365 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010366 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010367f_foreground(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010368 typval_T *argvars UNUSED;
10369 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010370{
Bram Moolenaar071d4272004-06-13 20:20:40 +000010371#ifdef FEAT_GUI
10372 if (gui.in_use)
10373 gui_mch_set_foreground();
10374#else
10375# ifdef WIN32
10376 win32_set_foreground();
10377# endif
10378#endif
10379}
10380
10381/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010382 * "function()" function
10383 */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010384 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010385f_function(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010386 typval_T *argvars;
10387 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010388{
10389 char_u *s;
10390
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010391 s = get_tv_string(&argvars[0]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010392 if (s == NULL || *s == NUL || VIM_ISDIGIT(*s))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010393 EMSG2(_(e_invarg2), s);
Bram Moolenaar3d0089f2008-12-03 08:52:26 +000010394 /* Don't check an autoload name for existence here. */
10395 else if (vim_strchr(s, AUTOLOAD_CHAR) == NULL && !function_exists(s))
Bram Moolenaare49b69a2005-01-08 16:11:57 +000010396 EMSG2(_("E700: Unknown function: %s"), s);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010397 else
10398 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010399 rettv->vval.v_string = vim_strsave(s);
10400 rettv->v_type = VAR_FUNC;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010401 }
10402}
10403
10404/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010405 * "garbagecollect()" function
10406 */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010407 static void
10408f_garbagecollect(argvars, rettv)
10409 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010410 typval_T *rettv UNUSED;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010411{
Bram Moolenaar9fecb462006-09-05 10:59:47 +000010412 /* This is postponed until we are back at the toplevel, because we may be
10413 * using Lists and Dicts internally. E.g.: ":echo [garbagecollect()]". */
10414 want_garbage_collect = TRUE;
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +000010415
10416 if (argvars[0].v_type != VAR_UNKNOWN && get_tv_number(&argvars[0]) == 1)
10417 garbage_collect_at_exit = TRUE;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010418}
10419
10420/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010421 * "get()" function
10422 */
10423 static void
10424f_get(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010425 typval_T *argvars;
10426 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010427{
Bram Moolenaar33570922005-01-25 22:26:29 +000010428 listitem_T *li;
10429 list_T *l;
10430 dictitem_T *di;
10431 dict_T *d;
10432 typval_T *tv = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010433
Bram Moolenaare9a41262005-01-15 22:18:47 +000010434 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000010435 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000010436 if ((l = argvars[0].vval.v_list) != NULL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000010437 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010438 int error = FALSE;
10439
10440 li = list_find(l, get_tv_number_chk(&argvars[1], &error));
10441 if (!error && li != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010442 tv = &li->li_tv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010443 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000010444 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000010445 else if (argvars[0].v_type == VAR_DICT)
10446 {
10447 if ((d = argvars[0].vval.v_dict) != NULL)
10448 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010449 di = dict_find(d, get_tv_string(&argvars[1]), -1);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010450 if (di != NULL)
10451 tv = &di->di_tv;
10452 }
10453 }
10454 else
10455 EMSG2(_(e_listdictarg), "get()");
10456
10457 if (tv == NULL)
10458 {
Bram Moolenaar798b30b2009-04-22 10:56:16 +000010459 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010460 copy_tv(&argvars[2], rettv);
10461 }
10462 else
10463 copy_tv(tv, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010464}
10465
Bram Moolenaar342337a2005-07-21 21:11:17 +000010466static 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 +000010467
10468/*
10469 * Get line or list of lines from buffer "buf" into "rettv".
Bram Moolenaar342337a2005-07-21 21:11:17 +000010470 * Return a range (from start to end) of lines in rettv from the specified
10471 * buffer.
10472 * If 'retlist' is TRUE, then the lines are returned as a Vim List.
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010473 */
10474 static void
Bram Moolenaar342337a2005-07-21 21:11:17 +000010475get_buffer_lines(buf, start, end, retlist, rettv)
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010476 buf_T *buf;
10477 linenr_T start;
10478 linenr_T end;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010479 int retlist;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010480 typval_T *rettv;
10481{
10482 char_u *p;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010483
Bram Moolenaar798b30b2009-04-22 10:56:16 +000010484 if (retlist && rettv_list_alloc(rettv) == FAIL)
10485 return;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010486
10487 if (buf == NULL || buf->b_ml.ml_mfp == NULL || start < 0)
10488 return;
10489
10490 if (!retlist)
10491 {
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010492 if (start >= 1 && start <= buf->b_ml.ml_line_count)
10493 p = ml_get_buf(buf, start, FALSE);
10494 else
10495 p = (char_u *)"";
10496
10497 rettv->v_type = VAR_STRING;
10498 rettv->vval.v_string = vim_strsave(p);
10499 }
10500 else
10501 {
10502 if (end < start)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010503 return;
10504
10505 if (start < 1)
10506 start = 1;
10507 if (end > buf->b_ml.ml_line_count)
10508 end = buf->b_ml.ml_line_count;
10509 while (start <= end)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000010510 if (list_append_string(rettv->vval.v_list,
10511 ml_get_buf(buf, start++, FALSE), -1) == FAIL)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010512 break;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010513 }
10514}
10515
10516/*
10517 * "getbufline()" function
10518 */
10519 static void
10520f_getbufline(argvars, rettv)
10521 typval_T *argvars;
10522 typval_T *rettv;
10523{
10524 linenr_T lnum;
10525 linenr_T end;
10526 buf_T *buf;
10527
10528 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10529 ++emsg_off;
10530 buf = get_buf_tv(&argvars[0]);
10531 --emsg_off;
10532
Bram Moolenaar661b1822005-07-28 22:36:45 +000010533 lnum = get_tv_lnum_buf(&argvars[1], buf);
Bram Moolenaar342337a2005-07-21 21:11:17 +000010534 if (argvars[2].v_type == VAR_UNKNOWN)
10535 end = lnum;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010536 else
Bram Moolenaar661b1822005-07-28 22:36:45 +000010537 end = get_tv_lnum_buf(&argvars[2], buf);
10538
Bram Moolenaar342337a2005-07-21 21:11:17 +000010539 get_buffer_lines(buf, lnum, end, TRUE, rettv);
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010540}
10541
Bram Moolenaar0d660222005-01-07 21:51:51 +000010542/*
10543 * "getbufvar()" function
10544 */
10545 static void
10546f_getbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010547 typval_T *argvars;
10548 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010549{
10550 buf_T *buf;
10551 buf_T *save_curbuf;
10552 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000010553 dictitem_T *v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010554
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010555 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10556 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010557 ++emsg_off;
10558 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010559
10560 rettv->v_type = VAR_STRING;
10561 rettv->vval.v_string = NULL;
10562
10563 if (buf != NULL && varname != NULL)
10564 {
Bram Moolenaar632deed2008-06-27 18:26:11 +000010565 /* set curbuf to be our buf, temporarily */
10566 save_curbuf = curbuf;
10567 curbuf = buf;
10568
Bram Moolenaar0d660222005-01-07 21:51:51 +000010569 if (*varname == '&') /* buffer-local-option */
Bram Moolenaar0d660222005-01-07 21:51:51 +000010570 get_option_tv(&varname, rettv, TRUE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010571 else
10572 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010573 if (*varname == NUL)
10574 /* let getbufvar({nr}, "") return the "b:" dictionary. The
10575 * scope prefix before the NUL byte is required by
10576 * find_var_in_ht(). */
10577 varname = (char_u *)"b:" + 2;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010578 /* look up the variable */
Bram Moolenaar632deed2008-06-27 18:26:11 +000010579 v = find_var_in_ht(&curbuf->b_vars.dv_hashtab, varname, FALSE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010580 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000010581 copy_tv(&v->di_tv, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010582 }
Bram Moolenaar632deed2008-06-27 18:26:11 +000010583
10584 /* restore previous notion of curbuf */
10585 curbuf = save_curbuf;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010586 }
10587
10588 --emsg_off;
10589}
10590
10591/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010592 * "getchar()" function
10593 */
10594 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010595f_getchar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010596 typval_T *argvars;
10597 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010598{
10599 varnumber_T n;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010600 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010601
Bram Moolenaar4015b2c2006-06-22 19:01:34 +000010602 /* Position the cursor. Needed after a message that ends in a space. */
10603 windgoto(msg_row, msg_col);
10604
Bram Moolenaar071d4272004-06-13 20:20:40 +000010605 ++no_mapping;
10606 ++allow_keys;
Bram Moolenaar9c8791f2007-09-05 19:47:23 +000010607 for (;;)
10608 {
10609 if (argvars[0].v_type == VAR_UNKNOWN)
10610 /* getchar(): blocking wait. */
10611 n = safe_vgetc();
10612 else if (get_tv_number_chk(&argvars[0], &error) == 1)
10613 /* getchar(1): only check if char avail */
10614 n = vpeekc();
10615 else if (error || vpeekc() == NUL)
10616 /* illegal argument or getchar(0) and no char avail: return zero */
10617 n = 0;
10618 else
10619 /* getchar(0) and char avail: return char */
10620 n = safe_vgetc();
10621 if (n == K_IGNORE)
10622 continue;
10623 break;
10624 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010625 --no_mapping;
10626 --allow_keys;
10627
Bram Moolenaar219b8702006-11-01 14:32:36 +000010628 vimvars[VV_MOUSE_WIN].vv_nr = 0;
10629 vimvars[VV_MOUSE_LNUM].vv_nr = 0;
10630 vimvars[VV_MOUSE_COL].vv_nr = 0;
10631
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010632 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010633 if (IS_SPECIAL(n) || mod_mask != 0)
10634 {
10635 char_u temp[10]; /* modifier: 3, mbyte-char: 6, NUL: 1 */
10636 int i = 0;
10637
10638 /* Turn a special key into three bytes, plus modifier. */
10639 if (mod_mask != 0)
10640 {
10641 temp[i++] = K_SPECIAL;
10642 temp[i++] = KS_MODIFIER;
10643 temp[i++] = mod_mask;
10644 }
10645 if (IS_SPECIAL(n))
10646 {
10647 temp[i++] = K_SPECIAL;
10648 temp[i++] = K_SECOND(n);
10649 temp[i++] = K_THIRD(n);
10650 }
10651#ifdef FEAT_MBYTE
10652 else if (has_mbyte)
10653 i += (*mb_char2bytes)(n, temp + i);
10654#endif
10655 else
10656 temp[i++] = n;
10657 temp[i++] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010658 rettv->v_type = VAR_STRING;
10659 rettv->vval.v_string = vim_strsave(temp);
Bram Moolenaar219b8702006-11-01 14:32:36 +000010660
10661#ifdef FEAT_MOUSE
10662 if (n == K_LEFTMOUSE
10663 || n == K_LEFTMOUSE_NM
10664 || n == K_LEFTDRAG
10665 || n == K_LEFTRELEASE
10666 || n == K_LEFTRELEASE_NM
10667 || n == K_MIDDLEMOUSE
10668 || n == K_MIDDLEDRAG
10669 || n == K_MIDDLERELEASE
10670 || n == K_RIGHTMOUSE
10671 || n == K_RIGHTDRAG
10672 || n == K_RIGHTRELEASE
10673 || n == K_X1MOUSE
10674 || n == K_X1DRAG
10675 || n == K_X1RELEASE
10676 || n == K_X2MOUSE
10677 || n == K_X2DRAG
10678 || n == K_X2RELEASE
10679 || n == K_MOUSEDOWN
10680 || n == K_MOUSEUP)
10681 {
10682 int row = mouse_row;
10683 int col = mouse_col;
10684 win_T *win;
10685 linenr_T lnum;
10686# ifdef FEAT_WINDOWS
10687 win_T *wp;
10688# endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000010689 int winnr = 1;
Bram Moolenaar219b8702006-11-01 14:32:36 +000010690
10691 if (row >= 0 && col >= 0)
10692 {
10693 /* Find the window at the mouse coordinates and compute the
10694 * text position. */
10695 win = mouse_find_win(&row, &col);
10696 (void)mouse_comp_pos(win, &row, &col, &lnum);
10697# ifdef FEAT_WINDOWS
10698 for (wp = firstwin; wp != win; wp = wp->w_next)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000010699 ++winnr;
Bram Moolenaar219b8702006-11-01 14:32:36 +000010700# endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000010701 vimvars[VV_MOUSE_WIN].vv_nr = winnr;
Bram Moolenaar219b8702006-11-01 14:32:36 +000010702 vimvars[VV_MOUSE_LNUM].vv_nr = lnum;
10703 vimvars[VV_MOUSE_COL].vv_nr = col + 1;
10704 }
10705 }
10706#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010707 }
10708}
10709
10710/*
10711 * "getcharmod()" function
10712 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010713 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010714f_getcharmod(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010715 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010716 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010717{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010718 rettv->vval.v_number = mod_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010719}
10720
10721/*
10722 * "getcmdline()" function
10723 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010724 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010725f_getcmdline(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010726 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010727 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010728{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010729 rettv->v_type = VAR_STRING;
10730 rettv->vval.v_string = get_cmdline_str();
Bram Moolenaar071d4272004-06-13 20:20:40 +000010731}
10732
10733/*
10734 * "getcmdpos()" function
10735 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010736 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010737f_getcmdpos(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010738 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010739 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010740{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010741 rettv->vval.v_number = get_cmdline_pos() + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010742}
10743
10744/*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010745 * "getcmdtype()" function
10746 */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010747 static void
10748f_getcmdtype(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010749 typval_T *argvars UNUSED;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010750 typval_T *rettv;
10751{
10752 rettv->v_type = VAR_STRING;
10753 rettv->vval.v_string = alloc(2);
10754 if (rettv->vval.v_string != NULL)
10755 {
10756 rettv->vval.v_string[0] = get_cmdline_type();
10757 rettv->vval.v_string[1] = NUL;
10758 }
10759}
10760
10761/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010762 * "getcwd()" function
10763 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010764 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010765f_getcwd(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010766 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010767 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010768{
10769 char_u cwd[MAXPATHL];
10770
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010771 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010772 if (mch_dirname(cwd, MAXPATHL) == FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010773 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010774 else
10775 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010776 rettv->vval.v_string = vim_strsave(cwd);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010777#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar342337a2005-07-21 21:11:17 +000010778 if (rettv->vval.v_string != NULL)
10779 slash_adjust(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010780#endif
10781 }
10782}
10783
10784/*
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010785 * "getfontname()" function
10786 */
10787 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010788f_getfontname(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010789 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010790 typval_T *rettv;
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010791{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010792 rettv->v_type = VAR_STRING;
10793 rettv->vval.v_string = NULL;
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010794#ifdef FEAT_GUI
10795 if (gui.in_use)
10796 {
10797 GuiFont font;
10798 char_u *name = NULL;
10799
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010800 if (argvars[0].v_type == VAR_UNKNOWN)
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010801 {
10802 /* Get the "Normal" font. Either the name saved by
10803 * hl_set_font_name() or from the font ID. */
10804 font = gui.norm_font;
10805 name = hl_get_font_name();
10806 }
10807 else
10808 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010809 name = get_tv_string(&argvars[0]);
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010810 if (STRCMP(name, "*") == 0) /* don't use font dialog */
10811 return;
10812 font = gui_mch_get_font(name, FALSE);
10813 if (font == NOFONT)
10814 return; /* Invalid font name, return empty string. */
10815 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010816 rettv->vval.v_string = gui_mch_get_fontname(font, name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010817 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010818 gui_mch_free_font(font);
10819 }
10820#endif
10821}
10822
10823/*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010824 * "getfperm({fname})" function
10825 */
10826 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010827f_getfperm(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010828 typval_T *argvars;
10829 typval_T *rettv;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010830{
10831 char_u *fname;
10832 struct stat st;
10833 char_u *perm = NULL;
10834 char_u flags[] = "rwx";
10835 int i;
10836
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010837 fname = get_tv_string(&argvars[0]);
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010838
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010839 rettv->v_type = VAR_STRING;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010840 if (mch_stat((char *)fname, &st) >= 0)
10841 {
10842 perm = vim_strsave((char_u *)"---------");
10843 if (perm != NULL)
10844 {
10845 for (i = 0; i < 9; i++)
10846 {
10847 if (st.st_mode & (1 << (8 - i)))
10848 perm[i] = flags[i % 3];
10849 }
10850 }
10851 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010852 rettv->vval.v_string = perm;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010853}
10854
10855/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010856 * "getfsize({fname})" function
10857 */
10858 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010859f_getfsize(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010860 typval_T *argvars;
10861 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010862{
10863 char_u *fname;
10864 struct stat st;
10865
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010866 fname = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010867
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010868 rettv->v_type = VAR_NUMBER;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010869
10870 if (mch_stat((char *)fname, &st) >= 0)
10871 {
10872 if (mch_isdir(fname))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010873 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010874 else
Bram Moolenaard827ada2007-06-19 15:19:55 +000010875 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010876 rettv->vval.v_number = (varnumber_T)st.st_size;
Bram Moolenaard827ada2007-06-19 15:19:55 +000010877
10878 /* non-perfect check for overflow */
10879 if ((off_t)rettv->vval.v_number != (off_t)st.st_size)
10880 rettv->vval.v_number = -2;
10881 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010882 }
10883 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010884 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010885}
10886
10887/*
10888 * "getftime({fname})" function
10889 */
10890 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010891f_getftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010892 typval_T *argvars;
10893 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010894{
10895 char_u *fname;
10896 struct stat st;
10897
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010898 fname = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010899
10900 if (mch_stat((char *)fname, &st) >= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010901 rettv->vval.v_number = (varnumber_T)st.st_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010902 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010903 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010904}
10905
10906/*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010907 * "getftype({fname})" function
10908 */
10909 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010910f_getftype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010911 typval_T *argvars;
10912 typval_T *rettv;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010913{
10914 char_u *fname;
10915 struct stat st;
10916 char_u *type = NULL;
10917 char *t;
10918
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010919 fname = get_tv_string(&argvars[0]);
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010920
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010921 rettv->v_type = VAR_STRING;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010922 if (mch_lstat((char *)fname, &st) >= 0)
10923 {
10924#ifdef S_ISREG
10925 if (S_ISREG(st.st_mode))
10926 t = "file";
10927 else if (S_ISDIR(st.st_mode))
10928 t = "dir";
10929# ifdef S_ISLNK
10930 else if (S_ISLNK(st.st_mode))
10931 t = "link";
10932# endif
10933# ifdef S_ISBLK
10934 else if (S_ISBLK(st.st_mode))
10935 t = "bdev";
10936# endif
10937# ifdef S_ISCHR
10938 else if (S_ISCHR(st.st_mode))
10939 t = "cdev";
10940# endif
10941# ifdef S_ISFIFO
10942 else if (S_ISFIFO(st.st_mode))
10943 t = "fifo";
10944# endif
10945# ifdef S_ISSOCK
10946 else if (S_ISSOCK(st.st_mode))
10947 t = "fifo";
10948# endif
10949 else
10950 t = "other";
10951#else
10952# ifdef S_IFMT
10953 switch (st.st_mode & S_IFMT)
10954 {
10955 case S_IFREG: t = "file"; break;
10956 case S_IFDIR: t = "dir"; break;
10957# ifdef S_IFLNK
10958 case S_IFLNK: t = "link"; break;
10959# endif
10960# ifdef S_IFBLK
10961 case S_IFBLK: t = "bdev"; break;
10962# endif
10963# ifdef S_IFCHR
10964 case S_IFCHR: t = "cdev"; break;
10965# endif
10966# ifdef S_IFIFO
10967 case S_IFIFO: t = "fifo"; break;
10968# endif
10969# ifdef S_IFSOCK
10970 case S_IFSOCK: t = "socket"; break;
10971# endif
10972 default: t = "other";
10973 }
10974# else
10975 if (mch_isdir(fname))
10976 t = "dir";
10977 else
10978 t = "file";
10979# endif
10980#endif
10981 type = vim_strsave((char_u *)t);
10982 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010983 rettv->vval.v_string = type;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010984}
10985
10986/*
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010987 * "getline(lnum, [end])" function
Bram Moolenaar0d660222005-01-07 21:51:51 +000010988 */
10989 static void
10990f_getline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010991 typval_T *argvars;
10992 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010993{
10994 linenr_T lnum;
10995 linenr_T end;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010996 int retlist;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010997
10998 lnum = get_tv_lnum(argvars);
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010999 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar342337a2005-07-21 21:11:17 +000011000 {
Bram Moolenaar80fc0432005-07-20 22:06:07 +000011001 end = 0;
Bram Moolenaar342337a2005-07-21 21:11:17 +000011002 retlist = FALSE;
11003 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000011004 else
Bram Moolenaar342337a2005-07-21 21:11:17 +000011005 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000011006 end = get_tv_lnum(&argvars[1]);
Bram Moolenaar342337a2005-07-21 21:11:17 +000011007 retlist = TRUE;
11008 }
Bram Moolenaar80fc0432005-07-20 22:06:07 +000011009
Bram Moolenaar342337a2005-07-21 21:11:17 +000011010 get_buffer_lines(curbuf, lnum, end, retlist, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000011011}
11012
11013/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011014 * "getmatches()" function
11015 */
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011016 static void
11017f_getmatches(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011018 typval_T *argvars UNUSED;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011019 typval_T *rettv;
11020{
11021#ifdef FEAT_SEARCH_EXTRA
11022 dict_T *dict;
11023 matchitem_T *cur = curwin->w_match_head;
11024
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011025 if (rettv_list_alloc(rettv) == OK)
11026 {
11027 while (cur != NULL)
11028 {
11029 dict = dict_alloc();
11030 if (dict == NULL)
11031 return;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011032 dict_add_nr_str(dict, "group", 0L, syn_id2name(cur->hlg_id));
11033 dict_add_nr_str(dict, "pattern", 0L, cur->pattern);
11034 dict_add_nr_str(dict, "priority", (long)cur->priority, NULL);
11035 dict_add_nr_str(dict, "id", (long)cur->id, NULL);
11036 list_append_dict(rettv->vval.v_list, dict);
11037 cur = cur->next;
11038 }
11039 }
11040#endif
11041}
11042
11043/*
Bram Moolenaar18081e32008-02-20 19:11:07 +000011044 * "getpid()" function
11045 */
Bram Moolenaar18081e32008-02-20 19:11:07 +000011046 static void
11047f_getpid(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011048 typval_T *argvars UNUSED;
Bram Moolenaar18081e32008-02-20 19:11:07 +000011049 typval_T *rettv;
11050{
11051 rettv->vval.v_number = mch_get_pid();
11052}
11053
11054/*
Bram Moolenaara5525202006-03-02 22:52:09 +000011055 * "getpos(string)" function
11056 */
11057 static void
11058f_getpos(argvars, rettv)
11059 typval_T *argvars;
11060 typval_T *rettv;
11061{
11062 pos_T *fp;
11063 list_T *l;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000011064 int fnum = -1;
Bram Moolenaara5525202006-03-02 22:52:09 +000011065
11066 if (rettv_list_alloc(rettv) == OK)
11067 {
11068 l = rettv->vval.v_list;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000011069 fp = var2fpos(&argvars[0], TRUE, &fnum);
11070 if (fnum != -1)
11071 list_append_number(l, (varnumber_T)fnum);
11072 else
11073 list_append_number(l, (varnumber_T)0);
Bram Moolenaara5525202006-03-02 22:52:09 +000011074 list_append_number(l, (fp != NULL) ? (varnumber_T)fp->lnum
11075 : (varnumber_T)0);
Bram Moolenaare65f7322007-10-02 20:08:54 +000011076 list_append_number(l, (fp != NULL)
11077 ? (varnumber_T)(fp->col == MAXCOL ? MAXCOL : fp->col + 1)
Bram Moolenaara5525202006-03-02 22:52:09 +000011078 : (varnumber_T)0);
11079 list_append_number(l,
11080#ifdef FEAT_VIRTUALEDIT
11081 (fp != NULL) ? (varnumber_T)fp->coladd :
11082#endif
11083 (varnumber_T)0);
11084 }
11085 else
11086 rettv->vval.v_number = FALSE;
11087}
11088
11089/*
Bram Moolenaar280f1262006-01-30 00:14:18 +000011090 * "getqflist()" and "getloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000011091 */
Bram Moolenaar2641f772005-03-25 21:58:17 +000011092 static void
Bram Moolenaar280f1262006-01-30 00:14:18 +000011093f_getqflist(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011094 typval_T *argvars UNUSED;
11095 typval_T *rettv UNUSED;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011096{
11097#ifdef FEAT_QUICKFIX
Bram Moolenaar280f1262006-01-30 00:14:18 +000011098 win_T *wp;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011099#endif
11100
Bram Moolenaar2641f772005-03-25 21:58:17 +000011101#ifdef FEAT_QUICKFIX
Bram Moolenaareddf53b2006-02-27 00:11:10 +000011102 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000011103 {
Bram Moolenaar280f1262006-01-30 00:14:18 +000011104 wp = NULL;
11105 if (argvars[0].v_type != VAR_UNKNOWN) /* getloclist() */
11106 {
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011107 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar280f1262006-01-30 00:14:18 +000011108 if (wp == NULL)
11109 return;
11110 }
11111
Bram Moolenaareddf53b2006-02-27 00:11:10 +000011112 (void)get_errorlist(wp, rettv->vval.v_list);
Bram Moolenaar2641f772005-03-25 21:58:17 +000011113 }
11114#endif
11115}
11116
11117/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011118 * "getreg()" function
11119 */
11120 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011121f_getreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011122 typval_T *argvars;
11123 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011124{
11125 char_u *strregname;
11126 int regname;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011127 int arg2 = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011128 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011129
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011130 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011131 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011132 strregname = get_tv_string_chk(&argvars[0]);
11133 error = strregname == NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011134 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011135 arg2 = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011136 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011137 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000011138 strregname = vimvars[VV_REG].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011139 regname = (strregname == NULL ? '"' : *strregname);
11140 if (regname == 0)
11141 regname = '"';
11142
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011143 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011144 rettv->vval.v_string = error ? NULL :
11145 get_reg_contents(regname, TRUE, arg2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011146}
11147
11148/*
11149 * "getregtype()" function
11150 */
11151 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011152f_getregtype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011153 typval_T *argvars;
11154 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011155{
11156 char_u *strregname;
11157 int regname;
11158 char_u buf[NUMBUFLEN + 2];
11159 long reglen = 0;
11160
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011161 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011162 {
11163 strregname = get_tv_string_chk(&argvars[0]);
11164 if (strregname == NULL) /* type error; errmsg already given */
11165 {
11166 rettv->v_type = VAR_STRING;
11167 rettv->vval.v_string = NULL;
11168 return;
11169 }
11170 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011171 else
11172 /* Default to v:register */
Bram Moolenaare9a41262005-01-15 22:18:47 +000011173 strregname = vimvars[VV_REG].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011174
11175 regname = (strregname == NULL ? '"' : *strregname);
11176 if (regname == 0)
11177 regname = '"';
11178
11179 buf[0] = NUL;
11180 buf[1] = NUL;
11181 switch (get_reg_type(regname, &reglen))
11182 {
11183 case MLINE: buf[0] = 'V'; break;
11184 case MCHAR: buf[0] = 'v'; break;
11185#ifdef FEAT_VISUAL
11186 case MBLOCK:
11187 buf[0] = Ctrl_V;
11188 sprintf((char *)buf + 1, "%ld", reglen + 1);
11189 break;
11190#endif
11191 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011192 rettv->v_type = VAR_STRING;
11193 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011194}
11195
11196/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011197 * "gettabwinvar()" function
11198 */
11199 static void
11200f_gettabwinvar(argvars, rettv)
11201 typval_T *argvars;
11202 typval_T *rettv;
11203{
11204 getwinvar(argvars, rettv, 1);
11205}
11206
11207/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011208 * "getwinposx()" function
11209 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011210 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011211f_getwinposx(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011212 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000011213 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011214{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011215 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011216#ifdef FEAT_GUI
11217 if (gui.in_use)
11218 {
11219 int x, y;
11220
11221 if (gui_mch_get_winpos(&x, &y) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011222 rettv->vval.v_number = x;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011223 }
11224#endif
11225}
11226
11227/*
11228 * "getwinposy()" function
11229 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011230 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011231f_getwinposy(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011232 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000011233 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011234{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011235 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011236#ifdef FEAT_GUI
11237 if (gui.in_use)
11238 {
11239 int x, y;
11240
11241 if (gui_mch_get_winpos(&x, &y) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011242 rettv->vval.v_number = y;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011243 }
11244#endif
11245}
11246
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011247/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011248 * Find window specified by "vp" in tabpage "tp".
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011249 */
Bram Moolenaara40058a2005-07-11 22:42:07 +000011250 static win_T *
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011251find_win_by_nr(vp, tp)
Bram Moolenaara40058a2005-07-11 22:42:07 +000011252 typval_T *vp;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011253 tabpage_T *tp; /* NULL for current tab page */
Bram Moolenaara40058a2005-07-11 22:42:07 +000011254{
11255#ifdef FEAT_WINDOWS
11256 win_T *wp;
11257#endif
11258 int nr;
11259
11260 nr = get_tv_number_chk(vp, NULL);
11261
11262#ifdef FEAT_WINDOWS
11263 if (nr < 0)
11264 return NULL;
11265 if (nr == 0)
11266 return curwin;
11267
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011268 for (wp = (tp == NULL || tp == curtab) ? firstwin : tp->tp_firstwin;
11269 wp != NULL; wp = wp->w_next)
Bram Moolenaara40058a2005-07-11 22:42:07 +000011270 if (--nr <= 0)
11271 break;
11272 return wp;
11273#else
11274 if (nr == 0 || nr == 1)
11275 return curwin;
11276 return NULL;
11277#endif
11278}
11279
Bram Moolenaar071d4272004-06-13 20:20:40 +000011280/*
11281 * "getwinvar()" function
11282 */
11283 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011284f_getwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011285 typval_T *argvars;
11286 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011287{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011288 getwinvar(argvars, rettv, 0);
11289}
11290
11291/*
11292 * getwinvar() and gettabwinvar()
11293 */
11294 static void
11295getwinvar(argvars, rettv, off)
11296 typval_T *argvars;
11297 typval_T *rettv;
11298 int off; /* 1 for gettabwinvar() */
11299{
Bram Moolenaar071d4272004-06-13 20:20:40 +000011300 win_T *win, *oldcurwin;
11301 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000011302 dictitem_T *v;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011303 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011304
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011305#ifdef FEAT_WINDOWS
11306 if (off == 1)
11307 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
11308 else
11309 tp = curtab;
11310#endif
11311 win = find_win_by_nr(&argvars[off], tp);
11312 varname = get_tv_string_chk(&argvars[off + 1]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011313 ++emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011314
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011315 rettv->v_type = VAR_STRING;
11316 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011317
11318 if (win != NULL && varname != NULL)
11319 {
Bram Moolenaar69a7e432006-10-10 10:55:47 +000011320 /* Set curwin to be our win, temporarily. Also set curbuf, so
11321 * that we can get buffer-local options. */
11322 oldcurwin = curwin;
11323 curwin = win;
11324 curbuf = win->w_buffer;
11325
Bram Moolenaar071d4272004-06-13 20:20:40 +000011326 if (*varname == '&') /* window-local-option */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011327 get_option_tv(&varname, rettv, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011328 else
11329 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011330 if (*varname == NUL)
11331 /* let getwinvar({nr}, "") return the "w:" dictionary. The
11332 * scope prefix before the NUL byte is required by
11333 * find_var_in_ht(). */
11334 varname = (char_u *)"w:" + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011335 /* look up the variable */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011336 v = find_var_in_ht(&win->w_vars.dv_hashtab, varname, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011337 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000011338 copy_tv(&v->di_tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011339 }
Bram Moolenaar69a7e432006-10-10 10:55:47 +000011340
11341 /* restore previous notion of curwin */
11342 curwin = oldcurwin;
11343 curbuf = curwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011344 }
11345
11346 --emsg_off;
11347}
11348
11349/*
11350 * "glob()" function
11351 */
11352 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011353f_glob(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011354 typval_T *argvars;
11355 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011356{
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011357 int flags = WILD_SILENT|WILD_USE_NL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011358 expand_T xpc;
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[1].v_type != VAR_UNKNOWN
11364 && get_tv_number_chk(&argvars[1], &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 (!error)
11368 {
11369 ExpandInit(&xpc);
11370 xpc.xp_context = EXPAND_FILES;
11371 rettv->vval.v_string = ExpandOne(&xpc, get_tv_string(&argvars[0]),
11372 NULL, flags, WILD_ALL);
11373 }
11374 else
11375 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011376}
11377
11378/*
11379 * "globpath()" function
11380 */
11381 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011382f_globpath(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011383 typval_T *argvars;
11384 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011385{
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011386 int flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011387 char_u buf1[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011388 char_u *file = get_tv_string_buf_chk(&argvars[1], buf1);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011389 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011390
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011391 /* When the optional second argument is non-zero, don't remove matches
11392 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
11393 if (argvars[2].v_type != VAR_UNKNOWN
11394 && get_tv_number_chk(&argvars[2], &error))
11395 flags |= WILD_KEEP_ALL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011396 rettv->v_type = VAR_STRING;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011397 if (file == NULL || error)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011398 rettv->vval.v_string = NULL;
11399 else
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011400 rettv->vval.v_string = globpath(get_tv_string(&argvars[0]), file,
11401 flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011402}
11403
11404/*
11405 * "has()" function
11406 */
11407 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011408f_has(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011409 typval_T *argvars;
11410 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011411{
11412 int i;
11413 char_u *name;
11414 int n = FALSE;
11415 static char *(has_list[]) =
11416 {
11417#ifdef AMIGA
11418 "amiga",
11419# ifdef FEAT_ARP
11420 "arp",
11421# endif
11422#endif
11423#ifdef __BEOS__
11424 "beos",
11425#endif
11426#ifdef MSDOS
11427# ifdef DJGPP
11428 "dos32",
11429# else
11430 "dos16",
11431# endif
11432#endif
Bram Moolenaar241a8aa2005-12-06 20:04:44 +000011433#ifdef MACOS
Bram Moolenaar071d4272004-06-13 20:20:40 +000011434 "mac",
11435#endif
11436#if defined(MACOS_X_UNIX)
11437 "macunix",
11438#endif
11439#ifdef OS2
11440 "os2",
11441#endif
11442#ifdef __QNX__
11443 "qnx",
11444#endif
11445#ifdef RISCOS
11446 "riscos",
11447#endif
11448#ifdef UNIX
11449 "unix",
11450#endif
11451#ifdef VMS
11452 "vms",
11453#endif
11454#ifdef WIN16
11455 "win16",
11456#endif
11457#ifdef WIN32
11458 "win32",
11459#endif
11460#if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
11461 "win32unix",
11462#endif
Bram Moolenaare37d7992010-01-12 13:18:33 +010011463#if defined(WIN64) || defined(_WIN64)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011464 "win64",
11465#endif
11466#ifdef EBCDIC
11467 "ebcdic",
11468#endif
11469#ifndef CASE_INSENSITIVE_FILENAME
11470 "fname_case",
11471#endif
11472#ifdef FEAT_ARABIC
11473 "arabic",
11474#endif
11475#ifdef FEAT_AUTOCMD
11476 "autocmd",
11477#endif
11478#ifdef FEAT_BEVAL
11479 "balloon_eval",
Bram Moolenaar342337a2005-07-21 21:11:17 +000011480# ifndef FEAT_GUI_W32 /* other GUIs always have multiline balloons */
11481 "balloon_multiline",
11482# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011483#endif
11484#if defined(SOME_BUILTIN_TCAPS) || defined(ALL_BUILTIN_TCAPS)
11485 "builtin_terms",
11486# ifdef ALL_BUILTIN_TCAPS
11487 "all_builtin_terms",
11488# endif
11489#endif
11490#ifdef FEAT_BYTEOFF
11491 "byte_offset",
11492#endif
11493#ifdef FEAT_CINDENT
11494 "cindent",
11495#endif
11496#ifdef FEAT_CLIENTSERVER
11497 "clientserver",
11498#endif
11499#ifdef FEAT_CLIPBOARD
11500 "clipboard",
11501#endif
11502#ifdef FEAT_CMDL_COMPL
11503 "cmdline_compl",
11504#endif
11505#ifdef FEAT_CMDHIST
11506 "cmdline_hist",
11507#endif
11508#ifdef FEAT_COMMENTS
11509 "comments",
11510#endif
11511#ifdef FEAT_CRYPT
11512 "cryptv",
11513#endif
11514#ifdef FEAT_CSCOPE
11515 "cscope",
11516#endif
Bram Moolenaarac6e65f2005-08-29 22:25:38 +000011517#ifdef CURSOR_SHAPE
11518 "cursorshape",
11519#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011520#ifdef DEBUG
11521 "debug",
11522#endif
11523#ifdef FEAT_CON_DIALOG
11524 "dialog_con",
11525#endif
11526#ifdef FEAT_GUI_DIALOG
11527 "dialog_gui",
11528#endif
11529#ifdef FEAT_DIFF
11530 "diff",
11531#endif
11532#ifdef FEAT_DIGRAPHS
11533 "digraphs",
11534#endif
11535#ifdef FEAT_DND
11536 "dnd",
11537#endif
11538#ifdef FEAT_EMACS_TAGS
11539 "emacs_tags",
11540#endif
11541 "eval", /* always present, of course! */
11542#ifdef FEAT_EX_EXTRA
11543 "ex_extra",
11544#endif
11545#ifdef FEAT_SEARCH_EXTRA
11546 "extra_search",
11547#endif
11548#ifdef FEAT_FKMAP
11549 "farsi",
11550#endif
11551#ifdef FEAT_SEARCHPATH
11552 "file_in_path",
11553#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011554#if defined(UNIX) && !defined(USE_SYSTEM)
11555 "filterpipe",
11556#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011557#ifdef FEAT_FIND_ID
11558 "find_in_path",
11559#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011560#ifdef FEAT_FLOAT
11561 "float",
11562#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011563#ifdef FEAT_FOLDING
11564 "folding",
11565#endif
11566#ifdef FEAT_FOOTER
11567 "footer",
11568#endif
11569#if !defined(USE_SYSTEM) && defined(UNIX)
11570 "fork",
11571#endif
11572#ifdef FEAT_GETTEXT
11573 "gettext",
11574#endif
11575#ifdef FEAT_GUI
11576 "gui",
11577#endif
11578#ifdef FEAT_GUI_ATHENA
11579# ifdef FEAT_GUI_NEXTAW
11580 "gui_neXtaw",
11581# else
11582 "gui_athena",
11583# endif
11584#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011585#ifdef FEAT_GUI_GTK
11586 "gui_gtk",
11587# ifdef HAVE_GTK2
11588 "gui_gtk2",
11589# endif
11590#endif
Bram Moolenaar7b188622007-09-25 10:51:12 +000011591#ifdef FEAT_GUI_GNOME
11592 "gui_gnome",
11593#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011594#ifdef FEAT_GUI_MAC
11595 "gui_mac",
11596#endif
11597#ifdef FEAT_GUI_MOTIF
11598 "gui_motif",
11599#endif
11600#ifdef FEAT_GUI_PHOTON
11601 "gui_photon",
11602#endif
11603#ifdef FEAT_GUI_W16
11604 "gui_win16",
11605#endif
11606#ifdef FEAT_GUI_W32
11607 "gui_win32",
11608#endif
11609#ifdef FEAT_HANGULIN
11610 "hangul_input",
11611#endif
11612#if defined(HAVE_ICONV_H) && defined(USE_ICONV)
11613 "iconv",
11614#endif
11615#ifdef FEAT_INS_EXPAND
11616 "insert_expand",
11617#endif
11618#ifdef FEAT_JUMPLIST
11619 "jumplist",
11620#endif
11621#ifdef FEAT_KEYMAP
11622 "keymap",
11623#endif
11624#ifdef FEAT_LANGMAP
11625 "langmap",
11626#endif
11627#ifdef FEAT_LIBCALL
11628 "libcall",
11629#endif
11630#ifdef FEAT_LINEBREAK
11631 "linebreak",
11632#endif
11633#ifdef FEAT_LISP
11634 "lispindent",
11635#endif
11636#ifdef FEAT_LISTCMDS
11637 "listcmds",
11638#endif
11639#ifdef FEAT_LOCALMAP
11640 "localmap",
11641#endif
11642#ifdef FEAT_MENU
11643 "menu",
11644#endif
11645#ifdef FEAT_SESSION
11646 "mksession",
11647#endif
11648#ifdef FEAT_MODIFY_FNAME
11649 "modify_fname",
11650#endif
11651#ifdef FEAT_MOUSE
11652 "mouse",
11653#endif
11654#ifdef FEAT_MOUSESHAPE
11655 "mouseshape",
11656#endif
11657#if defined(UNIX) || defined(VMS)
11658# ifdef FEAT_MOUSE_DEC
11659 "mouse_dec",
11660# endif
11661# ifdef FEAT_MOUSE_GPM
11662 "mouse_gpm",
11663# endif
11664# ifdef FEAT_MOUSE_JSB
11665 "mouse_jsbterm",
11666# endif
11667# ifdef FEAT_MOUSE_NET
11668 "mouse_netterm",
11669# endif
11670# ifdef FEAT_MOUSE_PTERM
11671 "mouse_pterm",
11672# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011673# ifdef FEAT_SYSMOUSE
11674 "mouse_sysmouse",
11675# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011676# ifdef FEAT_MOUSE_XTERM
11677 "mouse_xterm",
11678# endif
11679#endif
11680#ifdef FEAT_MBYTE
11681 "multi_byte",
11682#endif
11683#ifdef FEAT_MBYTE_IME
11684 "multi_byte_ime",
11685#endif
11686#ifdef FEAT_MULTI_LANG
11687 "multi_lang",
11688#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011689#ifdef FEAT_MZSCHEME
Bram Moolenaar33570922005-01-25 22:26:29 +000011690#ifndef DYNAMIC_MZSCHEME
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011691 "mzscheme",
11692#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011693#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011694#ifdef FEAT_OLE
11695 "ole",
11696#endif
11697#ifdef FEAT_OSFILETYPE
11698 "osfiletype",
11699#endif
11700#ifdef FEAT_PATH_EXTRA
11701 "path_extra",
11702#endif
11703#ifdef FEAT_PERL
11704#ifndef DYNAMIC_PERL
11705 "perl",
11706#endif
11707#endif
11708#ifdef FEAT_PYTHON
11709#ifndef DYNAMIC_PYTHON
11710 "python",
11711#endif
11712#endif
11713#ifdef FEAT_POSTSCRIPT
11714 "postscript",
11715#endif
11716#ifdef FEAT_PRINTER
11717 "printer",
11718#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +000011719#ifdef FEAT_PROFILE
11720 "profile",
11721#endif
Bram Moolenaare580b0c2006-03-21 21:33:03 +000011722#ifdef FEAT_RELTIME
11723 "reltime",
11724#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011725#ifdef FEAT_QUICKFIX
11726 "quickfix",
11727#endif
11728#ifdef FEAT_RIGHTLEFT
11729 "rightleft",
11730#endif
11731#if defined(FEAT_RUBY) && !defined(DYNAMIC_RUBY)
11732 "ruby",
11733#endif
11734#ifdef FEAT_SCROLLBIND
11735 "scrollbind",
11736#endif
11737#ifdef FEAT_CMDL_INFO
11738 "showcmd",
11739 "cmdline_info",
11740#endif
11741#ifdef FEAT_SIGNS
11742 "signs",
11743#endif
11744#ifdef FEAT_SMARTINDENT
11745 "smartindent",
11746#endif
11747#ifdef FEAT_SNIFF
11748 "sniff",
11749#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +000011750#ifdef STARTUPTIME
11751 "startuptime",
11752#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011753#ifdef FEAT_STL_OPT
11754 "statusline",
11755#endif
11756#ifdef FEAT_SUN_WORKSHOP
11757 "sun_workshop",
11758#endif
11759#ifdef FEAT_NETBEANS_INTG
11760 "netbeans_intg",
11761#endif
Bram Moolenaar3c56a962006-03-12 22:19:04 +000011762#ifdef FEAT_SPELL
Bram Moolenaar0e4d8772005-06-07 21:12:49 +000011763 "spell",
11764#endif
11765#ifdef FEAT_SYN_HL
Bram Moolenaar071d4272004-06-13 20:20:40 +000011766 "syntax",
11767#endif
11768#if defined(USE_SYSTEM) || !defined(UNIX)
11769 "system",
11770#endif
11771#ifdef FEAT_TAG_BINS
11772 "tag_binary",
11773#endif
11774#ifdef FEAT_TAG_OLDSTATIC
11775 "tag_old_static",
11776#endif
11777#ifdef FEAT_TAG_ANYWHITE
11778 "tag_any_white",
11779#endif
11780#ifdef FEAT_TCL
11781# ifndef DYNAMIC_TCL
11782 "tcl",
11783# endif
11784#endif
11785#ifdef TERMINFO
11786 "terminfo",
11787#endif
11788#ifdef FEAT_TERMRESPONSE
11789 "termresponse",
11790#endif
11791#ifdef FEAT_TEXTOBJ
11792 "textobjects",
11793#endif
11794#ifdef HAVE_TGETENT
11795 "tgetent",
11796#endif
11797#ifdef FEAT_TITLE
11798 "title",
11799#endif
11800#ifdef FEAT_TOOLBAR
11801 "toolbar",
11802#endif
11803#ifdef FEAT_USR_CMDS
11804 "user-commands", /* was accidentally included in 5.4 */
11805 "user_commands",
11806#endif
11807#ifdef FEAT_VIMINFO
11808 "viminfo",
11809#endif
11810#ifdef FEAT_VERTSPLIT
11811 "vertsplit",
11812#endif
11813#ifdef FEAT_VIRTUALEDIT
11814 "virtualedit",
11815#endif
11816#ifdef FEAT_VISUAL
11817 "visual",
11818#endif
11819#ifdef FEAT_VISUALEXTRA
11820 "visualextra",
11821#endif
11822#ifdef FEAT_VREPLACE
11823 "vreplace",
11824#endif
11825#ifdef FEAT_WILDIGN
11826 "wildignore",
11827#endif
11828#ifdef FEAT_WILDMENU
11829 "wildmenu",
11830#endif
11831#ifdef FEAT_WINDOWS
11832 "windows",
11833#endif
11834#ifdef FEAT_WAK
11835 "winaltkeys",
11836#endif
11837#ifdef FEAT_WRITEBACKUP
11838 "writebackup",
11839#endif
11840#ifdef FEAT_XIM
11841 "xim",
11842#endif
11843#ifdef FEAT_XFONTSET
11844 "xfontset",
11845#endif
11846#ifdef USE_XSMP
11847 "xsmp",
11848#endif
11849#ifdef USE_XSMP_INTERACT
11850 "xsmp_interact",
11851#endif
11852#ifdef FEAT_XCLIPBOARD
11853 "xterm_clipboard",
11854#endif
11855#ifdef FEAT_XTERM_SAVE
11856 "xterm_save",
11857#endif
11858#if defined(UNIX) && defined(FEAT_X11)
11859 "X11",
11860#endif
11861 NULL
11862 };
11863
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011864 name = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011865 for (i = 0; has_list[i] != NULL; ++i)
11866 if (STRICMP(name, has_list[i]) == 0)
11867 {
11868 n = TRUE;
11869 break;
11870 }
11871
11872 if (n == FALSE)
11873 {
11874 if (STRNICMP(name, "patch", 5) == 0)
11875 n = has_patch(atoi((char *)name + 5));
11876 else if (STRICMP(name, "vim_starting") == 0)
11877 n = (starting != 0);
Bram Moolenaar42022d52008-12-09 09:57:49 +000011878#ifdef FEAT_MBYTE
11879 else if (STRICMP(name, "multi_byte_encoding") == 0)
11880 n = has_mbyte;
11881#endif
Bram Moolenaar342337a2005-07-21 21:11:17 +000011882#if defined(FEAT_BEVAL) && defined(FEAT_GUI_W32)
11883 else if (STRICMP(name, "balloon_multiline") == 0)
11884 n = multiline_balloon_available();
11885#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011886#ifdef DYNAMIC_TCL
11887 else if (STRICMP(name, "tcl") == 0)
11888 n = tcl_enabled(FALSE);
11889#endif
11890#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
11891 else if (STRICMP(name, "iconv") == 0)
11892 n = iconv_enabled(FALSE);
11893#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011894#ifdef DYNAMIC_MZSCHEME
11895 else if (STRICMP(name, "mzscheme") == 0)
11896 n = mzscheme_enabled(FALSE);
11897#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011898#ifdef DYNAMIC_RUBY
11899 else if (STRICMP(name, "ruby") == 0)
11900 n = ruby_enabled(FALSE);
11901#endif
11902#ifdef DYNAMIC_PYTHON
11903 else if (STRICMP(name, "python") == 0)
11904 n = python_enabled(FALSE);
11905#endif
11906#ifdef DYNAMIC_PERL
11907 else if (STRICMP(name, "perl") == 0)
11908 n = perl_enabled(FALSE);
11909#endif
11910#ifdef FEAT_GUI
11911 else if (STRICMP(name, "gui_running") == 0)
11912 n = (gui.in_use || gui.starting);
11913# ifdef FEAT_GUI_W32
11914 else if (STRICMP(name, "gui_win32s") == 0)
11915 n = gui_is_win32s();
11916# endif
11917# ifdef FEAT_BROWSE
11918 else if (STRICMP(name, "browse") == 0)
11919 n = gui.in_use; /* gui_mch_browse() works when GUI is running */
11920# endif
11921#endif
11922#ifdef FEAT_SYN_HL
11923 else if (STRICMP(name, "syntax_items") == 0)
11924 n = syntax_present(curbuf);
11925#endif
11926#if defined(WIN3264)
11927 else if (STRICMP(name, "win95") == 0)
11928 n = mch_windows95();
11929#endif
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +000011930#ifdef FEAT_NETBEANS_INTG
11931 else if (STRICMP(name, "netbeans_enabled") == 0)
11932 n = usingNetbeans;
11933#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011934 }
11935
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011936 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011937}
11938
11939/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000011940 * "has_key()" function
11941 */
11942 static void
11943f_has_key(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011944 typval_T *argvars;
11945 typval_T *rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011946{
Bram Moolenaare9a41262005-01-15 22:18:47 +000011947 if (argvars[0].v_type != VAR_DICT)
11948 {
11949 EMSG(_(e_dictreq));
11950 return;
11951 }
11952 if (argvars[0].vval.v_dict == NULL)
11953 return;
11954
11955 rettv->vval.v_number = dict_find(argvars[0].vval.v_dict,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000011956 get_tv_string(&argvars[1]), -1) != NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011957}
11958
11959/*
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011960 * "haslocaldir()" function
11961 */
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011962 static void
11963f_haslocaldir(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011964 typval_T *argvars UNUSED;
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011965 typval_T *rettv;
11966{
11967 rettv->vval.v_number = (curwin->w_localdir != NULL);
11968}
11969
11970/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011971 * "hasmapto()" function
11972 */
11973 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011974f_hasmapto(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011975 typval_T *argvars;
11976 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011977{
11978 char_u *name;
11979 char_u *mode;
11980 char_u buf[NUMBUFLEN];
Bram Moolenaar2c932302006-03-18 21:42:09 +000011981 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011982
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011983 name = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011984 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011985 mode = (char_u *)"nvo";
11986 else
Bram Moolenaar2c932302006-03-18 21:42:09 +000011987 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011988 mode = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000011989 if (argvars[2].v_type != VAR_UNKNOWN)
11990 abbr = get_tv_number(&argvars[2]);
11991 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011992
Bram Moolenaar2c932302006-03-18 21:42:09 +000011993 if (map_to_exists(name, mode, abbr))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011994 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011995 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011996 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011997}
11998
11999/*
12000 * "histadd()" function
12001 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012002 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012003f_histadd(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012004 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012005 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012006{
12007#ifdef FEAT_CMDHIST
12008 int histype;
12009 char_u *str;
12010 char_u buf[NUMBUFLEN];
12011#endif
12012
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012013 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012014 if (check_restricted() || check_secure())
12015 return;
12016#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012017 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12018 histype = str != NULL ? get_histtype(str) : -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012019 if (histype >= 0)
12020 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012021 str = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012022 if (*str != NUL)
12023 {
Bram Moolenaarc7be3f32009-12-24 14:01:12 +000012024 init_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +000012025 add_to_history(histype, str, FALSE, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012026 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012027 return;
12028 }
12029 }
12030#endif
12031}
12032
12033/*
12034 * "histdel()" function
12035 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012036 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012037f_histdel(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012038 typval_T *argvars UNUSED;
12039 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012040{
12041#ifdef FEAT_CMDHIST
12042 int n;
12043 char_u buf[NUMBUFLEN];
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 n = 0;
12049 else if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000012050 /* only one argument: clear entire history */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012051 n = clr_history(get_histtype(str));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012052 else if (argvars[1].v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +000012053 /* index given: remove that entry */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012054 n = del_history_idx(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012055 (int)get_tv_number(&argvars[1]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012056 else
12057 /* string given: remove all matching entries */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012058 n = del_history_entry(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012059 get_tv_string_buf(&argvars[1], buf));
12060 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012061#endif
12062}
12063
12064/*
12065 * "histget()" function
12066 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012067 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012068f_histget(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012069 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012070 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012071{
12072#ifdef FEAT_CMDHIST
12073 int type;
12074 int idx;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012075 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012076
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012077 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12078 if (str == NULL)
12079 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012080 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012081 {
12082 type = get_histtype(str);
12083 if (argvars[1].v_type == VAR_UNKNOWN)
12084 idx = get_history_idx(type);
12085 else
12086 idx = (int)get_tv_number_chk(&argvars[1], NULL);
12087 /* -1 on type error */
12088 rettv->vval.v_string = vim_strsave(get_history_entry(type, idx));
12089 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012090#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012091 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012092#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012093 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012094}
12095
12096/*
12097 * "histnr()" function
12098 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012099 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012100f_histnr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012101 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012102 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012103{
12104 int i;
12105
12106#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012107 char_u *history = get_tv_string_chk(&argvars[0]);
12108
12109 i = history == NULL ? HIST_CMD - 1 : get_histtype(history);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012110 if (i >= HIST_CMD && i < HIST_COUNT)
12111 i = get_history_idx(i);
12112 else
12113#endif
12114 i = -1;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012115 rettv->vval.v_number = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012116}
12117
12118/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012119 * "highlightID(name)" function
12120 */
12121 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012122f_hlID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012123 typval_T *argvars;
12124 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012125{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012126 rettv->vval.v_number = syn_name2id(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012127}
12128
12129/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012130 * "highlight_exists()" function
12131 */
12132 static void
12133f_hlexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012134 typval_T *argvars;
12135 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012136{
12137 rettv->vval.v_number = highlight_exists(get_tv_string(&argvars[0]));
12138}
12139
12140/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012141 * "hostname()" function
12142 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012143 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012144f_hostname(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012145 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012146 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012147{
12148 char_u hostname[256];
12149
12150 mch_get_host_name(hostname, 256);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012151 rettv->v_type = VAR_STRING;
12152 rettv->vval.v_string = vim_strsave(hostname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012153}
12154
12155/*
12156 * iconv() function
12157 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012158 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012159f_iconv(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012160 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012161 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012162{
12163#ifdef FEAT_MBYTE
12164 char_u buf1[NUMBUFLEN];
12165 char_u buf2[NUMBUFLEN];
12166 char_u *from, *to, *str;
12167 vimconv_T vimconv;
12168#endif
12169
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012170 rettv->v_type = VAR_STRING;
12171 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012172
12173#ifdef FEAT_MBYTE
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012174 str = get_tv_string(&argvars[0]);
12175 from = enc_canonize(enc_skip(get_tv_string_buf(&argvars[1], buf1)));
12176 to = enc_canonize(enc_skip(get_tv_string_buf(&argvars[2], buf2)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012177 vimconv.vc_type = CONV_NONE;
12178 convert_setup(&vimconv, from, to);
12179
12180 /* If the encodings are equal, no conversion needed. */
12181 if (vimconv.vc_type == CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012182 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012183 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012184 rettv->vval.v_string = string_convert(&vimconv, str, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012185
12186 convert_setup(&vimconv, NULL, NULL);
12187 vim_free(from);
12188 vim_free(to);
12189#endif
12190}
12191
12192/*
12193 * "indent()" function
12194 */
12195 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012196f_indent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012197 typval_T *argvars;
12198 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012199{
12200 linenr_T lnum;
12201
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012202 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012203 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012204 rettv->vval.v_number = get_indent_lnum(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012205 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012206 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012207}
12208
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012209/*
12210 * "index()" function
12211 */
12212 static void
12213f_index(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012214 typval_T *argvars;
12215 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012216{
Bram Moolenaar33570922005-01-25 22:26:29 +000012217 list_T *l;
12218 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012219 long idx = 0;
12220 int ic = FALSE;
12221
12222 rettv->vval.v_number = -1;
12223 if (argvars[0].v_type != VAR_LIST)
12224 {
12225 EMSG(_(e_listreq));
12226 return;
12227 }
12228 l = argvars[0].vval.v_list;
12229 if (l != NULL)
12230 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012231 item = l->lv_first;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012232 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012233 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012234 int error = FALSE;
12235
Bram Moolenaar758711c2005-02-02 23:11:38 +000012236 /* Start at specified item. Use the cached index that list_find()
12237 * sets, so that a negative number also works. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012238 item = list_find(l, get_tv_number_chk(&argvars[2], &error));
Bram Moolenaar758711c2005-02-02 23:11:38 +000012239 idx = l->lv_idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012240 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012241 ic = get_tv_number_chk(&argvars[3], &error);
12242 if (error)
12243 item = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012244 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012245
Bram Moolenaar758711c2005-02-02 23:11:38 +000012246 for ( ; item != NULL; item = item->li_next, ++idx)
12247 if (tv_equal(&item->li_tv, &argvars[1], ic))
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012248 {
12249 rettv->vval.v_number = idx;
12250 break;
12251 }
12252 }
12253}
12254
Bram Moolenaar071d4272004-06-13 20:20:40 +000012255static int inputsecret_flag = 0;
12256
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012257static void get_user_input __ARGS((typval_T *argvars, typval_T *rettv, int inputdialog));
12258
Bram Moolenaar071d4272004-06-13 20:20:40 +000012259/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012260 * This function is used by f_input() and f_inputdialog() functions. The third
12261 * argument to f_input() specifies the type of completion to use at the
12262 * prompt. The third argument to f_inputdialog() specifies the value to return
12263 * when the user cancels the prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +000012264 */
12265 static void
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012266get_user_input(argvars, rettv, inputdialog)
Bram Moolenaar33570922005-01-25 22:26:29 +000012267 typval_T *argvars;
12268 typval_T *rettv;
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012269 int inputdialog;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012270{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012271 char_u *prompt = get_tv_string_chk(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012272 char_u *p = NULL;
12273 int c;
12274 char_u buf[NUMBUFLEN];
12275 int cmd_silent_save = cmd_silent;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012276 char_u *defstr = (char_u *)"";
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012277 int xp_type = EXPAND_NOTHING;
12278 char_u *xp_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012279
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012280 rettv->v_type = VAR_STRING;
Bram Moolenaarce85c562007-09-16 12:21:16 +000012281 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012282
12283#ifdef NO_CONSOLE_INPUT
12284 /* While starting up, there is no place to enter text. */
12285 if (no_console_input())
Bram Moolenaar071d4272004-06-13 20:20:40 +000012286 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012287#endif
12288
12289 cmd_silent = FALSE; /* Want to see the prompt. */
12290 if (prompt != NULL)
12291 {
12292 /* Only the part of the message after the last NL is considered as
12293 * prompt for the command line */
12294 p = vim_strrchr(prompt, '\n');
12295 if (p == NULL)
12296 p = prompt;
12297 else
12298 {
12299 ++p;
12300 c = *p;
12301 *p = NUL;
12302 msg_start();
12303 msg_clr_eos();
12304 msg_puts_attr(prompt, echo_attr);
12305 msg_didout = FALSE;
12306 msg_starthere();
12307 *p = c;
12308 }
12309 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012310
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012311 if (argvars[1].v_type != VAR_UNKNOWN)
12312 {
12313 defstr = get_tv_string_buf_chk(&argvars[1], buf);
12314 if (defstr != NULL)
12315 stuffReadbuffSpec(defstr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012316
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012317 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar4463f292005-09-25 22:20:24 +000012318 {
12319 char_u *xp_name;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000012320 int xp_namelen;
Bram Moolenaar4463f292005-09-25 22:20:24 +000012321 long argt;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012322
Bram Moolenaar4463f292005-09-25 22:20:24 +000012323 rettv->vval.v_string = NULL;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012324
Bram Moolenaar4463f292005-09-25 22:20:24 +000012325 xp_name = get_tv_string_buf_chk(&argvars[2], buf);
12326 if (xp_name == NULL)
12327 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012328
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012329 xp_namelen = (int)STRLEN(xp_name);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012330
Bram Moolenaar4463f292005-09-25 22:20:24 +000012331 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt,
12332 &xp_arg) == FAIL)
12333 return;
12334 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012335 }
12336
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012337 if (defstr != NULL)
12338 rettv->vval.v_string =
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012339 getcmdline_prompt(inputsecret_flag ? NUL : '@', p, echo_attr,
12340 xp_type, xp_arg);
12341
12342 vim_free(xp_arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012343
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012344 /* since the user typed this, no need to wait for return */
12345 need_wait_return = FALSE;
12346 msg_didout = FALSE;
12347 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012348 cmd_silent = cmd_silent_save;
12349}
12350
12351/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012352 * "input()" function
12353 * Also handles inputsecret() when inputsecret is set.
12354 */
12355 static void
12356f_input(argvars, rettv)
12357 typval_T *argvars;
12358 typval_T *rettv;
12359{
12360 get_user_input(argvars, rettv, FALSE);
12361}
12362
12363/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012364 * "inputdialog()" function
12365 */
12366 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012367f_inputdialog(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012368 typval_T *argvars;
12369 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012370{
12371#if defined(FEAT_GUI_TEXTDIALOG)
12372 /* Use a GUI dialog if the GUI is running and 'c' is not in 'guioptions' */
12373 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
12374 {
12375 char_u *message;
12376 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012377 char_u *defstr = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +000012378
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012379 message = get_tv_string_chk(&argvars[0]);
12380 if (argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaarc05f93f2006-05-02 22:09:31 +000012381 && (defstr = get_tv_string_buf_chk(&argvars[1], buf)) != NULL)
Bram Moolenaarce0842a2005-07-18 21:58:11 +000012382 vim_strncpy(IObuff, defstr, IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012383 else
12384 IObuff[0] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012385 if (message != NULL && defstr != NULL
12386 && do_dialog(VIM_QUESTION, NULL, message,
12387 (char_u *)_("&OK\n&Cancel"), 1, IObuff) == 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012388 rettv->vval.v_string = vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012389 else
12390 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012391 if (message != NULL && defstr != NULL
12392 && argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012393 && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012394 rettv->vval.v_string = vim_strsave(
12395 get_tv_string_buf(&argvars[2], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012396 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012397 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012398 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012399 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012400 }
12401 else
12402#endif
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012403 get_user_input(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012404}
12405
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012406/*
12407 * "inputlist()" function
12408 */
12409 static void
12410f_inputlist(argvars, rettv)
12411 typval_T *argvars;
12412 typval_T *rettv;
12413{
12414 listitem_T *li;
12415 int selected;
12416 int mouse_used;
12417
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012418#ifdef NO_CONSOLE_INPUT
12419 /* While starting up, there is no place to enter text. */
12420 if (no_console_input())
12421 return;
12422#endif
12423 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
12424 {
12425 EMSG2(_(e_listarg), "inputlist()");
12426 return;
12427 }
12428
12429 msg_start();
Bram Moolenaar412f7442006-07-23 19:51:57 +000012430 msg_row = Rows - 1; /* for when 'cmdheight' > 1 */
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012431 lines_left = Rows; /* avoid more prompt */
12432 msg_scroll = TRUE;
12433 msg_clr_eos();
12434
12435 for (li = argvars[0].vval.v_list->lv_first; li != NULL; li = li->li_next)
12436 {
12437 msg_puts(get_tv_string(&li->li_tv));
12438 msg_putchar('\n');
12439 }
12440
12441 /* Ask for choice. */
12442 selected = prompt_for_number(&mouse_used);
12443 if (mouse_used)
12444 selected -= lines_left;
12445
12446 rettv->vval.v_number = selected;
12447}
12448
12449
Bram Moolenaar071d4272004-06-13 20:20:40 +000012450static garray_T ga_userinput = {0, 0, sizeof(tasave_T), 4, NULL};
12451
12452/*
12453 * "inputrestore()" function
12454 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012455 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012456f_inputrestore(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012457 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012458 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012459{
12460 if (ga_userinput.ga_len > 0)
12461 {
12462 --ga_userinput.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012463 restore_typeahead((tasave_T *)(ga_userinput.ga_data)
12464 + ga_userinput.ga_len);
Bram Moolenaar798b30b2009-04-22 10:56:16 +000012465 /* default return is zero == OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012466 }
12467 else if (p_verbose > 1)
12468 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +000012469 verb_msg((char_u *)_("called inputrestore() more often than inputsave()"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012470 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012471 }
12472}
12473
12474/*
12475 * "inputsave()" function
12476 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012477 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012478f_inputsave(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012479 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012480 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012481{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012482 /* Add an entry to the stack of typeahead storage. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012483 if (ga_grow(&ga_userinput, 1) == OK)
12484 {
12485 save_typeahead((tasave_T *)(ga_userinput.ga_data)
12486 + ga_userinput.ga_len);
12487 ++ga_userinput.ga_len;
Bram Moolenaar798b30b2009-04-22 10:56:16 +000012488 /* default return is zero == OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012489 }
12490 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012491 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012492}
12493
12494/*
12495 * "inputsecret()" function
12496 */
12497 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012498f_inputsecret(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012499 typval_T *argvars;
12500 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012501{
12502 ++cmdline_star;
12503 ++inputsecret_flag;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012504 f_input(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012505 --cmdline_star;
12506 --inputsecret_flag;
12507}
12508
12509/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012510 * "insert()" function
12511 */
12512 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012513f_insert(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012514 typval_T *argvars;
12515 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012516{
12517 long before = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000012518 listitem_T *item;
12519 list_T *l;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012520 int error = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012521
12522 if (argvars[0].v_type != VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000012523 EMSG2(_(e_listarg), "insert()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012524 else if ((l = argvars[0].vval.v_list) != NULL
12525 && !tv_check_lock(l->lv_lock, (char_u *)"insert()"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012526 {
12527 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012528 before = get_tv_number_chk(&argvars[2], &error);
12529 if (error)
12530 return; /* type error; errmsg already given */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012531
Bram Moolenaar758711c2005-02-02 23:11:38 +000012532 if (before == l->lv_len)
12533 item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012534 else
12535 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012536 item = list_find(l, before);
12537 if (item == NULL)
12538 {
12539 EMSGN(_(e_listidx), before);
12540 l = NULL;
12541 }
12542 }
12543 if (l != NULL)
12544 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012545 list_insert_tv(l, &argvars[1], item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012546 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012547 }
12548 }
12549}
12550
12551/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012552 * "isdirectory()" function
12553 */
12554 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012555f_isdirectory(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012556 typval_T *argvars;
12557 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012558{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012559 rettv->vval.v_number = mch_isdir(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012560}
12561
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012562/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012563 * "islocked()" function
12564 */
12565 static void
12566f_islocked(argvars, rettv)
12567 typval_T *argvars;
12568 typval_T *rettv;
12569{
12570 lval_T lv;
12571 char_u *end;
12572 dictitem_T *di;
12573
12574 rettv->vval.v_number = -1;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000012575 end = get_lval(get_tv_string(&argvars[0]), NULL, &lv, FALSE, FALSE, FALSE,
12576 FNE_CHECK_START);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012577 if (end != NULL && lv.ll_name != NULL)
12578 {
12579 if (*end != NUL)
12580 EMSG(_(e_trailing));
12581 else
12582 {
12583 if (lv.ll_tv == NULL)
12584 {
12585 if (check_changedtick(lv.ll_name))
12586 rettv->vval.v_number = 1; /* always locked */
12587 else
12588 {
12589 di = find_var(lv.ll_name, NULL);
12590 if (di != NULL)
12591 {
12592 /* Consider a variable locked when:
12593 * 1. the variable itself is locked
12594 * 2. the value of the variable is locked.
12595 * 3. the List or Dict value is locked.
12596 */
12597 rettv->vval.v_number = ((di->di_flags & DI_FLAGS_LOCK)
12598 || tv_islocked(&di->di_tv));
12599 }
12600 }
12601 }
12602 else if (lv.ll_range)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000012603 EMSG(_("E786: Range not allowed"));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012604 else if (lv.ll_newkey != NULL)
12605 EMSG2(_(e_dictkey), lv.ll_newkey);
12606 else if (lv.ll_list != NULL)
12607 /* List item. */
12608 rettv->vval.v_number = tv_islocked(&lv.ll_li->li_tv);
12609 else
12610 /* Dictionary item. */
12611 rettv->vval.v_number = tv_islocked(&lv.ll_di->di_tv);
12612 }
12613 }
12614
12615 clear_lval(&lv);
12616}
12617
Bram Moolenaar33570922005-01-25 22:26:29 +000012618static void dict_list __ARGS((typval_T *argvars, typval_T *rettv, int what));
Bram Moolenaar8c711452005-01-14 21:53:12 +000012619
12620/*
12621 * Turn a dict into a list:
12622 * "what" == 0: list of keys
12623 * "what" == 1: list of values
12624 * "what" == 2: list of items
12625 */
12626 static void
12627dict_list(argvars, rettv, what)
Bram Moolenaar33570922005-01-25 22:26:29 +000012628 typval_T *argvars;
12629 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012630 int what;
12631{
Bram Moolenaar33570922005-01-25 22:26:29 +000012632 list_T *l2;
12633 dictitem_T *di;
12634 hashitem_T *hi;
12635 listitem_T *li;
12636 listitem_T *li2;
12637 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012638 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012639
Bram Moolenaar8c711452005-01-14 21:53:12 +000012640 if (argvars[0].v_type != VAR_DICT)
12641 {
12642 EMSG(_(e_dictreq));
12643 return;
12644 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012645 if ((d = argvars[0].vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012646 return;
12647
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012648 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012649 return;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012650
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012651 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000012652 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012653 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012654 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +000012655 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012656 --todo;
12657 di = HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012658
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012659 li = listitem_alloc();
12660 if (li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012661 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012662 list_append(rettv->vval.v_list, li);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012663
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012664 if (what == 0)
12665 {
12666 /* keys() */
12667 li->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012668 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012669 li->li_tv.vval.v_string = vim_strsave(di->di_key);
12670 }
12671 else if (what == 1)
12672 {
12673 /* values() */
12674 copy_tv(&di->di_tv, &li->li_tv);
12675 }
12676 else
12677 {
12678 /* items() */
12679 l2 = list_alloc();
12680 li->li_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012681 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012682 li->li_tv.vval.v_list = l2;
12683 if (l2 == NULL)
12684 break;
12685 ++l2->lv_refcount;
12686
12687 li2 = listitem_alloc();
12688 if (li2 == NULL)
12689 break;
12690 list_append(l2, li2);
12691 li2->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012692 li2->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012693 li2->li_tv.vval.v_string = vim_strsave(di->di_key);
12694
12695 li2 = listitem_alloc();
12696 if (li2 == NULL)
12697 break;
12698 list_append(l2, li2);
12699 copy_tv(&di->di_tv, &li2->li_tv);
12700 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000012701 }
12702 }
12703}
12704
12705/*
12706 * "items(dict)" function
12707 */
12708 static void
12709f_items(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012710 typval_T *argvars;
12711 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012712{
12713 dict_list(argvars, rettv, 2);
12714}
12715
Bram Moolenaar071d4272004-06-13 20:20:40 +000012716/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012717 * "join()" function
12718 */
12719 static void
12720f_join(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012721 typval_T *argvars;
12722 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012723{
12724 garray_T ga;
12725 char_u *sep;
12726
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012727 if (argvars[0].v_type != VAR_LIST)
12728 {
12729 EMSG(_(e_listreq));
12730 return;
12731 }
12732 if (argvars[0].vval.v_list == NULL)
12733 return;
12734 if (argvars[1].v_type == VAR_UNKNOWN)
12735 sep = (char_u *)" ";
12736 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012737 sep = get_tv_string_chk(&argvars[1]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012738
12739 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012740
12741 if (sep != NULL)
12742 {
12743 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000012744 list_join(&ga, argvars[0].vval.v_list, sep, TRUE, 0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012745 ga_append(&ga, NUL);
12746 rettv->vval.v_string = (char_u *)ga.ga_data;
12747 }
12748 else
12749 rettv->vval.v_string = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012750}
12751
12752/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000012753 * "keys()" function
12754 */
12755 static void
12756f_keys(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012757 typval_T *argvars;
12758 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012759{
12760 dict_list(argvars, rettv, 0);
12761}
12762
12763/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012764 * "last_buffer_nr()" function.
12765 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012766 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012767f_last_buffer_nr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012768 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012769 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012770{
12771 int n = 0;
12772 buf_T *buf;
12773
12774 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
12775 if (n < buf->b_fnum)
12776 n = buf->b_fnum;
12777
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012778 rettv->vval.v_number = n;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012779}
12780
12781/*
12782 * "len()" function
12783 */
12784 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012785f_len(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012786 typval_T *argvars;
12787 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012788{
12789 switch (argvars[0].v_type)
12790 {
12791 case VAR_STRING:
12792 case VAR_NUMBER:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012793 rettv->vval.v_number = (varnumber_T)STRLEN(
12794 get_tv_string(&argvars[0]));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012795 break;
12796 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012797 rettv->vval.v_number = list_len(argvars[0].vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012798 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +000012799 case VAR_DICT:
12800 rettv->vval.v_number = dict_len(argvars[0].vval.v_dict);
12801 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012802 default:
Bram Moolenaare49b69a2005-01-08 16:11:57 +000012803 EMSG(_("E701: Invalid type for len()"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012804 break;
12805 }
12806}
12807
Bram Moolenaar33570922005-01-25 22:26:29 +000012808static void libcall_common __ARGS((typval_T *argvars, typval_T *rettv, int type));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012809
12810 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012811libcall_common(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000012812 typval_T *argvars;
12813 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012814 int type;
12815{
12816#ifdef FEAT_LIBCALL
12817 char_u *string_in;
12818 char_u **string_result;
12819 int nr_result;
12820#endif
12821
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012822 rettv->v_type = type;
Bram Moolenaar798b30b2009-04-22 10:56:16 +000012823 if (type != VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012824 rettv->vval.v_string = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012825
12826 if (check_restricted() || check_secure())
12827 return;
12828
12829#ifdef FEAT_LIBCALL
12830 /* The first two args must be strings, otherwise its meaningless */
12831 if (argvars[0].v_type == VAR_STRING && argvars[1].v_type == VAR_STRING)
12832 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012833 string_in = NULL;
12834 if (argvars[2].v_type == VAR_STRING)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012835 string_in = argvars[2].vval.v_string;
12836 if (type == VAR_NUMBER)
12837 string_result = NULL;
12838 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012839 string_result = &rettv->vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012840 if (mch_libcall(argvars[0].vval.v_string,
12841 argvars[1].vval.v_string,
12842 string_in,
12843 argvars[2].vval.v_number,
12844 string_result,
12845 &nr_result) == OK
12846 && type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012847 rettv->vval.v_number = nr_result;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012848 }
12849#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000012850}
12851
12852/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012853 * "libcall()" function
12854 */
12855 static void
12856f_libcall(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012857 typval_T *argvars;
12858 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012859{
12860 libcall_common(argvars, rettv, VAR_STRING);
12861}
12862
12863/*
12864 * "libcallnr()" function
12865 */
12866 static void
12867f_libcallnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012868 typval_T *argvars;
12869 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012870{
12871 libcall_common(argvars, rettv, VAR_NUMBER);
12872}
12873
12874/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012875 * "line(string)" function
12876 */
12877 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012878f_line(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 linenr_T lnum = 0;
12883 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012884 int fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012885
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012886 fp = var2fpos(&argvars[0], TRUE, &fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012887 if (fp != NULL)
12888 lnum = fp->lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012889 rettv->vval.v_number = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012890}
12891
12892/*
12893 * "line2byte(lnum)" function
12894 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012895 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012896f_line2byte(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012897 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012898 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012899{
12900#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012901 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012902#else
12903 linenr_T lnum;
12904
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012905 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012906 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012907 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012908 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012909 rettv->vval.v_number = ml_find_line_or_offset(curbuf, lnum, NULL);
12910 if (rettv->vval.v_number >= 0)
12911 ++rettv->vval.v_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012912#endif
12913}
12914
12915/*
12916 * "lispindent(lnum)" function
12917 */
12918 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012919f_lispindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012920 typval_T *argvars;
12921 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012922{
12923#ifdef FEAT_LISP
12924 pos_T pos;
12925 linenr_T lnum;
12926
12927 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012928 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012929 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
12930 {
12931 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012932 rettv->vval.v_number = get_lisp_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +000012933 curwin->w_cursor = pos;
12934 }
12935 else
12936#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012937 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012938}
12939
12940/*
12941 * "localtime()" function
12942 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012943 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012944f_localtime(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012945 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012946 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012947{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012948 rettv->vval.v_number = (varnumber_T)time(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012949}
12950
Bram Moolenaar33570922005-01-25 22:26:29 +000012951static void get_maparg __ARGS((typval_T *argvars, typval_T *rettv, int exact));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012952
12953 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012954get_maparg(argvars, rettv, exact)
Bram Moolenaar33570922005-01-25 22:26:29 +000012955 typval_T *argvars;
12956 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012957 int exact;
12958{
12959 char_u *keys;
12960 char_u *which;
12961 char_u buf[NUMBUFLEN];
12962 char_u *keys_buf = NULL;
12963 char_u *rhs;
12964 int mode;
12965 garray_T ga;
Bram Moolenaar2c932302006-03-18 21:42:09 +000012966 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012967
12968 /* return empty string for failure */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012969 rettv->v_type = VAR_STRING;
12970 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012971
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012972 keys = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012973 if (*keys == NUL)
12974 return;
12975
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012976 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar2c932302006-03-18 21:42:09 +000012977 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012978 which = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012979 if (argvars[2].v_type != VAR_UNKNOWN)
12980 abbr = get_tv_number(&argvars[2]);
12981 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012982 else
12983 which = (char_u *)"";
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012984 if (which == NULL)
12985 return;
12986
Bram Moolenaar071d4272004-06-13 20:20:40 +000012987 mode = get_map_mode(&which, 0);
12988
Bram Moolenaar3fb9eda2006-05-03 21:29:58 +000012989 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE, FALSE);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012990 rhs = check_map(keys, mode, exact, FALSE, abbr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012991 vim_free(keys_buf);
12992 if (rhs != NULL)
12993 {
12994 ga_init(&ga);
12995 ga.ga_itemsize = 1;
12996 ga.ga_growsize = 40;
12997
12998 while (*rhs != NUL)
12999 ga_concat(&ga, str2special(&rhs, FALSE));
13000
13001 ga_append(&ga, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013002 rettv->vval.v_string = (char_u *)ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013003 }
13004}
13005
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013006#ifdef FEAT_FLOAT
13007/*
13008 * "log10()" function
13009 */
13010 static void
13011f_log10(argvars, rettv)
13012 typval_T *argvars;
13013 typval_T *rettv;
13014{
13015 float_T f;
13016
13017 rettv->v_type = VAR_FLOAT;
13018 if (get_float_arg(argvars, &f) == OK)
13019 rettv->vval.v_float = log10(f);
13020 else
13021 rettv->vval.v_float = 0.0;
13022}
13023#endif
13024
Bram Moolenaar071d4272004-06-13 20:20:40 +000013025/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013026 * "map()" function
13027 */
13028 static void
13029f_map(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013030 typval_T *argvars;
13031 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013032{
13033 filter_map(argvars, rettv, TRUE);
13034}
13035
13036/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013037 * "maparg()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013038 */
13039 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013040f_maparg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013041 typval_T *argvars;
13042 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013043{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013044 get_maparg(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013045}
13046
13047/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013048 * "mapcheck()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013049 */
13050 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013051f_mapcheck(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013052 typval_T *argvars;
13053 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013054{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013055 get_maparg(argvars, rettv, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013056}
13057
Bram Moolenaar33570922005-01-25 22:26:29 +000013058static void find_some_match __ARGS((typval_T *argvars, typval_T *rettv, int start));
Bram Moolenaar071d4272004-06-13 20:20:40 +000013059
13060 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013061find_some_match(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000013062 typval_T *argvars;
13063 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013064 int type;
13065{
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013066 char_u *str = NULL;
13067 char_u *expr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013068 char_u *pat;
13069 regmatch_T regmatch;
13070 char_u patbuf[NUMBUFLEN];
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013071 char_u strbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000013072 char_u *save_cpo;
13073 long start = 0;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013074 long nth = 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013075 colnr_T startcol = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013076 int match = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000013077 list_T *l = NULL;
13078 listitem_T *li = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013079 long idx = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013080 char_u *tofree = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013081
13082 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
13083 save_cpo = p_cpo;
13084 p_cpo = (char_u *)"";
13085
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013086 rettv->vval.v_number = -1;
13087 if (type == 3)
13088 {
13089 /* return empty list when there are no matches */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013090 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013091 goto theend;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013092 }
13093 else if (type == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013094 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013095 rettv->v_type = VAR_STRING;
13096 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013097 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013098
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013099 if (argvars[0].v_type == VAR_LIST)
13100 {
13101 if ((l = argvars[0].vval.v_list) == NULL)
13102 goto theend;
13103 li = l->lv_first;
13104 }
13105 else
13106 expr = str = get_tv_string(&argvars[0]);
13107
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013108 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
13109 if (pat == NULL)
13110 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013111
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013112 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013113 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013114 int error = FALSE;
13115
13116 start = get_tv_number_chk(&argvars[2], &error);
13117 if (error)
13118 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013119 if (l != NULL)
13120 {
13121 li = list_find(l, start);
13122 if (li == NULL)
13123 goto theend;
Bram Moolenaar758711c2005-02-02 23:11:38 +000013124 idx = l->lv_idx; /* use the cached index */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013125 }
13126 else
13127 {
13128 if (start < 0)
13129 start = 0;
13130 if (start > (long)STRLEN(str))
13131 goto theend;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000013132 /* When "count" argument is there ignore matches before "start",
13133 * otherwise skip part of the string. Differs when pattern is "^"
13134 * or "\<". */
13135 if (argvars[3].v_type != VAR_UNKNOWN)
13136 startcol = start;
13137 else
13138 str += start;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013139 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013140
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013141 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013142 nth = get_tv_number_chk(&argvars[3], &error);
13143 if (error)
13144 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013145 }
13146
13147 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
13148 if (regmatch.regprog != NULL)
13149 {
13150 regmatch.rm_ic = p_ic;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013151
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013152 for (;;)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013153 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013154 if (l != NULL)
13155 {
13156 if (li == NULL)
13157 {
13158 match = FALSE;
13159 break;
13160 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013161 vim_free(tofree);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013162 str = echo_string(&li->li_tv, &tofree, strbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013163 if (str == NULL)
13164 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013165 }
13166
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013167 match = vim_regexec_nl(&regmatch, str, (colnr_T)startcol);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013168
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013169 if (match && --nth <= 0)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013170 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013171 if (l == NULL && !match)
13172 break;
13173
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013174 /* Advance to just after the match. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013175 if (l != NULL)
13176 {
13177 li = li->li_next;
13178 ++idx;
13179 }
13180 else
13181 {
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013182#ifdef FEAT_MBYTE
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013183 startcol = (colnr_T)(regmatch.startp[0]
13184 + (*mb_ptr2len)(regmatch.startp[0]) - str);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013185#else
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013186 startcol = regmatch.startp[0] + 1 - str;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013187#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013188 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013189 }
13190
13191 if (match)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013192 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013193 if (type == 3)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013194 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013195 int i;
13196
13197 /* return list with matched string and submatches */
13198 for (i = 0; i < NSUBEXP; ++i)
13199 {
13200 if (regmatch.endp[i] == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000013201 {
13202 if (list_append_string(rettv->vval.v_list,
13203 (char_u *)"", 0) == FAIL)
13204 break;
13205 }
13206 else if (list_append_string(rettv->vval.v_list,
Bram Moolenaar4463f292005-09-25 22:20:24 +000013207 regmatch.startp[i],
13208 (int)(regmatch.endp[i] - regmatch.startp[i]))
13209 == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013210 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013211 }
13212 }
13213 else if (type == 2)
13214 {
13215 /* return matched string */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013216 if (l != NULL)
13217 copy_tv(&li->li_tv, rettv);
13218 else
13219 rettv->vval.v_string = vim_strnsave(regmatch.startp[0],
Bram Moolenaar071d4272004-06-13 20:20:40 +000013220 (int)(regmatch.endp[0] - regmatch.startp[0]));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013221 }
13222 else if (l != NULL)
13223 rettv->vval.v_number = idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013224 else
13225 {
13226 if (type != 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013227 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013228 (varnumber_T)(regmatch.startp[0] - str);
13229 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013230 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013231 (varnumber_T)(regmatch.endp[0] - str);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013232 rettv->vval.v_number += (varnumber_T)(str - expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013233 }
13234 }
13235 vim_free(regmatch.regprog);
13236 }
13237
13238theend:
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013239 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013240 p_cpo = save_cpo;
13241}
13242
13243/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013244 * "match()" function
13245 */
13246 static void
13247f_match(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013248 typval_T *argvars;
13249 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013250{
13251 find_some_match(argvars, rettv, 1);
13252}
13253
13254/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013255 * "matchadd()" function
13256 */
13257 static void
13258f_matchadd(argvars, rettv)
13259 typval_T *argvars;
13260 typval_T *rettv;
13261{
13262#ifdef FEAT_SEARCH_EXTRA
13263 char_u buf[NUMBUFLEN];
13264 char_u *grp = get_tv_string_buf_chk(&argvars[0], buf); /* group */
13265 char_u *pat = get_tv_string_buf_chk(&argvars[1], buf); /* pattern */
13266 int prio = 10; /* default priority */
13267 int id = -1;
13268 int error = FALSE;
13269
13270 rettv->vval.v_number = -1;
13271
13272 if (grp == NULL || pat == NULL)
13273 return;
13274 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013275 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013276 prio = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013277 if (argvars[3].v_type != VAR_UNKNOWN)
13278 id = get_tv_number_chk(&argvars[3], &error);
13279 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013280 if (error == TRUE)
13281 return;
13282 if (id >= 1 && id <= 3)
13283 {
13284 EMSGN("E798: ID is reserved for \":match\": %ld", id);
13285 return;
13286 }
13287
13288 rettv->vval.v_number = match_add(curwin, grp, pat, prio, id);
13289#endif
13290}
13291
13292/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013293 * "matcharg()" function
13294 */
13295 static void
13296f_matcharg(argvars, rettv)
13297 typval_T *argvars;
13298 typval_T *rettv;
13299{
13300 if (rettv_list_alloc(rettv) == OK)
13301 {
13302#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013303 int id = get_tv_number(&argvars[0]);
13304 matchitem_T *m;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013305
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013306 if (id >= 1 && id <= 3)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013307 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013308 if ((m = (matchitem_T *)get_match(curwin, id)) != NULL)
13309 {
13310 list_append_string(rettv->vval.v_list,
13311 syn_id2name(m->hlg_id), -1);
13312 list_append_string(rettv->vval.v_list, m->pattern, -1);
13313 }
13314 else
13315 {
13316 list_append_string(rettv->vval.v_list, NUL, -1);
13317 list_append_string(rettv->vval.v_list, NUL, -1);
13318 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013319 }
13320#endif
13321 }
13322}
13323
13324/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013325 * "matchdelete()" function
13326 */
13327 static void
13328f_matchdelete(argvars, rettv)
13329 typval_T *argvars;
13330 typval_T *rettv;
13331{
13332#ifdef FEAT_SEARCH_EXTRA
13333 rettv->vval.v_number = match_delete(curwin,
13334 (int)get_tv_number(&argvars[0]), TRUE);
13335#endif
13336}
13337
13338/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013339 * "matchend()" function
13340 */
13341 static void
13342f_matchend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013343 typval_T *argvars;
13344 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013345{
13346 find_some_match(argvars, rettv, 0);
13347}
13348
13349/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013350 * "matchlist()" function
13351 */
13352 static void
13353f_matchlist(argvars, rettv)
13354 typval_T *argvars;
13355 typval_T *rettv;
13356{
13357 find_some_match(argvars, rettv, 3);
13358}
13359
13360/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013361 * "matchstr()" function
13362 */
13363 static void
13364f_matchstr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013365 typval_T *argvars;
13366 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013367{
13368 find_some_match(argvars, rettv, 2);
13369}
13370
Bram Moolenaar33570922005-01-25 22:26:29 +000013371static void max_min __ARGS((typval_T *argvars, typval_T *rettv, int domax));
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013372
13373 static void
13374max_min(argvars, rettv, domax)
Bram Moolenaar33570922005-01-25 22:26:29 +000013375 typval_T *argvars;
13376 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013377 int domax;
13378{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013379 long n = 0;
13380 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013381 int error = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013382
13383 if (argvars[0].v_type == VAR_LIST)
13384 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013385 list_T *l;
13386 listitem_T *li;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013387
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013388 l = argvars[0].vval.v_list;
13389 if (l != NULL)
13390 {
13391 li = l->lv_first;
13392 if (li != NULL)
13393 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013394 n = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013395 for (;;)
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013396 {
13397 li = li->li_next;
13398 if (li == NULL)
13399 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013400 i = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013401 if (domax ? i > n : i < n)
13402 n = i;
13403 }
13404 }
13405 }
13406 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000013407 else if (argvars[0].v_type == VAR_DICT)
13408 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013409 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013410 int first = TRUE;
Bram Moolenaar33570922005-01-25 22:26:29 +000013411 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013412 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013413
13414 d = argvars[0].vval.v_dict;
13415 if (d != NULL)
13416 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013417 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000013418 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013419 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013420 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +000013421 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013422 --todo;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013423 i = get_tv_number_chk(&HI2DI(hi)->di_tv, &error);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013424 if (first)
13425 {
13426 n = i;
13427 first = FALSE;
13428 }
13429 else if (domax ? i > n : i < n)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013430 n = i;
13431 }
13432 }
13433 }
13434 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013435 else
Bram Moolenaar758711c2005-02-02 23:11:38 +000013436 EMSG(_(e_listdictarg));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013437 rettv->vval.v_number = error ? 0 : n;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013438}
13439
13440/*
13441 * "max()" function
13442 */
13443 static void
13444f_max(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013445 typval_T *argvars;
13446 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013447{
13448 max_min(argvars, rettv, TRUE);
13449}
13450
13451/*
13452 * "min()" function
13453 */
13454 static void
13455f_min(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013456 typval_T *argvars;
13457 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013458{
13459 max_min(argvars, rettv, FALSE);
13460}
13461
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013462static int mkdir_recurse __ARGS((char_u *dir, int prot));
13463
13464/*
13465 * Create the directory in which "dir" is located, and higher levels when
13466 * needed.
13467 */
13468 static int
13469mkdir_recurse(dir, prot)
13470 char_u *dir;
13471 int prot;
13472{
13473 char_u *p;
13474 char_u *updir;
13475 int r = FAIL;
13476
13477 /* Get end of directory name in "dir".
13478 * We're done when it's "/" or "c:/". */
13479 p = gettail_sep(dir);
13480 if (p <= get_past_head(dir))
13481 return OK;
13482
13483 /* If the directory exists we're done. Otherwise: create it.*/
13484 updir = vim_strnsave(dir, (int)(p - dir));
13485 if (updir == NULL)
13486 return FAIL;
13487 if (mch_isdir(updir))
13488 r = OK;
13489 else if (mkdir_recurse(updir, prot) == OK)
13490 r = vim_mkdir_emsg(updir, prot);
13491 vim_free(updir);
13492 return r;
13493}
13494
13495#ifdef vim_mkdir
13496/*
13497 * "mkdir()" function
13498 */
13499 static void
13500f_mkdir(argvars, rettv)
13501 typval_T *argvars;
13502 typval_T *rettv;
13503{
13504 char_u *dir;
13505 char_u buf[NUMBUFLEN];
13506 int prot = 0755;
13507
13508 rettv->vval.v_number = FAIL;
13509 if (check_restricted() || check_secure())
13510 return;
13511
13512 dir = get_tv_string_buf(&argvars[0], buf);
13513 if (argvars[1].v_type != VAR_UNKNOWN)
13514 {
13515 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013516 prot = get_tv_number_chk(&argvars[2], NULL);
13517 if (prot != -1 && STRCMP(get_tv_string(&argvars[1]), "p") == 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013518 mkdir_recurse(dir, prot);
13519 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013520 rettv->vval.v_number = prot != -1 ? vim_mkdir_emsg(dir, prot) : 0;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013521}
13522#endif
13523
Bram Moolenaar0d660222005-01-07 21:51:51 +000013524/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013525 * "mode()" function
13526 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000013527 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013528f_mode(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013529 typval_T *argvars;
13530 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013531{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013532 char_u buf[3];
13533
13534 buf[1] = NUL;
13535 buf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013536
13537#ifdef FEAT_VISUAL
13538 if (VIsual_active)
13539 {
13540 if (VIsual_select)
13541 buf[0] = VIsual_mode + 's' - 'v';
13542 else
13543 buf[0] = VIsual_mode;
13544 }
13545 else
13546#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013547 if (State == HITRETURN || State == ASKMORE || State == SETWSIZE
13548 || State == CONFIRM)
13549 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013550 buf[0] = 'r';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013551 if (State == ASKMORE)
13552 buf[1] = 'm';
13553 else if (State == CONFIRM)
13554 buf[1] = '?';
13555 }
13556 else if (State == EXTERNCMD)
13557 buf[0] = '!';
Bram Moolenaar071d4272004-06-13 20:20:40 +000013558 else if (State & INSERT)
13559 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013560#ifdef FEAT_VREPLACE
13561 if (State & VREPLACE_FLAG)
13562 {
13563 buf[0] = 'R';
13564 buf[1] = 'v';
13565 }
13566 else
13567#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000013568 if (State & REPLACE_FLAG)
13569 buf[0] = 'R';
13570 else
13571 buf[0] = 'i';
13572 }
13573 else if (State & CMDLINE)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013574 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013575 buf[0] = 'c';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013576 if (exmode_active)
13577 buf[1] = 'v';
13578 }
13579 else if (exmode_active)
13580 {
13581 buf[0] = 'c';
13582 buf[1] = 'e';
13583 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013584 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013585 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013586 buf[0] = 'n';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013587 if (finish_op)
13588 buf[1] = 'o';
13589 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013590
Bram Moolenaar05bb9532008-07-04 09:44:11 +000013591 /* Clear out the minor mode when the argument is not a non-zero number or
13592 * non-empty string. */
13593 if (!non_zero_arg(&argvars[0]))
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013594 buf[1] = NUL;
13595
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013596 rettv->vval.v_string = vim_strsave(buf);
13597 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013598}
13599
Bram Moolenaar7e506b62010-01-19 15:55:06 +010013600#ifdef FEAT_MZSCHEME
13601/*
13602 * "mzeval()" function
13603 */
13604 static void
13605f_mzeval(argvars, rettv)
13606 typval_T *argvars;
13607 typval_T *rettv;
13608{
13609 char_u *str;
13610 char_u buf[NUMBUFLEN];
13611
13612 str = get_tv_string_buf(&argvars[0], buf);
13613 do_mzeval(str, rettv);
13614}
13615#endif
13616
Bram Moolenaar071d4272004-06-13 20:20:40 +000013617/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013618 * "nextnonblank()" function
13619 */
13620 static void
13621f_nextnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013622 typval_T *argvars;
13623 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013624{
13625 linenr_T lnum;
13626
13627 for (lnum = get_tv_lnum(argvars); ; ++lnum)
13628 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013629 if (lnum < 0 || lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar0d660222005-01-07 21:51:51 +000013630 {
13631 lnum = 0;
13632 break;
13633 }
13634 if (*skipwhite(ml_get(lnum)) != NUL)
13635 break;
13636 }
13637 rettv->vval.v_number = lnum;
13638}
13639
13640/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013641 * "nr2char()" function
13642 */
13643 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013644f_nr2char(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013645 typval_T *argvars;
13646 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013647{
13648 char_u buf[NUMBUFLEN];
13649
13650#ifdef FEAT_MBYTE
13651 if (has_mbyte)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013652 buf[(*mb_char2bytes)((int)get_tv_number(&argvars[0]), buf)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013653 else
13654#endif
13655 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013656 buf[0] = (char_u)get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013657 buf[1] = NUL;
13658 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013659 rettv->v_type = VAR_STRING;
13660 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013661}
13662
13663/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013664 * "pathshorten()" function
13665 */
13666 static void
13667f_pathshorten(argvars, rettv)
13668 typval_T *argvars;
13669 typval_T *rettv;
13670{
13671 char_u *p;
13672
13673 rettv->v_type = VAR_STRING;
13674 p = get_tv_string_chk(&argvars[0]);
13675 if (p == NULL)
13676 rettv->vval.v_string = NULL;
13677 else
13678 {
13679 p = vim_strsave(p);
13680 rettv->vval.v_string = p;
13681 if (p != NULL)
13682 shorten_dir(p);
13683 }
13684}
13685
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013686#ifdef FEAT_FLOAT
13687/*
13688 * "pow()" function
13689 */
13690 static void
13691f_pow(argvars, rettv)
13692 typval_T *argvars;
13693 typval_T *rettv;
13694{
13695 float_T fx, fy;
13696
13697 rettv->v_type = VAR_FLOAT;
13698 if (get_float_arg(argvars, &fx) == OK
13699 && get_float_arg(&argvars[1], &fy) == OK)
13700 rettv->vval.v_float = pow(fx, fy);
13701 else
13702 rettv->vval.v_float = 0.0;
13703}
13704#endif
13705
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013706/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013707 * "prevnonblank()" function
13708 */
13709 static void
13710f_prevnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013711 typval_T *argvars;
13712 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013713{
13714 linenr_T lnum;
13715
13716 lnum = get_tv_lnum(argvars);
13717 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
13718 lnum = 0;
13719 else
13720 while (lnum >= 1 && *skipwhite(ml_get(lnum)) == NUL)
13721 --lnum;
13722 rettv->vval.v_number = lnum;
13723}
13724
Bram Moolenaara6c840d2005-08-22 22:59:46 +000013725#ifdef HAVE_STDARG_H
13726/* This dummy va_list is here because:
13727 * - passing a NULL pointer doesn't work when va_list isn't a pointer
13728 * - locally in the function results in a "used before set" warning
13729 * - using va_start() to initialize it gives "function with fixed args" error */
13730static va_list ap;
13731#endif
13732
Bram Moolenaar8c711452005-01-14 21:53:12 +000013733/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013734 * "printf()" function
13735 */
13736 static void
13737f_printf(argvars, rettv)
13738 typval_T *argvars;
13739 typval_T *rettv;
13740{
13741 rettv->v_type = VAR_STRING;
13742 rettv->vval.v_string = NULL;
Bram Moolenaard52d9742005-08-21 22:20:28 +000013743#ifdef HAVE_STDARG_H /* only very old compilers can't do this */
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013744 {
13745 char_u buf[NUMBUFLEN];
13746 int len;
13747 char_u *s;
13748 int saved_did_emsg = did_emsg;
13749 char *fmt;
13750
13751 /* Get the required length, allocate the buffer and do it for real. */
13752 did_emsg = FALSE;
13753 fmt = (char *)get_tv_string_buf(&argvars[0], buf);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013754 len = vim_vsnprintf(NULL, 0, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013755 if (!did_emsg)
13756 {
13757 s = alloc(len + 1);
13758 if (s != NULL)
13759 {
13760 rettv->vval.v_string = s;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013761 (void)vim_vsnprintf((char *)s, len + 1, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013762 }
13763 }
13764 did_emsg |= saved_did_emsg;
13765 }
13766#endif
13767}
13768
13769/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013770 * "pumvisible()" function
13771 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013772 static void
13773f_pumvisible(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000013774 typval_T *argvars UNUSED;
13775 typval_T *rettv UNUSED;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013776{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013777#ifdef FEAT_INS_EXPAND
13778 if (pum_visible())
13779 rettv->vval.v_number = 1;
13780#endif
13781}
13782
13783/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000013784 * "range()" function
13785 */
13786 static void
13787f_range(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013788 typval_T *argvars;
13789 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013790{
13791 long start;
13792 long end;
13793 long stride = 1;
13794 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013795 int error = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013796
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013797 start = get_tv_number_chk(&argvars[0], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013798 if (argvars[1].v_type == VAR_UNKNOWN)
13799 {
13800 end = start - 1;
13801 start = 0;
13802 }
13803 else
13804 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013805 end = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013806 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013807 stride = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013808 }
13809
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013810 if (error)
13811 return; /* type error; errmsg already given */
Bram Moolenaar8c711452005-01-14 21:53:12 +000013812 if (stride == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013813 EMSG(_("E726: Stride is zero"));
Bram Moolenaar92124a32005-06-17 22:03:40 +000013814 else if (stride > 0 ? end + 1 < start : end - 1 > start)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013815 EMSG(_("E727: Start past end"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000013816 else
13817 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013818 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013819 for (i = start; stride > 0 ? i <= end : i >= end; i += stride)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013820 if (list_append_number(rettv->vval.v_list,
13821 (varnumber_T)i) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013822 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013823 }
13824}
13825
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013826/*
13827 * "readfile()" function
13828 */
13829 static void
13830f_readfile(argvars, rettv)
13831 typval_T *argvars;
13832 typval_T *rettv;
13833{
13834 int binary = FALSE;
13835 char_u *fname;
13836 FILE *fd;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013837 listitem_T *li;
13838#define FREAD_SIZE 200 /* optimized for text lines */
13839 char_u buf[FREAD_SIZE];
13840 int readlen; /* size of last fread() */
13841 int buflen; /* nr of valid chars in buf[] */
13842 int filtd; /* how much in buf[] was NUL -> '\n' filtered */
13843 int tolist; /* first byte in buf[] still to be put in list */
13844 int chop; /* how many CR to chop off */
13845 char_u *prev = NULL; /* previously read bytes, if any */
13846 int prevlen = 0; /* length of "prev" if not NULL */
13847 char_u *s;
13848 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013849 long maxline = MAXLNUM;
13850 long cnt = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013851
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013852 if (argvars[1].v_type != VAR_UNKNOWN)
13853 {
13854 if (STRCMP(get_tv_string(&argvars[1]), "b") == 0)
13855 binary = TRUE;
13856 if (argvars[2].v_type != VAR_UNKNOWN)
13857 maxline = get_tv_number(&argvars[2]);
13858 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013859
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013860 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013861 return;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013862
13863 /* Always open the file in binary mode, library functions have a mind of
13864 * their own about CR-LF conversion. */
13865 fname = get_tv_string(&argvars[0]);
13866 if (*fname == NUL || (fd = mch_fopen((char *)fname, READBIN)) == NULL)
13867 {
13868 EMSG2(_(e_notopen), *fname == NUL ? (char_u *)_("<empty>") : fname);
13869 return;
13870 }
13871
13872 filtd = 0;
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013873 while (cnt < maxline || maxline < 0)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013874 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013875 readlen = (int)fread(buf + filtd, 1, FREAD_SIZE - filtd, fd);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013876 buflen = filtd + readlen;
13877 tolist = 0;
13878 for ( ; filtd < buflen || readlen <= 0; ++filtd)
13879 {
13880 if (buf[filtd] == '\n' || readlen <= 0)
13881 {
13882 /* Only when in binary mode add an empty list item when the
13883 * last line ends in a '\n'. */
13884 if (!binary && readlen == 0 && filtd == 0)
13885 break;
13886
13887 /* Found end-of-line or end-of-file: add a text line to the
13888 * list. */
13889 chop = 0;
13890 if (!binary)
13891 while (filtd - chop - 1 >= tolist
13892 && buf[filtd - chop - 1] == '\r')
13893 ++chop;
13894 len = filtd - tolist - chop;
13895 if (prev == NULL)
13896 s = vim_strnsave(buf + tolist, len);
13897 else
13898 {
13899 s = alloc((unsigned)(prevlen + len + 1));
13900 if (s != NULL)
13901 {
13902 mch_memmove(s, prev, prevlen);
13903 vim_free(prev);
13904 prev = NULL;
13905 mch_memmove(s + prevlen, buf + tolist, len);
13906 s[prevlen + len] = NUL;
13907 }
13908 }
13909 tolist = filtd + 1;
13910
13911 li = listitem_alloc();
13912 if (li == NULL)
13913 {
13914 vim_free(s);
13915 break;
13916 }
13917 li->li_tv.v_type = VAR_STRING;
13918 li->li_tv.v_lock = 0;
13919 li->li_tv.vval.v_string = s;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013920 list_append(rettv->vval.v_list, li);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013921
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013922 if (++cnt >= maxline && maxline >= 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013923 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013924 if (readlen <= 0)
13925 break;
13926 }
13927 else if (buf[filtd] == NUL)
13928 buf[filtd] = '\n';
13929 }
13930 if (readlen <= 0)
13931 break;
13932
13933 if (tolist == 0)
13934 {
13935 /* "buf" is full, need to move text to an allocated buffer */
13936 if (prev == NULL)
13937 {
13938 prev = vim_strnsave(buf, buflen);
13939 prevlen = buflen;
13940 }
13941 else
13942 {
13943 s = alloc((unsigned)(prevlen + buflen));
13944 if (s != NULL)
13945 {
13946 mch_memmove(s, prev, prevlen);
13947 mch_memmove(s + prevlen, buf, buflen);
13948 vim_free(prev);
13949 prev = s;
13950 prevlen += buflen;
13951 }
13952 }
13953 filtd = 0;
13954 }
13955 else
13956 {
13957 mch_memmove(buf, buf + tolist, buflen - tolist);
13958 filtd -= tolist;
13959 }
13960 }
13961
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013962 /*
13963 * For a negative line count use only the lines at the end of the file,
13964 * free the rest.
13965 */
13966 if (maxline < 0)
13967 while (cnt > -maxline)
13968 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013969 listitem_remove(rettv->vval.v_list, rettv->vval.v_list->lv_first);
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013970 --cnt;
13971 }
13972
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013973 vim_free(prev);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013974 fclose(fd);
13975}
13976
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013977#if defined(FEAT_RELTIME)
13978static int list2proftime __ARGS((typval_T *arg, proftime_T *tm));
13979
13980/*
13981 * Convert a List to proftime_T.
13982 * Return FAIL when there is something wrong.
13983 */
13984 static int
13985list2proftime(arg, tm)
13986 typval_T *arg;
13987 proftime_T *tm;
13988{
13989 long n1, n2;
13990 int error = FALSE;
13991
13992 if (arg->v_type != VAR_LIST || arg->vval.v_list == NULL
13993 || arg->vval.v_list->lv_len != 2)
13994 return FAIL;
13995 n1 = list_find_nr(arg->vval.v_list, 0L, &error);
13996 n2 = list_find_nr(arg->vval.v_list, 1L, &error);
13997# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000013998 tm->HighPart = n1;
13999 tm->LowPart = n2;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000014000# else
14001 tm->tv_sec = n1;
14002 tm->tv_usec = n2;
14003# endif
14004 return error ? FAIL : OK;
14005}
14006#endif /* FEAT_RELTIME */
14007
14008/*
14009 * "reltime()" function
14010 */
14011 static void
14012f_reltime(argvars, rettv)
14013 typval_T *argvars;
14014 typval_T *rettv;
14015{
14016#ifdef FEAT_RELTIME
14017 proftime_T res;
14018 proftime_T start;
14019
14020 if (argvars[0].v_type == VAR_UNKNOWN)
14021 {
14022 /* No arguments: get current time. */
14023 profile_start(&res);
14024 }
14025 else if (argvars[1].v_type == VAR_UNKNOWN)
14026 {
14027 if (list2proftime(&argvars[0], &res) == FAIL)
14028 return;
14029 profile_end(&res);
14030 }
14031 else
14032 {
14033 /* Two arguments: compute the difference. */
14034 if (list2proftime(&argvars[0], &start) == FAIL
14035 || list2proftime(&argvars[1], &res) == FAIL)
14036 return;
14037 profile_sub(&res, &start);
14038 }
14039
14040 if (rettv_list_alloc(rettv) == OK)
14041 {
14042 long n1, n2;
14043
14044# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000014045 n1 = res.HighPart;
14046 n2 = res.LowPart;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000014047# else
14048 n1 = res.tv_sec;
14049 n2 = res.tv_usec;
14050# endif
14051 list_append_number(rettv->vval.v_list, (varnumber_T)n1);
14052 list_append_number(rettv->vval.v_list, (varnumber_T)n2);
14053 }
14054#endif
14055}
14056
14057/*
14058 * "reltimestr()" function
14059 */
14060 static void
14061f_reltimestr(argvars, rettv)
14062 typval_T *argvars;
14063 typval_T *rettv;
14064{
14065#ifdef FEAT_RELTIME
14066 proftime_T tm;
14067#endif
14068
14069 rettv->v_type = VAR_STRING;
14070 rettv->vval.v_string = NULL;
14071#ifdef FEAT_RELTIME
14072 if (list2proftime(&argvars[0], &tm) == OK)
14073 rettv->vval.v_string = vim_strsave((char_u *)profile_msg(&tm));
14074#endif
14075}
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000014076
Bram Moolenaar0d660222005-01-07 21:51:51 +000014077#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
14078static void make_connection __ARGS((void));
14079static int check_connection __ARGS((void));
14080
14081 static void
14082make_connection()
14083{
14084 if (X_DISPLAY == NULL
14085# ifdef FEAT_GUI
14086 && !gui.in_use
14087# endif
14088 )
14089 {
14090 x_force_connect = TRUE;
14091 setup_term_clip();
14092 x_force_connect = FALSE;
14093 }
14094}
14095
14096 static int
14097check_connection()
14098{
14099 make_connection();
14100 if (X_DISPLAY == NULL)
14101 {
14102 EMSG(_("E240: No connection to Vim server"));
14103 return FAIL;
14104 }
14105 return OK;
14106}
14107#endif
14108
14109#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014110static void remote_common __ARGS((typval_T *argvars, typval_T *rettv, int expr));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014111
14112 static void
14113remote_common(argvars, rettv, expr)
Bram Moolenaar33570922005-01-25 22:26:29 +000014114 typval_T *argvars;
14115 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014116 int expr;
14117{
14118 char_u *server_name;
14119 char_u *keys;
14120 char_u *r = NULL;
14121 char_u buf[NUMBUFLEN];
14122# ifdef WIN32
14123 HWND w;
14124# else
14125 Window w;
14126# endif
14127
14128 if (check_restricted() || check_secure())
14129 return;
14130
14131# ifdef FEAT_X11
14132 if (check_connection() == FAIL)
14133 return;
14134# endif
14135
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014136 server_name = get_tv_string_chk(&argvars[0]);
14137 if (server_name == NULL)
14138 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014139 keys = get_tv_string_buf(&argvars[1], buf);
14140# ifdef WIN32
14141 if (serverSendToVim(server_name, keys, &r, &w, expr, TRUE) < 0)
14142# else
14143 if (serverSendToVim(X_DISPLAY, server_name, keys, &r, &w, expr, 0, TRUE)
14144 < 0)
14145# endif
14146 {
14147 if (r != NULL)
14148 EMSG(r); /* sending worked but evaluation failed */
14149 else
14150 EMSG2(_("E241: Unable to send to %s"), server_name);
14151 return;
14152 }
14153
14154 rettv->vval.v_string = r;
14155
14156 if (argvars[2].v_type != VAR_UNKNOWN)
14157 {
Bram Moolenaar33570922005-01-25 22:26:29 +000014158 dictitem_T v;
Bram Moolenaar555b2802005-05-19 21:08:39 +000014159 char_u str[30];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014160 char_u *idvar;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014161
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014162 sprintf((char *)str, PRINTF_HEX_LONG_U, (long_u)w);
Bram Moolenaar33570922005-01-25 22:26:29 +000014163 v.di_tv.v_type = VAR_STRING;
14164 v.di_tv.vval.v_string = vim_strsave(str);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014165 idvar = get_tv_string_chk(&argvars[2]);
14166 if (idvar != NULL)
14167 set_var(idvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014168 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014169 }
14170}
14171#endif
14172
14173/*
14174 * "remote_expr()" function
14175 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014176 static void
14177f_remote_expr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014178 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014179 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014180{
14181 rettv->v_type = VAR_STRING;
14182 rettv->vval.v_string = NULL;
14183#ifdef FEAT_CLIENTSERVER
14184 remote_common(argvars, rettv, TRUE);
14185#endif
14186}
14187
14188/*
14189 * "remote_foreground()" function
14190 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014191 static void
14192f_remote_foreground(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014193 typval_T *argvars UNUSED;
14194 typval_T *rettv UNUSED;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014195{
Bram Moolenaar0d660222005-01-07 21:51:51 +000014196#ifdef FEAT_CLIENTSERVER
14197# ifdef WIN32
14198 /* On Win32 it's done in this application. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014199 {
14200 char_u *server_name = get_tv_string_chk(&argvars[0]);
14201
14202 if (server_name != NULL)
14203 serverForeground(server_name);
14204 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014205# else
14206 /* Send a foreground() expression to the server. */
14207 argvars[1].v_type = VAR_STRING;
14208 argvars[1].vval.v_string = vim_strsave((char_u *)"foreground()");
14209 argvars[2].v_type = VAR_UNKNOWN;
14210 remote_common(argvars, rettv, TRUE);
14211 vim_free(argvars[1].vval.v_string);
14212# endif
14213#endif
14214}
14215
Bram Moolenaar0d660222005-01-07 21:51:51 +000014216 static void
14217f_remote_peek(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014218 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014219 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014220{
14221#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014222 dictitem_T v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014223 char_u *s = NULL;
14224# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014225 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014226# endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014227 char_u *serverid;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014228
14229 if (check_restricted() || check_secure())
14230 {
14231 rettv->vval.v_number = -1;
14232 return;
14233 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014234 serverid = get_tv_string_chk(&argvars[0]);
14235 if (serverid == NULL)
14236 {
14237 rettv->vval.v_number = -1;
14238 return; /* type error; errmsg already given */
14239 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014240# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014241 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014242 if (n == 0)
14243 rettv->vval.v_number = -1;
14244 else
14245 {
14246 s = serverGetReply((HWND)n, FALSE, FALSE, FALSE);
14247 rettv->vval.v_number = (s != NULL);
14248 }
14249# else
Bram Moolenaar0d660222005-01-07 21:51:51 +000014250 if (check_connection() == FAIL)
14251 return;
14252
14253 rettv->vval.v_number = serverPeekReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014254 serverStrToWin(serverid), &s);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014255# endif
14256
14257 if (argvars[1].v_type != VAR_UNKNOWN && rettv->vval.v_number > 0)
14258 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014259 char_u *retvar;
14260
Bram Moolenaar33570922005-01-25 22:26:29 +000014261 v.di_tv.v_type = VAR_STRING;
14262 v.di_tv.vval.v_string = vim_strsave(s);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014263 retvar = get_tv_string_chk(&argvars[1]);
14264 if (retvar != NULL)
14265 set_var(retvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014266 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014267 }
14268#else
14269 rettv->vval.v_number = -1;
14270#endif
14271}
14272
Bram Moolenaar0d660222005-01-07 21:51:51 +000014273 static void
14274f_remote_read(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014275 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014276 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014277{
14278 char_u *r = NULL;
14279
14280#ifdef FEAT_CLIENTSERVER
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014281 char_u *serverid = get_tv_string_chk(&argvars[0]);
14282
14283 if (serverid != NULL && !check_restricted() && !check_secure())
Bram Moolenaar0d660222005-01-07 21:51:51 +000014284 {
14285# ifdef WIN32
14286 /* The server's HWND is encoded in the 'id' parameter */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014287 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014288
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014289 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014290 if (n != 0)
14291 r = serverGetReply((HWND)n, FALSE, TRUE, TRUE);
14292 if (r == NULL)
14293# else
14294 if (check_connection() == FAIL || serverReadReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014295 serverStrToWin(serverid), &r, FALSE) < 0)
Bram Moolenaar0d660222005-01-07 21:51:51 +000014296# endif
14297 EMSG(_("E277: Unable to read a server reply"));
14298 }
14299#endif
14300 rettv->v_type = VAR_STRING;
14301 rettv->vval.v_string = r;
14302}
14303
14304/*
14305 * "remote_send()" function
14306 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014307 static void
14308f_remote_send(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014309 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014310 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014311{
14312 rettv->v_type = VAR_STRING;
14313 rettv->vval.v_string = NULL;
14314#ifdef FEAT_CLIENTSERVER
14315 remote_common(argvars, rettv, FALSE);
14316#endif
14317}
14318
14319/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000014320 * "remove()" function
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014321 */
14322 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014323f_remove(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014324 typval_T *argvars;
14325 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014326{
Bram Moolenaar33570922005-01-25 22:26:29 +000014327 list_T *l;
14328 listitem_T *item, *item2;
14329 listitem_T *li;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014330 long idx;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014331 long end;
Bram Moolenaar8c711452005-01-14 21:53:12 +000014332 char_u *key;
Bram Moolenaar33570922005-01-25 22:26:29 +000014333 dict_T *d;
14334 dictitem_T *di;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014335
Bram Moolenaar8c711452005-01-14 21:53:12 +000014336 if (argvars[0].v_type == VAR_DICT)
14337 {
14338 if (argvars[2].v_type != VAR_UNKNOWN)
14339 EMSG2(_(e_toomanyarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014340 else if ((d = argvars[0].vval.v_dict) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014341 && !tv_check_lock(d->dv_lock, (char_u *)"remove() argument"))
Bram Moolenaar8c711452005-01-14 21:53:12 +000014342 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014343 key = get_tv_string_chk(&argvars[1]);
14344 if (key != NULL)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014345 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014346 di = dict_find(d, key, -1);
14347 if (di == NULL)
14348 EMSG2(_(e_dictkey), key);
14349 else
14350 {
14351 *rettv = di->di_tv;
14352 init_tv(&di->di_tv);
14353 dictitem_remove(d, di);
14354 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014355 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000014356 }
14357 }
14358 else if (argvars[0].v_type != VAR_LIST)
14359 EMSG2(_(e_listdictarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014360 else if ((l = argvars[0].vval.v_list) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014361 && !tv_check_lock(l->lv_lock, (char_u *)"remove() argument"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014362 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014363 int error = FALSE;
14364
14365 idx = get_tv_number_chk(&argvars[1], &error);
14366 if (error)
14367 ; /* type error: do nothing, errmsg already given */
14368 else if ((item = list_find(l, idx)) == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014369 EMSGN(_(e_listidx), idx);
14370 else
14371 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014372 if (argvars[2].v_type == VAR_UNKNOWN)
14373 {
14374 /* Remove one item, return its value. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014375 list_remove(l, item, item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014376 *rettv = item->li_tv;
14377 vim_free(item);
14378 }
14379 else
14380 {
14381 /* Remove range of items, return list with values. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014382 end = get_tv_number_chk(&argvars[2], &error);
14383 if (error)
14384 ; /* type error: do nothing */
14385 else if ((item2 = list_find(l, end)) == NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014386 EMSGN(_(e_listidx), end);
14387 else
14388 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000014389 int cnt = 0;
14390
14391 for (li = item; li != NULL; li = li->li_next)
14392 {
14393 ++cnt;
14394 if (li == item2)
14395 break;
14396 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014397 if (li == NULL) /* didn't find "item2" after "item" */
14398 EMSG(_(e_invrange));
14399 else
14400 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014401 list_remove(l, item, item2);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014402 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014403 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014404 l = rettv->vval.v_list;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014405 l->lv_first = item;
14406 l->lv_last = item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014407 item->li_prev = NULL;
14408 item2->li_next = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014409 l->lv_len = cnt;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014410 }
14411 }
14412 }
14413 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014414 }
14415 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014416}
14417
14418/*
14419 * "rename({from}, {to})" function
14420 */
14421 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014422f_rename(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014423 typval_T *argvars;
14424 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014425{
14426 char_u buf[NUMBUFLEN];
14427
14428 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014429 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014430 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014431 rettv->vval.v_number = vim_rename(get_tv_string(&argvars[0]),
14432 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000014433}
14434
14435/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014436 * "repeat()" function
14437 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014438 static void
14439f_repeat(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014440 typval_T *argvars;
14441 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014442{
14443 char_u *p;
14444 int n;
14445 int slen;
14446 int len;
14447 char_u *r;
14448 int i;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014449
14450 n = get_tv_number(&argvars[1]);
14451 if (argvars[0].v_type == VAR_LIST)
14452 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014453 if (rettv_list_alloc(rettv) == OK && argvars[0].vval.v_list != NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014454 while (n-- > 0)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014455 if (list_extend(rettv->vval.v_list,
14456 argvars[0].vval.v_list, NULL) == FAIL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014457 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014458 }
14459 else
14460 {
14461 p = get_tv_string(&argvars[0]);
14462 rettv->v_type = VAR_STRING;
14463 rettv->vval.v_string = NULL;
14464
14465 slen = (int)STRLEN(p);
14466 len = slen * n;
14467 if (len <= 0)
14468 return;
14469
14470 r = alloc(len + 1);
14471 if (r != NULL)
14472 {
14473 for (i = 0; i < n; i++)
14474 mch_memmove(r + i * slen, p, (size_t)slen);
14475 r[len] = NUL;
14476 }
14477
14478 rettv->vval.v_string = r;
14479 }
14480}
14481
14482/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000014483 * "resolve()" function
14484 */
14485 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014486f_resolve(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014487 typval_T *argvars;
14488 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014489{
14490 char_u *p;
14491
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014492 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014493#ifdef FEAT_SHORTCUT
14494 {
14495 char_u *v = NULL;
14496
14497 v = mch_resolve_shortcut(p);
14498 if (v != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014499 rettv->vval.v_string = v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014500 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014501 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014502 }
14503#else
14504# ifdef HAVE_READLINK
14505 {
14506 char_u buf[MAXPATHL + 1];
14507 char_u *cpy;
14508 int len;
14509 char_u *remain = NULL;
14510 char_u *q;
14511 int is_relative_to_current = FALSE;
14512 int has_trailing_pathsep = FALSE;
14513 int limit = 100;
14514
14515 p = vim_strsave(p);
14516
14517 if (p[0] == '.' && (vim_ispathsep(p[1])
14518 || (p[1] == '.' && (vim_ispathsep(p[2])))))
14519 is_relative_to_current = TRUE;
14520
14521 len = STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014522 if (len > 0 && after_pathsep(p, p + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +000014523 has_trailing_pathsep = TRUE;
14524
14525 q = getnextcomp(p);
14526 if (*q != NUL)
14527 {
14528 /* Separate the first path component in "p", and keep the
14529 * remainder (beginning with the path separator). */
14530 remain = vim_strsave(q - 1);
14531 q[-1] = NUL;
14532 }
14533
14534 for (;;)
14535 {
14536 for (;;)
14537 {
14538 len = readlink((char *)p, (char *)buf, MAXPATHL);
14539 if (len <= 0)
14540 break;
14541 buf[len] = NUL;
14542
14543 if (limit-- == 0)
14544 {
14545 vim_free(p);
14546 vim_free(remain);
14547 EMSG(_("E655: Too many symbolic links (cycle?)"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014548 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014549 goto fail;
14550 }
14551
14552 /* Ensure that the result will have a trailing path separator
14553 * if the argument has one. */
14554 if (remain == NULL && has_trailing_pathsep)
14555 add_pathsep(buf);
14556
14557 /* Separate the first path component in the link value and
14558 * concatenate the remainders. */
14559 q = getnextcomp(vim_ispathsep(*buf) ? buf + 1 : buf);
14560 if (*q != NUL)
14561 {
14562 if (remain == NULL)
14563 remain = vim_strsave(q - 1);
14564 else
14565 {
Bram Moolenaar900b4d72005-12-12 22:05:50 +000014566 cpy = concat_str(q - 1, remain);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014567 if (cpy != NULL)
14568 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014569 vim_free(remain);
14570 remain = cpy;
14571 }
14572 }
14573 q[-1] = NUL;
14574 }
14575
14576 q = gettail(p);
14577 if (q > p && *q == NUL)
14578 {
14579 /* Ignore trailing path separator. */
14580 q[-1] = NUL;
14581 q = gettail(p);
14582 }
14583 if (q > p && !mch_isFullName(buf))
14584 {
14585 /* symlink is relative to directory of argument */
14586 cpy = alloc((unsigned)(STRLEN(p) + STRLEN(buf) + 1));
14587 if (cpy != NULL)
14588 {
14589 STRCPY(cpy, p);
14590 STRCPY(gettail(cpy), buf);
14591 vim_free(p);
14592 p = cpy;
14593 }
14594 }
14595 else
14596 {
14597 vim_free(p);
14598 p = vim_strsave(buf);
14599 }
14600 }
14601
14602 if (remain == NULL)
14603 break;
14604
14605 /* Append the first path component of "remain" to "p". */
14606 q = getnextcomp(remain + 1);
14607 len = q - remain - (*q != NUL);
14608 cpy = vim_strnsave(p, STRLEN(p) + len);
14609 if (cpy != NULL)
14610 {
14611 STRNCAT(cpy, remain, len);
14612 vim_free(p);
14613 p = cpy;
14614 }
14615 /* Shorten "remain". */
14616 if (*q != NUL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014617 STRMOVE(remain, q - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014618 else
14619 {
14620 vim_free(remain);
14621 remain = NULL;
14622 }
14623 }
14624
14625 /* If the result is a relative path name, make it explicitly relative to
14626 * the current directory if and only if the argument had this form. */
14627 if (!vim_ispathsep(*p))
14628 {
14629 if (is_relative_to_current
14630 && *p != NUL
14631 && !(p[0] == '.'
14632 && (p[1] == NUL
14633 || vim_ispathsep(p[1])
14634 || (p[1] == '.'
14635 && (p[2] == NUL
14636 || vim_ispathsep(p[2]))))))
14637 {
14638 /* Prepend "./". */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000014639 cpy = concat_str((char_u *)"./", p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014640 if (cpy != NULL)
14641 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014642 vim_free(p);
14643 p = cpy;
14644 }
14645 }
14646 else if (!is_relative_to_current)
14647 {
14648 /* Strip leading "./". */
14649 q = p;
14650 while (q[0] == '.' && vim_ispathsep(q[1]))
14651 q += 2;
14652 if (q > p)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014653 STRMOVE(p, p + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014654 }
14655 }
14656
14657 /* Ensure that the result will have no trailing path separator
14658 * if the argument had none. But keep "/" or "//". */
14659 if (!has_trailing_pathsep)
14660 {
14661 q = p + STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014662 if (after_pathsep(p, q))
14663 *gettail_sep(p) = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014664 }
14665
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014666 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014667 }
14668# else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014669 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014670# endif
14671#endif
14672
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014673 simplify_filename(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014674
14675#ifdef HAVE_READLINK
14676fail:
14677#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014678 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014679}
14680
14681/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000014682 * "reverse({list})" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000014683 */
14684 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000014685f_reverse(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014686 typval_T *argvars;
14687 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014688{
Bram Moolenaar33570922005-01-25 22:26:29 +000014689 list_T *l;
14690 listitem_T *li, *ni;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014691
Bram Moolenaar0d660222005-01-07 21:51:51 +000014692 if (argvars[0].v_type != VAR_LIST)
14693 EMSG2(_(e_listarg), "reverse()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014694 else if ((l = argvars[0].vval.v_list) != NULL
14695 && !tv_check_lock(l->lv_lock, (char_u *)"reverse()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000014696 {
14697 li = l->lv_last;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000014698 l->lv_first = l->lv_last = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014699 l->lv_len = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014700 while (li != NULL)
14701 {
14702 ni = li->li_prev;
14703 list_append(l, li);
14704 li = ni;
14705 }
14706 rettv->vval.v_list = l;
14707 rettv->v_type = VAR_LIST;
14708 ++l->lv_refcount;
Bram Moolenaar52514562008-04-01 11:12:09 +000014709 l->lv_idx = l->lv_len - l->lv_idx - 1;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014710 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014711}
14712
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014713#define SP_NOMOVE 0x01 /* don't move cursor */
14714#define SP_REPEAT 0x02 /* repeat to find outer pair */
14715#define SP_RETCOUNT 0x04 /* return matchcount */
14716#define SP_SETPCMARK 0x08 /* set previous context mark */
14717#define SP_START 0x10 /* accept match at start position */
14718#define SP_SUBPAT 0x20 /* return nr of matching sub-pattern */
14719#define SP_END 0x40 /* leave cursor at end of match */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014720
Bram Moolenaar33570922005-01-25 22:26:29 +000014721static int get_search_arg __ARGS((typval_T *varp, int *flagsp));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014722
14723/*
14724 * Get flags for a search function.
14725 * Possibly sets "p_ws".
14726 * Returns BACKWARD, FORWARD or zero (for an error).
14727 */
14728 static int
14729get_search_arg(varp, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014730 typval_T *varp;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014731 int *flagsp;
14732{
14733 int dir = FORWARD;
14734 char_u *flags;
14735 char_u nbuf[NUMBUFLEN];
14736 int mask;
14737
14738 if (varp->v_type != VAR_UNKNOWN)
14739 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014740 flags = get_tv_string_buf_chk(varp, nbuf);
14741 if (flags == NULL)
14742 return 0; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014743 while (*flags != NUL)
14744 {
14745 switch (*flags)
14746 {
14747 case 'b': dir = BACKWARD; break;
14748 case 'w': p_ws = TRUE; break;
14749 case 'W': p_ws = FALSE; break;
14750 default: mask = 0;
14751 if (flagsp != NULL)
14752 switch (*flags)
14753 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014754 case 'c': mask = SP_START; break;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014755 case 'e': mask = SP_END; break;
14756 case 'm': mask = SP_RETCOUNT; break;
14757 case 'n': mask = SP_NOMOVE; break;
14758 case 'p': mask = SP_SUBPAT; break;
14759 case 'r': mask = SP_REPEAT; break;
14760 case 's': mask = SP_SETPCMARK; break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014761 }
14762 if (mask == 0)
14763 {
14764 EMSG2(_(e_invarg2), flags);
14765 dir = 0;
14766 }
14767 else
14768 *flagsp |= mask;
14769 }
14770 if (dir == 0)
14771 break;
14772 ++flags;
14773 }
14774 }
14775 return dir;
14776}
14777
Bram Moolenaar071d4272004-06-13 20:20:40 +000014778/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014779 * Shared by search() and searchpos() functions
Bram Moolenaar071d4272004-06-13 20:20:40 +000014780 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014781 static int
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014782search_cmn(argvars, match_pos, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014783 typval_T *argvars;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014784 pos_T *match_pos;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014785 int *flagsp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014786{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014787 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014788 char_u *pat;
14789 pos_T pos;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014790 pos_T save_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014791 int save_p_ws = p_ws;
14792 int dir;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014793 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014794 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014795 proftime_T tm;
14796#ifdef FEAT_RELTIME
14797 long time_limit = 0;
14798#endif
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014799 int options = SEARCH_KEEP;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014800 int subpatnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014801
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014802 pat = get_tv_string(&argvars[0]);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014803 dir = get_search_arg(&argvars[1], flagsp); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014804 if (dir == 0)
14805 goto theend;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014806 flags = *flagsp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014807 if (flags & SP_START)
14808 options |= SEARCH_START;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014809 if (flags & SP_END)
14810 options |= SEARCH_END;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014811
Bram Moolenaar76929292008-01-06 19:07:36 +000014812 /* Optional arguments: line number to stop searching and timeout. */
14813 if (argvars[1].v_type != VAR_UNKNOWN && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014814 {
14815 lnum_stop = get_tv_number_chk(&argvars[2], NULL);
14816 if (lnum_stop < 0)
14817 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014818#ifdef FEAT_RELTIME
14819 if (argvars[3].v_type != VAR_UNKNOWN)
14820 {
14821 time_limit = get_tv_number_chk(&argvars[3], NULL);
14822 if (time_limit < 0)
14823 goto theend;
14824 }
14825#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014826 }
14827
Bram Moolenaar76929292008-01-06 19:07:36 +000014828#ifdef FEAT_RELTIME
14829 /* Set the time limit, if there is one. */
14830 profile_setlimit(time_limit, &tm);
14831#endif
14832
Bram Moolenaar231334e2005-07-25 20:46:57 +000014833 /*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014834 * This function does not accept SP_REPEAT and SP_RETCOUNT flags.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014835 * Check to make sure only those flags are set.
14836 * Also, Only the SP_NOMOVE or the SP_SETPCMARK flag can be set. Both
14837 * flags cannot be set. Check for that condition also.
14838 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014839 if (((flags & (SP_REPEAT | SP_RETCOUNT)) != 0)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014840 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014841 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014842 EMSG2(_(e_invarg2), get_tv_string(&argvars[1]));
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014843 goto theend;
14844 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014845
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014846 pos = save_cursor = curwin->w_cursor;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014847 subpatnum = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000014848 options, RE_SEARCH, (linenr_T)lnum_stop, &tm);
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014849 if (subpatnum != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014850 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014851 if (flags & SP_SUBPAT)
14852 retval = subpatnum;
14853 else
14854 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000014855 if (flags & SP_SETPCMARK)
14856 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000014857 curwin->w_cursor = pos;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014858 if (match_pos != NULL)
14859 {
14860 /* Store the match cursor position */
14861 match_pos->lnum = pos.lnum;
14862 match_pos->col = pos.col + 1;
14863 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014864 /* "/$" will put the cursor after the end of the line, may need to
14865 * correct that here */
14866 check_cursor();
14867 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014868
14869 /* If 'n' flag is used: restore cursor position. */
14870 if (flags & SP_NOMOVE)
14871 curwin->w_cursor = save_cursor;
Bram Moolenaar7a42fa32007-07-10 11:28:55 +000014872 else
14873 curwin->w_set_curswant = TRUE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014874theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +000014875 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014876
14877 return retval;
14878}
14879
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014880#ifdef FEAT_FLOAT
14881/*
14882 * "round({float})" function
14883 */
14884 static void
14885f_round(argvars, rettv)
14886 typval_T *argvars;
14887 typval_T *rettv;
14888{
14889 float_T f;
14890
14891 rettv->v_type = VAR_FLOAT;
14892 if (get_float_arg(argvars, &f) == OK)
14893 /* round() is not in C90, use ceil() or floor() instead. */
14894 rettv->vval.v_float = f > 0 ? floor(f + 0.5) : ceil(f - 0.5);
14895 else
14896 rettv->vval.v_float = 0.0;
14897}
14898#endif
14899
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014900/*
14901 * "search()" function
14902 */
14903 static void
14904f_search(argvars, rettv)
14905 typval_T *argvars;
14906 typval_T *rettv;
14907{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014908 int flags = 0;
14909
14910 rettv->vval.v_number = search_cmn(argvars, NULL, &flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014911}
14912
Bram Moolenaar071d4272004-06-13 20:20:40 +000014913/*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014914 * "searchdecl()" function
14915 */
14916 static void
14917f_searchdecl(argvars, rettv)
14918 typval_T *argvars;
14919 typval_T *rettv;
14920{
14921 int locally = 1;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014922 int thisblock = 0;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014923 int error = FALSE;
14924 char_u *name;
14925
14926 rettv->vval.v_number = 1; /* default: FAIL */
14927
14928 name = get_tv_string_chk(&argvars[0]);
14929 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaare6facf92005-09-13 21:22:27 +000014930 {
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014931 locally = get_tv_number_chk(&argvars[1], &error) == 0;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014932 if (!error && argvars[2].v_type != VAR_UNKNOWN)
14933 thisblock = get_tv_number_chk(&argvars[2], &error) != 0;
14934 }
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014935 if (!error && name != NULL)
14936 rettv->vval.v_number = find_decl(name, (int)STRLEN(name),
Bram Moolenaare6facf92005-09-13 21:22:27 +000014937 locally, thisblock, SEARCH_KEEP) == FAIL;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014938}
14939
14940/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014941 * Used by searchpair() and searchpairpos()
Bram Moolenaar071d4272004-06-13 20:20:40 +000014942 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014943 static int
14944searchpair_cmn(argvars, match_pos)
Bram Moolenaar33570922005-01-25 22:26:29 +000014945 typval_T *argvars;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014946 pos_T *match_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014947{
14948 char_u *spat, *mpat, *epat;
14949 char_u *skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014950 int save_p_ws = p_ws;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014951 int dir;
14952 int flags = 0;
14953 char_u nbuf1[NUMBUFLEN];
14954 char_u nbuf2[NUMBUFLEN];
14955 char_u nbuf3[NUMBUFLEN];
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014956 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014957 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014958 long time_limit = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014959
Bram Moolenaar071d4272004-06-13 20:20:40 +000014960 /* Get the three pattern arguments: start, middle, end. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014961 spat = get_tv_string_chk(&argvars[0]);
14962 mpat = get_tv_string_buf_chk(&argvars[1], nbuf1);
14963 epat = get_tv_string_buf_chk(&argvars[2], nbuf2);
14964 if (spat == NULL || mpat == NULL || epat == NULL)
14965 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014966
Bram Moolenaar071d4272004-06-13 20:20:40 +000014967 /* Handle the optional fourth argument: flags */
14968 dir = get_search_arg(&argvars[3], &flags); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014969 if (dir == 0)
14970 goto theend;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014971
14972 /* Don't accept SP_END or SP_SUBPAT.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014973 * Only one of the SP_NOMOVE or SP_SETPCMARK flags can be set.
14974 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014975 if ((flags & (SP_END | SP_SUBPAT)) != 0
14976 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar231334e2005-07-25 20:46:57 +000014977 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014978 EMSG2(_(e_invarg2), get_tv_string(&argvars[3]));
Bram Moolenaar231334e2005-07-25 20:46:57 +000014979 goto theend;
14980 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014981
Bram Moolenaar92de73d2008-01-22 10:59:38 +000014982 /* Using 'r' implies 'W', otherwise it doesn't work. */
14983 if (flags & SP_REPEAT)
14984 p_ws = FALSE;
14985
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014986 /* Optional fifth argument: skip expression */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014987 if (argvars[3].v_type == VAR_UNKNOWN
14988 || argvars[4].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014989 skip = (char_u *)"";
14990 else
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014991 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014992 skip = get_tv_string_buf_chk(&argvars[4], nbuf3);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014993 if (argvars[5].v_type != VAR_UNKNOWN)
14994 {
14995 lnum_stop = get_tv_number_chk(&argvars[5], NULL);
14996 if (lnum_stop < 0)
14997 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014998#ifdef FEAT_RELTIME
14999 if (argvars[6].v_type != VAR_UNKNOWN)
15000 {
15001 time_limit = get_tv_number_chk(&argvars[6], NULL);
15002 if (time_limit < 0)
15003 goto theend;
15004 }
15005#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015006 }
15007 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015008 if (skip == NULL)
15009 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015010
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015011 retval = do_searchpair(spat, mpat, epat, dir, skip, flags,
Bram Moolenaar76929292008-01-06 19:07:36 +000015012 match_pos, lnum_stop, time_limit);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015013
15014theend:
15015 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015016
15017 return retval;
15018}
15019
15020/*
15021 * "searchpair()" function
15022 */
15023 static void
15024f_searchpair(argvars, rettv)
15025 typval_T *argvars;
15026 typval_T *rettv;
15027{
15028 rettv->vval.v_number = searchpair_cmn(argvars, NULL);
15029}
15030
15031/*
15032 * "searchpairpos()" function
15033 */
15034 static void
15035f_searchpairpos(argvars, rettv)
15036 typval_T *argvars;
15037 typval_T *rettv;
15038{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015039 pos_T match_pos;
15040 int lnum = 0;
15041 int col = 0;
15042
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015043 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015044 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015045
15046 if (searchpair_cmn(argvars, &match_pos) > 0)
15047 {
15048 lnum = match_pos.lnum;
15049 col = match_pos.col;
15050 }
15051
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015052 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15053 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015054}
15055
15056/*
15057 * Search for a start/middle/end thing.
15058 * Used by searchpair(), see its documentation for the details.
15059 * Returns 0 or -1 for no match,
15060 */
15061 long
Bram Moolenaar76929292008-01-06 19:07:36 +000015062do_searchpair(spat, mpat, epat, dir, skip, flags, match_pos,
15063 lnum_stop, time_limit)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015064 char_u *spat; /* start pattern */
15065 char_u *mpat; /* middle pattern */
15066 char_u *epat; /* end pattern */
15067 int dir; /* BACKWARD or FORWARD */
15068 char_u *skip; /* skip expression */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000015069 int flags; /* SP_SETPCMARK and other SP_ values */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015070 pos_T *match_pos;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015071 linenr_T lnum_stop; /* stop at this line if not zero */
Bram Moolenaar76929292008-01-06 19:07:36 +000015072 long time_limit; /* stop after this many msec */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015073{
15074 char_u *save_cpo;
15075 char_u *pat, *pat2 = NULL, *pat3 = NULL;
15076 long retval = 0;
15077 pos_T pos;
15078 pos_T firstpos;
15079 pos_T foundpos;
15080 pos_T save_cursor;
15081 pos_T save_pos;
15082 int n;
15083 int r;
15084 int nest = 1;
15085 int err;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015086 int options = SEARCH_KEEP;
Bram Moolenaar76929292008-01-06 19:07:36 +000015087 proftime_T tm;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015088
15089 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
15090 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015091 p_cpo = empty_option;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015092
Bram Moolenaar76929292008-01-06 19:07:36 +000015093#ifdef FEAT_RELTIME
15094 /* Set the time limit, if there is one. */
15095 profile_setlimit(time_limit, &tm);
15096#endif
15097
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015098 /* Make two search patterns: start/end (pat2, for in nested pairs) and
15099 * start/middle/end (pat3, for the top pair). */
15100 pat2 = alloc((unsigned)(STRLEN(spat) + STRLEN(epat) + 15));
15101 pat3 = alloc((unsigned)(STRLEN(spat) + STRLEN(mpat) + STRLEN(epat) + 23));
15102 if (pat2 == NULL || pat3 == NULL)
15103 goto theend;
15104 sprintf((char *)pat2, "\\(%s\\m\\)\\|\\(%s\\m\\)", spat, epat);
15105 if (*mpat == NUL)
15106 STRCPY(pat3, pat2);
15107 else
15108 sprintf((char *)pat3, "\\(%s\\m\\)\\|\\(%s\\m\\)\\|\\(%s\\m\\)",
15109 spat, epat, mpat);
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015110 if (flags & SP_START)
15111 options |= SEARCH_START;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015112
Bram Moolenaar071d4272004-06-13 20:20:40 +000015113 save_cursor = curwin->w_cursor;
15114 pos = curwin->w_cursor;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000015115 clearpos(&firstpos);
15116 clearpos(&foundpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015117 pat = pat3;
15118 for (;;)
15119 {
15120 n = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000015121 options, RE_SEARCH, lnum_stop, &tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015122 if (n == FAIL || (firstpos.lnum != 0 && equalpos(pos, firstpos)))
15123 /* didn't find it or found the first match again: FAIL */
15124 break;
15125
15126 if (firstpos.lnum == 0)
15127 firstpos = pos;
Bram Moolenaarc9a2d2e2005-04-24 22:09:56 +000015128 if (equalpos(pos, foundpos))
15129 {
15130 /* Found the same position again. Can happen with a pattern that
15131 * has "\zs" at the end and searching backwards. Advance one
15132 * character and try again. */
15133 if (dir == BACKWARD)
15134 decl(&pos);
15135 else
15136 incl(&pos);
15137 }
15138 foundpos = pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015139
Bram Moolenaar92de73d2008-01-22 10:59:38 +000015140 /* clear the start flag to avoid getting stuck here */
15141 options &= ~SEARCH_START;
15142
Bram Moolenaar071d4272004-06-13 20:20:40 +000015143 /* If the skip pattern matches, ignore this match. */
15144 if (*skip != NUL)
15145 {
15146 save_pos = curwin->w_cursor;
15147 curwin->w_cursor = pos;
15148 r = eval_to_bool(skip, &err, NULL, FALSE);
15149 curwin->w_cursor = save_pos;
15150 if (err)
15151 {
15152 /* Evaluating {skip} caused an error, break here. */
15153 curwin->w_cursor = save_cursor;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015154 retval = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015155 break;
15156 }
15157 if (r)
15158 continue;
15159 }
15160
15161 if ((dir == BACKWARD && n == 3) || (dir == FORWARD && n == 2))
15162 {
15163 /* Found end when searching backwards or start when searching
15164 * forward: nested pair. */
15165 ++nest;
15166 pat = pat2; /* nested, don't search for middle */
15167 }
15168 else
15169 {
15170 /* Found end when searching forward or start when searching
15171 * backward: end of (nested) pair; or found middle in outer pair. */
15172 if (--nest == 1)
15173 pat = pat3; /* outer level, search for middle */
15174 }
15175
15176 if (nest == 0)
15177 {
15178 /* Found the match: return matchcount or line number. */
15179 if (flags & SP_RETCOUNT)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015180 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015181 else
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015182 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000015183 if (flags & SP_SETPCMARK)
15184 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000015185 curwin->w_cursor = pos;
15186 if (!(flags & SP_REPEAT))
15187 break;
15188 nest = 1; /* search for next unmatched */
15189 }
15190 }
15191
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015192 if (match_pos != NULL)
15193 {
15194 /* Store the match cursor position */
15195 match_pos->lnum = curwin->w_cursor.lnum;
15196 match_pos->col = curwin->w_cursor.col + 1;
15197 }
15198
Bram Moolenaar071d4272004-06-13 20:20:40 +000015199 /* If 'n' flag is used or search failed: restore cursor position. */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015200 if ((flags & SP_NOMOVE) || retval == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015201 curwin->w_cursor = save_cursor;
15202
15203theend:
15204 vim_free(pat2);
15205 vim_free(pat3);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015206 if (p_cpo == empty_option)
15207 p_cpo = save_cpo;
15208 else
15209 /* Darn, evaluating the {skip} expression changed the value. */
15210 free_string_option(save_cpo);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015211
15212 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015213}
15214
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015215/*
15216 * "searchpos()" function
15217 */
15218 static void
15219f_searchpos(argvars, rettv)
15220 typval_T *argvars;
15221 typval_T *rettv;
15222{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015223 pos_T match_pos;
15224 int lnum = 0;
15225 int col = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015226 int n;
15227 int flags = 0;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015228
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015229 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015230 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015231
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015232 n = search_cmn(argvars, &match_pos, &flags);
15233 if (n > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015234 {
15235 lnum = match_pos.lnum;
15236 col = match_pos.col;
15237 }
15238
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015239 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15240 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015241 if (flags & SP_SUBPAT)
15242 list_append_number(rettv->vval.v_list, (varnumber_T)n);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015243}
15244
15245
Bram Moolenaar0d660222005-01-07 21:51:51 +000015246 static void
15247f_server2client(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015248 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000015249 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015250{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015251#ifdef FEAT_CLIENTSERVER
15252 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015253 char_u *server = get_tv_string_chk(&argvars[0]);
15254 char_u *reply = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015255
Bram Moolenaar0d660222005-01-07 21:51:51 +000015256 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015257 if (server == NULL || reply == NULL)
15258 return;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015259 if (check_restricted() || check_secure())
15260 return;
15261# ifdef FEAT_X11
15262 if (check_connection() == FAIL)
15263 return;
15264# endif
15265
15266 if (serverSendReply(server, reply) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015267 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015268 EMSG(_("E258: Unable to send to client"));
15269 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015270 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015271 rettv->vval.v_number = 0;
15272#else
15273 rettv->vval.v_number = -1;
15274#endif
15275}
15276
Bram Moolenaar0d660222005-01-07 21:51:51 +000015277 static void
15278f_serverlist(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015279 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000015280 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015281{
15282 char_u *r = NULL;
15283
15284#ifdef FEAT_CLIENTSERVER
15285# ifdef WIN32
15286 r = serverGetVimNames();
15287# else
15288 make_connection();
15289 if (X_DISPLAY != NULL)
15290 r = serverGetVimNames(X_DISPLAY);
15291# endif
15292#endif
15293 rettv->v_type = VAR_STRING;
15294 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015295}
15296
15297/*
15298 * "setbufvar()" function
15299 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015300 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015301f_setbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015302 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015303 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015304{
15305 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015306 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015307 char_u *varname, *bufvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015308 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015309 char_u nbuf[NUMBUFLEN];
15310
15311 if (check_restricted() || check_secure())
15312 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015313 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
15314 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015315 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015316 varp = &argvars[2];
15317
15318 if (buf != NULL && varname != NULL && varp != NULL)
15319 {
15320 /* set curbuf to be our buf, temporarily */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015321 aucmd_prepbuf(&aco, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015322
15323 if (*varname == '&')
15324 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015325 long numval;
15326 char_u *strval;
15327 int error = FALSE;
15328
Bram Moolenaar071d4272004-06-13 20:20:40 +000015329 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015330 numval = get_tv_number_chk(varp, &error);
15331 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015332 if (!error && strval != NULL)
15333 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015334 }
15335 else
15336 {
15337 bufvarname = alloc((unsigned)STRLEN(varname) + 3);
15338 if (bufvarname != NULL)
15339 {
15340 STRCPY(bufvarname, "b:");
15341 STRCPY(bufvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015342 set_var(bufvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015343 vim_free(bufvarname);
15344 }
15345 }
15346
15347 /* reset notion of buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015348 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015349 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015350}
15351
15352/*
15353 * "setcmdpos()" function
15354 */
15355 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015356f_setcmdpos(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015357 typval_T *argvars;
15358 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015359{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015360 int pos = (int)get_tv_number(&argvars[0]) - 1;
15361
15362 if (pos >= 0)
15363 rettv->vval.v_number = set_cmdline_pos(pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015364}
15365
15366/*
15367 * "setline()" function
15368 */
15369 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015370f_setline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015371 typval_T *argvars;
15372 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015373{
15374 linenr_T lnum;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +000015375 char_u *line = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015376 list_T *l = NULL;
15377 listitem_T *li = NULL;
15378 long added = 0;
15379 linenr_T lcount = curbuf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015380
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015381 lnum = get_tv_lnum(&argvars[0]);
15382 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015383 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015384 l = argvars[1].vval.v_list;
15385 li = l->lv_first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015386 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015387 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015388 line = get_tv_string_chk(&argvars[1]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015389
Bram Moolenaar798b30b2009-04-22 10:56:16 +000015390 /* default result is zero == OK */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015391 for (;;)
15392 {
15393 if (l != NULL)
15394 {
15395 /* list argument, get next string */
15396 if (li == NULL)
15397 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015398 line = get_tv_string_chk(&li->li_tv);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015399 li = li->li_next;
15400 }
15401
15402 rettv->vval.v_number = 1; /* FAIL */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015403 if (line == NULL || lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015404 break;
15405 if (lnum <= curbuf->b_ml.ml_line_count)
15406 {
15407 /* existing line, replace it */
15408 if (u_savesub(lnum) == OK && ml_replace(lnum, line, TRUE) == OK)
15409 {
15410 changed_bytes(lnum, 0);
Bram Moolenaar87c19962007-04-26 08:54:21 +000015411 if (lnum == curwin->w_cursor.lnum)
15412 check_cursor_col();
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015413 rettv->vval.v_number = 0; /* OK */
15414 }
15415 }
15416 else if (added > 0 || u_save(lnum - 1, lnum) == OK)
15417 {
15418 /* lnum is one past the last line, append the line */
15419 ++added;
15420 if (ml_append(lnum - 1, line, (colnr_T)0, FALSE) == OK)
15421 rettv->vval.v_number = 0; /* OK */
15422 }
15423
15424 if (l == NULL) /* only one string argument */
15425 break;
15426 ++lnum;
15427 }
15428
15429 if (added > 0)
15430 appended_lines_mark(lcount, added);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015431}
15432
Bram Moolenaard9ff7d52008-03-20 12:23:49 +000015433static void set_qf_ll_list __ARGS((win_T *wp, typval_T *list_arg, typval_T *action_arg, typval_T *rettv));
15434
Bram Moolenaar071d4272004-06-13 20:20:40 +000015435/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015436 * Used by "setqflist()" and "setloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000015437 */
Bram Moolenaar2641f772005-03-25 21:58:17 +000015438 static void
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015439set_qf_ll_list(wp, list_arg, action_arg, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015440 win_T *wp UNUSED;
15441 typval_T *list_arg UNUSED;
15442 typval_T *action_arg UNUSED;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015443 typval_T *rettv;
15444{
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015445#ifdef FEAT_QUICKFIX
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015446 char_u *act;
15447 int action = ' ';
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015448#endif
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015449
Bram Moolenaar2641f772005-03-25 21:58:17 +000015450 rettv->vval.v_number = -1;
15451
15452#ifdef FEAT_QUICKFIX
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015453 if (list_arg->v_type != VAR_LIST)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015454 EMSG(_(e_listreq));
15455 else
15456 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015457 list_T *l = list_arg->vval.v_list;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015458
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015459 if (action_arg->v_type == VAR_STRING)
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015460 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015461 act = get_tv_string_chk(action_arg);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015462 if (act == NULL)
15463 return; /* type error; errmsg already given */
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015464 if (*act == 'a' || *act == 'r')
15465 action = *act;
15466 }
15467
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015468 if (l != NULL && set_errorlist(wp, l, action) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015469 rettv->vval.v_number = 0;
15470 }
15471#endif
15472}
15473
15474/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015475 * "setloclist()" function
15476 */
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015477 static void
15478f_setloclist(argvars, rettv)
15479 typval_T *argvars;
15480 typval_T *rettv;
15481{
15482 win_T *win;
15483
15484 rettv->vval.v_number = -1;
15485
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015486 win = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015487 if (win != NULL)
15488 set_qf_ll_list(win, &argvars[1], &argvars[2], rettv);
15489}
15490
15491/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000015492 * "setmatches()" function
15493 */
15494 static void
15495f_setmatches(argvars, rettv)
15496 typval_T *argvars;
15497 typval_T *rettv;
15498{
15499#ifdef FEAT_SEARCH_EXTRA
15500 list_T *l;
15501 listitem_T *li;
15502 dict_T *d;
15503
15504 rettv->vval.v_number = -1;
15505 if (argvars[0].v_type != VAR_LIST)
15506 {
15507 EMSG(_(e_listreq));
15508 return;
15509 }
15510 if ((l = argvars[0].vval.v_list) != NULL)
15511 {
15512
15513 /* To some extent make sure that we are dealing with a list from
15514 * "getmatches()". */
15515 li = l->lv_first;
15516 while (li != NULL)
15517 {
15518 if (li->li_tv.v_type != VAR_DICT
15519 || (d = li->li_tv.vval.v_dict) == NULL)
15520 {
15521 EMSG(_(e_invarg));
15522 return;
15523 }
15524 if (!(dict_find(d, (char_u *)"group", -1) != NULL
15525 && dict_find(d, (char_u *)"pattern", -1) != NULL
15526 && dict_find(d, (char_u *)"priority", -1) != NULL
15527 && dict_find(d, (char_u *)"id", -1) != NULL))
15528 {
15529 EMSG(_(e_invarg));
15530 return;
15531 }
15532 li = li->li_next;
15533 }
15534
15535 clear_matches(curwin);
15536 li = l->lv_first;
15537 while (li != NULL)
15538 {
15539 d = li->li_tv.vval.v_dict;
15540 match_add(curwin, get_dict_string(d, (char_u *)"group", FALSE),
15541 get_dict_string(d, (char_u *)"pattern", FALSE),
15542 (int)get_dict_number(d, (char_u *)"priority"),
15543 (int)get_dict_number(d, (char_u *)"id"));
15544 li = li->li_next;
15545 }
15546 rettv->vval.v_number = 0;
15547 }
15548#endif
15549}
15550
15551/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015552 * "setpos()" function
15553 */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015554 static void
15555f_setpos(argvars, rettv)
15556 typval_T *argvars;
15557 typval_T *rettv;
15558{
15559 pos_T pos;
15560 int fnum;
15561 char_u *name;
15562
Bram Moolenaar08250432008-02-13 11:42:46 +000015563 rettv->vval.v_number = -1;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015564 name = get_tv_string_chk(argvars);
15565 if (name != NULL)
15566 {
15567 if (list2fpos(&argvars[1], &pos, &fnum) == OK)
15568 {
Bram Moolenaar742d1ec2009-12-31 12:18:30 +000015569 if (--pos.col < 0)
15570 pos.col = 0;
Bram Moolenaar08250432008-02-13 11:42:46 +000015571 if (name[0] == '.' && name[1] == NUL)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015572 {
Bram Moolenaar08250432008-02-13 11:42:46 +000015573 /* set cursor */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015574 if (fnum == curbuf->b_fnum)
15575 {
15576 curwin->w_cursor = pos;
15577 check_cursor();
Bram Moolenaar08250432008-02-13 11:42:46 +000015578 rettv->vval.v_number = 0;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015579 }
15580 else
15581 EMSG(_(e_invarg));
15582 }
Bram Moolenaar08250432008-02-13 11:42:46 +000015583 else if (name[0] == '\'' && name[1] != NUL && name[2] == NUL)
15584 {
15585 /* set mark */
15586 if (setmark_pos(name[1], &pos, fnum) == OK)
15587 rettv->vval.v_number = 0;
15588 }
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015589 else
15590 EMSG(_(e_invarg));
15591 }
15592 }
15593}
15594
15595/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015596 * "setqflist()" function
15597 */
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015598 static void
15599f_setqflist(argvars, rettv)
15600 typval_T *argvars;
15601 typval_T *rettv;
15602{
15603 set_qf_ll_list(NULL, &argvars[0], &argvars[1], rettv);
15604}
15605
15606/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000015607 * "setreg()" function
15608 */
15609 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015610f_setreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015611 typval_T *argvars;
15612 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015613{
15614 int regname;
15615 char_u *strregname;
15616 char_u *stropt;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015617 char_u *strval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015618 int append;
15619 char_u yank_type;
15620 long block_len;
15621
15622 block_len = -1;
15623 yank_type = MAUTO;
15624 append = FALSE;
15625
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015626 strregname = get_tv_string_chk(argvars);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015627 rettv->vval.v_number = 1; /* FAIL is default */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015628
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015629 if (strregname == NULL)
15630 return; /* type error; errmsg already given */
15631 regname = *strregname;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015632 if (regname == 0 || regname == '@')
15633 regname = '"';
15634 else if (regname == '=')
15635 return;
15636
Bram Moolenaar49cd9572005-01-03 21:06:01 +000015637 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015638 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015639 stropt = get_tv_string_chk(&argvars[2]);
15640 if (stropt == NULL)
15641 return; /* type error */
15642 for (; *stropt != NUL; ++stropt)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015643 switch (*stropt)
15644 {
15645 case 'a': case 'A': /* append */
15646 append = TRUE;
15647 break;
15648 case 'v': case 'c': /* character-wise selection */
15649 yank_type = MCHAR;
15650 break;
15651 case 'V': case 'l': /* line-wise selection */
15652 yank_type = MLINE;
15653 break;
15654#ifdef FEAT_VISUAL
15655 case 'b': case Ctrl_V: /* block-wise selection */
15656 yank_type = MBLOCK;
15657 if (VIM_ISDIGIT(stropt[1]))
15658 {
15659 ++stropt;
15660 block_len = getdigits(&stropt) - 1;
15661 --stropt;
15662 }
15663 break;
15664#endif
15665 }
15666 }
15667
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015668 strval = get_tv_string_chk(&argvars[1]);
15669 if (strval != NULL)
15670 write_reg_contents_ex(regname, strval, -1,
Bram Moolenaar071d4272004-06-13 20:20:40 +000015671 append, yank_type, block_len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015672 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015673}
15674
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015675/*
15676 * "settabwinvar()" function
15677 */
15678 static void
15679f_settabwinvar(argvars, rettv)
15680 typval_T *argvars;
15681 typval_T *rettv;
15682{
15683 setwinvar(argvars, rettv, 1);
15684}
Bram Moolenaar071d4272004-06-13 20:20:40 +000015685
15686/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015687 * "setwinvar()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015688 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015689 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015690f_setwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015691 typval_T *argvars;
15692 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015693{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015694 setwinvar(argvars, rettv, 0);
15695}
15696
15697/*
15698 * "setwinvar()" and "settabwinvar()" functions
15699 */
15700 static void
15701setwinvar(argvars, rettv, off)
15702 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015703 typval_T *rettv UNUSED;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015704 int off;
15705{
Bram Moolenaar071d4272004-06-13 20:20:40 +000015706 win_T *win;
15707#ifdef FEAT_WINDOWS
15708 win_T *save_curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015709 tabpage_T *save_curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015710#endif
15711 char_u *varname, *winvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015712 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015713 char_u nbuf[NUMBUFLEN];
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015714 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015715
15716 if (check_restricted() || check_secure())
15717 return;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015718
15719#ifdef FEAT_WINDOWS
15720 if (off == 1)
15721 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
15722 else
15723 tp = curtab;
15724#endif
15725 win = find_win_by_nr(&argvars[off], tp);
15726 varname = get_tv_string_chk(&argvars[off + 1]);
15727 varp = &argvars[off + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015728
15729 if (win != NULL && varname != NULL && varp != NULL)
15730 {
15731#ifdef FEAT_WINDOWS
15732 /* set curwin to be our win, temporarily */
15733 save_curwin = curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015734 save_curtab = curtab;
15735 goto_tabpage_tp(tp);
15736 if (!win_valid(win))
15737 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015738 curwin = win;
15739 curbuf = curwin->w_buffer;
15740#endif
15741
15742 if (*varname == '&')
15743 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015744 long numval;
15745 char_u *strval;
15746 int error = FALSE;
15747
Bram Moolenaar071d4272004-06-13 20:20:40 +000015748 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015749 numval = get_tv_number_chk(varp, &error);
15750 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015751 if (!error && strval != NULL)
15752 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015753 }
15754 else
15755 {
15756 winvarname = alloc((unsigned)STRLEN(varname) + 3);
15757 if (winvarname != NULL)
15758 {
15759 STRCPY(winvarname, "w:");
15760 STRCPY(winvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015761 set_var(winvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015762 vim_free(winvarname);
15763 }
15764 }
15765
15766#ifdef FEAT_WINDOWS
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015767 /* Restore current tabpage and window, if still valid (autocomands can
15768 * make them invalid). */
15769 if (valid_tabpage(save_curtab))
15770 goto_tabpage_tp(save_curtab);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015771 if (win_valid(save_curwin))
15772 {
15773 curwin = save_curwin;
15774 curbuf = curwin->w_buffer;
15775 }
15776#endif
15777 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015778}
15779
15780/*
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015781 * "shellescape({string})" function
15782 */
15783 static void
15784f_shellescape(argvars, rettv)
15785 typval_T *argvars;
15786 typval_T *rettv;
15787{
Bram Moolenaar05bb9532008-07-04 09:44:11 +000015788 rettv->vval.v_string = vim_strsave_shellescape(
15789 get_tv_string(&argvars[0]), non_zero_arg(&argvars[1]));
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015790 rettv->v_type = VAR_STRING;
15791}
15792
15793/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015794 * "simplify()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015795 */
15796 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015797f_simplify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015798 typval_T *argvars;
15799 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015800{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015801 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015802
Bram Moolenaar0d660222005-01-07 21:51:51 +000015803 p = get_tv_string(&argvars[0]);
15804 rettv->vval.v_string = vim_strsave(p);
15805 simplify_filename(rettv->vval.v_string); /* simplify in place */
15806 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015807}
15808
Bram Moolenaar8c8de832008-06-24 22:58:06 +000015809#ifdef FEAT_FLOAT
15810/*
15811 * "sin()" function
15812 */
15813 static void
15814f_sin(argvars, rettv)
15815 typval_T *argvars;
15816 typval_T *rettv;
15817{
15818 float_T f;
15819
15820 rettv->v_type = VAR_FLOAT;
15821 if (get_float_arg(argvars, &f) == OK)
15822 rettv->vval.v_float = sin(f);
15823 else
15824 rettv->vval.v_float = 0.0;
15825}
15826#endif
15827
Bram Moolenaar0d660222005-01-07 21:51:51 +000015828static int
15829#ifdef __BORLANDC__
15830 _RTLENTRYF
15831#endif
15832 item_compare __ARGS((const void *s1, const void *s2));
15833static int
15834#ifdef __BORLANDC__
15835 _RTLENTRYF
15836#endif
15837 item_compare2 __ARGS((const void *s1, const void *s2));
15838
15839static int item_compare_ic;
15840static char_u *item_compare_func;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015841static int item_compare_func_err;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015842#define ITEM_COMPARE_FAIL 999
15843
Bram Moolenaar071d4272004-06-13 20:20:40 +000015844/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015845 * Compare functions for f_sort() below.
Bram Moolenaar071d4272004-06-13 20:20:40 +000015846 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015847 static int
15848#ifdef __BORLANDC__
15849_RTLENTRYF
15850#endif
15851item_compare(s1, s2)
15852 const void *s1;
15853 const void *s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015854{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015855 char_u *p1, *p2;
15856 char_u *tofree1, *tofree2;
15857 int res;
15858 char_u numbuf1[NUMBUFLEN];
15859 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015860
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000015861 p1 = tv2string(&(*(listitem_T **)s1)->li_tv, &tofree1, numbuf1, 0);
15862 p2 = tv2string(&(*(listitem_T **)s2)->li_tv, &tofree2, numbuf2, 0);
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000015863 if (p1 == NULL)
15864 p1 = (char_u *)"";
15865 if (p2 == NULL)
15866 p2 = (char_u *)"";
Bram Moolenaar0d660222005-01-07 21:51:51 +000015867 if (item_compare_ic)
15868 res = STRICMP(p1, p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015869 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015870 res = STRCMP(p1, p2);
15871 vim_free(tofree1);
15872 vim_free(tofree2);
15873 return res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015874}
15875
15876 static int
Bram Moolenaar0d660222005-01-07 21:51:51 +000015877#ifdef __BORLANDC__
15878_RTLENTRYF
Bram Moolenaar071d4272004-06-13 20:20:40 +000015879#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +000015880item_compare2(s1, s2)
15881 const void *s1;
15882 const void *s2;
15883{
15884 int res;
Bram Moolenaar33570922005-01-25 22:26:29 +000015885 typval_T rettv;
Bram Moolenaareb3593b2006-04-22 22:33:57 +000015886 typval_T argv[3];
Bram Moolenaar0d660222005-01-07 21:51:51 +000015887 int dummy;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015888
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015889 /* shortcut after failure in previous call; compare all items equal */
15890 if (item_compare_func_err)
15891 return 0;
15892
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015893 /* copy the values. This is needed to be able to set v_lock to VAR_FIXED
15894 * in the copy without changing the original list items. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015895 copy_tv(&(*(listitem_T **)s1)->li_tv, &argv[0]);
15896 copy_tv(&(*(listitem_T **)s2)->li_tv, &argv[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015897
15898 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000015899 res = call_func(item_compare_func, (int)STRLEN(item_compare_func),
Bram Moolenaare9a41262005-01-15 22:18:47 +000015900 &rettv, 2, argv, 0L, 0L, &dummy, TRUE, NULL);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015901 clear_tv(&argv[0]);
15902 clear_tv(&argv[1]);
15903
15904 if (res == FAIL)
15905 res = ITEM_COMPARE_FAIL;
15906 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015907 res = get_tv_number_chk(&rettv, &item_compare_func_err);
15908 if (item_compare_func_err)
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000015909 res = ITEM_COMPARE_FAIL; /* return value has wrong type */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015910 clear_tv(&rettv);
15911 return res;
15912}
15913
15914/*
15915 * "sort({list})" function
15916 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015917 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015918f_sort(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015919 typval_T *argvars;
15920 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015921{
Bram Moolenaar33570922005-01-25 22:26:29 +000015922 list_T *l;
15923 listitem_T *li;
15924 listitem_T **ptrs;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015925 long len;
15926 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015927
Bram Moolenaar0d660222005-01-07 21:51:51 +000015928 if (argvars[0].v_type != VAR_LIST)
15929 EMSG2(_(e_listarg), "sort()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000015930 else
15931 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015932 l = argvars[0].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015933 if (l == NULL || tv_check_lock(l->lv_lock, (char_u *)"sort()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000015934 return;
15935 rettv->vval.v_list = l;
15936 rettv->v_type = VAR_LIST;
15937 ++l->lv_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015938
Bram Moolenaar0d660222005-01-07 21:51:51 +000015939 len = list_len(l);
15940 if (len <= 1)
15941 return; /* short list sorts pretty quickly */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015942
Bram Moolenaar0d660222005-01-07 21:51:51 +000015943 item_compare_ic = FALSE;
15944 item_compare_func = NULL;
15945 if (argvars[1].v_type != VAR_UNKNOWN)
15946 {
15947 if (argvars[1].v_type == VAR_FUNC)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015948 item_compare_func = argvars[1].vval.v_string;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015949 else
15950 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015951 int error = FALSE;
15952
15953 i = get_tv_number_chk(&argvars[1], &error);
15954 if (error)
15955 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015956 if (i == 1)
15957 item_compare_ic = TRUE;
15958 else
15959 item_compare_func = get_tv_string(&argvars[1]);
15960 }
15961 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015962
Bram Moolenaar0d660222005-01-07 21:51:51 +000015963 /* Make an array with each entry pointing to an item in the List. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015964 ptrs = (listitem_T **)alloc((int)(len * sizeof(listitem_T *)));
Bram Moolenaar0d660222005-01-07 21:51:51 +000015965 if (ptrs == NULL)
15966 return;
15967 i = 0;
15968 for (li = l->lv_first; li != NULL; li = li->li_next)
15969 ptrs[i++] = li;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015970
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015971 item_compare_func_err = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015972 /* test the compare function */
15973 if (item_compare_func != NULL
15974 && item_compare2((void *)&ptrs[0], (void *)&ptrs[1])
15975 == ITEM_COMPARE_FAIL)
Bram Moolenaare49b69a2005-01-08 16:11:57 +000015976 EMSG(_("E702: Sort compare function failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000015977 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015978 {
15979 /* Sort the array with item pointers. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015980 qsort((void *)ptrs, (size_t)len, sizeof(listitem_T *),
Bram Moolenaar0d660222005-01-07 21:51:51 +000015981 item_compare_func == NULL ? item_compare : item_compare2);
15982
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015983 if (!item_compare_func_err)
15984 {
15985 /* Clear the List and append the items in the sorted order. */
Bram Moolenaar52514562008-04-01 11:12:09 +000015986 l->lv_first = l->lv_last = l->lv_idx_item = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015987 l->lv_len = 0;
15988 for (i = 0; i < len; ++i)
15989 list_append(l, ptrs[i]);
15990 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015991 }
15992
15993 vim_free(ptrs);
15994 }
15995}
15996
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015997/*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015998 * "soundfold({word})" function
15999 */
16000 static void
16001f_soundfold(argvars, rettv)
16002 typval_T *argvars;
16003 typval_T *rettv;
16004{
16005 char_u *s;
16006
16007 rettv->v_type = VAR_STRING;
16008 s = get_tv_string(&argvars[0]);
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016009#ifdef FEAT_SPELL
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000016010 rettv->vval.v_string = eval_soundfold(s);
16011#else
16012 rettv->vval.v_string = vim_strsave(s);
16013#endif
16014}
16015
16016/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016017 * "spellbadword()" function
16018 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016019 static void
16020f_spellbadword(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016021 typval_T *argvars UNUSED;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016022 typval_T *rettv;
16023{
Bram Moolenaar4463f292005-09-25 22:20:24 +000016024 char_u *word = (char_u *)"";
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016025 hlf_T attr = HLF_COUNT;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000016026 int len = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016027
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016028 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar4463f292005-09-25 22:20:24 +000016029 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016030
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016031#ifdef FEAT_SPELL
Bram Moolenaar4463f292005-09-25 22:20:24 +000016032 if (argvars[0].v_type == VAR_UNKNOWN)
16033 {
16034 /* Find the start and length of the badly spelled word. */
16035 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, &attr);
16036 if (len != 0)
16037 word = ml_get_cursor();
16038 }
16039 else if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16040 {
16041 char_u *str = get_tv_string_chk(&argvars[0]);
16042 int capcol = -1;
16043
16044 if (str != NULL)
16045 {
16046 /* Check the argument for spelling. */
16047 while (*str != NUL)
16048 {
Bram Moolenaar4770d092006-01-12 23:22:24 +000016049 len = spell_check(curwin, str, &attr, &capcol, FALSE);
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016050 if (attr != HLF_COUNT)
Bram Moolenaar4463f292005-09-25 22:20:24 +000016051 {
16052 word = str;
16053 break;
16054 }
16055 str += len;
16056 }
16057 }
16058 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016059#endif
Bram Moolenaar4463f292005-09-25 22:20:24 +000016060
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016061 list_append_string(rettv->vval.v_list, word, len);
16062 list_append_string(rettv->vval.v_list, (char_u *)(
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016063 attr == HLF_SPB ? "bad" :
16064 attr == HLF_SPR ? "rare" :
16065 attr == HLF_SPL ? "local" :
16066 attr == HLF_SPC ? "caps" :
16067 ""), -1);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016068}
16069
16070/*
16071 * "spellsuggest()" function
16072 */
16073 static void
16074f_spellsuggest(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016075 typval_T *argvars UNUSED;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016076 typval_T *rettv;
16077{
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016078#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016079 char_u *str;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016080 int typeerr = FALSE;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016081 int maxcount;
16082 garray_T ga;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016083 int i;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016084 listitem_T *li;
16085 int need_capital = FALSE;
16086#endif
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016087
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016088 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016089 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016090
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016091#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016092 if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16093 {
16094 str = get_tv_string(&argvars[0]);
16095 if (argvars[1].v_type != VAR_UNKNOWN)
16096 {
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016097 maxcount = get_tv_number_chk(&argvars[1], &typeerr);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016098 if (maxcount <= 0)
16099 return;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016100 if (argvars[2].v_type != VAR_UNKNOWN)
16101 {
16102 need_capital = get_tv_number_chk(&argvars[2], &typeerr);
16103 if (typeerr)
16104 return;
16105 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016106 }
16107 else
16108 maxcount = 25;
16109
Bram Moolenaar4770d092006-01-12 23:22:24 +000016110 spell_suggest_list(&ga, str, maxcount, need_capital, FALSE);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016111
16112 for (i = 0; i < ga.ga_len; ++i)
16113 {
16114 str = ((char_u **)ga.ga_data)[i];
16115
16116 li = listitem_alloc();
16117 if (li == NULL)
16118 vim_free(str);
16119 else
16120 {
16121 li->li_tv.v_type = VAR_STRING;
16122 li->li_tv.v_lock = 0;
16123 li->li_tv.vval.v_string = str;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016124 list_append(rettv->vval.v_list, li);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016125 }
16126 }
16127 ga_clear(&ga);
16128 }
16129#endif
16130}
16131
Bram Moolenaar0d660222005-01-07 21:51:51 +000016132 static void
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000016133f_split(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016134 typval_T *argvars;
16135 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016136{
16137 char_u *str;
16138 char_u *end;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016139 char_u *pat = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016140 regmatch_T regmatch;
16141 char_u patbuf[NUMBUFLEN];
16142 char_u *save_cpo;
16143 int match;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016144 colnr_T col = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016145 int keepempty = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016146 int typeerr = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016147
16148 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
16149 save_cpo = p_cpo;
16150 p_cpo = (char_u *)"";
16151
16152 str = get_tv_string(&argvars[0]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016153 if (argvars[1].v_type != VAR_UNKNOWN)
16154 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016155 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16156 if (pat == NULL)
16157 typeerr = TRUE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016158 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016159 keepempty = get_tv_number_chk(&argvars[2], &typeerr);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016160 }
16161 if (pat == NULL || *pat == NUL)
16162 pat = (char_u *)"[\\x01- ]\\+";
Bram Moolenaar0d660222005-01-07 21:51:51 +000016163
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016164 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016165 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016166 if (typeerr)
16167 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016168
Bram Moolenaar0d660222005-01-07 21:51:51 +000016169 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
16170 if (regmatch.regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016171 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016172 regmatch.rm_ic = FALSE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016173 while (*str != NUL || keepempty)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016174 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016175 if (*str == NUL)
16176 match = FALSE; /* empty item at the end */
16177 else
16178 match = vim_regexec_nl(&regmatch, str, col);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016179 if (match)
16180 end = regmatch.startp[0];
16181 else
16182 end = str + STRLEN(str);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016183 if (keepempty || end > str || (rettv->vval.v_list->lv_len > 0
16184 && *str != NUL && match && end < regmatch.endp[0]))
Bram Moolenaar0d660222005-01-07 21:51:51 +000016185 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016186 if (list_append_string(rettv->vval.v_list, str,
16187 (int)(end - str)) == FAIL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016188 break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016189 }
16190 if (!match)
16191 break;
16192 /* Advance to just after the match. */
16193 if (regmatch.endp[0] > str)
16194 col = 0;
16195 else
16196 {
16197 /* Don't get stuck at the same match. */
16198#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000016199 col = (*mb_ptr2len)(regmatch.endp[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016200#else
16201 col = 1;
16202#endif
16203 }
16204 str = regmatch.endp[0];
16205 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016206
Bram Moolenaar0d660222005-01-07 21:51:51 +000016207 vim_free(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016208 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016209
Bram Moolenaar0d660222005-01-07 21:51:51 +000016210 p_cpo = save_cpo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016211}
16212
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016213#ifdef FEAT_FLOAT
16214/*
16215 * "sqrt()" function
16216 */
16217 static void
16218f_sqrt(argvars, rettv)
16219 typval_T *argvars;
16220 typval_T *rettv;
16221{
16222 float_T f;
16223
16224 rettv->v_type = VAR_FLOAT;
16225 if (get_float_arg(argvars, &f) == OK)
16226 rettv->vval.v_float = sqrt(f);
16227 else
16228 rettv->vval.v_float = 0.0;
16229}
16230
16231/*
16232 * "str2float()" function
16233 */
16234 static void
16235f_str2float(argvars, rettv)
16236 typval_T *argvars;
16237 typval_T *rettv;
16238{
16239 char_u *p = skipwhite(get_tv_string(&argvars[0]));
16240
16241 if (*p == '+')
16242 p = skipwhite(p + 1);
16243 (void)string2float(p, &rettv->vval.v_float);
16244 rettv->v_type = VAR_FLOAT;
16245}
16246#endif
16247
Bram Moolenaar2c932302006-03-18 21:42:09 +000016248/*
16249 * "str2nr()" function
16250 */
16251 static void
16252f_str2nr(argvars, rettv)
16253 typval_T *argvars;
16254 typval_T *rettv;
16255{
16256 int base = 10;
16257 char_u *p;
16258 long n;
16259
16260 if (argvars[1].v_type != VAR_UNKNOWN)
16261 {
16262 base = get_tv_number(&argvars[1]);
16263 if (base != 8 && base != 10 && base != 16)
16264 {
16265 EMSG(_(e_invarg));
16266 return;
16267 }
16268 }
16269
16270 p = skipwhite(get_tv_string(&argvars[0]));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016271 if (*p == '+')
16272 p = skipwhite(p + 1);
Bram Moolenaar2c932302006-03-18 21:42:09 +000016273 vim_str2nr(p, NULL, NULL, base == 8 ? 2 : 0, base == 16 ? 2 : 0, &n, NULL);
16274 rettv->vval.v_number = n;
16275}
16276
Bram Moolenaar071d4272004-06-13 20:20:40 +000016277#ifdef HAVE_STRFTIME
16278/*
16279 * "strftime({format}[, {time}])" function
16280 */
16281 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016282f_strftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016283 typval_T *argvars;
16284 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016285{
16286 char_u result_buf[256];
16287 struct tm *curtime;
16288 time_t seconds;
16289 char_u *p;
16290
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016291 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016292
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016293 p = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016294 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016295 seconds = time(NULL);
16296 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016297 seconds = (time_t)get_tv_number(&argvars[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016298 curtime = localtime(&seconds);
16299 /* MSVC returns NULL for an invalid value of seconds. */
16300 if (curtime == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016301 rettv->vval.v_string = vim_strsave((char_u *)_("(Invalid)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016302 else
16303 {
16304# ifdef FEAT_MBYTE
16305 vimconv_T conv;
16306 char_u *enc;
16307
16308 conv.vc_type = CONV_NONE;
16309 enc = enc_locale();
16310 convert_setup(&conv, p_enc, enc);
16311 if (conv.vc_type != CONV_NONE)
16312 p = string_convert(&conv, p, NULL);
16313# endif
16314 if (p != NULL)
16315 (void)strftime((char *)result_buf, sizeof(result_buf),
16316 (char *)p, curtime);
16317 else
16318 result_buf[0] = NUL;
16319
16320# ifdef FEAT_MBYTE
16321 if (conv.vc_type != CONV_NONE)
16322 vim_free(p);
16323 convert_setup(&conv, enc, p_enc);
16324 if (conv.vc_type != CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016325 rettv->vval.v_string = string_convert(&conv, result_buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016326 else
16327# endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016328 rettv->vval.v_string = vim_strsave(result_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016329
16330# ifdef FEAT_MBYTE
16331 /* Release conversion descriptors */
16332 convert_setup(&conv, NULL, NULL);
16333 vim_free(enc);
16334# endif
16335 }
16336}
16337#endif
16338
16339/*
16340 * "stridx()" function
16341 */
16342 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016343f_stridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016344 typval_T *argvars;
16345 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016346{
16347 char_u buf[NUMBUFLEN];
16348 char_u *needle;
16349 char_u *haystack;
Bram Moolenaar33570922005-01-25 22:26:29 +000016350 char_u *save_haystack;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016351 char_u *pos;
Bram Moolenaar33570922005-01-25 22:26:29 +000016352 int start_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016353
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016354 needle = get_tv_string_chk(&argvars[1]);
16355 save_haystack = haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar33570922005-01-25 22:26:29 +000016356 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016357 if (needle == NULL || haystack == NULL)
16358 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016359
Bram Moolenaar33570922005-01-25 22:26:29 +000016360 if (argvars[2].v_type != VAR_UNKNOWN)
16361 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016362 int error = FALSE;
16363
16364 start_idx = get_tv_number_chk(&argvars[2], &error);
16365 if (error || start_idx >= (int)STRLEN(haystack))
Bram Moolenaar33570922005-01-25 22:26:29 +000016366 return;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016367 if (start_idx >= 0)
16368 haystack += start_idx;
Bram Moolenaar33570922005-01-25 22:26:29 +000016369 }
16370
16371 pos = (char_u *)strstr((char *)haystack, (char *)needle);
16372 if (pos != NULL)
16373 rettv->vval.v_number = (varnumber_T)(pos - save_haystack);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016374}
16375
16376/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016377 * "string()" function
16378 */
16379 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016380f_string(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016381 typval_T *argvars;
16382 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016383{
16384 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000016385 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016386
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016387 rettv->v_type = VAR_STRING;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000016388 rettv->vval.v_string = tv2string(&argvars[0], &tofree, numbuf, 0);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016389 /* Make a copy if we have a value but it's not in allocated memory. */
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000016390 if (rettv->vval.v_string != NULL && tofree == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016391 rettv->vval.v_string = vim_strsave(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016392}
16393
16394/*
16395 * "strlen()" function
16396 */
16397 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016398f_strlen(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016399 typval_T *argvars;
16400 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016401{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016402 rettv->vval.v_number = (varnumber_T)(STRLEN(
16403 get_tv_string(&argvars[0])));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016404}
16405
16406/*
16407 * "strpart()" function
16408 */
16409 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016410f_strpart(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016411 typval_T *argvars;
16412 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016413{
16414 char_u *p;
16415 int n;
16416 int len;
16417 int slen;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016418 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016419
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016420 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016421 slen = (int)STRLEN(p);
16422
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016423 n = get_tv_number_chk(&argvars[1], &error);
16424 if (error)
16425 len = 0;
16426 else if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016427 len = get_tv_number(&argvars[2]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016428 else
16429 len = slen - n; /* default len: all bytes that are available. */
16430
16431 /*
16432 * Only return the overlap between the specified part and the actual
16433 * string.
16434 */
16435 if (n < 0)
16436 {
16437 len += n;
16438 n = 0;
16439 }
16440 else if (n > slen)
16441 n = slen;
16442 if (len < 0)
16443 len = 0;
16444 else if (n + len > slen)
16445 len = slen - n;
16446
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016447 rettv->v_type = VAR_STRING;
16448 rettv->vval.v_string = vim_strnsave(p + n, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016449}
16450
16451/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016452 * "strridx()" function
16453 */
16454 static void
16455f_strridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016456 typval_T *argvars;
16457 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016458{
16459 char_u buf[NUMBUFLEN];
16460 char_u *needle;
16461 char_u *haystack;
16462 char_u *rest;
16463 char_u *lastmatch = NULL;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016464 int haystack_len, end_idx;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016465
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016466 needle = get_tv_string_chk(&argvars[1]);
16467 haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016468
16469 rettv->vval.v_number = -1;
16470 if (needle == NULL || haystack == NULL)
16471 return; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016472
16473 haystack_len = (int)STRLEN(haystack);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016474 if (argvars[2].v_type != VAR_UNKNOWN)
16475 {
16476 /* Third argument: upper limit for index */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016477 end_idx = get_tv_number_chk(&argvars[2], NULL);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016478 if (end_idx < 0)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016479 return; /* can never find a match */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016480 }
16481 else
16482 end_idx = haystack_len;
16483
Bram Moolenaar0d660222005-01-07 21:51:51 +000016484 if (*needle == NUL)
Bram Moolenaar05159a02005-02-26 23:04:13 +000016485 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016486 /* Empty string matches past the end. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016487 lastmatch = haystack + end_idx;
16488 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016489 else
Bram Moolenaar532c7802005-01-27 14:44:31 +000016490 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016491 for (rest = haystack; *rest != '\0'; ++rest)
16492 {
16493 rest = (char_u *)strstr((char *)rest, (char *)needle);
Bram Moolenaar532c7802005-01-27 14:44:31 +000016494 if (rest == NULL || rest > haystack + end_idx)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016495 break;
16496 lastmatch = rest;
16497 }
Bram Moolenaar532c7802005-01-27 14:44:31 +000016498 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016499
16500 if (lastmatch == NULL)
16501 rettv->vval.v_number = -1;
16502 else
16503 rettv->vval.v_number = (varnumber_T)(lastmatch - haystack);
16504}
16505
16506/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016507 * "strtrans()" function
16508 */
16509 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016510f_strtrans(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016511 typval_T *argvars;
16512 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016513{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016514 rettv->v_type = VAR_STRING;
16515 rettv->vval.v_string = transstr(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016516}
16517
16518/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016519 * "submatch()" function
16520 */
16521 static void
16522f_submatch(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016523 typval_T *argvars;
16524 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016525{
16526 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016527 rettv->vval.v_string =
16528 reg_submatch((int)get_tv_number_chk(&argvars[0], NULL));
Bram Moolenaar0d660222005-01-07 21:51:51 +000016529}
16530
16531/*
16532 * "substitute()" function
16533 */
16534 static void
16535f_substitute(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016536 typval_T *argvars;
16537 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016538{
16539 char_u patbuf[NUMBUFLEN];
16540 char_u subbuf[NUMBUFLEN];
16541 char_u flagsbuf[NUMBUFLEN];
16542
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016543 char_u *str = get_tv_string_chk(&argvars[0]);
16544 char_u *pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16545 char_u *sub = get_tv_string_buf_chk(&argvars[2], subbuf);
16546 char_u *flg = get_tv_string_buf_chk(&argvars[3], flagsbuf);
16547
Bram Moolenaar0d660222005-01-07 21:51:51 +000016548 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016549 if (str == NULL || pat == NULL || sub == NULL || flg == NULL)
16550 rettv->vval.v_string = NULL;
16551 else
16552 rettv->vval.v_string = do_string_sub(str, pat, sub, flg);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016553}
16554
16555/*
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016556 * "synID(lnum, col, trans)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000016557 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016558 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016559f_synID(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016560 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016561 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016562{
16563 int id = 0;
16564#ifdef FEAT_SYN_HL
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016565 long lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016566 long col;
16567 int trans;
Bram Moolenaar92124a32005-06-17 22:03:40 +000016568 int transerr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016569
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016570 lnum = get_tv_lnum(argvars); /* -1 on type error */
16571 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16572 trans = get_tv_number_chk(&argvars[2], &transerr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016573
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016574 if (!transerr && lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016575 && col >= 0 && col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016576 id = syn_get_id(curwin, lnum, (colnr_T)col, trans, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016577#endif
16578
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016579 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016580}
16581
16582/*
16583 * "synIDattr(id, what [, mode])" function
16584 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016585 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016586f_synIDattr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016587 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016588 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016589{
16590 char_u *p = NULL;
16591#ifdef FEAT_SYN_HL
16592 int id;
16593 char_u *what;
16594 char_u *mode;
16595 char_u modebuf[NUMBUFLEN];
16596 int modec;
16597
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016598 id = get_tv_number(&argvars[0]);
16599 what = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016600 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016601 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016602 mode = get_tv_string_buf(&argvars[2], modebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016603 modec = TOLOWER_ASC(mode[0]);
16604 if (modec != 't' && modec != 'c'
16605#ifdef FEAT_GUI
16606 && modec != 'g'
16607#endif
16608 )
16609 modec = 0; /* replace invalid with current */
16610 }
16611 else
16612 {
16613#ifdef FEAT_GUI
16614 if (gui.in_use)
16615 modec = 'g';
16616 else
16617#endif
16618 if (t_colors > 1)
16619 modec = 'c';
16620 else
16621 modec = 't';
16622 }
16623
16624
16625 switch (TOLOWER_ASC(what[0]))
16626 {
16627 case 'b':
16628 if (TOLOWER_ASC(what[1]) == 'g') /* bg[#] */
16629 p = highlight_color(id, what, modec);
16630 else /* bold */
16631 p = highlight_has_attr(id, HL_BOLD, modec);
16632 break;
16633
Bram Moolenaar12682fd2010-03-10 13:43:49 +010016634 case 'f': /* fg[#] or font */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016635 p = highlight_color(id, what, modec);
16636 break;
16637
16638 case 'i':
16639 if (TOLOWER_ASC(what[1]) == 'n') /* inverse */
16640 p = highlight_has_attr(id, HL_INVERSE, modec);
16641 else /* italic */
16642 p = highlight_has_attr(id, HL_ITALIC, modec);
16643 break;
16644
16645 case 'n': /* name */
16646 p = get_highlight_name(NULL, id - 1);
16647 break;
16648
16649 case 'r': /* reverse */
16650 p = highlight_has_attr(id, HL_INVERSE, modec);
16651 break;
16652
Bram Moolenaar6f507d62008-11-28 10:16:05 +000016653 case 's':
16654 if (TOLOWER_ASC(what[1]) == 'p') /* sp[#] */
16655 p = highlight_color(id, what, modec);
16656 else /* standout */
16657 p = highlight_has_attr(id, HL_STANDOUT, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016658 break;
16659
Bram Moolenaar5b743bf2005-03-15 22:50:43 +000016660 case 'u':
16661 if (STRLEN(what) <= 5 || TOLOWER_ASC(what[5]) != 'c')
16662 /* underline */
16663 p = highlight_has_attr(id, HL_UNDERLINE, modec);
16664 else
16665 /* undercurl */
16666 p = highlight_has_attr(id, HL_UNDERCURL, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016667 break;
16668 }
16669
16670 if (p != NULL)
16671 p = vim_strsave(p);
16672#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016673 rettv->v_type = VAR_STRING;
16674 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016675}
16676
16677/*
16678 * "synIDtrans(id)" function
16679 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016680 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016681f_synIDtrans(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016682 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016683 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 */
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016702 static void
16703f_synstack(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016704 typval_T *argvars UNUSED;
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016705 typval_T *rettv;
16706{
16707#ifdef FEAT_SYN_HL
16708 long lnum;
16709 long col;
16710 int i;
16711 int id;
16712#endif
16713
16714 rettv->v_type = VAR_LIST;
16715 rettv->vval.v_list = NULL;
16716
16717#ifdef FEAT_SYN_HL
16718 lnum = get_tv_lnum(argvars); /* -1 on type error */
16719 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16720
16721 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar6cad8bd2008-09-10 13:39:10 +000016722 && col >= 0 && (col == 0 || col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016723 && rettv_list_alloc(rettv) != FAIL)
16724 {
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016725 (void)syn_get_id(curwin, lnum, (colnr_T)col, FALSE, NULL, TRUE);
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016726 for (i = 0; ; ++i)
16727 {
16728 id = syn_get_stack_item(i);
16729 if (id < 0)
16730 break;
16731 if (list_append_number(rettv->vval.v_list, id) == FAIL)
16732 break;
16733 }
16734 }
16735#endif
16736}
16737
16738/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016739 * "system()" function
16740 */
16741 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016742f_system(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016743 typval_T *argvars;
16744 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016745{
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016746 char_u *res = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016747 char_u *p;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016748 char_u *infile = NULL;
16749 char_u buf[NUMBUFLEN];
16750 int err = FALSE;
16751 FILE *fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016752
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016753 if (check_restricted() || check_secure())
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016754 goto done;
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016755
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016756 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016757 {
16758 /*
16759 * Write the string to a temp file, to be used for input of the shell
16760 * command.
16761 */
16762 if ((infile = vim_tempname('i')) == NULL)
16763 {
16764 EMSG(_(e_notmp));
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016765 goto done;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016766 }
16767
16768 fd = mch_fopen((char *)infile, WRITEBIN);
16769 if (fd == NULL)
16770 {
16771 EMSG2(_(e_notopen), infile);
16772 goto done;
16773 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016774 p = get_tv_string_buf_chk(&argvars[1], buf);
16775 if (p == NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016776 {
16777 fclose(fd);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016778 goto done; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016779 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016780 if (fwrite(p, STRLEN(p), 1, fd) != 1)
16781 err = TRUE;
16782 if (fclose(fd) != 0)
16783 err = TRUE;
16784 if (err)
16785 {
16786 EMSG(_("E677: Error writing temp file"));
16787 goto done;
16788 }
16789 }
16790
Bram Moolenaare580b0c2006-03-21 21:33:03 +000016791 res = get_cmd_output(get_tv_string(&argvars[0]), infile,
16792 SHELL_SILENT | SHELL_COOKED);
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016793
Bram Moolenaar071d4272004-06-13 20:20:40 +000016794#ifdef USE_CR
16795 /* translate <CR> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016796 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016797 {
16798 char_u *s;
16799
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016800 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016801 {
16802 if (*s == CAR)
16803 *s = NL;
16804 }
16805 }
16806#else
16807# ifdef USE_CRNL
16808 /* translate <CR><NL> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016809 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016810 {
16811 char_u *s, *d;
16812
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016813 d = res;
16814 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016815 {
16816 if (s[0] == CAR && s[1] == NL)
16817 ++s;
16818 *d++ = *s;
16819 }
16820 *d = NUL;
16821 }
16822# endif
16823#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016824
16825done:
16826 if (infile != NULL)
16827 {
16828 mch_remove(infile);
16829 vim_free(infile);
16830 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016831 rettv->v_type = VAR_STRING;
16832 rettv->vval.v_string = res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016833}
16834
16835/*
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016836 * "tabpagebuflist()" function
16837 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016838 static void
16839f_tabpagebuflist(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016840 typval_T *argvars UNUSED;
16841 typval_T *rettv UNUSED;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016842{
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016843#ifdef FEAT_WINDOWS
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016844 tabpage_T *tp;
16845 win_T *wp = NULL;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016846
16847 if (argvars[0].v_type == VAR_UNKNOWN)
16848 wp = firstwin;
16849 else
16850 {
16851 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16852 if (tp != NULL)
Bram Moolenaar238a5642006-02-21 22:12:05 +000016853 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016854 }
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016855 if (wp != NULL && rettv_list_alloc(rettv) != FAIL)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016856 {
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016857 for (; wp != NULL; wp = wp->w_next)
16858 if (list_append_number(rettv->vval.v_list,
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016859 wp->w_buffer->b_fnum) == FAIL)
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016860 break;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016861 }
16862#endif
16863}
16864
16865
16866/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016867 * "tabpagenr()" function
16868 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016869 static void
16870f_tabpagenr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016871 typval_T *argvars UNUSED;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016872 typval_T *rettv;
16873{
16874 int nr = 1;
16875#ifdef FEAT_WINDOWS
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016876 char_u *arg;
16877
16878 if (argvars[0].v_type != VAR_UNKNOWN)
16879 {
16880 arg = get_tv_string_chk(&argvars[0]);
16881 nr = 0;
16882 if (arg != NULL)
16883 {
16884 if (STRCMP(arg, "$") == 0)
Bram Moolenaara5621492006-02-25 21:55:24 +000016885 nr = tabpage_index(NULL) - 1;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016886 else
16887 EMSG2(_(e_invexpr2), arg);
16888 }
16889 }
16890 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +000016891 nr = tabpage_index(curtab);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016892#endif
16893 rettv->vval.v_number = nr;
16894}
16895
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016896
16897#ifdef FEAT_WINDOWS
16898static int get_winnr __ARGS((tabpage_T *tp, typval_T *argvar));
16899
16900/*
16901 * Common code for tabpagewinnr() and winnr().
16902 */
16903 static int
16904get_winnr(tp, argvar)
16905 tabpage_T *tp;
16906 typval_T *argvar;
16907{
16908 win_T *twin;
16909 int nr = 1;
16910 win_T *wp;
16911 char_u *arg;
16912
16913 twin = (tp == curtab) ? curwin : tp->tp_curwin;
16914 if (argvar->v_type != VAR_UNKNOWN)
16915 {
16916 arg = get_tv_string_chk(argvar);
16917 if (arg == NULL)
16918 nr = 0; /* type error; errmsg already given */
16919 else if (STRCMP(arg, "$") == 0)
16920 twin = (tp == curtab) ? lastwin : tp->tp_lastwin;
16921 else if (STRCMP(arg, "#") == 0)
16922 {
16923 twin = (tp == curtab) ? prevwin : tp->tp_prevwin;
16924 if (twin == NULL)
16925 nr = 0;
16926 }
16927 else
16928 {
16929 EMSG2(_(e_invexpr2), arg);
16930 nr = 0;
16931 }
16932 }
16933
16934 if (nr > 0)
16935 for (wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
16936 wp != twin; wp = wp->w_next)
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016937 {
16938 if (wp == NULL)
16939 {
16940 /* didn't find it in this tabpage */
16941 nr = 0;
16942 break;
16943 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016944 ++nr;
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016945 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016946 return nr;
16947}
16948#endif
16949
16950/*
16951 * "tabpagewinnr()" function
16952 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016953 static void
16954f_tabpagewinnr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016955 typval_T *argvars UNUSED;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016956 typval_T *rettv;
16957{
16958 int nr = 1;
16959#ifdef FEAT_WINDOWS
16960 tabpage_T *tp;
16961
16962 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16963 if (tp == NULL)
16964 nr = 0;
16965 else
16966 nr = get_winnr(tp, &argvars[1]);
16967#endif
16968 rettv->vval.v_number = nr;
16969}
16970
16971
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016972/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016973 * "tagfiles()" function
16974 */
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016975 static void
16976f_tagfiles(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016977 typval_T *argvars UNUSED;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016978 typval_T *rettv;
16979{
16980 char_u fname[MAXPATHL + 1];
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016981 tagname_T tn;
16982 int first;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016983
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016984 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016985 return;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016986
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016987 for (first = TRUE; ; first = FALSE)
16988 if (get_tagfname(&tn, first, fname) == FAIL
16989 || list_append_string(rettv->vval.v_list, fname, -1) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016990 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016991 tagname_free(&tn);
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016992}
16993
16994/*
Bram Moolenaare2ac10d2005-03-07 23:26:06 +000016995 * "taglist()" function
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016996 */
16997 static void
16998f_taglist(argvars, rettv)
16999 typval_T *argvars;
17000 typval_T *rettv;
17001{
17002 char_u *tag_pattern;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017003
17004 tag_pattern = get_tv_string(&argvars[0]);
17005
17006 rettv->vval.v_number = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017007 if (*tag_pattern == NUL)
17008 return;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017009
Bram Moolenaareddf53b2006-02-27 00:11:10 +000017010 if (rettv_list_alloc(rettv) == OK)
17011 (void)get_tags(rettv->vval.v_list, tag_pattern);
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017012}
17013
17014/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017015 * "tempname()" function
17016 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017017 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017018f_tempname(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017019 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017020 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017021{
17022 static int x = 'A';
17023
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017024 rettv->v_type = VAR_STRING;
17025 rettv->vval.v_string = vim_tempname(x);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017026
17027 /* Advance 'x' to use A-Z and 0-9, so that there are at least 34 different
17028 * names. Skip 'I' and 'O', they are used for shell redirection. */
17029 do
17030 {
17031 if (x == 'Z')
17032 x = '0';
17033 else if (x == '9')
17034 x = 'A';
17035 else
17036 {
17037#ifdef EBCDIC
17038 if (x == 'I')
17039 x = 'J';
17040 else if (x == 'R')
17041 x = 'S';
17042 else
17043#endif
17044 ++x;
17045 }
17046 } while (x == 'I' || x == 'O');
17047}
17048
17049/*
Bram Moolenaard52d9742005-08-21 22:20:28 +000017050 * "test(list)" function: Just checking the walls...
17051 */
Bram Moolenaard52d9742005-08-21 22:20:28 +000017052 static void
17053f_test(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017054 typval_T *argvars UNUSED;
17055 typval_T *rettv UNUSED;
Bram Moolenaard52d9742005-08-21 22:20:28 +000017056{
17057 /* Used for unit testing. Change the code below to your liking. */
17058#if 0
17059 listitem_T *li;
17060 list_T *l;
17061 char_u *bad, *good;
17062
17063 if (argvars[0].v_type != VAR_LIST)
17064 return;
17065 l = argvars[0].vval.v_list;
17066 if (l == NULL)
17067 return;
17068 li = l->lv_first;
17069 if (li == NULL)
17070 return;
17071 bad = get_tv_string(&li->li_tv);
17072 li = li->li_next;
17073 if (li == NULL)
17074 return;
17075 good = get_tv_string(&li->li_tv);
17076 rettv->vval.v_number = test_edit_score(bad, good);
17077#endif
17078}
17079
17080/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017081 * "tolower(string)" function
17082 */
17083 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017084f_tolower(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017085 typval_T *argvars;
17086 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017087{
17088 char_u *p;
17089
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017090 p = vim_strsave(get_tv_string(&argvars[0]));
17091 rettv->v_type = VAR_STRING;
17092 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017093
17094 if (p != NULL)
17095 while (*p != NUL)
17096 {
17097#ifdef FEAT_MBYTE
17098 int l;
17099
17100 if (enc_utf8)
17101 {
17102 int c, lc;
17103
17104 c = utf_ptr2char(p);
17105 lc = utf_tolower(c);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017106 l = utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017107 /* TODO: reallocate string when byte count changes. */
17108 if (utf_char2len(lc) == l)
17109 utf_char2bytes(lc, p);
17110 p += l;
17111 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017112 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017113 p += l; /* skip multi-byte character */
17114 else
17115#endif
17116 {
17117 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
17118 ++p;
17119 }
17120 }
17121}
17122
17123/*
17124 * "toupper(string)" function
17125 */
17126 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017127f_toupper(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017128 typval_T *argvars;
17129 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017130{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017131 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017132 rettv->vval.v_string = strup_save(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000017133}
17134
17135/*
Bram Moolenaar8299df92004-07-10 09:47:34 +000017136 * "tr(string, fromstr, tostr)" function
17137 */
17138 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017139f_tr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017140 typval_T *argvars;
17141 typval_T *rettv;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017142{
17143 char_u *instr;
17144 char_u *fromstr;
17145 char_u *tostr;
17146 char_u *p;
17147#ifdef FEAT_MBYTE
Bram Moolenaar342337a2005-07-21 21:11:17 +000017148 int inlen;
17149 int fromlen;
17150 int tolen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017151 int idx;
17152 char_u *cpstr;
17153 int cplen;
17154 int first = TRUE;
17155#endif
17156 char_u buf[NUMBUFLEN];
17157 char_u buf2[NUMBUFLEN];
17158 garray_T ga;
17159
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017160 instr = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017161 fromstr = get_tv_string_buf_chk(&argvars[1], buf);
17162 tostr = get_tv_string_buf_chk(&argvars[2], buf2);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017163
17164 /* Default return value: empty string. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017165 rettv->v_type = VAR_STRING;
17166 rettv->vval.v_string = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017167 if (fromstr == NULL || tostr == NULL)
17168 return; /* type error; errmsg already given */
Bram Moolenaar8299df92004-07-10 09:47:34 +000017169 ga_init2(&ga, (int)sizeof(char), 80);
17170
17171#ifdef FEAT_MBYTE
17172 if (!has_mbyte)
17173#endif
17174 /* not multi-byte: fromstr and tostr must be the same length */
17175 if (STRLEN(fromstr) != STRLEN(tostr))
17176 {
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017177#ifdef FEAT_MBYTE
Bram Moolenaar8299df92004-07-10 09:47:34 +000017178error:
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017179#endif
Bram Moolenaar8299df92004-07-10 09:47:34 +000017180 EMSG2(_(e_invarg2), fromstr);
17181 ga_clear(&ga);
17182 return;
17183 }
17184
17185 /* fromstr and tostr have to contain the same number of chars */
17186 while (*instr != NUL)
17187 {
17188#ifdef FEAT_MBYTE
17189 if (has_mbyte)
17190 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017191 inlen = (*mb_ptr2len)(instr);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017192 cpstr = instr;
17193 cplen = inlen;
17194 idx = 0;
17195 for (p = fromstr; *p != NUL; p += fromlen)
17196 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017197 fromlen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017198 if (fromlen == inlen && STRNCMP(instr, p, inlen) == 0)
17199 {
17200 for (p = tostr; *p != NUL; p += tolen)
17201 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017202 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017203 if (idx-- == 0)
17204 {
17205 cplen = tolen;
17206 cpstr = p;
17207 break;
17208 }
17209 }
17210 if (*p == NUL) /* tostr is shorter than fromstr */
17211 goto error;
17212 break;
17213 }
17214 ++idx;
17215 }
17216
17217 if (first && cpstr == instr)
17218 {
17219 /* Check that fromstr and tostr have the same number of
17220 * (multi-byte) characters. Done only once when a character
17221 * of instr doesn't appear in fromstr. */
17222 first = FALSE;
17223 for (p = tostr; *p != NUL; p += tolen)
17224 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017225 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017226 --idx;
17227 }
17228 if (idx != 0)
17229 goto error;
17230 }
17231
17232 ga_grow(&ga, cplen);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000017233 mch_memmove((char *)ga.ga_data + ga.ga_len, cpstr, (size_t)cplen);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017234 ga.ga_len += cplen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017235
17236 instr += inlen;
17237 }
17238 else
17239#endif
17240 {
17241 /* When not using multi-byte chars we can do it faster. */
17242 p = vim_strchr(fromstr, *instr);
17243 if (p != NULL)
17244 ga_append(&ga, tostr[p - fromstr]);
17245 else
17246 ga_append(&ga, *instr);
17247 ++instr;
17248 }
17249 }
17250
Bram Moolenaar61b974b2006-12-05 09:32:29 +000017251 /* add a terminating NUL */
17252 ga_grow(&ga, 1);
17253 ga_append(&ga, NUL);
17254
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017255 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017256}
17257
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017258#ifdef FEAT_FLOAT
17259/*
17260 * "trunc({float})" function
17261 */
17262 static void
17263f_trunc(argvars, rettv)
17264 typval_T *argvars;
17265 typval_T *rettv;
17266{
17267 float_T f;
17268
17269 rettv->v_type = VAR_FLOAT;
17270 if (get_float_arg(argvars, &f) == OK)
17271 /* trunc() is not in C90, use floor() or ceil() instead. */
17272 rettv->vval.v_float = f > 0 ? floor(f) : ceil(f);
17273 else
17274 rettv->vval.v_float = 0.0;
17275}
17276#endif
17277
Bram Moolenaar8299df92004-07-10 09:47:34 +000017278/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017279 * "type(expr)" function
17280 */
17281 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017282f_type(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017283 typval_T *argvars;
17284 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017285{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017286 int n;
17287
17288 switch (argvars[0].v_type)
17289 {
17290 case VAR_NUMBER: n = 0; break;
17291 case VAR_STRING: n = 1; break;
17292 case VAR_FUNC: n = 2; break;
17293 case VAR_LIST: n = 3; break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000017294 case VAR_DICT: n = 4; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017295#ifdef FEAT_FLOAT
17296 case VAR_FLOAT: n = 5; break;
17297#endif
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017298 default: EMSG2(_(e_intern2), "f_type()"); n = 0; break;
17299 }
17300 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017301}
17302
17303/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000017304 * "values(dict)" function
17305 */
17306 static void
17307f_values(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017308 typval_T *argvars;
17309 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000017310{
17311 dict_list(argvars, rettv, 1);
17312}
17313
17314/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017315 * "virtcol(string)" function
17316 */
17317 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017318f_virtcol(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017319 typval_T *argvars;
17320 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017321{
17322 colnr_T vcol = 0;
17323 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017324 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017325
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017326 fp = var2fpos(&argvars[0], FALSE, &fnum);
17327 if (fp != NULL && fp->lnum <= curbuf->b_ml.ml_line_count
17328 && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017329 {
17330 getvvcol(curwin, fp, NULL, NULL, &vcol);
17331 ++vcol;
17332 }
17333
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017334 rettv->vval.v_number = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017335}
17336
17337/*
17338 * "visualmode()" function
17339 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017340 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017341f_visualmode(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017342 typval_T *argvars UNUSED;
17343 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017344{
17345#ifdef FEAT_VISUAL
17346 char_u str[2];
17347
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017348 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017349 str[0] = curbuf->b_visual_mode_eval;
17350 str[1] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017351 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017352
17353 /* A non-zero number or non-empty string argument: reset mode. */
Bram Moolenaar05bb9532008-07-04 09:44:11 +000017354 if (non_zero_arg(&argvars[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +000017355 curbuf->b_visual_mode_eval = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017356#endif
17357}
17358
17359/*
17360 * "winbufnr(nr)" function
17361 */
17362 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017363f_winbufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017364 typval_T *argvars;
17365 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017366{
17367 win_T *wp;
17368
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017369 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017370 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017371 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017372 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017373 rettv->vval.v_number = wp->w_buffer->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017374}
17375
17376/*
17377 * "wincol()" function
17378 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017379 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017380f_wincol(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017381 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017382 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017383{
17384 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017385 rettv->vval.v_number = curwin->w_wcol + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017386}
17387
17388/*
17389 * "winheight(nr)" function
17390 */
17391 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017392f_winheight(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017393 typval_T *argvars;
17394 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017395{
17396 win_T *wp;
17397
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017398 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017399 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017400 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017401 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017402 rettv->vval.v_number = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017403}
17404
17405/*
17406 * "winline()" function
17407 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017408 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017409f_winline(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017410 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017411 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017412{
17413 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017414 rettv->vval.v_number = curwin->w_wrow + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017415}
17416
17417/*
17418 * "winnr()" function
17419 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017420 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017421f_winnr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017422 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017423 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017424{
17425 int nr = 1;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017426
Bram Moolenaar071d4272004-06-13 20:20:40 +000017427#ifdef FEAT_WINDOWS
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017428 nr = get_winnr(curtab, &argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017429#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017430 rettv->vval.v_number = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017431}
17432
17433/*
17434 * "winrestcmd()" function
17435 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017436 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017437f_winrestcmd(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017438 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017439 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017440{
17441#ifdef FEAT_WINDOWS
17442 win_T *wp;
17443 int winnr = 1;
17444 garray_T ga;
17445 char_u buf[50];
17446
17447 ga_init2(&ga, (int)sizeof(char), 70);
17448 for (wp = firstwin; wp != NULL; wp = wp->w_next)
17449 {
17450 sprintf((char *)buf, "%dresize %d|", winnr, wp->w_height);
17451 ga_concat(&ga, buf);
17452# ifdef FEAT_VERTSPLIT
17453 sprintf((char *)buf, "vert %dresize %d|", winnr, wp->w_width);
17454 ga_concat(&ga, buf);
17455# endif
17456 ++winnr;
17457 }
Bram Moolenaar269ec652004-07-29 08:43:53 +000017458 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017459
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017460 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017461#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017462 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017463#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017464 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017465}
17466
17467/*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017468 * "winrestview()" function
17469 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017470 static void
17471f_winrestview(argvars, rettv)
17472 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017473 typval_T *rettv UNUSED;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017474{
17475 dict_T *dict;
17476
17477 if (argvars[0].v_type != VAR_DICT
17478 || (dict = argvars[0].vval.v_dict) == NULL)
17479 EMSG(_(e_invarg));
17480 else
17481 {
17482 curwin->w_cursor.lnum = get_dict_number(dict, (char_u *)"lnum");
17483 curwin->w_cursor.col = get_dict_number(dict, (char_u *)"col");
17484#ifdef FEAT_VIRTUALEDIT
17485 curwin->w_cursor.coladd = get_dict_number(dict, (char_u *)"coladd");
17486#endif
17487 curwin->w_curswant = get_dict_number(dict, (char_u *)"curswant");
Bram Moolenaar362e1a32006-03-06 23:29:24 +000017488 curwin->w_set_curswant = FALSE;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017489
Bram Moolenaar6f11a412006-09-06 20:16:42 +000017490 set_topline(curwin, get_dict_number(dict, (char_u *)"topline"));
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017491#ifdef FEAT_DIFF
17492 curwin->w_topfill = get_dict_number(dict, (char_u *)"topfill");
17493#endif
17494 curwin->w_leftcol = get_dict_number(dict, (char_u *)"leftcol");
17495 curwin->w_skipcol = get_dict_number(dict, (char_u *)"skipcol");
17496
17497 check_cursor();
17498 changed_cline_bef_curs();
17499 invalidate_botline();
17500 redraw_later(VALID);
17501
17502 if (curwin->w_topline == 0)
17503 curwin->w_topline = 1;
17504 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
17505 curwin->w_topline = curbuf->b_ml.ml_line_count;
17506#ifdef FEAT_DIFF
17507 check_topfill(curwin, TRUE);
17508#endif
17509 }
17510}
17511
17512/*
17513 * "winsaveview()" function
17514 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017515 static void
17516f_winsaveview(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017517 typval_T *argvars UNUSED;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017518 typval_T *rettv;
17519{
17520 dict_T *dict;
17521
17522 dict = dict_alloc();
17523 if (dict == NULL)
17524 return;
17525 rettv->v_type = VAR_DICT;
17526 rettv->vval.v_dict = dict;
17527 ++dict->dv_refcount;
17528
17529 dict_add_nr_str(dict, "lnum", (long)curwin->w_cursor.lnum, NULL);
17530 dict_add_nr_str(dict, "col", (long)curwin->w_cursor.col, NULL);
17531#ifdef FEAT_VIRTUALEDIT
17532 dict_add_nr_str(dict, "coladd", (long)curwin->w_cursor.coladd, NULL);
17533#endif
Bram Moolenaar9af1ba92006-08-29 19:55:53 +000017534 update_curswant();
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017535 dict_add_nr_str(dict, "curswant", (long)curwin->w_curswant, NULL);
17536
17537 dict_add_nr_str(dict, "topline", (long)curwin->w_topline, NULL);
17538#ifdef FEAT_DIFF
17539 dict_add_nr_str(dict, "topfill", (long)curwin->w_topfill, NULL);
17540#endif
17541 dict_add_nr_str(dict, "leftcol", (long)curwin->w_leftcol, NULL);
17542 dict_add_nr_str(dict, "skipcol", (long)curwin->w_skipcol, NULL);
17543}
17544
17545/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017546 * "winwidth(nr)" function
17547 */
17548 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017549f_winwidth(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017550 typval_T *argvars;
17551 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017552{
17553 win_T *wp;
17554
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017555 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017556 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017557 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017558 else
17559#ifdef FEAT_VERTSPLIT
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017560 rettv->vval.v_number = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017561#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017562 rettv->vval.v_number = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017563#endif
17564}
17565
Bram Moolenaar071d4272004-06-13 20:20:40 +000017566/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017567 * "writefile()" function
17568 */
17569 static void
17570f_writefile(argvars, rettv)
17571 typval_T *argvars;
17572 typval_T *rettv;
17573{
17574 int binary = FALSE;
17575 char_u *fname;
17576 FILE *fd;
17577 listitem_T *li;
17578 char_u *s;
17579 int ret = 0;
17580 int c;
17581
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000017582 if (check_restricted() || check_secure())
17583 return;
17584
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017585 if (argvars[0].v_type != VAR_LIST)
17586 {
17587 EMSG2(_(e_listarg), "writefile()");
17588 return;
17589 }
17590 if (argvars[0].vval.v_list == NULL)
17591 return;
17592
17593 if (argvars[2].v_type != VAR_UNKNOWN
17594 && STRCMP(get_tv_string(&argvars[2]), "b") == 0)
17595 binary = TRUE;
17596
17597 /* Always open the file in binary mode, library functions have a mind of
17598 * their own about CR-LF conversion. */
17599 fname = get_tv_string(&argvars[1]);
17600 if (*fname == NUL || (fd = mch_fopen((char *)fname, WRITEBIN)) == NULL)
17601 {
17602 EMSG2(_(e_notcreate), *fname == NUL ? (char_u *)_("<empty>") : fname);
17603 ret = -1;
17604 }
17605 else
17606 {
17607 for (li = argvars[0].vval.v_list->lv_first; li != NULL;
17608 li = li->li_next)
17609 {
17610 for (s = get_tv_string(&li->li_tv); *s != NUL; ++s)
17611 {
17612 if (*s == '\n')
17613 c = putc(NUL, fd);
17614 else
17615 c = putc(*s, fd);
17616 if (c == EOF)
17617 {
17618 ret = -1;
17619 break;
17620 }
17621 }
17622 if (!binary || li->li_next != NULL)
17623 if (putc('\n', fd) == EOF)
17624 {
17625 ret = -1;
17626 break;
17627 }
17628 if (ret < 0)
17629 {
17630 EMSG(_(e_write));
17631 break;
17632 }
17633 }
17634 fclose(fd);
17635 }
17636
17637 rettv->vval.v_number = ret;
17638}
17639
17640/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017641 * Translate a String variable into a position.
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017642 * Returns NULL when there is an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017643 */
17644 static pos_T *
Bram Moolenaar477933c2007-07-17 14:32:23 +000017645var2fpos(varp, dollar_lnum, fnum)
Bram Moolenaar33570922005-01-25 22:26:29 +000017646 typval_T *varp;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017647 int dollar_lnum; /* TRUE when $ is last line */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017648 int *fnum; /* set to fnum for '0, 'A, etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017649{
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017650 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017651 static pos_T pos;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017652 pos_T *pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017653
Bram Moolenaara5525202006-03-02 22:52:09 +000017654 /* Argument can be [lnum, col, coladd]. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017655 if (varp->v_type == VAR_LIST)
17656 {
17657 list_T *l;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017658 int len;
Bram Moolenaara5525202006-03-02 22:52:09 +000017659 int error = FALSE;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017660 listitem_T *li;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017661
17662 l = varp->vval.v_list;
17663 if (l == NULL)
17664 return NULL;
17665
17666 /* Get the line number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017667 pos.lnum = list_find_nr(l, 0L, &error);
17668 if (error || pos.lnum <= 0 || pos.lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017669 return NULL; /* invalid line number */
17670
17671 /* Get the column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017672 pos.col = list_find_nr(l, 1L, &error);
17673 if (error)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017674 return NULL;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017675 len = (long)STRLEN(ml_get(pos.lnum));
Bram Moolenaar477933c2007-07-17 14:32:23 +000017676
17677 /* We accept "$" for the column number: last column. */
17678 li = list_find(l, 1L);
17679 if (li != NULL && li->li_tv.v_type == VAR_STRING
17680 && li->li_tv.vval.v_string != NULL
17681 && STRCMP(li->li_tv.vval.v_string, "$") == 0)
17682 pos.col = len + 1;
17683
Bram Moolenaara5525202006-03-02 22:52:09 +000017684 /* Accept a position up to the NUL after the line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000017685 if (pos.col == 0 || (int)pos.col > len + 1)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017686 return NULL; /* invalid column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017687 --pos.col;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017688
Bram Moolenaara5525202006-03-02 22:52:09 +000017689#ifdef FEAT_VIRTUALEDIT
17690 /* Get the virtual offset. Defaults to zero. */
17691 pos.coladd = list_find_nr(l, 2L, &error);
17692 if (error)
17693 pos.coladd = 0;
17694#endif
17695
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017696 return &pos;
17697 }
17698
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017699 name = get_tv_string_chk(varp);
17700 if (name == NULL)
17701 return NULL;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017702 if (name[0] == '.') /* cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017703 return &curwin->w_cursor;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017704#ifdef FEAT_VISUAL
17705 if (name[0] == 'v' && name[1] == NUL) /* Visual start */
17706 {
17707 if (VIsual_active)
17708 return &VIsual;
17709 return &curwin->w_cursor;
17710 }
17711#endif
17712 if (name[0] == '\'') /* mark */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017713 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017714 pp = getmark_fnum(name[1], FALSE, fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017715 if (pp == NULL || pp == (pos_T *)-1 || pp->lnum <= 0)
17716 return NULL;
17717 return pp;
17718 }
Bram Moolenaara5525202006-03-02 22:52:09 +000017719
17720#ifdef FEAT_VIRTUALEDIT
17721 pos.coladd = 0;
17722#endif
17723
Bram Moolenaar477933c2007-07-17 14:32:23 +000017724 if (name[0] == 'w' && dollar_lnum)
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017725 {
17726 pos.col = 0;
17727 if (name[1] == '0') /* "w0": first visible line */
17728 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017729 update_topline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017730 pos.lnum = curwin->w_topline;
17731 return &pos;
17732 }
17733 else if (name[1] == '$') /* "w$": last visible line */
17734 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017735 validate_botline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017736 pos.lnum = curwin->w_botline - 1;
17737 return &pos;
17738 }
17739 }
17740 else if (name[0] == '$') /* last column or line */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017741 {
Bram Moolenaar477933c2007-07-17 14:32:23 +000017742 if (dollar_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017743 {
17744 pos.lnum = curbuf->b_ml.ml_line_count;
17745 pos.col = 0;
17746 }
17747 else
17748 {
17749 pos.lnum = curwin->w_cursor.lnum;
17750 pos.col = (colnr_T)STRLEN(ml_get_curline());
17751 }
17752 return &pos;
17753 }
17754 return NULL;
17755}
17756
17757/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017758 * Convert list in "arg" into a position and optional file number.
17759 * When "fnump" is NULL there is no file number, only 3 items.
17760 * Note that the column is passed on as-is, the caller may want to decrement
17761 * it to use 1 for the first column.
17762 * Return FAIL when conversion is not possible, doesn't check the position for
17763 * validity.
17764 */
17765 static int
17766list2fpos(arg, posp, fnump)
17767 typval_T *arg;
17768 pos_T *posp;
17769 int *fnump;
17770{
17771 list_T *l = arg->vval.v_list;
17772 long i = 0;
17773 long n;
17774
Bram Moolenaarbde35262006-07-23 20:12:24 +000017775 /* List must be: [fnum, lnum, col, coladd], where "fnum" is only there
17776 * when "fnump" isn't NULL and "coladd" is optional. */
17777 if (arg->v_type != VAR_LIST
17778 || l == NULL
17779 || l->lv_len < (fnump == NULL ? 2 : 3)
17780 || l->lv_len > (fnump == NULL ? 3 : 4))
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017781 return FAIL;
17782
17783 if (fnump != NULL)
17784 {
17785 n = list_find_nr(l, i++, NULL); /* fnum */
17786 if (n < 0)
17787 return FAIL;
17788 if (n == 0)
17789 n = curbuf->b_fnum; /* current buffer */
17790 *fnump = n;
17791 }
17792
17793 n = list_find_nr(l, i++, NULL); /* lnum */
17794 if (n < 0)
17795 return FAIL;
17796 posp->lnum = n;
17797
17798 n = list_find_nr(l, i++, NULL); /* col */
17799 if (n < 0)
17800 return FAIL;
17801 posp->col = n;
17802
17803#ifdef FEAT_VIRTUALEDIT
17804 n = list_find_nr(l, i, NULL);
17805 if (n < 0)
Bram Moolenaarbde35262006-07-23 20:12:24 +000017806 posp->coladd = 0;
17807 else
17808 posp->coladd = n;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017809#endif
17810
17811 return OK;
17812}
17813
17814/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017815 * Get the length of an environment variable name.
17816 * Advance "arg" to the first character after the name.
17817 * Return 0 for error.
17818 */
17819 static int
17820get_env_len(arg)
17821 char_u **arg;
17822{
17823 char_u *p;
17824 int len;
17825
17826 for (p = *arg; vim_isIDc(*p); ++p)
17827 ;
17828 if (p == *arg) /* no name found */
17829 return 0;
17830
17831 len = (int)(p - *arg);
17832 *arg = p;
17833 return len;
17834}
17835
17836/*
17837 * Get the length of the name of a function or internal variable.
17838 * "arg" is advanced to the first non-white character after the name.
17839 * Return 0 if something is wrong.
17840 */
17841 static int
17842get_id_len(arg)
17843 char_u **arg;
17844{
17845 char_u *p;
17846 int len;
17847
17848 /* Find the end of the name. */
17849 for (p = *arg; eval_isnamec(*p); ++p)
17850 ;
17851 if (p == *arg) /* no name found */
17852 return 0;
17853
17854 len = (int)(p - *arg);
17855 *arg = skipwhite(p);
17856
17857 return len;
17858}
17859
17860/*
Bram Moolenaara7043832005-01-21 11:56:39 +000017861 * Get the length of the name of a variable or function.
17862 * Only the name is recognized, does not handle ".key" or "[idx]".
Bram Moolenaar071d4272004-06-13 20:20:40 +000017863 * "arg" is advanced to the first non-white character after the name.
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017864 * Return -1 if curly braces expansion failed.
17865 * Return 0 if something else is wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017866 * If the name contains 'magic' {}'s, expand them and return the
17867 * expanded name in an allocated string via 'alias' - caller must free.
17868 */
17869 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017870get_name_len(arg, alias, evaluate, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017871 char_u **arg;
17872 char_u **alias;
17873 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017874 int verbose;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017875{
17876 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017877 char_u *p;
17878 char_u *expr_start;
17879 char_u *expr_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017880
17881 *alias = NULL; /* default to no alias */
17882
17883 if ((*arg)[0] == K_SPECIAL && (*arg)[1] == KS_EXTRA
17884 && (*arg)[2] == (int)KE_SNR)
17885 {
17886 /* hard coded <SNR>, already translated */
17887 *arg += 3;
17888 return get_id_len(arg) + 3;
17889 }
17890 len = eval_fname_script(*arg);
17891 if (len > 0)
17892 {
17893 /* literal "<SID>", "s:" or "<SNR>" */
17894 *arg += len;
17895 }
17896
Bram Moolenaar071d4272004-06-13 20:20:40 +000017897 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017898 * Find the end of the name; check for {} construction.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017899 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017900 p = find_name_end(*arg, &expr_start, &expr_end,
17901 len > 0 ? 0 : FNE_CHECK_START);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017902 if (expr_start != NULL)
17903 {
17904 char_u *temp_string;
17905
17906 if (!evaluate)
17907 {
17908 len += (int)(p - *arg);
17909 *arg = skipwhite(p);
17910 return len;
17911 }
17912
17913 /*
17914 * Include any <SID> etc in the expanded string:
17915 * Thus the -len here.
17916 */
17917 temp_string = make_expanded_name(*arg - len, expr_start, expr_end, p);
17918 if (temp_string == NULL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017919 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017920 *alias = temp_string;
17921 *arg = skipwhite(p);
17922 return (int)STRLEN(temp_string);
17923 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017924
17925 len += get_id_len(arg);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017926 if (len == 0 && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017927 EMSG2(_(e_invexpr2), *arg);
17928
17929 return len;
17930}
17931
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017932/*
17933 * Find the end of a variable or function name, taking care of magic braces.
17934 * If "expr_start" is not NULL then "expr_start" and "expr_end" are set to the
17935 * start and end of the first magic braces item.
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017936 * "flags" can have FNE_INCL_BR and FNE_CHECK_START.
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017937 * Return a pointer to just after the name. Equal to "arg" if there is no
17938 * valid name.
17939 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017940 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017941find_name_end(arg, expr_start, expr_end, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017942 char_u *arg;
17943 char_u **expr_start;
17944 char_u **expr_end;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017945 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017946{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017947 int mb_nest = 0;
17948 int br_nest = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017949 char_u *p;
17950
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017951 if (expr_start != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017952 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017953 *expr_start = NULL;
17954 *expr_end = NULL;
17955 }
17956
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017957 /* Quick check for valid starting character. */
17958 if ((flags & FNE_CHECK_START) && !eval_isnamec1(*arg) && *arg != '{')
17959 return arg;
17960
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017961 for (p = arg; *p != NUL
17962 && (eval_isnamec(*p)
Bram Moolenaare9a41262005-01-15 22:18:47 +000017963 || *p == '{'
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017964 || ((flags & FNE_INCL_BR) && (*p == '[' || *p == '.'))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017965 || mb_nest != 0
Bram Moolenaar8af24422005-08-08 22:06:28 +000017966 || br_nest != 0); mb_ptr_adv(p))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017967 {
Bram Moolenaar8af24422005-08-08 22:06:28 +000017968 if (*p == '\'')
17969 {
17970 /* skip over 'string' to avoid counting [ and ] inside it. */
17971 for (p = p + 1; *p != NUL && *p != '\''; mb_ptr_adv(p))
17972 ;
17973 if (*p == NUL)
17974 break;
17975 }
17976 else if (*p == '"')
17977 {
17978 /* skip over "str\"ing" to avoid counting [ and ] inside it. */
17979 for (p = p + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
17980 if (*p == '\\' && p[1] != NUL)
17981 ++p;
17982 if (*p == NUL)
17983 break;
17984 }
17985
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017986 if (mb_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017987 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017988 if (*p == '[')
17989 ++br_nest;
17990 else if (*p == ']')
17991 --br_nest;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017992 }
Bram Moolenaar8af24422005-08-08 22:06:28 +000017993
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017994 if (br_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017995 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017996 if (*p == '{')
17997 {
17998 mb_nest++;
17999 if (expr_start != NULL && *expr_start == NULL)
18000 *expr_start = p;
18001 }
18002 else if (*p == '}')
18003 {
18004 mb_nest--;
18005 if (expr_start != NULL && mb_nest == 0 && *expr_end == NULL)
18006 *expr_end = p;
18007 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018008 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018009 }
18010
18011 return p;
18012}
18013
18014/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018015 * Expands out the 'magic' {}'s in a variable/function name.
18016 * Note that this can call itself recursively, to deal with
18017 * constructs like foo{bar}{baz}{bam}
18018 * The four pointer arguments point to "foo{expre}ss{ion}bar"
18019 * "in_start" ^
18020 * "expr_start" ^
18021 * "expr_end" ^
18022 * "in_end" ^
18023 *
18024 * Returns a new allocated string, which the caller must free.
18025 * Returns NULL for failure.
18026 */
18027 static char_u *
18028make_expanded_name(in_start, expr_start, expr_end, in_end)
18029 char_u *in_start;
18030 char_u *expr_start;
18031 char_u *expr_end;
18032 char_u *in_end;
18033{
18034 char_u c1;
18035 char_u *retval = NULL;
18036 char_u *temp_result;
18037 char_u *nextcmd = NULL;
18038
18039 if (expr_end == NULL || in_end == NULL)
18040 return NULL;
18041 *expr_start = NUL;
18042 *expr_end = NUL;
18043 c1 = *in_end;
18044 *in_end = NUL;
18045
Bram Moolenaar362e1a32006-03-06 23:29:24 +000018046 temp_result = eval_to_string(expr_start + 1, &nextcmd, FALSE);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018047 if (temp_result != NULL && nextcmd == NULL)
18048 {
18049 retval = alloc((unsigned)(STRLEN(temp_result) + (expr_start - in_start)
18050 + (in_end - expr_end) + 1));
18051 if (retval != NULL)
18052 {
18053 STRCPY(retval, in_start);
18054 STRCAT(retval, temp_result);
18055 STRCAT(retval, expr_end + 1);
18056 }
18057 }
18058 vim_free(temp_result);
18059
18060 *in_end = c1; /* put char back for error messages */
18061 *expr_start = '{';
18062 *expr_end = '}';
18063
18064 if (retval != NULL)
18065 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018066 temp_result = find_name_end(retval, &expr_start, &expr_end, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018067 if (expr_start != NULL)
18068 {
18069 /* Further expansion! */
18070 temp_result = make_expanded_name(retval, expr_start,
18071 expr_end, temp_result);
18072 vim_free(retval);
18073 retval = temp_result;
18074 }
18075 }
18076
18077 return retval;
18078}
18079
18080/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018081 * Return TRUE if character "c" can be used in a variable or function name.
Bram Moolenaare9a41262005-01-15 22:18:47 +000018082 * Does not include '{' or '}' for magic braces.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018083 */
18084 static int
18085eval_isnamec(c)
18086 int c;
18087{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018088 return (ASCII_ISALNUM(c) || c == '_' || c == ':' || c == AUTOLOAD_CHAR);
18089}
18090
18091/*
18092 * Return TRUE if character "c" can be used as the first character in a
18093 * variable or function name (excluding '{' and '}').
18094 */
18095 static int
18096eval_isnamec1(c)
18097 int c;
18098{
18099 return (ASCII_ISALPHA(c) || c == '_');
Bram Moolenaar071d4272004-06-13 20:20:40 +000018100}
18101
18102/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018103 * Set number v: variable to "val".
18104 */
18105 void
18106set_vim_var_nr(idx, val)
18107 int idx;
18108 long val;
18109{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018110 vimvars[idx].vv_nr = val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018111}
18112
18113/*
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018114 * Get number v: variable value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018115 */
18116 long
18117get_vim_var_nr(idx)
18118 int idx;
18119{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018120 return vimvars[idx].vv_nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018121}
18122
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018123/*
18124 * Get string v: variable value. Uses a static buffer, can only be used once.
18125 */
18126 char_u *
18127get_vim_var_str(idx)
18128 int idx;
18129{
18130 return get_tv_string(&vimvars[idx].vv_tv);
18131}
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018132
Bram Moolenaar071d4272004-06-13 20:20:40 +000018133/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018134 * Get List v: variable value. Caller must take care of reference count when
18135 * needed.
18136 */
18137 list_T *
18138get_vim_var_list(idx)
18139 int idx;
18140{
18141 return vimvars[idx].vv_list;
18142}
18143
18144/*
Bram Moolenaarda9591e2009-09-30 13:17:02 +000018145 * Set v:char to character "c".
18146 */
18147 void
18148set_vim_var_char(c)
18149 int c;
18150{
18151#ifdef FEAT_MBYTE
18152 char_u buf[MB_MAXBYTES];
18153#else
18154 char_u buf[2];
18155#endif
18156
18157#ifdef FEAT_MBYTE
18158 if (has_mbyte)
18159 buf[(*mb_char2bytes)(c, buf)] = NUL;
18160 else
18161#endif
18162 {
18163 buf[0] = c;
18164 buf[1] = NUL;
18165 }
18166 set_vim_var_string(VV_CHAR, buf, -1);
18167}
18168
18169/*
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018170 * Set v:count to "count" and v:count1 to "count1".
18171 * When "set_prevcount" is TRUE first set v:prevcount from v:count.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018172 */
18173 void
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018174set_vcount(count, count1, set_prevcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018175 long count;
18176 long count1;
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018177 int set_prevcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018178{
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018179 if (set_prevcount)
18180 vimvars[VV_PREVCOUNT].vv_nr = vimvars[VV_COUNT].vv_nr;
Bram Moolenaare9a41262005-01-15 22:18:47 +000018181 vimvars[VV_COUNT].vv_nr = count;
18182 vimvars[VV_COUNT1].vv_nr = count1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018183}
18184
18185/*
18186 * Set string v: variable to a copy of "val".
18187 */
18188 void
18189set_vim_var_string(idx, val, len)
18190 int idx;
18191 char_u *val;
18192 int len; /* length of "val" to use or -1 (whole string) */
18193{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018194 /* Need to do this (at least) once, since we can't initialize a union.
18195 * Will always be invoked when "v:progname" is set. */
18196 vimvars[VV_VERSION].vv_nr = VIM_VERSION_100;
18197
Bram Moolenaare9a41262005-01-15 22:18:47 +000018198 vim_free(vimvars[idx].vv_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018199 if (val == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018200 vimvars[idx].vv_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018201 else if (len == -1)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018202 vimvars[idx].vv_str = vim_strsave(val);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018203 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000018204 vimvars[idx].vv_str = vim_strnsave(val, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018205}
18206
18207/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018208 * Set List v: variable to "val".
18209 */
18210 void
18211set_vim_var_list(idx, val)
18212 int idx;
18213 list_T *val;
18214{
18215 list_unref(vimvars[idx].vv_list);
18216 vimvars[idx].vv_list = val;
18217 if (val != NULL)
18218 ++val->lv_refcount;
18219}
18220
18221/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018222 * Set v:register if needed.
18223 */
18224 void
18225set_reg_var(c)
18226 int c;
18227{
18228 char_u regname;
18229
18230 if (c == 0 || c == ' ')
18231 regname = '"';
18232 else
18233 regname = c;
18234 /* Avoid free/alloc when the value is already right. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000018235 if (vimvars[VV_REG].vv_str == NULL || vimvars[VV_REG].vv_str[0] != c)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018236 set_vim_var_string(VV_REG, &regname, 1);
18237}
18238
18239/*
18240 * Get or set v:exception. If "oldval" == NULL, return the current value.
18241 * Otherwise, restore the value to "oldval" and return NULL.
18242 * Must always be called in pairs to save and restore v:exception! Does not
18243 * take care of memory allocations.
18244 */
18245 char_u *
18246v_exception(oldval)
18247 char_u *oldval;
18248{
18249 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018250 return vimvars[VV_EXCEPTION].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018251
Bram Moolenaare9a41262005-01-15 22:18:47 +000018252 vimvars[VV_EXCEPTION].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018253 return NULL;
18254}
18255
18256/*
18257 * Get or set v:throwpoint. If "oldval" == NULL, return the current value.
18258 * Otherwise, restore the value to "oldval" and return NULL.
18259 * Must always be called in pairs to save and restore v:throwpoint! Does not
18260 * take care of memory allocations.
18261 */
18262 char_u *
18263v_throwpoint(oldval)
18264 char_u *oldval;
18265{
18266 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018267 return vimvars[VV_THROWPOINT].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018268
Bram Moolenaare9a41262005-01-15 22:18:47 +000018269 vimvars[VV_THROWPOINT].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018270 return NULL;
18271}
18272
18273#if defined(FEAT_AUTOCMD) || defined(PROTO)
18274/*
18275 * Set v:cmdarg.
18276 * If "eap" != NULL, use "eap" to generate the value and return the old value.
18277 * If "oldarg" != NULL, restore the value to "oldarg" and return NULL.
18278 * Must always be called in pairs!
18279 */
18280 char_u *
18281set_cmdarg(eap, oldarg)
18282 exarg_T *eap;
18283 char_u *oldarg;
18284{
18285 char_u *oldval;
18286 char_u *newval;
18287 unsigned len;
18288
Bram Moolenaare9a41262005-01-15 22:18:47 +000018289 oldval = vimvars[VV_CMDARG].vv_str;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018290 if (eap == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018291 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018292 vim_free(oldval);
Bram Moolenaare9a41262005-01-15 22:18:47 +000018293 vimvars[VV_CMDARG].vv_str = oldarg;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018294 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018295 }
18296
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018297 if (eap->force_bin == FORCE_BIN)
18298 len = 6;
18299 else if (eap->force_bin == FORCE_NOBIN)
18300 len = 8;
18301 else
18302 len = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018303
18304 if (eap->read_edit)
18305 len += 7;
18306
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018307 if (eap->force_ff != 0)
18308 len += (unsigned)STRLEN(eap->cmd + eap->force_ff) + 6;
18309# ifdef FEAT_MBYTE
18310 if (eap->force_enc != 0)
18311 len += (unsigned)STRLEN(eap->cmd + eap->force_enc) + 7;
Bram Moolenaar34b4daf2010-05-16 13:26:25 +020018312 if (eap->bad_char != 0)
18313 len += 7 + 4; /* " ++bad=" + "keep" or "drop" */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018314# endif
18315
18316 newval = alloc(len + 1);
18317 if (newval == NULL)
18318 return NULL;
18319
18320 if (eap->force_bin == FORCE_BIN)
18321 sprintf((char *)newval, " ++bin");
18322 else if (eap->force_bin == FORCE_NOBIN)
18323 sprintf((char *)newval, " ++nobin");
18324 else
18325 *newval = NUL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018326
18327 if (eap->read_edit)
18328 STRCAT(newval, " ++edit");
18329
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018330 if (eap->force_ff != 0)
18331 sprintf((char *)newval + STRLEN(newval), " ++ff=%s",
18332 eap->cmd + eap->force_ff);
18333# ifdef FEAT_MBYTE
18334 if (eap->force_enc != 0)
18335 sprintf((char *)newval + STRLEN(newval), " ++enc=%s",
18336 eap->cmd + eap->force_enc);
Bram Moolenaar34b4daf2010-05-16 13:26:25 +020018337 if (eap->bad_char == BAD_KEEP)
18338 STRCPY(newval + STRLEN(newval), " ++bad=keep");
18339 else if (eap->bad_char == BAD_DROP)
18340 STRCPY(newval + STRLEN(newval), " ++bad=drop");
18341 else if (eap->bad_char != 0)
18342 sprintf((char *)newval + STRLEN(newval), " ++bad=%c", 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 {
Bram Moolenaar9577c3e2010-05-14 12:16:25 +020018813 case 's': return &SCRIPT_SV(current_SID)->sv_var;
Bram Moolenaar33570922005-01-25 22:26:29 +000018814 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 Moolenaar9577c3e2010-05-14 12:16:25 +020018938 sv = SCRIPT_SV(i);
Bram Moolenaar33570922005-01-25 22:26:29 +000018939 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 Moolenaar9577c3e2010-05-14 12:16:25 +020018944 sv = SCRIPT_SV(ga_scripts.ga_len + 1) =
18945 (scriptvar_T *)alloc_clear(sizeof(scriptvar_T));
Bram Moolenaar33570922005-01-25 22:26:29 +000018946 init_var_dict(&sv->sv_dict, &sv->sv_var);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018947 ++ga_scripts.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018948 }
18949 }
18950}
18951
18952/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018953 * Initialize dictionary "dict" as a scope and set variable "dict_var" to
18954 * point to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018955 */
18956 void
Bram Moolenaar33570922005-01-25 22:26:29 +000018957init_var_dict(dict, dict_var)
18958 dict_T *dict;
18959 dictitem_T *dict_var;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018960{
Bram Moolenaar33570922005-01-25 22:26:29 +000018961 hash_init(&dict->dv_hashtab);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000018962 dict->dv_refcount = DO_NOT_FREE_CNT;
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +000018963 dict->dv_copyID = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000018964 dict_var->di_tv.vval.v_dict = dict;
18965 dict_var->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018966 dict_var->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000018967 dict_var->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
18968 dict_var->di_key[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018969}
18970
18971/*
18972 * Clean up a list of internal variables.
Bram Moolenaar33570922005-01-25 22:26:29 +000018973 * Frees all allocated variables and the value they contain.
18974 * Clears hashtab "ht", does not free it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018975 */
18976 void
Bram Moolenaara7043832005-01-21 11:56:39 +000018977vars_clear(ht)
Bram Moolenaar33570922005-01-25 22:26:29 +000018978 hashtab_T *ht;
18979{
18980 vars_clear_ext(ht, TRUE);
18981}
18982
18983/*
18984 * Like vars_clear(), but only free the value if "free_val" is TRUE.
18985 */
18986 static void
18987vars_clear_ext(ht, free_val)
18988 hashtab_T *ht;
18989 int free_val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018990{
Bram Moolenaara7043832005-01-21 11:56:39 +000018991 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000018992 hashitem_T *hi;
18993 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018994
Bram Moolenaar33570922005-01-25 22:26:29 +000018995 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018996 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +000018997 for (hi = ht->ht_array; todo > 0; ++hi)
18998 {
18999 if (!HASHITEM_EMPTY(hi))
19000 {
19001 --todo;
19002
Bram Moolenaar33570922005-01-25 22:26:29 +000019003 /* Free the variable. Don't remove it from the hashtab,
Bram Moolenaara7043832005-01-21 11:56:39 +000019004 * ht_array might change then. hash_clear() takes care of it
19005 * later. */
Bram Moolenaar33570922005-01-25 22:26:29 +000019006 v = HI2DI(hi);
19007 if (free_val)
19008 clear_tv(&v->di_tv);
19009 if ((v->di_flags & DI_FLAGS_FIX) == 0)
19010 vim_free(v);
Bram Moolenaara7043832005-01-21 11:56:39 +000019011 }
19012 }
19013 hash_clear(ht);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000019014 ht->ht_used = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019015}
19016
Bram Moolenaara7043832005-01-21 11:56:39 +000019017/*
Bram Moolenaar33570922005-01-25 22:26:29 +000019018 * Delete a variable from hashtab "ht" at item "hi".
19019 * Clear the variable value and free the dictitem.
Bram Moolenaara7043832005-01-21 11:56:39 +000019020 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019021 static void
Bram Moolenaara7043832005-01-21 11:56:39 +000019022delete_var(ht, hi)
Bram Moolenaar33570922005-01-25 22:26:29 +000019023 hashtab_T *ht;
19024 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019025{
Bram Moolenaar33570922005-01-25 22:26:29 +000019026 dictitem_T *di = HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000019027
19028 hash_remove(ht, hi);
Bram Moolenaar33570922005-01-25 22:26:29 +000019029 clear_tv(&di->di_tv);
19030 vim_free(di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019031}
19032
19033/*
19034 * List the value of one internal variable.
19035 */
19036 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019037list_one_var(v, prefix, first)
Bram Moolenaar33570922005-01-25 22:26:29 +000019038 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019039 char_u *prefix;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019040 int *first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019041{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019042 char_u *tofree;
19043 char_u *s;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019044 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019045
Bram Moolenaar2c2398c2009-06-03 11:22:45 +000019046 current_copyID += COPYID_INC;
19047 s = echo_string(&v->di_tv, &tofree, numbuf, current_copyID);
Bram Moolenaar33570922005-01-25 22:26:29 +000019048 list_one_var_a(prefix, v->di_key, v->di_tv.v_type,
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019049 s == NULL ? (char_u *)"" : s, first);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019050 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019051}
19052
Bram Moolenaar071d4272004-06-13 20:20:40 +000019053 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019054list_one_var_a(prefix, name, type, string, first)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019055 char_u *prefix;
19056 char_u *name;
19057 int type;
19058 char_u *string;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019059 int *first; /* when TRUE clear rest of screen and set to FALSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019060{
Bram Moolenaar31859182007-08-14 20:41:13 +000019061 /* don't use msg() or msg_attr() to avoid overwriting "v:statusmsg" */
19062 msg_start();
19063 msg_puts(prefix);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019064 if (name != NULL) /* "a:" vars don't have a name stored */
19065 msg_puts(name);
19066 msg_putchar(' ');
19067 msg_advance(22);
19068 if (type == VAR_NUMBER)
19069 msg_putchar('#');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019070 else if (type == VAR_FUNC)
19071 msg_putchar('*');
19072 else if (type == VAR_LIST)
19073 {
19074 msg_putchar('[');
19075 if (*string == '[')
19076 ++string;
19077 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000019078 else if (type == VAR_DICT)
19079 {
19080 msg_putchar('{');
19081 if (*string == '{')
19082 ++string;
19083 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019084 else
19085 msg_putchar(' ');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019086
Bram Moolenaar071d4272004-06-13 20:20:40 +000019087 msg_outtrans(string);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019088
19089 if (type == VAR_FUNC)
19090 msg_puts((char_u *)"()");
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019091 if (*first)
19092 {
19093 msg_clr_eos();
19094 *first = FALSE;
19095 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019096}
19097
19098/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019099 * Set variable "name" to value in "tv".
Bram Moolenaar071d4272004-06-13 20:20:40 +000019100 * If the variable already exists, the value is updated.
19101 * Otherwise the variable is created.
19102 */
19103 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019104set_var(name, tv, copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019105 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000019106 typval_T *tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019107 int copy; /* make copy of value in "tv" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019108{
Bram Moolenaar33570922005-01-25 22:26:29 +000019109 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019110 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000019111 hashtab_T *ht;
Bram Moolenaar92124a32005-06-17 22:03:40 +000019112 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019113
Bram Moolenaarbaff0fe2010-03-17 19:53:49 +010019114 ht = find_var_ht(name, &varname);
19115 if (ht == NULL || *varname == NUL)
19116 {
19117 EMSG2(_(e_illvar), name);
19118 return;
19119 }
19120 v = find_var_in_ht(ht, varname, TRUE);
19121
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019122 if (tv->v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019123 {
19124 if (!(vim_strchr((char_u *)"wbs", name[0]) != NULL && name[1] == ':')
19125 && !ASCII_ISUPPER((name[0] != NUL && name[1] == ':')
19126 ? name[2] : name[0]))
19127 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019128 EMSG2(_("E704: Funcref variable name must start with a capital: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019129 return;
19130 }
Bram Moolenaarbaff0fe2010-03-17 19:53:49 +010019131 /* Don't allow hiding a function. When "v" is not NULL we migth be
19132 * assigning another function to the same var, the type is checked
19133 * below. */
19134 if (v == NULL && function_exists(name))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019135 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000019136 EMSG2(_("E705: Variable name conflicts with existing function: %s"),
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019137 name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019138 return;
19139 }
19140 }
19141
Bram Moolenaar33570922005-01-25 22:26:29 +000019142 if (v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019143 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019144 /* existing variable, need to clear the value */
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019145 if (var_check_ro(v->di_flags, name)
19146 || tv_check_lock(v->di_tv.v_lock, name))
Bram Moolenaar33570922005-01-25 22:26:29 +000019147 return;
19148 if (v->di_tv.v_type != tv->v_type
19149 && !((v->di_tv.v_type == VAR_STRING
19150 || v->di_tv.v_type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019151 && (tv->v_type == VAR_STRING
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019152 || tv->v_type == VAR_NUMBER))
19153#ifdef FEAT_FLOAT
19154 && !((v->di_tv.v_type == VAR_NUMBER
19155 || v->di_tv.v_type == VAR_FLOAT)
19156 && (tv->v_type == VAR_NUMBER
19157 || tv->v_type == VAR_FLOAT))
19158#endif
19159 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019160 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019161 EMSG2(_("E706: Variable type mismatch for: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019162 return;
19163 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019164
19165 /*
Bram Moolenaar758711c2005-02-02 23:11:38 +000019166 * Handle setting internal v: variables separately: we don't change
19167 * the type.
Bram Moolenaar33570922005-01-25 22:26:29 +000019168 */
19169 if (ht == &vimvarht)
19170 {
19171 if (v->di_tv.v_type == VAR_STRING)
19172 {
19173 vim_free(v->di_tv.vval.v_string);
19174 if (copy || tv->v_type != VAR_STRING)
19175 v->di_tv.vval.v_string = vim_strsave(get_tv_string(tv));
19176 else
19177 {
19178 /* Take over the string to avoid an extra alloc/free. */
19179 v->di_tv.vval.v_string = tv->vval.v_string;
19180 tv->vval.v_string = NULL;
19181 }
19182 }
19183 else if (v->di_tv.v_type != VAR_NUMBER)
19184 EMSG2(_(e_intern2), "set_var()");
19185 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019186 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019187 v->di_tv.vval.v_number = get_tv_number(tv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019188 if (STRCMP(varname, "searchforward") == 0)
19189 set_search_direction(v->di_tv.vval.v_number ? '/' : '?');
19190 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019191 return;
19192 }
19193
19194 clear_tv(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019195 }
19196 else /* add a new variable */
19197 {
Bram Moolenaar5fcc3fe2006-06-22 15:35:14 +000019198 /* Can't add "v:" variable. */
19199 if (ht == &vimvarht)
19200 {
19201 EMSG2(_(e_illvar), name);
19202 return;
19203 }
19204
Bram Moolenaar92124a32005-06-17 22:03:40 +000019205 /* Make sure the variable name is valid. */
19206 for (p = varname; *p != NUL; ++p)
Bram Moolenaara5792f52005-11-23 21:25:05 +000019207 if (!eval_isnamec1(*p) && (p == varname || !VIM_ISDIGIT(*p))
19208 && *p != AUTOLOAD_CHAR)
Bram Moolenaar92124a32005-06-17 22:03:40 +000019209 {
19210 EMSG2(_(e_illvar), varname);
19211 return;
19212 }
19213
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019214 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
19215 + STRLEN(varname)));
Bram Moolenaara7043832005-01-21 11:56:39 +000019216 if (v == NULL)
19217 return;
Bram Moolenaar33570922005-01-25 22:26:29 +000019218 STRCPY(v->di_key, varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019219 if (hash_add(ht, DI2HIKEY(v)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019220 {
Bram Moolenaara7043832005-01-21 11:56:39 +000019221 vim_free(v);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019222 return;
19223 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019224 v->di_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019225 }
Bram Moolenaara7043832005-01-21 11:56:39 +000019226
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019227 if (copy || tv->v_type == VAR_NUMBER || tv->v_type == VAR_FLOAT)
Bram Moolenaar33570922005-01-25 22:26:29 +000019228 copy_tv(tv, &v->di_tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019229 else
19230 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019231 v->di_tv = *tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019232 v->di_tv.v_lock = 0;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019233 init_tv(tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019234 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019235}
19236
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019237/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019238 * Return TRUE if di_flags "flags" indicates variable "name" is read-only.
Bram Moolenaar33570922005-01-25 22:26:29 +000019239 * Also give an error message.
19240 */
19241 static int
19242var_check_ro(flags, name)
19243 int flags;
19244 char_u *name;
19245{
19246 if (flags & DI_FLAGS_RO)
19247 {
19248 EMSG2(_(e_readonlyvar), name);
19249 return TRUE;
19250 }
19251 if ((flags & DI_FLAGS_RO_SBX) && sandbox)
19252 {
19253 EMSG2(_(e_readonlysbx), name);
19254 return TRUE;
19255 }
19256 return FALSE;
19257}
19258
19259/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019260 * Return TRUE if di_flags "flags" indicates variable "name" is fixed.
19261 * Also give an error message.
19262 */
19263 static int
19264var_check_fixed(flags, name)
19265 int flags;
19266 char_u *name;
19267{
19268 if (flags & DI_FLAGS_FIX)
19269 {
19270 EMSG2(_("E795: Cannot delete variable %s"), name);
19271 return TRUE;
19272 }
19273 return FALSE;
19274}
19275
19276/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019277 * Return TRUE if typeval "tv" is set to be locked (immutable).
19278 * Also give an error message, using "name".
19279 */
19280 static int
19281tv_check_lock(lock, name)
19282 int lock;
19283 char_u *name;
19284{
19285 if (lock & VAR_LOCKED)
19286 {
19287 EMSG2(_("E741: Value is locked: %s"),
19288 name == NULL ? (char_u *)_("Unknown") : name);
19289 return TRUE;
19290 }
19291 if (lock & VAR_FIXED)
19292 {
19293 EMSG2(_("E742: Cannot change value of %s"),
19294 name == NULL ? (char_u *)_("Unknown") : name);
19295 return TRUE;
19296 }
19297 return FALSE;
19298}
19299
19300/*
Bram Moolenaar33570922005-01-25 22:26:29 +000019301 * Copy the values from typval_T "from" to typval_T "to".
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019302 * When needed allocates string or increases reference count.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019303 * Does not make a copy of a list or dict but copies the reference!
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000019304 * It is OK for "from" and "to" to point to the same item. This is used to
19305 * make a copy later.
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019306 */
Bram Moolenaar7e506b62010-01-19 15:55:06 +010019307 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019308copy_tv(from, to)
Bram Moolenaar33570922005-01-25 22:26:29 +000019309 typval_T *from;
19310 typval_T *to;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019311{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019312 to->v_type = from->v_type;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019313 to->v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019314 switch (from->v_type)
19315 {
19316 case VAR_NUMBER:
19317 to->vval.v_number = from->vval.v_number;
19318 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019319#ifdef FEAT_FLOAT
19320 case VAR_FLOAT:
19321 to->vval.v_float = from->vval.v_float;
19322 break;
19323#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019324 case VAR_STRING:
19325 case VAR_FUNC:
19326 if (from->vval.v_string == NULL)
19327 to->vval.v_string = NULL;
19328 else
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019329 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019330 to->vval.v_string = vim_strsave(from->vval.v_string);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019331 if (from->v_type == VAR_FUNC)
19332 func_ref(to->vval.v_string);
19333 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019334 break;
19335 case VAR_LIST:
19336 if (from->vval.v_list == NULL)
19337 to->vval.v_list = NULL;
19338 else
19339 {
19340 to->vval.v_list = from->vval.v_list;
19341 ++to->vval.v_list->lv_refcount;
19342 }
19343 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000019344 case VAR_DICT:
19345 if (from->vval.v_dict == NULL)
19346 to->vval.v_dict = NULL;
19347 else
19348 {
19349 to->vval.v_dict = from->vval.v_dict;
19350 ++to->vval.v_dict->dv_refcount;
19351 }
19352 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019353 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019354 EMSG2(_(e_intern2), "copy_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019355 break;
19356 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019357}
19358
19359/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000019360 * Make a copy of an item.
19361 * Lists and Dictionaries are also copied. A deep copy if "deep" is set.
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019362 * For deepcopy() "copyID" is zero for a full copy or the ID for when a
19363 * reference to an already copied list/dict can be used.
19364 * Returns FAIL or OK.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019365 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019366 static int
19367item_copy(from, to, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +000019368 typval_T *from;
19369 typval_T *to;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019370 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019371 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019372{
19373 static int recurse = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019374 int ret = OK;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019375
Bram Moolenaar33570922005-01-25 22:26:29 +000019376 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +000019377 {
19378 EMSG(_("E698: variable nested too deep for making a copy"));
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019379 return FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019380 }
19381 ++recurse;
19382
19383 switch (from->v_type)
19384 {
19385 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019386#ifdef FEAT_FLOAT
19387 case VAR_FLOAT:
19388#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000019389 case VAR_STRING:
19390 case VAR_FUNC:
19391 copy_tv(from, to);
19392 break;
19393 case VAR_LIST:
19394 to->v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019395 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019396 if (from->vval.v_list == NULL)
19397 to->vval.v_list = NULL;
19398 else if (copyID != 0 && from->vval.v_list->lv_copyID == copyID)
19399 {
19400 /* use the copy made earlier */
19401 to->vval.v_list = from->vval.v_list->lv_copylist;
19402 ++to->vval.v_list->lv_refcount;
19403 }
19404 else
19405 to->vval.v_list = list_copy(from->vval.v_list, deep, copyID);
19406 if (to->vval.v_list == NULL)
19407 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019408 break;
19409 case VAR_DICT:
19410 to->v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019411 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019412 if (from->vval.v_dict == NULL)
19413 to->vval.v_dict = NULL;
19414 else if (copyID != 0 && from->vval.v_dict->dv_copyID == copyID)
19415 {
19416 /* use the copy made earlier */
19417 to->vval.v_dict = from->vval.v_dict->dv_copydict;
19418 ++to->vval.v_dict->dv_refcount;
19419 }
19420 else
19421 to->vval.v_dict = dict_copy(from->vval.v_dict, deep, copyID);
19422 if (to->vval.v_dict == NULL)
19423 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019424 break;
19425 default:
19426 EMSG2(_(e_intern2), "item_copy()");
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019427 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019428 }
19429 --recurse;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019430 return ret;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019431}
19432
19433/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000019434 * ":echo expr1 ..." print each argument separated with a space, add a
19435 * newline at the end.
19436 * ":echon expr1 ..." print each argument plain.
19437 */
19438 void
19439ex_echo(eap)
19440 exarg_T *eap;
19441{
19442 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019443 typval_T rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019444 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019445 char_u *p;
19446 int needclr = TRUE;
19447 int atstart = TRUE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019448 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000019449
19450 if (eap->skip)
19451 ++emsg_skip;
19452 while (*arg != NUL && *arg != '|' && *arg != '\n' && !got_int)
19453 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019454 /* If eval1() causes an error message the text from the command may
19455 * still need to be cleared. E.g., "echo 22,44". */
19456 need_clr_eos = needclr;
19457
Bram Moolenaar071d4272004-06-13 20:20:40 +000019458 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019459 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019460 {
19461 /*
19462 * Report the invalid expression unless the expression evaluation
19463 * has been cancelled due to an aborting error, an interrupt, or an
19464 * exception.
19465 */
19466 if (!aborting())
19467 EMSG2(_(e_invexpr2), p);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019468 need_clr_eos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019469 break;
19470 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019471 need_clr_eos = FALSE;
19472
Bram Moolenaar071d4272004-06-13 20:20:40 +000019473 if (!eap->skip)
19474 {
19475 if (atstart)
19476 {
19477 atstart = FALSE;
19478 /* Call msg_start() after eval1(), evaluating the expression
19479 * may cause a message to appear. */
19480 if (eap->cmdidx == CMD_echo)
19481 msg_start();
19482 }
19483 else if (eap->cmdidx == CMD_echo)
19484 msg_puts_attr((char_u *)" ", echo_attr);
Bram Moolenaar2c2398c2009-06-03 11:22:45 +000019485 current_copyID += COPYID_INC;
19486 p = echo_string(&rettv, &tofree, numbuf, current_copyID);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019487 if (p != NULL)
19488 for ( ; *p != NUL && !got_int; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019489 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019490 if (*p == '\n' || *p == '\r' || *p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019491 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019492 if (*p != TAB && needclr)
19493 {
19494 /* remove any text still there from the command */
19495 msg_clr_eos();
19496 needclr = FALSE;
19497 }
19498 msg_putchar_attr(*p, echo_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019499 }
19500 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019501 {
19502#ifdef FEAT_MBYTE
19503 if (has_mbyte)
19504 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000019505 int i = (*mb_ptr2len)(p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019506
19507 (void)msg_outtrans_len_attr(p, i, echo_attr);
19508 p += i - 1;
19509 }
19510 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000019511#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019512 (void)msg_outtrans_len_attr(p, 1, echo_attr);
19513 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019514 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019515 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019516 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019517 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019518 arg = skipwhite(arg);
19519 }
19520 eap->nextcmd = check_nextcmd(arg);
19521
19522 if (eap->skip)
19523 --emsg_skip;
19524 else
19525 {
19526 /* remove text that may still be there from the command */
19527 if (needclr)
19528 msg_clr_eos();
19529 if (eap->cmdidx == CMD_echo)
19530 msg_end();
19531 }
19532}
19533
19534/*
19535 * ":echohl {name}".
19536 */
19537 void
19538ex_echohl(eap)
19539 exarg_T *eap;
19540{
19541 int id;
19542
19543 id = syn_name2id(eap->arg);
19544 if (id == 0)
19545 echo_attr = 0;
19546 else
19547 echo_attr = syn_id2attr(id);
19548}
19549
19550/*
19551 * ":execute expr1 ..." execute the result of an expression.
19552 * ":echomsg expr1 ..." Print a message
19553 * ":echoerr expr1 ..." Print an error
19554 * Each gets spaces around each argument and a newline at the end for
19555 * echo commands
19556 */
19557 void
19558ex_execute(eap)
19559 exarg_T *eap;
19560{
19561 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019562 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019563 int ret = OK;
19564 char_u *p;
19565 garray_T ga;
19566 int len;
19567 int save_did_emsg;
19568
19569 ga_init2(&ga, 1, 80);
19570
19571 if (eap->skip)
19572 ++emsg_skip;
19573 while (*arg != NUL && *arg != '|' && *arg != '\n')
19574 {
19575 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019576 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019577 {
19578 /*
19579 * Report the invalid expression unless the expression evaluation
19580 * has been cancelled due to an aborting error, an interrupt, or an
19581 * exception.
19582 */
19583 if (!aborting())
19584 EMSG2(_(e_invexpr2), p);
19585 ret = FAIL;
19586 break;
19587 }
19588
19589 if (!eap->skip)
19590 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019591 p = get_tv_string(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019592 len = (int)STRLEN(p);
19593 if (ga_grow(&ga, len + 2) == FAIL)
19594 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019595 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019596 ret = FAIL;
19597 break;
19598 }
19599 if (ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019600 ((char_u *)(ga.ga_data))[ga.ga_len++] = ' ';
Bram Moolenaar071d4272004-06-13 20:20:40 +000019601 STRCPY((char_u *)(ga.ga_data) + ga.ga_len, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019602 ga.ga_len += len;
19603 }
19604
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019605 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019606 arg = skipwhite(arg);
19607 }
19608
19609 if (ret != FAIL && ga.ga_data != NULL)
19610 {
19611 if (eap->cmdidx == CMD_echomsg)
Bram Moolenaar4770d092006-01-12 23:22:24 +000019612 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000019613 MSG_ATTR(ga.ga_data, echo_attr);
Bram Moolenaar4770d092006-01-12 23:22:24 +000019614 out_flush();
19615 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019616 else if (eap->cmdidx == CMD_echoerr)
19617 {
19618 /* We don't want to abort following commands, restore did_emsg. */
19619 save_did_emsg = did_emsg;
19620 EMSG((char_u *)ga.ga_data);
19621 if (!force_abort)
19622 did_emsg = save_did_emsg;
19623 }
19624 else if (eap->cmdidx == CMD_execute)
19625 do_cmdline((char_u *)ga.ga_data,
19626 eap->getline, eap->cookie, DOCMD_NOWAIT|DOCMD_VERBOSE);
19627 }
19628
19629 ga_clear(&ga);
19630
19631 if (eap->skip)
19632 --emsg_skip;
19633
19634 eap->nextcmd = check_nextcmd(arg);
19635}
19636
19637/*
19638 * Skip over the name of an option: "&option", "&g:option" or "&l:option".
19639 * "arg" points to the "&" or '+' when called, to "option" when returning.
19640 * Returns NULL when no option name found. Otherwise pointer to the char
19641 * after the option name.
19642 */
19643 static char_u *
19644find_option_end(arg, opt_flags)
19645 char_u **arg;
19646 int *opt_flags;
19647{
19648 char_u *p = *arg;
19649
19650 ++p;
19651 if (*p == 'g' && p[1] == ':')
19652 {
19653 *opt_flags = OPT_GLOBAL;
19654 p += 2;
19655 }
19656 else if (*p == 'l' && p[1] == ':')
19657 {
19658 *opt_flags = OPT_LOCAL;
19659 p += 2;
19660 }
19661 else
19662 *opt_flags = 0;
19663
19664 if (!ASCII_ISALPHA(*p))
19665 return NULL;
19666 *arg = p;
19667
19668 if (p[0] == 't' && p[1] == '_' && p[2] != NUL && p[3] != NUL)
19669 p += 4; /* termcap option */
19670 else
19671 while (ASCII_ISALPHA(*p))
19672 ++p;
19673 return p;
19674}
19675
19676/*
19677 * ":function"
19678 */
19679 void
19680ex_function(eap)
19681 exarg_T *eap;
19682{
19683 char_u *theline;
19684 int j;
19685 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019686 int saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019687 char_u *name = NULL;
19688 char_u *p;
19689 char_u *arg;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019690 char_u *line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019691 garray_T newargs;
19692 garray_T newlines;
19693 int varargs = FALSE;
19694 int mustend = FALSE;
19695 int flags = 0;
19696 ufunc_T *fp;
19697 int indent;
19698 int nesting;
19699 char_u *skip_until = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000019700 dictitem_T *v;
19701 funcdict_T fudi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019702 static int func_nr = 0; /* number for nameless function */
19703 int paren;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019704 hashtab_T *ht;
19705 int todo;
19706 hashitem_T *hi;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019707 int sourcing_lnum_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019708
19709 /*
19710 * ":function" without argument: list functions.
19711 */
19712 if (ends_excmd(*eap->arg))
19713 {
19714 if (!eap->skip)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019715 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019716 todo = (int)func_hashtab.ht_used;
Bram Moolenaar038eb0e2005-02-27 22:43:26 +000019717 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019718 {
19719 if (!HASHITEM_EMPTY(hi))
19720 {
19721 --todo;
19722 fp = HI2UF(hi);
19723 if (!isdigit(*fp->uf_name))
19724 list_func_head(fp, FALSE);
19725 }
19726 }
19727 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019728 eap->nextcmd = check_nextcmd(eap->arg);
19729 return;
19730 }
19731
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019732 /*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019733 * ":function /pat": list functions matching pattern.
19734 */
19735 if (*eap->arg == '/')
19736 {
19737 p = skip_regexp(eap->arg + 1, '/', TRUE, NULL);
19738 if (!eap->skip)
19739 {
19740 regmatch_T regmatch;
19741
19742 c = *p;
19743 *p = NUL;
19744 regmatch.regprog = vim_regcomp(eap->arg + 1, RE_MAGIC);
19745 *p = c;
19746 if (regmatch.regprog != NULL)
19747 {
19748 regmatch.rm_ic = p_ic;
19749
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019750 todo = (int)func_hashtab.ht_used;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019751 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
19752 {
19753 if (!HASHITEM_EMPTY(hi))
19754 {
19755 --todo;
19756 fp = HI2UF(hi);
19757 if (!isdigit(*fp->uf_name)
19758 && vim_regexec(&regmatch, fp->uf_name, 0))
19759 list_func_head(fp, FALSE);
19760 }
19761 }
Bram Moolenaar69f2d5a2009-04-22 14:10:39 +000019762 vim_free(regmatch.regprog);
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019763 }
19764 }
19765 if (*p == '/')
19766 ++p;
19767 eap->nextcmd = check_nextcmd(p);
19768 return;
19769 }
19770
19771 /*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019772 * Get the function name. There are these situations:
19773 * func normal function name
19774 * "name" == func, "fudi.fd_dict" == NULL
19775 * dict.func new dictionary entry
19776 * "name" == NULL, "fudi.fd_dict" set,
19777 * "fudi.fd_di" == NULL, "fudi.fd_newkey" == func
19778 * dict.func existing dict entry with a Funcref
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019779 * "name" == func, "fudi.fd_dict" set,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019780 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19781 * dict.func existing dict entry that's not a Funcref
19782 * "name" == NULL, "fudi.fd_dict" set,
19783 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19784 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019785 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019786 name = trans_function_name(&p, eap->skip, 0, &fudi);
19787 paren = (vim_strchr(p, '(') != NULL);
19788 if (name == NULL && (fudi.fd_dict == NULL || !paren) && !eap->skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019789 {
19790 /*
19791 * Return on an invalid expression in braces, unless the expression
19792 * evaluation has been cancelled due to an aborting error, an
19793 * interrupt, or an exception.
19794 */
19795 if (!aborting())
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019796 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000019797 if (!eap->skip && fudi.fd_newkey != NULL)
19798 EMSG2(_(e_dictkey), fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019799 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019800 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019801 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019802 else
19803 eap->skip = TRUE;
19804 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000019805
Bram Moolenaar071d4272004-06-13 20:20:40 +000019806 /* An error in a function call during evaluation of an expression in magic
19807 * braces should not cause the function not to be defined. */
19808 saved_did_emsg = did_emsg;
19809 did_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019810
19811 /*
19812 * ":function func" with only function name: list function.
19813 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019814 if (!paren)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019815 {
19816 if (!ends_excmd(*skipwhite(p)))
19817 {
19818 EMSG(_(e_trailing));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019819 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019820 }
19821 eap->nextcmd = check_nextcmd(p);
19822 if (eap->nextcmd != NULL)
19823 *p = NUL;
19824 if (!eap->skip && !got_int)
19825 {
19826 fp = find_func(name);
19827 if (fp != NULL)
19828 {
19829 list_func_head(fp, TRUE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019830 for (j = 0; j < fp->uf_lines.ga_len && !got_int; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019831 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019832 if (FUNCLINE(fp, j) == NULL)
19833 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019834 msg_putchar('\n');
19835 msg_outnum((long)(j + 1));
19836 if (j < 9)
19837 msg_putchar(' ');
19838 if (j < 99)
19839 msg_putchar(' ');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019840 msg_prt_line(FUNCLINE(fp, j), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019841 out_flush(); /* show a line at a time */
19842 ui_breakcheck();
19843 }
19844 if (!got_int)
19845 {
19846 msg_putchar('\n');
19847 msg_puts((char_u *)" endfunction");
19848 }
19849 }
19850 else
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +000019851 emsg_funcname(N_("E123: Undefined function: %s"), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019852 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019853 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019854 }
19855
19856 /*
19857 * ":function name(arg1, arg2)" Define function.
19858 */
19859 p = skipwhite(p);
19860 if (*p != '(')
19861 {
19862 if (!eap->skip)
19863 {
19864 EMSG2(_("E124: Missing '(': %s"), eap->arg);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019865 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019866 }
19867 /* attempt to continue by skipping some text */
19868 if (vim_strchr(p, '(') != NULL)
19869 p = vim_strchr(p, '(');
19870 }
19871 p = skipwhite(p + 1);
19872
19873 ga_init2(&newargs, (int)sizeof(char_u *), 3);
19874 ga_init2(&newlines, (int)sizeof(char_u *), 3);
19875
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019876 if (!eap->skip)
19877 {
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019878 /* Check the name of the function. Unless it's a dictionary function
19879 * (that we are overwriting). */
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019880 if (name != NULL)
19881 arg = name;
19882 else
19883 arg = fudi.fd_newkey;
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019884 if (arg != NULL && (fudi.fd_di == NULL
19885 || fudi.fd_di->di_tv.v_type != VAR_FUNC))
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019886 {
19887 if (*arg == K_SPECIAL)
19888 j = 3;
19889 else
19890 j = 0;
19891 while (arg[j] != NUL && (j == 0 ? eval_isnamec1(arg[j])
19892 : eval_isnamec(arg[j])))
19893 ++j;
19894 if (arg[j] != NUL)
Bram Moolenaarb67cc162009-02-04 15:27:06 +000019895 emsg_funcname((char *)e_invarg2, arg);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019896 }
19897 }
19898
Bram Moolenaar071d4272004-06-13 20:20:40 +000019899 /*
19900 * Isolate the arguments: "arg1, arg2, ...)"
19901 */
19902 while (*p != ')')
19903 {
19904 if (p[0] == '.' && p[1] == '.' && p[2] == '.')
19905 {
19906 varargs = TRUE;
19907 p += 3;
19908 mustend = TRUE;
19909 }
19910 else
19911 {
19912 arg = p;
19913 while (ASCII_ISALNUM(*p) || *p == '_')
19914 ++p;
19915 if (arg == p || isdigit(*arg)
19916 || (p - arg == 9 && STRNCMP(arg, "firstline", 9) == 0)
19917 || (p - arg == 8 && STRNCMP(arg, "lastline", 8) == 0))
19918 {
19919 if (!eap->skip)
19920 EMSG2(_("E125: Illegal argument: %s"), arg);
19921 break;
19922 }
19923 if (ga_grow(&newargs, 1) == FAIL)
19924 goto erret;
19925 c = *p;
19926 *p = NUL;
19927 arg = vim_strsave(arg);
19928 if (arg == NULL)
19929 goto erret;
19930 ((char_u **)(newargs.ga_data))[newargs.ga_len] = arg;
19931 *p = c;
19932 newargs.ga_len++;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019933 if (*p == ',')
19934 ++p;
19935 else
19936 mustend = TRUE;
19937 }
19938 p = skipwhite(p);
19939 if (mustend && *p != ')')
19940 {
19941 if (!eap->skip)
19942 EMSG2(_(e_invarg2), eap->arg);
19943 break;
19944 }
19945 }
19946 ++p; /* skip the ')' */
19947
Bram Moolenaare9a41262005-01-15 22:18:47 +000019948 /* find extra arguments "range", "dict" and "abort" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019949 for (;;)
19950 {
19951 p = skipwhite(p);
19952 if (STRNCMP(p, "range", 5) == 0)
19953 {
19954 flags |= FC_RANGE;
19955 p += 5;
19956 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000019957 else if (STRNCMP(p, "dict", 4) == 0)
19958 {
19959 flags |= FC_DICT;
19960 p += 4;
19961 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019962 else if (STRNCMP(p, "abort", 5) == 0)
19963 {
19964 flags |= FC_ABORT;
19965 p += 5;
19966 }
19967 else
19968 break;
19969 }
19970
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019971 /* When there is a line break use what follows for the function body.
19972 * Makes 'exe "func Test()\n...\nendfunc"' work. */
19973 if (*p == '\n')
19974 line_arg = p + 1;
19975 else if (*p != NUL && *p != '"' && !eap->skip && !did_emsg)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019976 EMSG(_(e_trailing));
19977
19978 /*
19979 * Read the body of the function, until ":endfunction" is found.
19980 */
19981 if (KeyTyped)
19982 {
19983 /* Check if the function already exists, don't let the user type the
19984 * whole function before telling him it doesn't work! For a script we
19985 * need to skip the body to be able to find what follows. */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019986 if (!eap->skip && !eap->forceit)
19987 {
19988 if (fudi.fd_dict != NULL && fudi.fd_newkey == NULL)
19989 EMSG(_(e_funcdict));
19990 else if (name != NULL && find_func(name) != NULL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019991 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019992 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019993
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019994 if (!eap->skip && did_emsg)
19995 goto erret;
19996
Bram Moolenaar071d4272004-06-13 20:20:40 +000019997 msg_putchar('\n'); /* don't overwrite the function name */
19998 cmdline_row = msg_row;
19999 }
20000
20001 indent = 2;
20002 nesting = 0;
20003 for (;;)
20004 {
20005 msg_scroll = TRUE;
20006 need_wait_return = FALSE;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020007 sourcing_lnum_off = sourcing_lnum;
20008
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020009 if (line_arg != NULL)
20010 {
20011 /* Use eap->arg, split up in parts by line breaks. */
20012 theline = line_arg;
20013 p = vim_strchr(theline, '\n');
20014 if (p == NULL)
20015 line_arg += STRLEN(line_arg);
20016 else
20017 {
20018 *p = NUL;
20019 line_arg = p + 1;
20020 }
20021 }
20022 else if (eap->getline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020023 theline = getcmdline(':', 0L, indent);
20024 else
20025 theline = eap->getline(':', eap->cookie, indent);
20026 if (KeyTyped)
20027 lines_left = Rows - 1;
20028 if (theline == NULL)
20029 {
20030 EMSG(_("E126: Missing :endfunction"));
20031 goto erret;
20032 }
20033
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020034 /* Detect line continuation: sourcing_lnum increased more than one. */
20035 if (sourcing_lnum > sourcing_lnum_off + 1)
20036 sourcing_lnum_off = sourcing_lnum - sourcing_lnum_off - 1;
20037 else
20038 sourcing_lnum_off = 0;
20039
Bram Moolenaar071d4272004-06-13 20:20:40 +000020040 if (skip_until != NULL)
20041 {
20042 /* between ":append" and "." and between ":python <<EOF" and "EOF"
20043 * don't check for ":endfunc". */
20044 if (STRCMP(theline, skip_until) == 0)
20045 {
20046 vim_free(skip_until);
20047 skip_until = NULL;
20048 }
20049 }
20050 else
20051 {
20052 /* skip ':' and blanks*/
20053 for (p = theline; vim_iswhite(*p) || *p == ':'; ++p)
20054 ;
20055
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020056 /* Check for "endfunction". */
20057 if (checkforcmd(&p, "endfunction", 4) && nesting-- == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020058 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020059 if (line_arg == NULL)
20060 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020061 break;
20062 }
20063
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020064 /* Increase indent inside "if", "while", "for" and "try", decrease
Bram Moolenaar071d4272004-06-13 20:20:40 +000020065 * at "end". */
20066 if (indent > 2 && STRNCMP(p, "end", 3) == 0)
20067 indent -= 2;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020068 else if (STRNCMP(p, "if", 2) == 0
20069 || STRNCMP(p, "wh", 2) == 0
20070 || STRNCMP(p, "for", 3) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000020071 || STRNCMP(p, "try", 3) == 0)
20072 indent += 2;
20073
20074 /* Check for defining a function inside this function. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020075 if (checkforcmd(&p, "function", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020076 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020077 if (*p == '!')
20078 p = skipwhite(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020079 p += eval_fname_script(p);
20080 if (ASCII_ISALPHA(*p))
20081 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020082 vim_free(trans_function_name(&p, TRUE, 0, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020083 if (*skipwhite(p) == '(')
20084 {
20085 ++nesting;
20086 indent += 2;
20087 }
20088 }
20089 }
20090
20091 /* Check for ":append" or ":insert". */
20092 p = skip_range(p, NULL);
20093 if ((p[0] == 'a' && (!ASCII_ISALPHA(p[1]) || p[1] == 'p'))
20094 || (p[0] == 'i'
20095 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'n'
20096 && (!ASCII_ISALPHA(p[2]) || (p[2] == 's'))))))
20097 skip_until = vim_strsave((char_u *)".");
20098
20099 /* Check for ":python <<EOF", ":tcl <<EOF", etc. */
20100 arg = skipwhite(skiptowhite(p));
20101 if (arg[0] == '<' && arg[1] =='<'
20102 && ((p[0] == 'p' && p[1] == 'y'
20103 && (!ASCII_ISALPHA(p[2]) || p[2] == 't'))
20104 || (p[0] == 'p' && p[1] == 'e'
20105 && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
20106 || (p[0] == 't' && p[1] == 'c'
20107 && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
20108 || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
20109 && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
Bram Moolenaar325b7a22004-07-05 15:58:32 +000020110 || (p[0] == 'm' && p[1] == 'z'
20111 && (!ASCII_ISALPHA(p[2]) || p[2] == 's'))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020112 ))
20113 {
20114 /* ":python <<" continues until a dot, like ":append" */
20115 p = skipwhite(arg + 2);
20116 if (*p == NUL)
20117 skip_until = vim_strsave((char_u *)".");
20118 else
20119 skip_until = vim_strsave(p);
20120 }
20121 }
20122
20123 /* Add the line to the function. */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020124 if (ga_grow(&newlines, 1 + sourcing_lnum_off) == FAIL)
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020125 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020126 if (line_arg == NULL)
20127 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020128 goto erret;
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020129 }
20130
20131 /* Copy the line to newly allocated memory. get_one_sourceline()
20132 * allocates 250 bytes per line, this saves 80% on average. The cost
20133 * is an extra alloc/free. */
20134 p = vim_strsave(theline);
20135 if (p != NULL)
20136 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020137 if (line_arg == NULL)
20138 vim_free(theline);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020139 theline = p;
20140 }
20141
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020142 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = theline;
20143
20144 /* Add NULL lines for continuation lines, so that the line count is
20145 * equal to the index in the growarray. */
20146 while (sourcing_lnum_off-- > 0)
20147 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = NULL;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020148
20149 /* Check for end of eap->arg. */
20150 if (line_arg != NULL && *line_arg == NUL)
20151 line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020152 }
20153
20154 /* Don't define the function when skipping commands or when an error was
20155 * detected. */
20156 if (eap->skip || did_emsg)
20157 goto erret;
20158
20159 /*
20160 * If there are no errors, add the function
20161 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020162 if (fudi.fd_dict == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020163 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020164 v = find_var(name, &ht);
Bram Moolenaar33570922005-01-25 22:26:29 +000020165 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020166 {
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +000020167 emsg_funcname(N_("E707: Function name conflicts with variable: %s"),
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020168 name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020169 goto erret;
20170 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020171
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020172 fp = find_func(name);
20173 if (fp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020174 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020175 if (!eap->forceit)
20176 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020177 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020178 goto erret;
20179 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020180 if (fp->uf_calls > 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020181 {
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +000020182 emsg_funcname(N_("E127: Cannot redefine function %s: It is in use"),
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020183 name);
20184 goto erret;
20185 }
20186 /* redefine existing function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020187 ga_clear_strings(&(fp->uf_args));
20188 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020189 vim_free(name);
20190 name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020191 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020192 }
20193 else
20194 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020195 char numbuf[20];
20196
20197 fp = NULL;
20198 if (fudi.fd_newkey == NULL && !eap->forceit)
20199 {
20200 EMSG(_(e_funcdict));
20201 goto erret;
20202 }
Bram Moolenaar758711c2005-02-02 23:11:38 +000020203 if (fudi.fd_di == NULL)
20204 {
20205 /* Can't add a function to a locked dictionary */
20206 if (tv_check_lock(fudi.fd_dict->dv_lock, eap->arg))
20207 goto erret;
20208 }
20209 /* Can't change an existing function if it is locked */
20210 else if (tv_check_lock(fudi.fd_di->di_tv.v_lock, eap->arg))
20211 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020212
20213 /* Give the function a sequential number. Can only be used with a
20214 * Funcref! */
20215 vim_free(name);
20216 sprintf(numbuf, "%d", ++func_nr);
20217 name = vim_strsave((char_u *)numbuf);
20218 if (name == NULL)
20219 goto erret;
20220 }
20221
20222 if (fp == NULL)
20223 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020224 if (fudi.fd_dict == NULL && vim_strchr(name, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020225 {
20226 int slen, plen;
20227 char_u *scriptname;
20228
20229 /* Check that the autoload name matches the script name. */
20230 j = FAIL;
20231 if (sourcing_name != NULL)
20232 {
20233 scriptname = autoload_name(name);
20234 if (scriptname != NULL)
20235 {
20236 p = vim_strchr(scriptname, '/');
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020237 plen = (int)STRLEN(p);
20238 slen = (int)STRLEN(sourcing_name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020239 if (slen > plen && fnamecmp(p,
20240 sourcing_name + slen - plen) == 0)
20241 j = OK;
20242 vim_free(scriptname);
20243 }
20244 }
20245 if (j == FAIL)
20246 {
20247 EMSG2(_("E746: Function name does not match script file name: %s"), name);
20248 goto erret;
20249 }
20250 }
20251
20252 fp = (ufunc_T *)alloc((unsigned)(sizeof(ufunc_T) + STRLEN(name)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020253 if (fp == NULL)
20254 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020255
20256 if (fudi.fd_dict != NULL)
20257 {
20258 if (fudi.fd_di == NULL)
20259 {
20260 /* add new dict entry */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020261 fudi.fd_di = dictitem_alloc(fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020262 if (fudi.fd_di == NULL)
20263 {
20264 vim_free(fp);
20265 goto erret;
20266 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020267 if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
20268 {
20269 vim_free(fudi.fd_di);
Bram Moolenaar0a5fd8b2006-08-16 20:02:22 +000020270 vim_free(fp);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020271 goto erret;
20272 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020273 }
20274 else
20275 /* overwrite existing dict entry */
20276 clear_tv(&fudi.fd_di->di_tv);
20277 fudi.fd_di->di_tv.v_type = VAR_FUNC;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000020278 fudi.fd_di->di_tv.v_lock = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020279 fudi.fd_di->di_tv.vval.v_string = vim_strsave(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020280 fp->uf_refcount = 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000020281
20282 /* behave like "dict" was used */
20283 flags |= FC_DICT;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020284 }
20285
Bram Moolenaar071d4272004-06-13 20:20:40 +000020286 /* insert the new function in the function list */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020287 STRCPY(fp->uf_name, name);
20288 hash_add(&func_hashtab, UF2HIKEY(fp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020289 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020290 fp->uf_args = newargs;
20291 fp->uf_lines = newlines;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020292#ifdef FEAT_PROFILE
20293 fp->uf_tml_count = NULL;
20294 fp->uf_tml_total = NULL;
20295 fp->uf_tml_self = NULL;
20296 fp->uf_profiling = FALSE;
20297 if (prof_def_func())
20298 func_do_profile(fp);
20299#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020300 fp->uf_varargs = varargs;
20301 fp->uf_flags = flags;
20302 fp->uf_calls = 0;
20303 fp->uf_script_ID = current_SID;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020304 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020305
20306erret:
Bram Moolenaar071d4272004-06-13 20:20:40 +000020307 ga_clear_strings(&newargs);
20308 ga_clear_strings(&newlines);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020309ret_free:
20310 vim_free(skip_until);
20311 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020312 vim_free(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020313 did_emsg |= saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020314}
20315
20316/*
20317 * Get a function name, translating "<SID>" and "<SNR>".
Bram Moolenaara7043832005-01-21 11:56:39 +000020318 * Also handles a Funcref in a List or Dictionary.
Bram Moolenaar071d4272004-06-13 20:20:40 +000020319 * Returns the function name in allocated memory, or NULL for failure.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020320 * flags:
20321 * TFN_INT: internal function name OK
20322 * TFN_QUIET: be quiet
Bram Moolenaar071d4272004-06-13 20:20:40 +000020323 * Advances "pp" to just after the function name (if no error).
20324 */
20325 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020326trans_function_name(pp, skip, flags, fdp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020327 char_u **pp;
20328 int skip; /* only find the end, don't evaluate */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020329 int flags;
Bram Moolenaar33570922005-01-25 22:26:29 +000020330 funcdict_T *fdp; /* return: info about dictionary used */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020331{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020332 char_u *name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020333 char_u *start;
20334 char_u *end;
20335 int lead;
20336 char_u sid_buf[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +000020337 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +000020338 lval_T lv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020339
20340 if (fdp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000020341 vim_memset(fdp, 0, sizeof(funcdict_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020342 start = *pp;
Bram Moolenaara7043832005-01-21 11:56:39 +000020343
20344 /* Check for hard coded <SNR>: already translated function ID (from a user
20345 * command). */
20346 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA
20347 && (*pp)[2] == (int)KE_SNR)
20348 {
20349 *pp += 3;
20350 len = get_id_len(pp) + 3;
20351 return vim_strnsave(start, len);
20352 }
20353
20354 /* A name starting with "<SID>" or "<SNR>" is local to a script. But
20355 * don't skip over "s:", get_lval() needs it for "s:dict.func". */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020356 lead = eval_fname_script(start);
Bram Moolenaara7043832005-01-21 11:56:39 +000020357 if (lead > 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020358 start += lead;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020359
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020360 end = get_lval(start, NULL, &lv, FALSE, skip, flags & TFN_QUIET,
20361 lead > 2 ? 0 : FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020362 if (end == start)
20363 {
20364 if (!skip)
20365 EMSG(_("E129: Function name required"));
20366 goto theend;
20367 }
Bram Moolenaara7043832005-01-21 11:56:39 +000020368 if (end == NULL || (lv.ll_tv != NULL && (lead > 2 || lv.ll_range)))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020369 {
20370 /*
20371 * Report an invalid expression in braces, unless the expression
20372 * evaluation has been cancelled due to an aborting error, an
20373 * interrupt, or an exception.
20374 */
20375 if (!aborting())
20376 {
20377 if (end != NULL)
20378 EMSG2(_(e_invarg2), start);
20379 }
20380 else
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020381 *pp = find_name_end(start, NULL, NULL, FNE_INCL_BR);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020382 goto theend;
20383 }
20384
20385 if (lv.ll_tv != NULL)
20386 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020387 if (fdp != NULL)
20388 {
20389 fdp->fd_dict = lv.ll_dict;
20390 fdp->fd_newkey = lv.ll_newkey;
20391 lv.ll_newkey = NULL;
20392 fdp->fd_di = lv.ll_di;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020393 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020394 if (lv.ll_tv->v_type == VAR_FUNC && lv.ll_tv->vval.v_string != NULL)
20395 {
20396 name = vim_strsave(lv.ll_tv->vval.v_string);
20397 *pp = end;
20398 }
20399 else
20400 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020401 if (!skip && !(flags & TFN_QUIET) && (fdp == NULL
20402 || lv.ll_dict == NULL || fdp->fd_newkey == NULL))
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020403 EMSG(_(e_funcref));
20404 else
20405 *pp = end;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020406 name = NULL;
20407 }
20408 goto theend;
20409 }
20410
20411 if (lv.ll_name == NULL)
20412 {
20413 /* Error found, but continue after the function name. */
20414 *pp = end;
20415 goto theend;
20416 }
20417
Bram Moolenaar33e1a802007-09-06 12:26:44 +000020418 /* Check if the name is a Funcref. If so, use the value. */
20419 if (lv.ll_exp_name != NULL)
20420 {
20421 len = (int)STRLEN(lv.ll_exp_name);
20422 name = deref_func_name(lv.ll_exp_name, &len);
20423 if (name == lv.ll_exp_name)
20424 name = NULL;
20425 }
20426 else
20427 {
20428 len = (int)(end - *pp);
20429 name = deref_func_name(*pp, &len);
20430 if (name == *pp)
20431 name = NULL;
20432 }
20433 if (name != NULL)
20434 {
20435 name = vim_strsave(name);
20436 *pp = end;
20437 goto theend;
20438 }
20439
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020440 if (lv.ll_exp_name != NULL)
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020441 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020442 len = (int)STRLEN(lv.ll_exp_name);
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020443 if (lead <= 2 && lv.ll_name == lv.ll_exp_name
20444 && STRNCMP(lv.ll_name, "s:", 2) == 0)
20445 {
20446 /* When there was "s:" already or the name expanded to get a
20447 * leading "s:" then remove it. */
20448 lv.ll_name += 2;
20449 len -= 2;
20450 lead = 2;
20451 }
20452 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020453 else
Bram Moolenaara7043832005-01-21 11:56:39 +000020454 {
20455 if (lead == 2) /* skip over "s:" */
20456 lv.ll_name += 2;
20457 len = (int)(end - lv.ll_name);
20458 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020459
20460 /*
20461 * Copy the function name to allocated memory.
20462 * Accept <SID>name() inside a script, translate into <SNR>123_name().
20463 * Accept <SNR>123_name() outside a script.
20464 */
20465 if (skip)
20466 lead = 0; /* do nothing */
20467 else if (lead > 0)
20468 {
20469 lead = 3;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000020470 if ((lv.ll_exp_name != NULL && eval_fname_sid(lv.ll_exp_name))
20471 || eval_fname_sid(*pp))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020472 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +000020473 /* It's "s:" or "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020474 if (current_SID <= 0)
20475 {
20476 EMSG(_(e_usingsid));
20477 goto theend;
20478 }
20479 sprintf((char *)sid_buf, "%ld_", (long)current_SID);
20480 lead += (int)STRLEN(sid_buf);
20481 }
20482 }
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020483 else if (!(flags & TFN_INT) && builtin_function(lv.ll_name))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020484 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020485 EMSG2(_("E128: Function name must start with a capital or contain a colon: %s"), lv.ll_name);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020486 goto theend;
20487 }
20488 name = alloc((unsigned)(len + lead + 1));
20489 if (name != NULL)
20490 {
20491 if (lead > 0)
20492 {
20493 name[0] = K_SPECIAL;
20494 name[1] = KS_EXTRA;
20495 name[2] = (int)KE_SNR;
Bram Moolenaara7043832005-01-21 11:56:39 +000020496 if (lead > 3) /* If it's "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020497 STRCPY(name + 3, sid_buf);
20498 }
20499 mch_memmove(name + lead, lv.ll_name, (size_t)len);
20500 name[len + lead] = NUL;
20501 }
20502 *pp = end;
20503
20504theend:
20505 clear_lval(&lv);
20506 return name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020507}
20508
20509/*
20510 * Return 5 if "p" starts with "<SID>" or "<SNR>" (ignoring case).
20511 * Return 2 if "p" starts with "s:".
20512 * Return 0 otherwise.
20513 */
20514 static int
20515eval_fname_script(p)
20516 char_u *p;
20517{
20518 if (p[0] == '<' && (STRNICMP(p + 1, "SID>", 4) == 0
20519 || STRNICMP(p + 1, "SNR>", 4) == 0))
20520 return 5;
20521 if (p[0] == 's' && p[1] == ':')
20522 return 2;
20523 return 0;
20524}
20525
20526/*
20527 * Return TRUE if "p" starts with "<SID>" or "s:".
20528 * Only works if eval_fname_script() returned non-zero for "p"!
20529 */
20530 static int
20531eval_fname_sid(p)
20532 char_u *p;
20533{
20534 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I');
20535}
20536
20537/*
20538 * List the head of the function: "name(arg1, arg2)".
20539 */
20540 static void
20541list_func_head(fp, indent)
20542 ufunc_T *fp;
20543 int indent;
20544{
20545 int j;
20546
20547 msg_start();
20548 if (indent)
20549 MSG_PUTS(" ");
20550 MSG_PUTS("function ");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020551 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020552 {
20553 MSG_PUTS_ATTR("<SNR>", hl_attr(HLF_8));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020554 msg_puts(fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020555 }
20556 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020557 msg_puts(fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020558 msg_putchar('(');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020559 for (j = 0; j < fp->uf_args.ga_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020560 {
20561 if (j)
20562 MSG_PUTS(", ");
20563 msg_puts(FUNCARG(fp, j));
20564 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020565 if (fp->uf_varargs)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020566 {
20567 if (j)
20568 MSG_PUTS(", ");
20569 MSG_PUTS("...");
20570 }
20571 msg_putchar(')');
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000020572 msg_clr_eos();
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000020573 if (p_verbose > 0)
20574 last_set_msg(fp->uf_script_ID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020575}
20576
20577/*
20578 * Find a function by name, return pointer to it in ufuncs.
20579 * Return NULL for unknown function.
20580 */
20581 static ufunc_T *
20582find_func(name)
20583 char_u *name;
20584{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020585 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020586
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020587 hi = hash_find(&func_hashtab, name);
20588 if (!HASHITEM_EMPTY(hi))
20589 return HI2UF(hi);
20590 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020591}
20592
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020593#if defined(EXITFREE) || defined(PROTO)
20594 void
20595free_all_functions()
20596{
20597 hashitem_T *hi;
20598
20599 /* Need to start all over every time, because func_free() may change the
20600 * hash table. */
20601 while (func_hashtab.ht_used > 0)
20602 for (hi = func_hashtab.ht_array; ; ++hi)
20603 if (!HASHITEM_EMPTY(hi))
20604 {
20605 func_free(HI2UF(hi));
20606 break;
20607 }
20608}
20609#endif
20610
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020611/*
20612 * Return TRUE if a function "name" exists.
20613 */
20614 static int
20615function_exists(name)
20616 char_u *name;
20617{
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020618 char_u *nm = name;
20619 char_u *p;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020620 int n = FALSE;
20621
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020622 p = trans_function_name(&nm, FALSE, TFN_INT|TFN_QUIET, NULL);
Bram Moolenaar79783442006-05-05 21:18:03 +000020623 nm = skipwhite(nm);
20624
20625 /* Only accept "funcname", "funcname ", "funcname (..." and
20626 * "funcname(...", not "funcname!...". */
20627 if (p != NULL && (*nm == NUL || *nm == '('))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020628 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020629 if (builtin_function(p))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020630 n = (find_internal_func(p) >= 0);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020631 else
20632 n = (find_func(p) != NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020633 }
Bram Moolenaar79783442006-05-05 21:18:03 +000020634 vim_free(p);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020635 return n;
20636}
20637
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020638/*
20639 * Return TRUE if "name" looks like a builtin function name: starts with a
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020640 * lower case letter and doesn't contain a ':' or AUTOLOAD_CHAR.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020641 */
20642 static int
20643builtin_function(name)
20644 char_u *name;
20645{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020646 return ASCII_ISLOWER(name[0]) && vim_strchr(name, ':') == NULL
20647 && vim_strchr(name, AUTOLOAD_CHAR) == NULL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020648}
20649
Bram Moolenaar05159a02005-02-26 23:04:13 +000020650#if defined(FEAT_PROFILE) || defined(PROTO)
20651/*
20652 * Start profiling function "fp".
20653 */
20654 static void
20655func_do_profile(fp)
20656 ufunc_T *fp;
20657{
20658 fp->uf_tm_count = 0;
20659 profile_zero(&fp->uf_tm_self);
20660 profile_zero(&fp->uf_tm_total);
20661 if (fp->uf_tml_count == NULL)
20662 fp->uf_tml_count = (int *)alloc_clear((unsigned)
20663 (sizeof(int) * fp->uf_lines.ga_len));
20664 if (fp->uf_tml_total == NULL)
20665 fp->uf_tml_total = (proftime_T *)alloc_clear((unsigned)
20666 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20667 if (fp->uf_tml_self == NULL)
20668 fp->uf_tml_self = (proftime_T *)alloc_clear((unsigned)
20669 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20670 fp->uf_tml_idx = -1;
20671 if (fp->uf_tml_count == NULL || fp->uf_tml_total == NULL
20672 || fp->uf_tml_self == NULL)
20673 return; /* out of memory */
20674
20675 fp->uf_profiling = TRUE;
20676}
20677
20678/*
20679 * Dump the profiling results for all functions in file "fd".
20680 */
20681 void
20682func_dump_profile(fd)
20683 FILE *fd;
20684{
20685 hashitem_T *hi;
20686 int todo;
20687 ufunc_T *fp;
20688 int i;
Bram Moolenaar73830342005-02-28 22:48:19 +000020689 ufunc_T **sorttab;
20690 int st_len = 0;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020691
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020692 todo = (int)func_hashtab.ht_used;
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020693 if (todo == 0)
20694 return; /* nothing to dump */
20695
Bram Moolenaar73830342005-02-28 22:48:19 +000020696 sorttab = (ufunc_T **)alloc((unsigned)(sizeof(ufunc_T) * todo));
20697
Bram Moolenaar05159a02005-02-26 23:04:13 +000020698 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
20699 {
20700 if (!HASHITEM_EMPTY(hi))
20701 {
20702 --todo;
20703 fp = HI2UF(hi);
20704 if (fp->uf_profiling)
20705 {
Bram Moolenaar73830342005-02-28 22:48:19 +000020706 if (sorttab != NULL)
20707 sorttab[st_len++] = fp;
20708
Bram Moolenaar05159a02005-02-26 23:04:13 +000020709 if (fp->uf_name[0] == K_SPECIAL)
20710 fprintf(fd, "FUNCTION <SNR>%s()\n", fp->uf_name + 3);
20711 else
20712 fprintf(fd, "FUNCTION %s()\n", fp->uf_name);
20713 if (fp->uf_tm_count == 1)
20714 fprintf(fd, "Called 1 time\n");
20715 else
20716 fprintf(fd, "Called %d times\n", fp->uf_tm_count);
20717 fprintf(fd, "Total time: %s\n", profile_msg(&fp->uf_tm_total));
20718 fprintf(fd, " Self time: %s\n", profile_msg(&fp->uf_tm_self));
20719 fprintf(fd, "\n");
20720 fprintf(fd, "count total (s) self (s)\n");
20721
20722 for (i = 0; i < fp->uf_lines.ga_len; ++i)
20723 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020724 if (FUNCLINE(fp, i) == NULL)
20725 continue;
Bram Moolenaar73830342005-02-28 22:48:19 +000020726 prof_func_line(fd, fp->uf_tml_count[i],
20727 &fp->uf_tml_total[i], &fp->uf_tml_self[i], TRUE);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020728 fprintf(fd, "%s\n", FUNCLINE(fp, i));
20729 }
20730 fprintf(fd, "\n");
20731 }
20732 }
20733 }
Bram Moolenaar73830342005-02-28 22:48:19 +000020734
20735 if (sorttab != NULL && st_len > 0)
20736 {
20737 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20738 prof_total_cmp);
20739 prof_sort_list(fd, sorttab, st_len, "TOTAL", FALSE);
20740 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20741 prof_self_cmp);
20742 prof_sort_list(fd, sorttab, st_len, "SELF", TRUE);
20743 }
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020744
20745 vim_free(sorttab);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020746}
Bram Moolenaar73830342005-02-28 22:48:19 +000020747
20748 static void
20749prof_sort_list(fd, sorttab, st_len, title, prefer_self)
20750 FILE *fd;
20751 ufunc_T **sorttab;
20752 int st_len;
20753 char *title;
20754 int prefer_self; /* when equal print only self time */
20755{
20756 int i;
20757 ufunc_T *fp;
20758
20759 fprintf(fd, "FUNCTIONS SORTED ON %s TIME\n", title);
20760 fprintf(fd, "count total (s) self (s) function\n");
20761 for (i = 0; i < 20 && i < st_len; ++i)
20762 {
20763 fp = sorttab[i];
20764 prof_func_line(fd, fp->uf_tm_count, &fp->uf_tm_total, &fp->uf_tm_self,
20765 prefer_self);
20766 if (fp->uf_name[0] == K_SPECIAL)
20767 fprintf(fd, " <SNR>%s()\n", fp->uf_name + 3);
20768 else
20769 fprintf(fd, " %s()\n", fp->uf_name);
20770 }
20771 fprintf(fd, "\n");
20772}
20773
20774/*
20775 * Print the count and times for one function or function line.
20776 */
20777 static void
20778prof_func_line(fd, count, total, self, prefer_self)
20779 FILE *fd;
20780 int count;
20781 proftime_T *total;
20782 proftime_T *self;
20783 int prefer_self; /* when equal print only self time */
20784{
20785 if (count > 0)
20786 {
20787 fprintf(fd, "%5d ", count);
20788 if (prefer_self && profile_equal(total, self))
20789 fprintf(fd, " ");
20790 else
20791 fprintf(fd, "%s ", profile_msg(total));
20792 if (!prefer_self && profile_equal(total, self))
20793 fprintf(fd, " ");
20794 else
20795 fprintf(fd, "%s ", profile_msg(self));
20796 }
20797 else
20798 fprintf(fd, " ");
20799}
20800
20801/*
20802 * Compare function for total time sorting.
20803 */
20804 static int
20805#ifdef __BORLANDC__
20806_RTLENTRYF
20807#endif
20808prof_total_cmp(s1, s2)
20809 const void *s1;
20810 const void *s2;
20811{
20812 ufunc_T *p1, *p2;
20813
20814 p1 = *(ufunc_T **)s1;
20815 p2 = *(ufunc_T **)s2;
20816 return profile_cmp(&p1->uf_tm_total, &p2->uf_tm_total);
20817}
20818
20819/*
20820 * Compare function for self time sorting.
20821 */
20822 static int
20823#ifdef __BORLANDC__
20824_RTLENTRYF
20825#endif
20826prof_self_cmp(s1, s2)
20827 const void *s1;
20828 const void *s2;
20829{
20830 ufunc_T *p1, *p2;
20831
20832 p1 = *(ufunc_T **)s1;
20833 p2 = *(ufunc_T **)s2;
20834 return profile_cmp(&p1->uf_tm_self, &p2->uf_tm_self);
20835}
20836
Bram Moolenaar05159a02005-02-26 23:04:13 +000020837#endif
20838
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020839/*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020840 * If "name" has a package name try autoloading the script for it.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020841 * Return TRUE if a package was loaded.
20842 */
20843 static int
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020844script_autoload(name, reload)
20845 char_u *name;
20846 int reload; /* load script again when already loaded */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020847{
20848 char_u *p;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020849 char_u *scriptname, *tofree;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020850 int ret = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020851 int i;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020852
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020853 /* If there is no '#' after name[0] there is no package name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020854 p = vim_strchr(name, AUTOLOAD_CHAR);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020855 if (p == NULL || p == name)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020856 return FALSE;
20857
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020858 tofree = scriptname = autoload_name(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020859
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020860 /* Find the name in the list of previously loaded package names. Skip
20861 * "autoload/", it's always the same. */
20862 for (i = 0; i < ga_loaded.ga_len; ++i)
20863 if (STRCMP(((char_u **)ga_loaded.ga_data)[i] + 9, scriptname + 9) == 0)
20864 break;
20865 if (!reload && i < ga_loaded.ga_len)
20866 ret = FALSE; /* was loaded already */
20867 else
20868 {
20869 /* Remember the name if it wasn't loaded already. */
20870 if (i == ga_loaded.ga_len && ga_grow(&ga_loaded, 1) == OK)
20871 {
20872 ((char_u **)ga_loaded.ga_data)[ga_loaded.ga_len++] = scriptname;
20873 tofree = NULL;
20874 }
20875
20876 /* Try loading the package from $VIMRUNTIME/autoload/<name>.vim */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +000020877 if (source_runtime(scriptname, FALSE) == OK)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020878 ret = TRUE;
20879 }
20880
20881 vim_free(tofree);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020882 return ret;
20883}
20884
20885/*
20886 * Return the autoload script name for a function or variable name.
20887 * Returns NULL when out of memory.
20888 */
20889 static char_u *
20890autoload_name(name)
20891 char_u *name;
20892{
20893 char_u *p;
20894 char_u *scriptname;
20895
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020896 /* Get the script file name: replace '#' with '/', append ".vim". */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020897 scriptname = alloc((unsigned)(STRLEN(name) + 14));
20898 if (scriptname == NULL)
20899 return FALSE;
20900 STRCPY(scriptname, "autoload/");
20901 STRCAT(scriptname, name);
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020902 *vim_strrchr(scriptname, AUTOLOAD_CHAR) = NUL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020903 STRCAT(scriptname, ".vim");
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020904 while ((p = vim_strchr(scriptname, AUTOLOAD_CHAR)) != NULL)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020905 *p = '/';
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020906 return scriptname;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020907}
20908
Bram Moolenaar071d4272004-06-13 20:20:40 +000020909#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
20910
20911/*
20912 * Function given to ExpandGeneric() to obtain the list of user defined
20913 * function names.
20914 */
20915 char_u *
20916get_user_func_name(xp, idx)
20917 expand_T *xp;
20918 int idx;
20919{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020920 static long_u done;
20921 static hashitem_T *hi;
20922 ufunc_T *fp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020923
20924 if (idx == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020925 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020926 done = 0;
20927 hi = func_hashtab.ht_array;
20928 }
20929 if (done < func_hashtab.ht_used)
20930 {
20931 if (done++ > 0)
20932 ++hi;
20933 while (HASHITEM_EMPTY(hi))
20934 ++hi;
20935 fp = HI2UF(hi);
20936
20937 if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
20938 return fp->uf_name; /* prevents overflow */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020939
20940 cat_func_name(IObuff, fp);
20941 if (xp->xp_context != EXPAND_USER_FUNC)
20942 {
20943 STRCAT(IObuff, "(");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020944 if (!fp->uf_varargs && fp->uf_args.ga_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020945 STRCAT(IObuff, ")");
20946 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020947 return IObuff;
20948 }
20949 return NULL;
20950}
20951
20952#endif /* FEAT_CMDL_COMPL */
20953
20954/*
20955 * Copy the function name of "fp" to buffer "buf".
20956 * "buf" must be able to hold the function name plus three bytes.
20957 * Takes care of script-local function names.
20958 */
20959 static void
20960cat_func_name(buf, fp)
20961 char_u *buf;
20962 ufunc_T *fp;
20963{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020964 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020965 {
20966 STRCPY(buf, "<SNR>");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020967 STRCAT(buf, fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020968 }
20969 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020970 STRCPY(buf, fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020971}
20972
20973/*
20974 * ":delfunction {name}"
20975 */
20976 void
20977ex_delfunction(eap)
20978 exarg_T *eap;
20979{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020980 ufunc_T *fp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020981 char_u *p;
20982 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000020983 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020984
20985 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020986 name = trans_function_name(&p, eap->skip, 0, &fudi);
20987 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020988 if (name == NULL)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020989 {
20990 if (fudi.fd_dict != NULL && !eap->skip)
20991 EMSG(_(e_funcref));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020992 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020993 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020994 if (!ends_excmd(*skipwhite(p)))
20995 {
20996 vim_free(name);
20997 EMSG(_(e_trailing));
20998 return;
20999 }
21000 eap->nextcmd = check_nextcmd(p);
21001 if (eap->nextcmd != NULL)
21002 *p = NUL;
21003
21004 if (!eap->skip)
21005 fp = find_func(name);
21006 vim_free(name);
21007
21008 if (!eap->skip)
21009 {
21010 if (fp == NULL)
21011 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021012 EMSG2(_(e_nofunc), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021013 return;
21014 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021015 if (fp->uf_calls > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021016 {
21017 EMSG2(_("E131: Cannot delete function %s: It is in use"), eap->arg);
21018 return;
21019 }
21020
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021021 if (fudi.fd_dict != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021022 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021023 /* Delete the dict item that refers to the function, it will
21024 * invoke func_unref() and possibly delete the function. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000021025 dictitem_remove(fudi.fd_dict, fudi.fd_di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021026 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021027 else
21028 func_free(fp);
21029 }
21030}
21031
21032/*
21033 * Free a function and remove it from the list of functions.
21034 */
21035 static void
21036func_free(fp)
21037 ufunc_T *fp;
21038{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021039 hashitem_T *hi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021040
21041 /* clear this function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021042 ga_clear_strings(&(fp->uf_args));
21043 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar05159a02005-02-26 23:04:13 +000021044#ifdef FEAT_PROFILE
21045 vim_free(fp->uf_tml_count);
21046 vim_free(fp->uf_tml_total);
21047 vim_free(fp->uf_tml_self);
21048#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021049
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021050 /* remove the function from the function hashtable */
21051 hi = hash_find(&func_hashtab, UF2HIKEY(fp));
21052 if (HASHITEM_EMPTY(hi))
21053 EMSG2(_(e_intern2), "func_free()");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021054 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021055 hash_remove(&func_hashtab, hi);
21056
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021057 vim_free(fp);
21058}
21059
21060/*
21061 * Unreference a Function: decrement the reference count and free it when it
21062 * becomes zero. Only for numbered functions.
21063 */
21064 static void
21065func_unref(name)
21066 char_u *name;
21067{
21068 ufunc_T *fp;
21069
21070 if (name != NULL && isdigit(*name))
21071 {
21072 fp = find_func(name);
21073 if (fp == NULL)
21074 EMSG2(_(e_intern2), "func_unref()");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021075 else if (--fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021076 {
21077 /* Only delete it when it's not being used. Otherwise it's done
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021078 * when "uf_calls" becomes zero. */
21079 if (fp->uf_calls == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021080 func_free(fp);
21081 }
21082 }
21083}
21084
21085/*
21086 * Count a reference to a Function.
21087 */
21088 static void
21089func_ref(name)
21090 char_u *name;
21091{
21092 ufunc_T *fp;
21093
21094 if (name != NULL && isdigit(*name))
21095 {
21096 fp = find_func(name);
21097 if (fp == NULL)
21098 EMSG2(_(e_intern2), "func_ref()");
21099 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021100 ++fp->uf_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021101 }
21102}
21103
21104/*
21105 * Call a user function.
21106 */
21107 static void
Bram Moolenaare9a41262005-01-15 22:18:47 +000021108call_user_func(fp, argcount, argvars, rettv, firstline, lastline, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021109 ufunc_T *fp; /* pointer to function */
21110 int argcount; /* nr of args */
Bram Moolenaar33570922005-01-25 22:26:29 +000021111 typval_T *argvars; /* arguments */
21112 typval_T *rettv; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021113 linenr_T firstline; /* first line of range */
21114 linenr_T lastline; /* last line of range */
Bram Moolenaar33570922005-01-25 22:26:29 +000021115 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021116{
Bram Moolenaar33570922005-01-25 22:26:29 +000021117 char_u *save_sourcing_name;
21118 linenr_T save_sourcing_lnum;
21119 scid_T save_current_SID;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021120 funccall_T *fc;
Bram Moolenaar33570922005-01-25 22:26:29 +000021121 int save_did_emsg;
21122 static int depth = 0;
21123 dictitem_T *v;
21124 int fixvar_idx = 0; /* index in fixvar[] */
21125 int i;
21126 int ai;
21127 char_u numbuf[NUMBUFLEN];
21128 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021129#ifdef FEAT_PROFILE
21130 proftime_T wait_start;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021131 proftime_T call_start;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021132#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021133
21134 /* If depth of calling is getting too high, don't execute the function */
21135 if (depth >= p_mfd)
21136 {
21137 EMSG(_("E132: Function call depth is higher than 'maxfuncdepth'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021138 rettv->v_type = VAR_NUMBER;
21139 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021140 return;
21141 }
21142 ++depth;
21143
21144 line_breakcheck(); /* check for CTRL-C hit */
21145
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021146 fc = (funccall_T *)alloc(sizeof(funccall_T));
21147 fc->caller = current_funccal;
21148 current_funccal = fc;
21149 fc->func = fp;
21150 fc->rettv = rettv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021151 rettv->vval.v_number = 0;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021152 fc->linenr = 0;
21153 fc->returned = FALSE;
21154 fc->level = ex_nesting_level;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021155 /* Check if this function has a breakpoint. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021156 fc->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0);
21157 fc->dbg_tick = debug_tick;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021158
Bram Moolenaar33570922005-01-25 22:26:29 +000021159 /*
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021160 * Note about using fc->fixvar[]: This is an array of FIXVAR_CNT variables
Bram Moolenaar33570922005-01-25 22:26:29 +000021161 * with names up to VAR_SHORT_LEN long. This avoids having to alloc/free
21162 * each argument variable and saves a lot of time.
21163 */
21164 /*
21165 * Init l: variables.
21166 */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021167 init_var_dict(&fc->l_vars, &fc->l_vars_var);
Bram Moolenaara7043832005-01-21 11:56:39 +000021168 if (selfdict != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000021169 {
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021170 /* Set l:self to "selfdict". Use "name" to avoid a warning from
21171 * some compiler that checks the destination size. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021172 v = &fc->fixvar[fixvar_idx++].var;
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021173 name = v->di_key;
21174 STRCPY(name, "self");
Bram Moolenaar33570922005-01-25 22:26:29 +000021175 v->di_flags = DI_FLAGS_RO + DI_FLAGS_FIX;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021176 hash_add(&fc->l_vars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaar33570922005-01-25 22:26:29 +000021177 v->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021178 v->di_tv.v_lock = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000021179 v->di_tv.vval.v_dict = selfdict;
21180 ++selfdict->dv_refcount;
21181 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000021182
Bram Moolenaar33570922005-01-25 22:26:29 +000021183 /*
21184 * Init a: variables.
21185 * Set a:0 to "argcount".
21186 * Set a:000 to a list with room for the "..." arguments.
21187 */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021188 init_var_dict(&fc->l_avars, &fc->l_avars_var);
21189 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "0",
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021190 (varnumber_T)(argcount - fp->uf_args.ga_len));
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021191 /* Use "name" to avoid a warning from some compiler that checks the
21192 * destination size. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021193 v = &fc->fixvar[fixvar_idx++].var;
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021194 name = v->di_key;
21195 STRCPY(name, "000");
Bram Moolenaar33570922005-01-25 22:26:29 +000021196 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021197 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaar33570922005-01-25 22:26:29 +000021198 v->di_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021199 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021200 v->di_tv.vval.v_list = &fc->l_varlist;
21201 vim_memset(&fc->l_varlist, 0, sizeof(list_T));
21202 fc->l_varlist.lv_refcount = DO_NOT_FREE_CNT;
21203 fc->l_varlist.lv_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021204
21205 /*
21206 * Set a:firstline to "firstline" and a:lastline to "lastline".
21207 * Set a:name to named arguments.
21208 * Set a:N to the "..." arguments.
21209 */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021210 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "firstline",
Bram Moolenaar33570922005-01-25 22:26:29 +000021211 (varnumber_T)firstline);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021212 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "lastline",
Bram Moolenaar33570922005-01-25 22:26:29 +000021213 (varnumber_T)lastline);
21214 for (i = 0; i < argcount; ++i)
21215 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021216 ai = i - fp->uf_args.ga_len;
Bram Moolenaar33570922005-01-25 22:26:29 +000021217 if (ai < 0)
21218 /* named argument a:name */
21219 name = FUNCARG(fp, i);
21220 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000021221 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021222 /* "..." argument a:1, a:2, etc. */
21223 sprintf((char *)numbuf, "%d", ai + 1);
21224 name = numbuf;
21225 }
21226 if (fixvar_idx < FIXVAR_CNT && STRLEN(name) <= VAR_SHORT_LEN)
21227 {
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021228 v = &fc->fixvar[fixvar_idx++].var;
Bram Moolenaar33570922005-01-25 22:26:29 +000021229 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21230 }
21231 else
21232 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021233 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
21234 + STRLEN(name)));
Bram Moolenaar33570922005-01-25 22:26:29 +000021235 if (v == NULL)
21236 break;
21237 v->di_flags = DI_FLAGS_RO;
21238 }
21239 STRCPY(v->di_key, name);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021240 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaar33570922005-01-25 22:26:29 +000021241
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021242 /* Note: the values are copied directly to avoid alloc/free.
21243 * "argvars" must have VAR_FIXED for v_lock. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021244 v->di_tv = argvars[i];
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021245 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021246
21247 if (ai >= 0 && ai < MAX_FUNC_ARGS)
21248 {
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021249 list_append(&fc->l_varlist, &fc->l_listitems[ai]);
21250 fc->l_listitems[ai].li_tv = argvars[i];
21251 fc->l_listitems[ai].li_tv.v_lock = VAR_FIXED;
Bram Moolenaare9a41262005-01-15 22:18:47 +000021252 }
21253 }
21254
Bram Moolenaar071d4272004-06-13 20:20:40 +000021255 /* Don't redraw while executing the function. */
21256 ++RedrawingDisabled;
21257 save_sourcing_name = sourcing_name;
21258 save_sourcing_lnum = sourcing_lnum;
21259 sourcing_lnum = 1;
21260 sourcing_name = alloc((unsigned)((save_sourcing_name == NULL ? 0
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021261 : STRLEN(save_sourcing_name)) + STRLEN(fp->uf_name) + 13));
Bram Moolenaar071d4272004-06-13 20:20:40 +000021262 if (sourcing_name != NULL)
21263 {
21264 if (save_sourcing_name != NULL
21265 && STRNCMP(save_sourcing_name, "function ", 9) == 0)
21266 sprintf((char *)sourcing_name, "%s..", save_sourcing_name);
21267 else
21268 STRCPY(sourcing_name, "function ");
21269 cat_func_name(sourcing_name + STRLEN(sourcing_name), fp);
21270
21271 if (p_verbose >= 12)
21272 {
21273 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021274 verbose_enter_scroll();
21275
Bram Moolenaar555b2802005-05-19 21:08:39 +000021276 smsg((char_u *)_("calling %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021277 if (p_verbose >= 14)
21278 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021279 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021280 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021281 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021282 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021283
21284 msg_puts((char_u *)"(");
21285 for (i = 0; i < argcount; ++i)
21286 {
21287 if (i > 0)
21288 msg_puts((char_u *)", ");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000021289 if (argvars[i].v_type == VAR_NUMBER)
21290 msg_outnum((long)argvars[i].vval.v_number);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021291 else
21292 {
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021293 s = tv2string(&argvars[i], &tofree, numbuf2, 0);
21294 if (s != NULL)
21295 {
21296 trunc_string(s, buf, MSG_BUF_CLEN);
21297 msg_puts(buf);
21298 vim_free(tofree);
21299 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021300 }
21301 }
21302 msg_puts((char_u *)")");
21303 }
21304 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021305
21306 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021307 --no_wait_return;
21308 }
21309 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021310#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021311 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021312 {
21313 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
21314 func_do_profile(fp);
21315 if (fp->uf_profiling
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021316 || (fc->caller != NULL && fc->caller->func->uf_profiling))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021317 {
21318 ++fp->uf_tm_count;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021319 profile_start(&call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021320 profile_zero(&fp->uf_tm_children);
21321 }
21322 script_prof_save(&wait_start);
21323 }
21324#endif
21325
Bram Moolenaar071d4272004-06-13 20:20:40 +000021326 save_current_SID = current_SID;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021327 current_SID = fp->uf_script_ID;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021328 save_did_emsg = did_emsg;
21329 did_emsg = FALSE;
21330
21331 /* call do_cmdline() to execute the lines */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021332 do_cmdline(NULL, get_func_line, (void *)fc,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021333 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
21334
21335 --RedrawingDisabled;
21336
21337 /* when the function was aborted because of an error, return -1 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021338 if ((did_emsg && (fp->uf_flags & FC_ABORT)) || rettv->v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021339 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021340 clear_tv(rettv);
21341 rettv->v_type = VAR_NUMBER;
21342 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021343 }
21344
Bram Moolenaar05159a02005-02-26 23:04:13 +000021345#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021346 if (do_profiling == PROF_YES && (fp->uf_profiling
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021347 || (fc->caller != NULL && fc->caller->func->uf_profiling)))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021348 {
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021349 profile_end(&call_start);
21350 profile_sub_wait(&wait_start, &call_start);
21351 profile_add(&fp->uf_tm_total, &call_start);
21352 profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021353 if (fc->caller != NULL && fc->caller->func->uf_profiling)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021354 {
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021355 profile_add(&fc->caller->func->uf_tm_children, &call_start);
21356 profile_add(&fc->caller->func->uf_tml_children, &call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021357 }
21358 }
21359#endif
21360
Bram Moolenaar071d4272004-06-13 20:20:40 +000021361 /* when being verbose, mention the return value */
21362 if (p_verbose >= 12)
21363 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021364 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021365 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021366
Bram Moolenaar071d4272004-06-13 20:20:40 +000021367 if (aborting())
Bram Moolenaar555b2802005-05-19 21:08:39 +000021368 smsg((char_u *)_("%s aborted"), sourcing_name);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021369 else if (fc->rettv->v_type == VAR_NUMBER)
Bram Moolenaar555b2802005-05-19 21:08:39 +000021370 smsg((char_u *)_("%s returning #%ld"), sourcing_name,
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021371 (long)fc->rettv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +000021372 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000021373 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000021374 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021375 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021376 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021377 char_u *s;
Bram Moolenaar758711c2005-02-02 23:11:38 +000021378
Bram Moolenaar555b2802005-05-19 21:08:39 +000021379 /* The value may be very long. Skip the middle part, so that we
21380 * have some idea how it starts and ends. smsg() would always
21381 * truncate it at the end. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021382 s = tv2string(fc->rettv, &tofree, numbuf2, 0);
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021383 if (s != NULL)
21384 {
21385 trunc_string(s, buf, MSG_BUF_CLEN);
21386 smsg((char_u *)_("%s returning %s"), sourcing_name, buf);
21387 vim_free(tofree);
21388 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021389 }
21390 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021391
21392 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021393 --no_wait_return;
21394 }
21395
21396 vim_free(sourcing_name);
21397 sourcing_name = save_sourcing_name;
21398 sourcing_lnum = save_sourcing_lnum;
21399 current_SID = save_current_SID;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021400#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021401 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021402 script_prof_restore(&wait_start);
21403#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021404
21405 if (p_verbose >= 12 && sourcing_name != NULL)
21406 {
21407 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021408 verbose_enter_scroll();
21409
Bram Moolenaar555b2802005-05-19 21:08:39 +000021410 smsg((char_u *)_("continuing in %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021411 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021412
21413 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021414 --no_wait_return;
21415 }
21416
21417 did_emsg |= save_did_emsg;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021418 current_funccal = fc->caller;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021419 --depth;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021420
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +000021421 /* If the a:000 list and the l: and a: dicts are not referenced we can
21422 * free the funccall_T and what's in it. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021423 if (fc->l_varlist.lv_refcount == DO_NOT_FREE_CNT
21424 && fc->l_vars.dv_refcount == DO_NOT_FREE_CNT
21425 && fc->l_avars.dv_refcount == DO_NOT_FREE_CNT)
21426 {
21427 free_funccal(fc, FALSE);
21428 }
21429 else
21430 {
21431 hashitem_T *hi;
21432 listitem_T *li;
21433 int todo;
21434
21435 /* "fc" is still in use. This can happen when returning "a:000" or
21436 * assigning "l:" to a global variable.
21437 * Link "fc" in the list for garbage collection later. */
21438 fc->caller = previous_funccal;
21439 previous_funccal = fc;
21440
21441 /* Make a copy of the a: variables, since we didn't do that above. */
21442 todo = (int)fc->l_avars.dv_hashtab.ht_used;
21443 for (hi = fc->l_avars.dv_hashtab.ht_array; todo > 0; ++hi)
21444 {
21445 if (!HASHITEM_EMPTY(hi))
21446 {
21447 --todo;
21448 v = HI2DI(hi);
21449 copy_tv(&v->di_tv, &v->di_tv);
21450 }
21451 }
21452
21453 /* Make a copy of the a:000 items, since we didn't do that above. */
21454 for (li = fc->l_varlist.lv_first; li != NULL; li = li->li_next)
21455 copy_tv(&li->li_tv, &li->li_tv);
21456 }
21457}
21458
21459/*
21460 * Return TRUE if items in "fc" do not have "copyID". That means they are not
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +000021461 * referenced from anywhere that is in use.
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021462 */
21463 static int
21464can_free_funccal(fc, copyID)
21465 funccall_T *fc;
21466 int copyID;
21467{
21468 return (fc->l_varlist.lv_copyID != copyID
21469 && fc->l_vars.dv_copyID != copyID
21470 && fc->l_avars.dv_copyID != copyID);
21471}
21472
21473/*
21474 * Free "fc" and what it contains.
21475 */
21476 static void
21477free_funccal(fc, free_val)
21478 funccall_T *fc;
21479 int free_val; /* a: vars were allocated */
21480{
21481 listitem_T *li;
21482
21483 /* The a: variables typevals may not have been allocated, only free the
21484 * allocated variables. */
21485 vars_clear_ext(&fc->l_avars.dv_hashtab, free_val);
21486
21487 /* free all l: variables */
21488 vars_clear(&fc->l_vars.dv_hashtab);
21489
21490 /* Free the a:000 variables if they were allocated. */
21491 if (free_val)
21492 for (li = fc->l_varlist.lv_first; li != NULL; li = li->li_next)
21493 clear_tv(&li->li_tv);
21494
21495 vim_free(fc);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021496}
21497
21498/*
Bram Moolenaar33570922005-01-25 22:26:29 +000021499 * Add a number variable "name" to dict "dp" with value "nr".
21500 */
21501 static void
21502add_nr_var(dp, v, name, nr)
21503 dict_T *dp;
21504 dictitem_T *v;
21505 char *name;
21506 varnumber_T nr;
21507{
21508 STRCPY(v->di_key, name);
21509 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21510 hash_add(&dp->dv_hashtab, DI2HIKEY(v));
21511 v->di_tv.v_type = VAR_NUMBER;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021512 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021513 v->di_tv.vval.v_number = nr;
21514}
21515
21516/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000021517 * ":return [expr]"
21518 */
21519 void
21520ex_return(eap)
21521 exarg_T *eap;
21522{
21523 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000021524 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021525 int returning = FALSE;
21526
21527 if (current_funccal == NULL)
21528 {
21529 EMSG(_("E133: :return not inside a function"));
21530 return;
21531 }
21532
21533 if (eap->skip)
21534 ++emsg_skip;
21535
21536 eap->nextcmd = NULL;
21537 if ((*arg != NUL && *arg != '|' && *arg != '\n')
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021538 && eval0(arg, &rettv, &eap->nextcmd, !eap->skip) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021539 {
21540 if (!eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021541 returning = do_return(eap, FALSE, TRUE, &rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021542 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021543 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021544 }
21545 /* It's safer to return also on error. */
21546 else if (!eap->skip)
21547 {
21548 /*
21549 * Return unless the expression evaluation has been cancelled due to an
21550 * aborting error, an interrupt, or an exception.
21551 */
21552 if (!aborting())
21553 returning = do_return(eap, FALSE, TRUE, NULL);
21554 }
21555
21556 /* When skipping or the return gets pending, advance to the next command
21557 * in this line (!returning). Otherwise, ignore the rest of the line.
21558 * Following lines will be ignored by get_func_line(). */
21559 if (returning)
21560 eap->nextcmd = NULL;
21561 else if (eap->nextcmd == NULL) /* no argument */
21562 eap->nextcmd = check_nextcmd(arg);
21563
21564 if (eap->skip)
21565 --emsg_skip;
21566}
21567
21568/*
21569 * Return from a function. Possibly makes the return pending. Also called
21570 * for a pending return at the ":endtry" or after returning from an extra
21571 * do_cmdline(). "reanimate" is used in the latter case. "is_cmd" is set
Bram Moolenaar33570922005-01-25 22:26:29 +000021572 * when called due to a ":return" command. "rettv" may point to a typval_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021573 * with the return rettv. Returns TRUE when the return can be carried out,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021574 * FALSE when the return gets pending.
21575 */
21576 int
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021577do_return(eap, reanimate, is_cmd, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021578 exarg_T *eap;
21579 int reanimate;
21580 int is_cmd;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021581 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021582{
21583 int idx;
21584 struct condstack *cstack = eap->cstack;
21585
21586 if (reanimate)
21587 /* Undo the return. */
21588 current_funccal->returned = FALSE;
21589
21590 /*
21591 * Cleanup (and inactivate) conditionals, but stop when a try conditional
21592 * not in its finally clause (which then is to be executed next) is found.
21593 * In this case, make the ":return" pending for execution at the ":endtry".
21594 * Otherwise, return normally.
21595 */
21596 idx = cleanup_conditionals(eap->cstack, 0, TRUE);
21597 if (idx >= 0)
21598 {
21599 cstack->cs_pending[idx] = CSTP_RETURN;
21600
21601 if (!is_cmd && !reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021602 /* A pending return again gets pending. "rettv" points to an
21603 * allocated variable with the rettv of the original ":return"'s
Bram Moolenaar071d4272004-06-13 20:20:40 +000021604 * argument if present or is NULL else. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021605 cstack->cs_rettv[idx] = rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021606 else
21607 {
21608 /* When undoing a return in order to make it pending, get the stored
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021609 * return rettv. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021610 if (reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021611 rettv = current_funccal->rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021612
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021613 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021614 {
21615 /* Store the value of the pending return. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021616 if ((cstack->cs_rettv[idx] = alloc_tv()) != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000021617 *(typval_T *)cstack->cs_rettv[idx] = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021618 else
21619 EMSG(_(e_outofmem));
21620 }
21621 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021622 cstack->cs_rettv[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021623
21624 if (reanimate)
21625 {
21626 /* The pending return value could be overwritten by a ":return"
21627 * without argument in a finally clause; reset the default
21628 * return value. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021629 current_funccal->rettv->v_type = VAR_NUMBER;
21630 current_funccal->rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021631 }
21632 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021633 report_make_pending(CSTP_RETURN, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021634 }
21635 else
21636 {
21637 current_funccal->returned = TRUE;
21638
21639 /* If the return is carried out now, store the return value. For
21640 * a return immediately after reanimation, the value is already
21641 * there. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021642 if (!reanimate && rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021643 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021644 clear_tv(current_funccal->rettv);
Bram Moolenaar33570922005-01-25 22:26:29 +000021645 *current_funccal->rettv = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021646 if (!is_cmd)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021647 vim_free(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021648 }
21649 }
21650
21651 return idx < 0;
21652}
21653
21654/*
21655 * Free the variable with a pending return value.
21656 */
21657 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021658discard_pending_return(rettv)
21659 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021660{
Bram Moolenaar33570922005-01-25 22:26:29 +000021661 free_tv((typval_T *)rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021662}
21663
21664/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021665 * Generate a return command for producing the value of "rettv". The result
Bram Moolenaar071d4272004-06-13 20:20:40 +000021666 * is an allocated string. Used by report_pending() for verbose messages.
21667 */
21668 char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021669get_return_cmd(rettv)
21670 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021671{
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021672 char_u *s = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021673 char_u *tofree = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021674 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021675
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021676 if (rettv != NULL)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021677 s = echo_string((typval_T *)rettv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021678 if (s == NULL)
21679 s = (char_u *)"";
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021680
21681 STRCPY(IObuff, ":return ");
21682 STRNCPY(IObuff + 8, s, IOSIZE - 8);
21683 if (STRLEN(s) + 8 >= IOSIZE)
21684 STRCPY(IObuff + IOSIZE - 4, "...");
21685 vim_free(tofree);
21686 return vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021687}
21688
21689/*
21690 * Get next function line.
21691 * Called by do_cmdline() to get the next line.
21692 * Returns allocated string, or NULL for end of function.
21693 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021694 char_u *
21695get_func_line(c, cookie, indent)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000021696 int c UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021697 void *cookie;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000021698 int indent UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021699{
Bram Moolenaar33570922005-01-25 22:26:29 +000021700 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021701 ufunc_T *fp = fcp->func;
21702 char_u *retval;
21703 garray_T *gap; /* growarray with function lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021704
21705 /* If breakpoints have been added/deleted need to check for it. */
21706 if (fcp->dbg_tick != debug_tick)
21707 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021708 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021709 sourcing_lnum);
21710 fcp->dbg_tick = debug_tick;
21711 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021712#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021713 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021714 func_line_end(cookie);
21715#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021716
Bram Moolenaar05159a02005-02-26 23:04:13 +000021717 gap = &fp->uf_lines;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021718 if (((fp->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
21719 || fcp->returned)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021720 retval = NULL;
21721 else
21722 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021723 /* Skip NULL lines (continuation lines). */
21724 while (fcp->linenr < gap->ga_len
21725 && ((char_u **)(gap->ga_data))[fcp->linenr] == NULL)
21726 ++fcp->linenr;
21727 if (fcp->linenr >= gap->ga_len)
21728 retval = NULL;
21729 else
21730 {
21731 retval = vim_strsave(((char_u **)(gap->ga_data))[fcp->linenr++]);
21732 sourcing_lnum = fcp->linenr;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021733#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021734 if (do_profiling == PROF_YES)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021735 func_line_start(cookie);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021736#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021737 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021738 }
21739
21740 /* Did we encounter a breakpoint? */
21741 if (fcp->breakpoint != 0 && fcp->breakpoint <= sourcing_lnum)
21742 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021743 dbg_breakpoint(fp->uf_name, sourcing_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021744 /* Find next breakpoint. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000021745 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021746 sourcing_lnum);
21747 fcp->dbg_tick = debug_tick;
21748 }
21749
21750 return retval;
21751}
21752
Bram Moolenaar05159a02005-02-26 23:04:13 +000021753#if defined(FEAT_PROFILE) || defined(PROTO)
21754/*
21755 * Called when starting to read a function line.
21756 * "sourcing_lnum" must be correct!
21757 * When skipping lines it may not actually be executed, but we won't find out
21758 * until later and we need to store the time now.
21759 */
21760 void
21761func_line_start(cookie)
21762 void *cookie;
21763{
21764 funccall_T *fcp = (funccall_T *)cookie;
21765 ufunc_T *fp = fcp->func;
21766
21767 if (fp->uf_profiling && sourcing_lnum >= 1
21768 && sourcing_lnum <= fp->uf_lines.ga_len)
21769 {
21770 fp->uf_tml_idx = sourcing_lnum - 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021771 /* Skip continuation lines. */
21772 while (fp->uf_tml_idx > 0 && FUNCLINE(fp, fp->uf_tml_idx) == NULL)
21773 --fp->uf_tml_idx;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021774 fp->uf_tml_execed = FALSE;
21775 profile_start(&fp->uf_tml_start);
21776 profile_zero(&fp->uf_tml_children);
21777 profile_get_wait(&fp->uf_tml_wait);
21778 }
21779}
21780
21781/*
21782 * Called when actually executing a function line.
21783 */
21784 void
21785func_line_exec(cookie)
21786 void *cookie;
21787{
21788 funccall_T *fcp = (funccall_T *)cookie;
21789 ufunc_T *fp = fcp->func;
21790
21791 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21792 fp->uf_tml_execed = TRUE;
21793}
21794
21795/*
21796 * Called when done with a function line.
21797 */
21798 void
21799func_line_end(cookie)
21800 void *cookie;
21801{
21802 funccall_T *fcp = (funccall_T *)cookie;
21803 ufunc_T *fp = fcp->func;
21804
21805 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21806 {
21807 if (fp->uf_tml_execed)
21808 {
21809 ++fp->uf_tml_count[fp->uf_tml_idx];
21810 profile_end(&fp->uf_tml_start);
21811 profile_sub_wait(&fp->uf_tml_wait, &fp->uf_tml_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021812 profile_add(&fp->uf_tml_total[fp->uf_tml_idx], &fp->uf_tml_start);
Bram Moolenaar1056d982006-03-09 22:37:52 +000021813 profile_self(&fp->uf_tml_self[fp->uf_tml_idx], &fp->uf_tml_start,
21814 &fp->uf_tml_children);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021815 }
21816 fp->uf_tml_idx = -1;
21817 }
21818}
21819#endif
21820
Bram Moolenaar071d4272004-06-13 20:20:40 +000021821/*
21822 * Return TRUE if the currently active function should be ended, because a
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021823 * return was encountered or an error occurred. Used inside a ":while".
Bram Moolenaar071d4272004-06-13 20:20:40 +000021824 */
21825 int
21826func_has_ended(cookie)
21827 void *cookie;
21828{
Bram Moolenaar33570922005-01-25 22:26:29 +000021829 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021830
21831 /* Ignore the "abort" flag if the abortion behavior has been changed due to
21832 * an error inside a try conditional. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021833 return (((fcp->func->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
Bram Moolenaar071d4272004-06-13 20:20:40 +000021834 || fcp->returned);
21835}
21836
21837/*
21838 * return TRUE if cookie indicates a function which "abort"s on errors.
21839 */
21840 int
21841func_has_abort(cookie)
21842 void *cookie;
21843{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021844 return ((funccall_T *)cookie)->func->uf_flags & FC_ABORT;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021845}
21846
21847#if defined(FEAT_VIMINFO) || defined(FEAT_SESSION)
21848typedef enum
21849{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021850 VAR_FLAVOUR_DEFAULT, /* doesn't start with uppercase */
21851 VAR_FLAVOUR_SESSION, /* starts with uppercase, some lower */
21852 VAR_FLAVOUR_VIMINFO /* all uppercase */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021853} var_flavour_T;
21854
21855static var_flavour_T var_flavour __ARGS((char_u *varname));
21856
21857 static var_flavour_T
21858var_flavour(varname)
21859 char_u *varname;
21860{
21861 char_u *p = varname;
21862
21863 if (ASCII_ISUPPER(*p))
21864 {
21865 while (*(++p))
21866 if (ASCII_ISLOWER(*p))
21867 return VAR_FLAVOUR_SESSION;
21868 return VAR_FLAVOUR_VIMINFO;
21869 }
21870 else
21871 return VAR_FLAVOUR_DEFAULT;
21872}
21873#endif
21874
21875#if defined(FEAT_VIMINFO) || defined(PROTO)
21876/*
21877 * Restore global vars that start with a capital from the viminfo file
21878 */
21879 int
21880read_viminfo_varlist(virp, writing)
21881 vir_T *virp;
21882 int writing;
21883{
21884 char_u *tab;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021885 int type = VAR_NUMBER;
Bram Moolenaar33570922005-01-25 22:26:29 +000021886 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021887
21888 if (!writing && (find_viminfo_parameter('!') != NULL))
21889 {
21890 tab = vim_strchr(virp->vir_line + 1, '\t');
21891 if (tab != NULL)
21892 {
21893 *tab++ = '\0'; /* isolate the variable name */
21894 if (*tab == 'S') /* string var */
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021895 type = VAR_STRING;
21896#ifdef FEAT_FLOAT
21897 else if (*tab == 'F')
21898 type = VAR_FLOAT;
21899#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021900
21901 tab = vim_strchr(tab, '\t');
21902 if (tab != NULL)
21903 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021904 tv.v_type = type;
21905 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021906 tv.vval.v_string = viminfo_readstring(virp,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021907 (int)(tab - virp->vir_line + 1), TRUE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021908#ifdef FEAT_FLOAT
21909 else if (type == VAR_FLOAT)
21910 (void)string2float(tab + 1, &tv.vval.v_float);
21911#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021912 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021913 tv.vval.v_number = atol((char *)tab + 1);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021914 set_var(virp->vir_line + 1, &tv, FALSE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021915 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021916 vim_free(tv.vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021917 }
21918 }
21919 }
21920
21921 return viminfo_readline(virp);
21922}
21923
21924/*
21925 * Write global vars that start with a capital to the viminfo file
21926 */
21927 void
21928write_viminfo_varlist(fp)
21929 FILE *fp;
21930{
Bram Moolenaar33570922005-01-25 22:26:29 +000021931 hashitem_T *hi;
21932 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021933 int todo;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021934 char *s;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021935 char_u *p;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021936 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021937 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021938
21939 if (find_viminfo_parameter('!') == NULL)
21940 return;
21941
Bram Moolenaar9577c3e2010-05-14 12:16:25 +020021942 fputs(_("\n# global variables:\n"), fp);
Bram Moolenaara7043832005-01-21 11:56:39 +000021943
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021944 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021945 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021946 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021947 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021948 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021949 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021950 this_var = HI2DI(hi);
21951 if (var_flavour(this_var->di_key) == VAR_FLAVOUR_VIMINFO)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021952 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021953 switch (this_var->di_tv.v_type)
Bram Moolenaara7043832005-01-21 11:56:39 +000021954 {
21955 case VAR_STRING: s = "STR"; break;
21956 case VAR_NUMBER: s = "NUM"; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021957#ifdef FEAT_FLOAT
21958 case VAR_FLOAT: s = "FLO"; break;
21959#endif
Bram Moolenaara7043832005-01-21 11:56:39 +000021960 default: continue;
21961 }
Bram Moolenaar33570922005-01-25 22:26:29 +000021962 fprintf(fp, "!%s\t%s\t", this_var->di_key, s);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021963 p = echo_string(&this_var->di_tv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021964 if (p != NULL)
21965 viminfo_writestring(fp, p);
Bram Moolenaara7043832005-01-21 11:56:39 +000021966 vim_free(tofree);
21967 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021968 }
21969 }
21970}
21971#endif
21972
21973#if defined(FEAT_SESSION) || defined(PROTO)
21974 int
21975store_session_globals(fd)
21976 FILE *fd;
21977{
Bram Moolenaar33570922005-01-25 22:26:29 +000021978 hashitem_T *hi;
21979 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021980 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021981 char_u *p, *t;
21982
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021983 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021984 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021985 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021986 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021987 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021988 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021989 this_var = HI2DI(hi);
21990 if ((this_var->di_tv.v_type == VAR_NUMBER
21991 || this_var->di_tv.v_type == VAR_STRING)
21992 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021993 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021994 /* Escape special characters with a backslash. Turn a LF and
21995 * CR into \n and \r. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021996 p = vim_strsave_escaped(get_tv_string(&this_var->di_tv),
Bram Moolenaara7043832005-01-21 11:56:39 +000021997 (char_u *)"\\\"\n\r");
21998 if (p == NULL) /* out of memory */
21999 break;
22000 for (t = p; *t != NUL; ++t)
22001 if (*t == '\n')
22002 *t = 'n';
22003 else if (*t == '\r')
22004 *t = 'r';
22005 if ((fprintf(fd, "let %s = %c%s%c",
Bram Moolenaar33570922005-01-25 22:26:29 +000022006 this_var->di_key,
22007 (this_var->di_tv.v_type == VAR_STRING) ? '"'
22008 : ' ',
22009 p,
22010 (this_var->di_tv.v_type == VAR_STRING) ? '"'
22011 : ' ') < 0)
Bram Moolenaara7043832005-01-21 11:56:39 +000022012 || put_eol(fd) == FAIL)
22013 {
22014 vim_free(p);
22015 return FAIL;
22016 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022017 vim_free(p);
22018 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022019#ifdef FEAT_FLOAT
22020 else if (this_var->di_tv.v_type == VAR_FLOAT
22021 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
22022 {
22023 float_T f = this_var->di_tv.vval.v_float;
22024 int sign = ' ';
22025
22026 if (f < 0)
22027 {
22028 f = -f;
22029 sign = '-';
22030 }
22031 if ((fprintf(fd, "let %s = %c&%f",
22032 this_var->di_key, sign, f) < 0)
22033 || put_eol(fd) == FAIL)
22034 return FAIL;
22035 }
22036#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000022037 }
22038 }
22039 return OK;
22040}
22041#endif
22042
Bram Moolenaar661b1822005-07-28 22:36:45 +000022043/*
22044 * Display script name where an item was last set.
22045 * Should only be invoked when 'verbose' is non-zero.
22046 */
22047 void
22048last_set_msg(scriptID)
22049 scid_T scriptID;
22050{
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000022051 char_u *p;
22052
Bram Moolenaar661b1822005-07-28 22:36:45 +000022053 if (scriptID != 0)
22054 {
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000022055 p = home_replace_save(NULL, get_scriptname(scriptID));
22056 if (p != NULL)
22057 {
22058 verbose_enter();
22059 MSG_PUTS(_("\n\tLast set from "));
22060 MSG_PUTS(p);
22061 vim_free(p);
22062 verbose_leave();
22063 }
Bram Moolenaar661b1822005-07-28 22:36:45 +000022064 }
22065}
22066
Bram Moolenaard812df62008-11-09 12:46:09 +000022067/*
22068 * List v:oldfiles in a nice way.
22069 */
Bram Moolenaard812df62008-11-09 12:46:09 +000022070 void
22071ex_oldfiles(eap)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000022072 exarg_T *eap UNUSED;
Bram Moolenaard812df62008-11-09 12:46:09 +000022073{
22074 list_T *l = vimvars[VV_OLDFILES].vv_list;
22075 listitem_T *li;
22076 int nr = 0;
22077
22078 if (l == NULL)
22079 msg((char_u *)_("No old files"));
22080 else
22081 {
22082 msg_start();
22083 msg_scroll = TRUE;
22084 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
22085 {
22086 msg_outnum((long)++nr);
22087 MSG_PUTS(": ");
22088 msg_outtrans(get_tv_string(&li->li_tv));
22089 msg_putchar('\n');
22090 out_flush(); /* output one line at a time */
22091 ui_breakcheck();
22092 }
22093 /* Assume "got_int" was set to truncate the listing. */
22094 got_int = FALSE;
22095
22096#ifdef FEAT_BROWSE_CMD
22097 if (cmdmod.browse)
22098 {
22099 quit_more = FALSE;
22100 nr = prompt_for_number(FALSE);
22101 msg_starthere();
22102 if (nr > 0)
22103 {
22104 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
22105 (long)nr);
22106
22107 if (p != NULL)
22108 {
22109 p = expand_env_save(p);
22110 eap->arg = p;
22111 eap->cmdidx = CMD_edit;
22112 cmdmod.browse = FALSE;
22113 do_exedit(eap, NULL);
22114 vim_free(p);
22115 }
22116 }
22117 }
22118#endif
22119 }
22120}
22121
Bram Moolenaar071d4272004-06-13 20:20:40 +000022122#endif /* FEAT_EVAL */
22123
Bram Moolenaar071d4272004-06-13 20:20:40 +000022124
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022125#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022126
22127#ifdef WIN3264
22128/*
22129 * Functions for ":8" filename modifier: get 8.3 version of a filename.
22130 */
22131static int get_short_pathname __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22132static int shortpath_for_invalid_fname __ARGS((char_u **fname, char_u **bufp, int *fnamelen));
22133static int shortpath_for_partial __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22134
22135/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022136 * Get the short path (8.3) for the filename in "fnamep".
22137 * Only works for a valid file name.
22138 * When the path gets longer "fnamep" is changed and the allocated buffer
22139 * is put in "bufp".
22140 * *fnamelen is the length of "fnamep" and set to 0 for a nonexistent path.
22141 * Returns OK on success, FAIL on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022142 */
22143 static int
22144get_short_pathname(fnamep, bufp, fnamelen)
22145 char_u **fnamep;
22146 char_u **bufp;
22147 int *fnamelen;
22148{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022149 int l, len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022150 char_u *newbuf;
22151
22152 len = *fnamelen;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022153 l = GetShortPathName(*fnamep, *fnamep, len);
22154 if (l > len - 1)
22155 {
22156 /* If that doesn't work (not enough space), then save the string
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022157 * and try again with a new buffer big enough. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022158 newbuf = vim_strnsave(*fnamep, l);
22159 if (newbuf == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022160 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022161
22162 vim_free(*bufp);
22163 *fnamep = *bufp = newbuf;
22164
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022165 /* Really should always succeed, as the buffer is big enough. */
22166 l = GetShortPathName(*fnamep, *fnamep, l+1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022167 }
22168
22169 *fnamelen = l;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022170 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022171}
22172
22173/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022174 * Get the short path (8.3) for the filename in "fname". The converted
22175 * path is returned in "bufp".
22176 *
22177 * Some of the directories specified in "fname" may not exist. This function
22178 * will shorten the existing directories at the beginning of the path and then
22179 * append the remaining non-existing path.
22180 *
22181 * fname - Pointer to the filename to shorten. On return, contains the
22182 * pointer to the shortened pathname
22183 * bufp - Pointer to an allocated buffer for the filename.
22184 * fnamelen - Length of the filename pointed to by fname
22185 *
22186 * Returns OK on success (or nothing done) and FAIL on failure (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +000022187 */
22188 static int
22189shortpath_for_invalid_fname(fname, bufp, fnamelen)
22190 char_u **fname;
22191 char_u **bufp;
22192 int *fnamelen;
22193{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022194 char_u *short_fname, *save_fname, *pbuf_unused;
22195 char_u *endp, *save_endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022196 char_u ch;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022197 int old_len, len;
22198 int new_len, sfx_len;
22199 int retval = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022200
22201 /* Make a copy */
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022202 old_len = *fnamelen;
22203 save_fname = vim_strnsave(*fname, old_len);
22204 pbuf_unused = NULL;
22205 short_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022206
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022207 endp = save_fname + old_len - 1; /* Find the end of the copy */
22208 save_endp = endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022209
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022210 /*
22211 * Try shortening the supplied path till it succeeds by removing one
22212 * directory at a time from the tail of the path.
22213 */
22214 len = 0;
22215 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022216 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022217 /* go back one path-separator */
22218 while (endp > save_fname && !after_pathsep(save_fname, endp + 1))
22219 --endp;
22220 if (endp <= save_fname)
22221 break; /* processed the complete path */
22222
22223 /*
22224 * Replace the path separator with a NUL and try to shorten the
22225 * resulting path.
22226 */
22227 ch = *endp;
22228 *endp = 0;
22229 short_fname = save_fname;
Bram Moolenaarc236c162008-07-13 17:41:49 +000022230 len = (int)STRLEN(short_fname) + 1;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022231 if (get_short_pathname(&short_fname, &pbuf_unused, &len) == FAIL)
22232 {
22233 retval = FAIL;
22234 goto theend;
22235 }
22236 *endp = ch; /* preserve the string */
22237
22238 if (len > 0)
22239 break; /* successfully shortened the path */
22240
22241 /* failed to shorten the path. Skip the path separator */
22242 --endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022243 }
22244
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022245 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022246 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022247 /*
22248 * Succeeded in shortening the path. Now concatenate the shortened
22249 * path with the remaining path at the tail.
22250 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022251
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022252 /* Compute the length of the new path. */
22253 sfx_len = (int)(save_endp - endp) + 1;
22254 new_len = len + sfx_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022255
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022256 *fnamelen = new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022257 vim_free(*bufp);
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022258 if (new_len > old_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022259 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022260 /* There is not enough space in the currently allocated string,
22261 * copy it to a buffer big enough. */
22262 *fname = *bufp = vim_strnsave(short_fname, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022263 if (*fname == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022264 {
22265 retval = FAIL;
22266 goto theend;
22267 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022268 }
22269 else
22270 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022271 /* Transfer short_fname to the main buffer (it's big enough),
22272 * unless get_short_pathname() did its work in-place. */
22273 *fname = *bufp = save_fname;
22274 if (short_fname != save_fname)
22275 vim_strncpy(save_fname, short_fname, len);
22276 save_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022277 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022278
22279 /* concat the not-shortened part of the path */
22280 vim_strncpy(*fname + len, endp, sfx_len);
22281 (*fname)[new_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022282 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022283
22284theend:
22285 vim_free(pbuf_unused);
22286 vim_free(save_fname);
22287
22288 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022289}
22290
22291/*
22292 * Get a pathname for a partial path.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022293 * Returns OK for success, FAIL for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022294 */
22295 static int
22296shortpath_for_partial(fnamep, bufp, fnamelen)
22297 char_u **fnamep;
22298 char_u **bufp;
22299 int *fnamelen;
22300{
22301 int sepcount, len, tflen;
22302 char_u *p;
22303 char_u *pbuf, *tfname;
22304 int hasTilde;
22305
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022306 /* Count up the path separators from the RHS.. so we know which part
22307 * of the path to return. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022308 sepcount = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022309 for (p = *fnamep; p < *fnamep + *fnamelen; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022310 if (vim_ispathsep(*p))
22311 ++sepcount;
22312
22313 /* Need full path first (use expand_env() to remove a "~/") */
22314 hasTilde = (**fnamep == '~');
22315 if (hasTilde)
22316 pbuf = tfname = expand_env_save(*fnamep);
22317 else
22318 pbuf = tfname = FullName_save(*fnamep, FALSE);
22319
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000022320 len = tflen = (int)STRLEN(tfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022321
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022322 if (get_short_pathname(&tfname, &pbuf, &len) == FAIL)
22323 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022324
22325 if (len == 0)
22326 {
22327 /* Don't have a valid filename, so shorten the rest of the
22328 * path if we can. This CAN give us invalid 8.3 filenames, but
22329 * there's not a lot of point in guessing what it might be.
22330 */
22331 len = tflen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022332 if (shortpath_for_invalid_fname(&tfname, &pbuf, &len) == FAIL)
22333 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022334 }
22335
22336 /* Count the paths backward to find the beginning of the desired string. */
22337 for (p = tfname + len - 1; p >= tfname; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022338 {
22339#ifdef FEAT_MBYTE
22340 if (has_mbyte)
22341 p -= mb_head_off(tfname, p);
22342#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000022343 if (vim_ispathsep(*p))
22344 {
22345 if (sepcount == 0 || (hasTilde && sepcount == 1))
22346 break;
22347 else
22348 sepcount --;
22349 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022350 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022351 if (hasTilde)
22352 {
22353 --p;
22354 if (p >= tfname)
22355 *p = '~';
22356 else
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022357 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022358 }
22359 else
22360 ++p;
22361
22362 /* Copy in the string - p indexes into tfname - allocated at pbuf */
22363 vim_free(*bufp);
22364 *fnamelen = (int)STRLEN(p);
22365 *bufp = pbuf;
22366 *fnamep = p;
22367
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022368 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022369}
22370#endif /* WIN3264 */
22371
22372/*
22373 * Adjust a filename, according to a string of modifiers.
22374 * *fnamep must be NUL terminated when called. When returning, the length is
22375 * determined by *fnamelen.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022376 * Returns VALID_ flags or -1 for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022377 * When there is an error, *fnamep is set to NULL.
22378 */
22379 int
22380modify_fname(src, usedlen, fnamep, bufp, fnamelen)
22381 char_u *src; /* string with modifiers */
22382 int *usedlen; /* characters after src that are used */
22383 char_u **fnamep; /* file name so far */
22384 char_u **bufp; /* buffer for allocated file name or NULL */
22385 int *fnamelen; /* length of fnamep */
22386{
22387 int valid = 0;
22388 char_u *tail;
22389 char_u *s, *p, *pbuf;
22390 char_u dirname[MAXPATHL];
22391 int c;
22392 int has_fullname = 0;
22393#ifdef WIN3264
22394 int has_shortname = 0;
22395#endif
22396
22397repeat:
22398 /* ":p" - full path/file_name */
22399 if (src[*usedlen] == ':' && src[*usedlen + 1] == 'p')
22400 {
22401 has_fullname = 1;
22402
22403 valid |= VALID_PATH;
22404 *usedlen += 2;
22405
22406 /* Expand "~/path" for all systems and "~user/path" for Unix and VMS */
22407 if ((*fnamep)[0] == '~'
22408#if !defined(UNIX) && !(defined(VMS) && defined(USER_HOME))
22409 && ((*fnamep)[1] == '/'
22410# ifdef BACKSLASH_IN_FILENAME
22411 || (*fnamep)[1] == '\\'
22412# endif
22413 || (*fnamep)[1] == NUL)
22414
22415#endif
22416 )
22417 {
22418 *fnamep = expand_env_save(*fnamep);
22419 vim_free(*bufp); /* free any allocated file name */
22420 *bufp = *fnamep;
22421 if (*fnamep == NULL)
22422 return -1;
22423 }
22424
22425 /* When "/." or "/.." is used: force expansion to get rid of it. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022426 for (p = *fnamep; *p != NUL; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022427 {
22428 if (vim_ispathsep(*p)
22429 && p[1] == '.'
22430 && (p[2] == NUL
22431 || vim_ispathsep(p[2])
22432 || (p[2] == '.'
22433 && (p[3] == NUL || vim_ispathsep(p[3])))))
22434 break;
22435 }
22436
22437 /* FullName_save() is slow, don't use it when not needed. */
22438 if (*p != NUL || !vim_isAbsName(*fnamep))
22439 {
22440 *fnamep = FullName_save(*fnamep, *p != NUL);
22441 vim_free(*bufp); /* free any allocated file name */
22442 *bufp = *fnamep;
22443 if (*fnamep == NULL)
22444 return -1;
22445 }
22446
22447 /* Append a path separator to a directory. */
22448 if (mch_isdir(*fnamep))
22449 {
22450 /* Make room for one or two extra characters. */
22451 *fnamep = vim_strnsave(*fnamep, (int)STRLEN(*fnamep) + 2);
22452 vim_free(*bufp); /* free any allocated file name */
22453 *bufp = *fnamep;
22454 if (*fnamep == NULL)
22455 return -1;
22456 add_pathsep(*fnamep);
22457 }
22458 }
22459
22460 /* ":." - path relative to the current directory */
22461 /* ":~" - path relative to the home directory */
22462 /* ":8" - shortname path - postponed till after */
22463 while (src[*usedlen] == ':'
22464 && ((c = src[*usedlen + 1]) == '.' || c == '~' || c == '8'))
22465 {
22466 *usedlen += 2;
22467 if (c == '8')
22468 {
22469#ifdef WIN3264
22470 has_shortname = 1; /* Postpone this. */
22471#endif
22472 continue;
22473 }
22474 pbuf = NULL;
22475 /* Need full path first (use expand_env() to remove a "~/") */
22476 if (!has_fullname)
22477 {
22478 if (c == '.' && **fnamep == '~')
22479 p = pbuf = expand_env_save(*fnamep);
22480 else
22481 p = pbuf = FullName_save(*fnamep, FALSE);
22482 }
22483 else
22484 p = *fnamep;
22485
22486 has_fullname = 0;
22487
22488 if (p != NULL)
22489 {
22490 if (c == '.')
22491 {
22492 mch_dirname(dirname, MAXPATHL);
22493 s = shorten_fname(p, dirname);
22494 if (s != NULL)
22495 {
22496 *fnamep = s;
22497 if (pbuf != NULL)
22498 {
22499 vim_free(*bufp); /* free any allocated file name */
22500 *bufp = pbuf;
22501 pbuf = NULL;
22502 }
22503 }
22504 }
22505 else
22506 {
22507 home_replace(NULL, p, dirname, MAXPATHL, TRUE);
22508 /* Only replace it when it starts with '~' */
22509 if (*dirname == '~')
22510 {
22511 s = vim_strsave(dirname);
22512 if (s != NULL)
22513 {
22514 *fnamep = s;
22515 vim_free(*bufp);
22516 *bufp = s;
22517 }
22518 }
22519 }
22520 vim_free(pbuf);
22521 }
22522 }
22523
22524 tail = gettail(*fnamep);
22525 *fnamelen = (int)STRLEN(*fnamep);
22526
22527 /* ":h" - head, remove "/file_name", can be repeated */
22528 /* Don't remove the first "/" or "c:\" */
22529 while (src[*usedlen] == ':' && src[*usedlen + 1] == 'h')
22530 {
22531 valid |= VALID_HEAD;
22532 *usedlen += 2;
22533 s = get_past_head(*fnamep);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022534 while (tail > s && after_pathsep(s, tail))
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022535 mb_ptr_back(*fnamep, tail);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022536 *fnamelen = (int)(tail - *fnamep);
22537#ifdef VMS
22538 if (*fnamelen > 0)
22539 *fnamelen += 1; /* the path separator is part of the path */
22540#endif
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022541 if (*fnamelen == 0)
22542 {
22543 /* Result is empty. Turn it into "." to make ":cd %:h" work. */
22544 p = vim_strsave((char_u *)".");
22545 if (p == NULL)
22546 return -1;
22547 vim_free(*bufp);
22548 *bufp = *fnamep = tail = p;
22549 *fnamelen = 1;
22550 }
22551 else
22552 {
22553 while (tail > s && !after_pathsep(s, tail))
22554 mb_ptr_back(*fnamep, tail);
22555 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022556 }
22557
22558 /* ":8" - shortname */
22559 if (src[*usedlen] == ':' && src[*usedlen + 1] == '8')
22560 {
22561 *usedlen += 2;
22562#ifdef WIN3264
22563 has_shortname = 1;
22564#endif
22565 }
22566
22567#ifdef WIN3264
22568 /* Check shortname after we have done 'heads' and before we do 'tails'
22569 */
22570 if (has_shortname)
22571 {
22572 pbuf = NULL;
22573 /* Copy the string if it is shortened by :h */
22574 if (*fnamelen < (int)STRLEN(*fnamep))
22575 {
22576 p = vim_strnsave(*fnamep, *fnamelen);
22577 if (p == 0)
22578 return -1;
22579 vim_free(*bufp);
22580 *bufp = *fnamep = p;
22581 }
22582
22583 /* Split into two implementations - makes it easier. First is where
22584 * there isn't a full name already, second is where there is.
22585 */
22586 if (!has_fullname && !vim_isAbsName(*fnamep))
22587 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022588 if (shortpath_for_partial(fnamep, bufp, fnamelen) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022589 return -1;
22590 }
22591 else
22592 {
22593 int l;
22594
22595 /* Simple case, already have the full-name
22596 * Nearly always shorter, so try first time. */
22597 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022598 if (get_short_pathname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022599 return -1;
22600
22601 if (l == 0)
22602 {
22603 /* Couldn't find the filename.. search the paths.
22604 */
22605 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022606 if (shortpath_for_invalid_fname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022607 return -1;
22608 }
22609 *fnamelen = l;
22610 }
22611 }
22612#endif /* WIN3264 */
22613
22614 /* ":t" - tail, just the basename */
22615 if (src[*usedlen] == ':' && src[*usedlen + 1] == 't')
22616 {
22617 *usedlen += 2;
22618 *fnamelen -= (int)(tail - *fnamep);
22619 *fnamep = tail;
22620 }
22621
22622 /* ":e" - extension, can be repeated */
22623 /* ":r" - root, without extension, can be repeated */
22624 while (src[*usedlen] == ':'
22625 && (src[*usedlen + 1] == 'e' || src[*usedlen + 1] == 'r'))
22626 {
22627 /* find a '.' in the tail:
22628 * - for second :e: before the current fname
22629 * - otherwise: The last '.'
22630 */
22631 if (src[*usedlen + 1] == 'e' && *fnamep > tail)
22632 s = *fnamep - 2;
22633 else
22634 s = *fnamep + *fnamelen - 1;
22635 for ( ; s > tail; --s)
22636 if (s[0] == '.')
22637 break;
22638 if (src[*usedlen + 1] == 'e') /* :e */
22639 {
22640 if (s > tail)
22641 {
22642 *fnamelen += (int)(*fnamep - (s + 1));
22643 *fnamep = s + 1;
22644#ifdef VMS
22645 /* cut version from the extension */
22646 s = *fnamep + *fnamelen - 1;
22647 for ( ; s > *fnamep; --s)
22648 if (s[0] == ';')
22649 break;
22650 if (s > *fnamep)
22651 *fnamelen = s - *fnamep;
22652#endif
22653 }
22654 else if (*fnamep <= tail)
22655 *fnamelen = 0;
22656 }
22657 else /* :r */
22658 {
22659 if (s > tail) /* remove one extension */
22660 *fnamelen = (int)(s - *fnamep);
22661 }
22662 *usedlen += 2;
22663 }
22664
22665 /* ":s?pat?foo?" - substitute */
22666 /* ":gs?pat?foo?" - global substitute */
22667 if (src[*usedlen] == ':'
22668 && (src[*usedlen + 1] == 's'
22669 || (src[*usedlen + 1] == 'g' && src[*usedlen + 2] == 's')))
22670 {
22671 char_u *str;
22672 char_u *pat;
22673 char_u *sub;
22674 int sep;
22675 char_u *flags;
22676 int didit = FALSE;
22677
22678 flags = (char_u *)"";
22679 s = src + *usedlen + 2;
22680 if (src[*usedlen + 1] == 'g')
22681 {
22682 flags = (char_u *)"g";
22683 ++s;
22684 }
22685
22686 sep = *s++;
22687 if (sep)
22688 {
22689 /* find end of pattern */
22690 p = vim_strchr(s, sep);
22691 if (p != NULL)
22692 {
22693 pat = vim_strnsave(s, (int)(p - s));
22694 if (pat != NULL)
22695 {
22696 s = p + 1;
22697 /* find end of substitution */
22698 p = vim_strchr(s, sep);
22699 if (p != NULL)
22700 {
22701 sub = vim_strnsave(s, (int)(p - s));
22702 str = vim_strnsave(*fnamep, *fnamelen);
22703 if (sub != NULL && str != NULL)
22704 {
22705 *usedlen = (int)(p + 1 - src);
22706 s = do_string_sub(str, pat, sub, flags);
22707 if (s != NULL)
22708 {
22709 *fnamep = s;
22710 *fnamelen = (int)STRLEN(s);
22711 vim_free(*bufp);
22712 *bufp = s;
22713 didit = TRUE;
22714 }
22715 }
22716 vim_free(sub);
22717 vim_free(str);
22718 }
22719 vim_free(pat);
22720 }
22721 }
22722 /* after using ":s", repeat all the modifiers */
22723 if (didit)
22724 goto repeat;
22725 }
22726 }
22727
22728 return valid;
22729}
22730
22731/*
22732 * Perform a substitution on "str" with pattern "pat" and substitute "sub".
22733 * "flags" can be "g" to do a global substitute.
22734 * Returns an allocated string, NULL for error.
22735 */
22736 char_u *
22737do_string_sub(str, pat, sub, flags)
22738 char_u *str;
22739 char_u *pat;
22740 char_u *sub;
22741 char_u *flags;
22742{
22743 int sublen;
22744 regmatch_T regmatch;
22745 int i;
22746 int do_all;
22747 char_u *tail;
22748 garray_T ga;
22749 char_u *ret;
22750 char_u *save_cpo;
22751
22752 /* Make 'cpoptions' empty, so that the 'l' flag doesn't work here */
22753 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022754 p_cpo = empty_option;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022755
22756 ga_init2(&ga, 1, 200);
22757
22758 do_all = (flags[0] == 'g');
22759
22760 regmatch.rm_ic = p_ic;
22761 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
22762 if (regmatch.regprog != NULL)
22763 {
22764 tail = str;
22765 while (vim_regexec_nl(&regmatch, str, (colnr_T)(tail - str)))
22766 {
22767 /*
22768 * Get some space for a temporary buffer to do the substitution
22769 * into. It will contain:
22770 * - The text up to where the match is.
22771 * - The substituted text.
22772 * - The text after the match.
22773 */
22774 sublen = vim_regsub(&regmatch, sub, tail, FALSE, TRUE, FALSE);
22775 if (ga_grow(&ga, (int)(STRLEN(tail) + sublen -
22776 (regmatch.endp[0] - regmatch.startp[0]))) == FAIL)
22777 {
22778 ga_clear(&ga);
22779 break;
22780 }
22781
22782 /* copy the text up to where the match is */
22783 i = (int)(regmatch.startp[0] - tail);
22784 mch_memmove((char_u *)ga.ga_data + ga.ga_len, tail, (size_t)i);
22785 /* add the substituted text */
22786 (void)vim_regsub(&regmatch, sub, (char_u *)ga.ga_data
22787 + ga.ga_len + i, TRUE, TRUE, FALSE);
22788 ga.ga_len += i + sublen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022789 /* avoid getting stuck on a match with an empty string */
22790 if (tail == regmatch.endp[0])
22791 {
22792 if (*tail == NUL)
22793 break;
22794 *((char_u *)ga.ga_data + ga.ga_len) = *tail++;
22795 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022796 }
22797 else
22798 {
22799 tail = regmatch.endp[0];
22800 if (*tail == NUL)
22801 break;
22802 }
22803 if (!do_all)
22804 break;
22805 }
22806
22807 if (ga.ga_data != NULL)
22808 STRCPY((char *)ga.ga_data + ga.ga_len, tail);
22809
22810 vim_free(regmatch.regprog);
22811 }
22812
22813 ret = vim_strsave(ga.ga_data == NULL ? str : (char_u *)ga.ga_data);
22814 ga_clear(&ga);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022815 if (p_cpo == empty_option)
22816 p_cpo = save_cpo;
22817 else
22818 /* Darn, evaluating {sub} expression changed the value. */
22819 free_string_option(save_cpo);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022820
22821 return ret;
22822}
22823
22824#endif /* defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) */