blob: aff6152ec60d1d8552aec400eca2a80e8dce1399 [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
148static 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));
436static int list_append_tv __ARGS((list_T *l, typval_T *tv));
Bram Moolenaar4463f292005-09-25 22:20:24 +0000437static int list_append_number __ARGS((list_T *l, varnumber_T n));
Bram Moolenaar33570922005-01-25 22:26:29 +0000438static int list_insert_tv __ARGS((list_T *l, typval_T *tv, listitem_T *item));
439static int list_extend __ARGS((list_T *l1, list_T *l2, listitem_T *bef));
440static int list_concat __ARGS((list_T *l1, list_T *l2, typval_T *tv));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000441static list_T *list_copy __ARGS((list_T *orig, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000442static void list_remove __ARGS((list_T *l, listitem_T *item, listitem_T *item2));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000443static char_u *list2string __ARGS((typval_T *tv, int copyID));
444static int list_join __ARGS((garray_T *gap, list_T *l, char_u *sep, int echo, int copyID));
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +0000445static int free_unref_items __ARGS((int copyID));
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000446static void set_ref_in_ht __ARGS((hashtab_T *ht, int copyID));
447static void set_ref_in_list __ARGS((list_T *l, int copyID));
448static void set_ref_in_item __ARGS((typval_T *tv, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000449static void dict_unref __ARGS((dict_T *d));
Bram Moolenaar685295c2006-10-15 20:37:38 +0000450static void dict_free __ARGS((dict_T *d, int recurse));
Bram Moolenaar33570922005-01-25 22:26:29 +0000451static dictitem_T *dictitem_alloc __ARGS((char_u *key));
452static dictitem_T *dictitem_copy __ARGS((dictitem_T *org));
453static void dictitem_remove __ARGS((dict_T *dict, dictitem_T *item));
454static void dictitem_free __ARGS((dictitem_T *item));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000455static dict_T *dict_copy __ARGS((dict_T *orig, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000456static int dict_add __ARGS((dict_T *d, dictitem_T *item));
457static long dict_len __ARGS((dict_T *d));
458static dictitem_T *dict_find __ARGS((dict_T *d, char_u *key, int len));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000459static char_u *dict2string __ARGS((typval_T *tv, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000460static int get_dict_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000461static char_u *echo_string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
462static char_u *tv2string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000463static char_u *string_quote __ARGS((char_u *str, int function));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000464#ifdef FEAT_FLOAT
465static int string2float __ARGS((char_u *text, float_T *value));
466#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000467static int get_env_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
468static int find_internal_func __ARGS((char_u *name));
469static char_u *deref_func_name __ARGS((char_u *name, int *lenp));
470static 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));
471static 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 +0000472static void emsg_funcname __ARGS((char *ermsg, char_u *name));
Bram Moolenaar05bb9532008-07-04 09:44:11 +0000473static int non_zero_arg __ARGS((typval_T *argvars));
Bram Moolenaar33570922005-01-25 22:26:29 +0000474
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000475#ifdef FEAT_FLOAT
476static void f_abs __ARGS((typval_T *argvars, typval_T *rettv));
477#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000478static void f_add __ARGS((typval_T *argvars, typval_T *rettv));
479static void f_append __ARGS((typval_T *argvars, typval_T *rettv));
480static void f_argc __ARGS((typval_T *argvars, typval_T *rettv));
481static void f_argidx __ARGS((typval_T *argvars, typval_T *rettv));
482static void f_argv __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000483#ifdef FEAT_FLOAT
484static void f_atan __ARGS((typval_T *argvars, typval_T *rettv));
485#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000486static void f_browse __ARGS((typval_T *argvars, typval_T *rettv));
487static void f_browsedir __ARGS((typval_T *argvars, typval_T *rettv));
488static void f_bufexists __ARGS((typval_T *argvars, typval_T *rettv));
489static void f_buflisted __ARGS((typval_T *argvars, typval_T *rettv));
490static void f_bufloaded __ARGS((typval_T *argvars, typval_T *rettv));
491static void f_bufname __ARGS((typval_T *argvars, typval_T *rettv));
492static void f_bufnr __ARGS((typval_T *argvars, typval_T *rettv));
493static void f_bufwinnr __ARGS((typval_T *argvars, typval_T *rettv));
494static void f_byte2line __ARGS((typval_T *argvars, typval_T *rettv));
495static void f_byteidx __ARGS((typval_T *argvars, typval_T *rettv));
496static void f_call __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000497#ifdef FEAT_FLOAT
498static void f_ceil __ARGS((typval_T *argvars, typval_T *rettv));
499#endif
Bram Moolenaarf0acfce2006-03-17 23:21:19 +0000500static void f_changenr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000501static void f_char2nr __ARGS((typval_T *argvars, typval_T *rettv));
502static void f_cindent __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000503static void f_clearmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000504static void f_col __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar572cb562005-08-05 21:35:02 +0000505#if defined(FEAT_INS_EXPAND)
Bram Moolenaarade00832006-03-10 21:46:58 +0000506static void f_complete __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar572cb562005-08-05 21:35:02 +0000507static void f_complete_add __ARGS((typval_T *argvars, typval_T *rettv));
508static void f_complete_check __ARGS((typval_T *argvars, typval_T *rettv));
509#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000510static void f_confirm __ARGS((typval_T *argvars, typval_T *rettv));
511static void f_copy __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000512#ifdef FEAT_FLOAT
513static void f_cos __ARGS((typval_T *argvars, typval_T *rettv));
514#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000515static void f_count __ARGS((typval_T *argvars, typval_T *rettv));
516static void f_cscope_connection __ARGS((typval_T *argvars, typval_T *rettv));
517static void f_cursor __ARGS((typval_T *argsvars, typval_T *rettv));
518static void f_deepcopy __ARGS((typval_T *argvars, typval_T *rettv));
519static void f_delete __ARGS((typval_T *argvars, typval_T *rettv));
520static void f_did_filetype __ARGS((typval_T *argvars, typval_T *rettv));
521static void f_diff_filler __ARGS((typval_T *argvars, typval_T *rettv));
522static void f_diff_hlID __ARGS((typval_T *argvars, typval_T *rettv));
523static void f_empty __ARGS((typval_T *argvars, typval_T *rettv));
524static void f_escape __ARGS((typval_T *argvars, typval_T *rettv));
525static void f_eval __ARGS((typval_T *argvars, typval_T *rettv));
526static void f_eventhandler __ARGS((typval_T *argvars, typval_T *rettv));
527static void f_executable __ARGS((typval_T *argvars, typval_T *rettv));
528static void f_exists __ARGS((typval_T *argvars, typval_T *rettv));
529static void f_expand __ARGS((typval_T *argvars, typval_T *rettv));
530static void f_extend __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000531static void f_feedkeys __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000532static void f_filereadable __ARGS((typval_T *argvars, typval_T *rettv));
533static void f_filewritable __ARGS((typval_T *argvars, typval_T *rettv));
534static void f_filter __ARGS((typval_T *argvars, typval_T *rettv));
535static void f_finddir __ARGS((typval_T *argvars, typval_T *rettv));
536static void f_findfile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000537#ifdef FEAT_FLOAT
538static void f_float2nr __ARGS((typval_T *argvars, typval_T *rettv));
539static void f_floor __ARGS((typval_T *argvars, typval_T *rettv));
540#endif
Bram Moolenaaraebaf892008-05-28 14:49:58 +0000541static void f_fnameescape __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000542static void f_fnamemodify __ARGS((typval_T *argvars, typval_T *rettv));
543static void f_foldclosed __ARGS((typval_T *argvars, typval_T *rettv));
544static void f_foldclosedend __ARGS((typval_T *argvars, typval_T *rettv));
545static void f_foldlevel __ARGS((typval_T *argvars, typval_T *rettv));
546static void f_foldtext __ARGS((typval_T *argvars, typval_T *rettv));
547static void f_foldtextresult __ARGS((typval_T *argvars, typval_T *rettv));
548static void f_foreground __ARGS((typval_T *argvars, typval_T *rettv));
549static void f_function __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000550static void f_garbagecollect __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000551static void f_get __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar80fc0432005-07-20 22:06:07 +0000552static void f_getbufline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000553static void f_getbufvar __ARGS((typval_T *argvars, typval_T *rettv));
554static void f_getchar __ARGS((typval_T *argvars, typval_T *rettv));
555static void f_getcharmod __ARGS((typval_T *argvars, typval_T *rettv));
556static void f_getcmdline __ARGS((typval_T *argvars, typval_T *rettv));
557static void f_getcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000558static void f_getcmdtype __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000559static void f_getcwd __ARGS((typval_T *argvars, typval_T *rettv));
560static void f_getfontname __ARGS((typval_T *argvars, typval_T *rettv));
561static void f_getfperm __ARGS((typval_T *argvars, typval_T *rettv));
562static void f_getfsize __ARGS((typval_T *argvars, typval_T *rettv));
563static void f_getftime __ARGS((typval_T *argvars, typval_T *rettv));
564static void f_getftype __ARGS((typval_T *argvars, typval_T *rettv));
565static void f_getline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000566static void f_getmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar18081e32008-02-20 19:11:07 +0000567static void f_getpid __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaara5525202006-03-02 22:52:09 +0000568static void f_getpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2641f772005-03-25 21:58:17 +0000569static void f_getqflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000570static void f_getreg __ARGS((typval_T *argvars, typval_T *rettv));
571static void f_getregtype __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000572static void f_gettabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000573static void f_getwinposx __ARGS((typval_T *argvars, typval_T *rettv));
574static void f_getwinposy __ARGS((typval_T *argvars, typval_T *rettv));
575static void f_getwinvar __ARGS((typval_T *argvars, typval_T *rettv));
576static void f_glob __ARGS((typval_T *argvars, typval_T *rettv));
577static void f_globpath __ARGS((typval_T *argvars, typval_T *rettv));
578static void f_has __ARGS((typval_T *argvars, typval_T *rettv));
579static void f_has_key __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard267b9c2007-04-26 15:06:45 +0000580static void f_haslocaldir __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000581static void f_hasmapto __ARGS((typval_T *argvars, typval_T *rettv));
582static void f_histadd __ARGS((typval_T *argvars, typval_T *rettv));
583static void f_histdel __ARGS((typval_T *argvars, typval_T *rettv));
584static void f_histget __ARGS((typval_T *argvars, typval_T *rettv));
585static void f_histnr __ARGS((typval_T *argvars, typval_T *rettv));
586static void f_hlID __ARGS((typval_T *argvars, typval_T *rettv));
587static void f_hlexists __ARGS((typval_T *argvars, typval_T *rettv));
588static void f_hostname __ARGS((typval_T *argvars, typval_T *rettv));
589static void f_iconv __ARGS((typval_T *argvars, typval_T *rettv));
590static void f_indent __ARGS((typval_T *argvars, typval_T *rettv));
591static void f_index __ARGS((typval_T *argvars, typval_T *rettv));
592static void f_input __ARGS((typval_T *argvars, typval_T *rettv));
593static void f_inputdialog __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6efa2b32005-09-10 19:26:26 +0000594static void f_inputlist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000595static void f_inputrestore __ARGS((typval_T *argvars, typval_T *rettv));
596static void f_inputsave __ARGS((typval_T *argvars, typval_T *rettv));
597static void f_inputsecret __ARGS((typval_T *argvars, typval_T *rettv));
598static void f_insert __ARGS((typval_T *argvars, typval_T *rettv));
599static void f_isdirectory __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000600static void f_islocked __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000601static void f_items __ARGS((typval_T *argvars, typval_T *rettv));
602static void f_join __ARGS((typval_T *argvars, typval_T *rettv));
603static void f_keys __ARGS((typval_T *argvars, typval_T *rettv));
604static void f_last_buffer_nr __ARGS((typval_T *argvars, typval_T *rettv));
605static void f_len __ARGS((typval_T *argvars, typval_T *rettv));
606static void f_libcall __ARGS((typval_T *argvars, typval_T *rettv));
607static void f_libcallnr __ARGS((typval_T *argvars, typval_T *rettv));
608static void f_line __ARGS((typval_T *argvars, typval_T *rettv));
609static void f_line2byte __ARGS((typval_T *argvars, typval_T *rettv));
610static void f_lispindent __ARGS((typval_T *argvars, typval_T *rettv));
611static void f_localtime __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000612#ifdef FEAT_FLOAT
613static void f_log10 __ARGS((typval_T *argvars, typval_T *rettv));
614#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000615static void f_map __ARGS((typval_T *argvars, typval_T *rettv));
616static void f_maparg __ARGS((typval_T *argvars, typval_T *rettv));
617static void f_mapcheck __ARGS((typval_T *argvars, typval_T *rettv));
618static void f_match __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000619static void f_matchadd __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000620static void f_matcharg __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000621static void f_matchdelete __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000622static void f_matchend __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000623static void f_matchlist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000624static void f_matchstr __ARGS((typval_T *argvars, typval_T *rettv));
625static void f_max __ARGS((typval_T *argvars, typval_T *rettv));
626static void f_min __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000627#ifdef vim_mkdir
628static void f_mkdir __ARGS((typval_T *argvars, typval_T *rettv));
629#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000630static void f_mode __ARGS((typval_T *argvars, typval_T *rettv));
631static void f_nextnonblank __ARGS((typval_T *argvars, typval_T *rettv));
632static void f_nr2char __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000633static void f_pathshorten __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000634#ifdef FEAT_FLOAT
635static void f_pow __ARGS((typval_T *argvars, typval_T *rettv));
636#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000637static void f_prevnonblank __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000638static void f_printf __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000639static void f_pumvisible __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000640static void f_range __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000641static void f_readfile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaare580b0c2006-03-21 21:33:03 +0000642static void f_reltime __ARGS((typval_T *argvars, typval_T *rettv));
643static void f_reltimestr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000644static void f_remote_expr __ARGS((typval_T *argvars, typval_T *rettv));
645static void f_remote_foreground __ARGS((typval_T *argvars, typval_T *rettv));
646static void f_remote_peek __ARGS((typval_T *argvars, typval_T *rettv));
647static void f_remote_read __ARGS((typval_T *argvars, typval_T *rettv));
648static void f_remote_send __ARGS((typval_T *argvars, typval_T *rettv));
649static void f_remove __ARGS((typval_T *argvars, typval_T *rettv));
650static void f_rename __ARGS((typval_T *argvars, typval_T *rettv));
651static void f_repeat __ARGS((typval_T *argvars, typval_T *rettv));
652static void f_resolve __ARGS((typval_T *argvars, typval_T *rettv));
653static void f_reverse __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000654#ifdef FEAT_FLOAT
655static void f_round __ARGS((typval_T *argvars, typval_T *rettv));
656#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000657static void f_search __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaardd2436f2005-09-05 22:14:46 +0000658static void f_searchdecl __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000659static void f_searchpair __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000660static void f_searchpairpos __ARGS((typval_T *argvars, typval_T *rettv));
661static void f_searchpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000662static void f_server2client __ARGS((typval_T *argvars, typval_T *rettv));
663static void f_serverlist __ARGS((typval_T *argvars, typval_T *rettv));
664static void f_setbufvar __ARGS((typval_T *argvars, typval_T *rettv));
665static void f_setcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
666static void f_setline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000667static void f_setloclist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000668static void f_setmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar0e34f622006-03-03 23:00:03 +0000669static void f_setpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2641f772005-03-25 21:58:17 +0000670static void f_setqflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000671static void f_setreg __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000672static void f_settabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000673static void f_setwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar60a495f2006-10-03 12:44:42 +0000674static void f_shellescape __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000675static void f_simplify __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000676#ifdef FEAT_FLOAT
677static void f_sin __ARGS((typval_T *argvars, typval_T *rettv));
678#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000679static void f_sort __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +0000680static void f_soundfold __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000681static void f_spellbadword __ARGS((typval_T *argvars, typval_T *rettv));
682static void f_spellsuggest __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000683static void f_split __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000684#ifdef FEAT_FLOAT
685static void f_sqrt __ARGS((typval_T *argvars, typval_T *rettv));
686static void f_str2float __ARGS((typval_T *argvars, typval_T *rettv));
687#endif
Bram Moolenaar2c932302006-03-18 21:42:09 +0000688static void f_str2nr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000689#ifdef HAVE_STRFTIME
690static void f_strftime __ARGS((typval_T *argvars, typval_T *rettv));
691#endif
692static void f_stridx __ARGS((typval_T *argvars, typval_T *rettv));
693static void f_string __ARGS((typval_T *argvars, typval_T *rettv));
694static void f_strlen __ARGS((typval_T *argvars, typval_T *rettv));
695static void f_strpart __ARGS((typval_T *argvars, typval_T *rettv));
696static void f_strridx __ARGS((typval_T *argvars, typval_T *rettv));
697static void f_strtrans __ARGS((typval_T *argvars, typval_T *rettv));
698static void f_submatch __ARGS((typval_T *argvars, typval_T *rettv));
699static void f_substitute __ARGS((typval_T *argvars, typval_T *rettv));
700static void f_synID __ARGS((typval_T *argvars, typval_T *rettv));
701static void f_synIDattr __ARGS((typval_T *argvars, typval_T *rettv));
702static void f_synIDtrans __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar9d188ab2008-01-10 21:24:39 +0000703static void f_synstack __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000704static void f_system __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000705static void f_tabpagebuflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000706static void f_tabpagenr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000707static void f_tabpagewinnr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000708static void f_taglist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard43b6cf2005-09-09 19:53:42 +0000709static void f_tagfiles __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000710static void f_tempname __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard52d9742005-08-21 22:20:28 +0000711static void f_test __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000712static void f_tolower __ARGS((typval_T *argvars, typval_T *rettv));
713static void f_toupper __ARGS((typval_T *argvars, typval_T *rettv));
714static void f_tr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000715#ifdef FEAT_FLOAT
716static void f_trunc __ARGS((typval_T *argvars, typval_T *rettv));
717#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000718static void f_type __ARGS((typval_T *argvars, typval_T *rettv));
719static void f_values __ARGS((typval_T *argvars, typval_T *rettv));
720static void f_virtcol __ARGS((typval_T *argvars, typval_T *rettv));
721static void f_visualmode __ARGS((typval_T *argvars, typval_T *rettv));
722static void f_winbufnr __ARGS((typval_T *argvars, typval_T *rettv));
723static void f_wincol __ARGS((typval_T *argvars, typval_T *rettv));
724static void f_winheight __ARGS((typval_T *argvars, typval_T *rettv));
725static void f_winline __ARGS((typval_T *argvars, typval_T *rettv));
726static void f_winnr __ARGS((typval_T *argvars, typval_T *rettv));
727static void f_winrestcmd __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar768b8c42006-03-04 21:58:33 +0000728static void f_winrestview __ARGS((typval_T *argvars, typval_T *rettv));
729static void f_winsaveview __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000730static void f_winwidth __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000731static void f_writefile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000732
Bram Moolenaar0e34f622006-03-03 23:00:03 +0000733static int list2fpos __ARGS((typval_T *arg, pos_T *posp, int *fnump));
Bram Moolenaar477933c2007-07-17 14:32:23 +0000734static pos_T *var2fpos __ARGS((typval_T *varp, int dollar_lnum, int *fnum));
Bram Moolenaar33570922005-01-25 22:26:29 +0000735static int get_env_len __ARGS((char_u **arg));
736static int get_id_len __ARGS((char_u **arg));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000737static int get_name_len __ARGS((char_u **arg, char_u **alias, int evaluate, int verbose));
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000738static char_u *find_name_end __ARGS((char_u *arg, char_u **expr_start, char_u **expr_end, int flags));
739#define FNE_INCL_BR 1 /* find_name_end(): include [] in name */
740#define FNE_CHECK_START 2 /* find_name_end(): check name starts with
741 valid character */
Bram Moolenaara40058a2005-07-11 22:42:07 +0000742static 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 +0000743static int eval_isnamec __ARGS((int c));
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000744static int eval_isnamec1 __ARGS((int c));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000745static int get_var_tv __ARGS((char_u *name, int len, typval_T *rettv, int verbose));
746static int handle_subscript __ARGS((char_u **arg, typval_T *rettv, int evaluate, int verbose));
Bram Moolenaar33570922005-01-25 22:26:29 +0000747static typval_T *alloc_tv __ARGS((void));
748static typval_T *alloc_string_tv __ARGS((char_u *string));
Bram Moolenaar33570922005-01-25 22:26:29 +0000749static void init_tv __ARGS((typval_T *varp));
750static long get_tv_number __ARGS((typval_T *varp));
751static linenr_T get_tv_lnum __ARGS((typval_T *argvars));
Bram Moolenaar661b1822005-07-28 22:36:45 +0000752static linenr_T get_tv_lnum_buf __ARGS((typval_T *argvars, buf_T *buf));
Bram Moolenaar33570922005-01-25 22:26:29 +0000753static char_u *get_tv_string __ARGS((typval_T *varp));
754static char_u *get_tv_string_buf __ARGS((typval_T *varp, char_u *buf));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000755static char_u *get_tv_string_buf_chk __ARGS((typval_T *varp, char_u *buf));
Bram Moolenaar33570922005-01-25 22:26:29 +0000756static dictitem_T *find_var __ARGS((char_u *name, hashtab_T **htp));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000757static dictitem_T *find_var_in_ht __ARGS((hashtab_T *ht, char_u *varname, int writing));
Bram Moolenaar33570922005-01-25 22:26:29 +0000758static hashtab_T *find_var_ht __ARGS((char_u *name, char_u **varname));
759static void vars_clear_ext __ARGS((hashtab_T *ht, int free_val));
760static void delete_var __ARGS((hashtab_T *ht, hashitem_T *hi));
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000761static void list_one_var __ARGS((dictitem_T *v, char_u *prefix, int *first));
762static 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 +0000763static void set_var __ARGS((char_u *name, typval_T *varp, int copy));
764static int var_check_ro __ARGS((int flags, char_u *name));
Bram Moolenaar4e957af2006-09-02 11:41:07 +0000765static int var_check_fixed __ARGS((int flags, char_u *name));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000766static int tv_check_lock __ARGS((int lock, char_u *name));
Bram Moolenaar33570922005-01-25 22:26:29 +0000767static void copy_tv __ARGS((typval_T *from, typval_T *to));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000768static int item_copy __ARGS((typval_T *from, typval_T *to, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000769static char_u *find_option_end __ARGS((char_u **arg, int *opt_flags));
770static char_u *trans_function_name __ARGS((char_u **pp, int skip, int flags, funcdict_T *fd));
771static int eval_fname_script __ARGS((char_u *p));
772static int eval_fname_sid __ARGS((char_u *p));
773static void list_func_head __ARGS((ufunc_T *fp, int indent));
Bram Moolenaar33570922005-01-25 22:26:29 +0000774static ufunc_T *find_func __ARGS((char_u *name));
775static int function_exists __ARGS((char_u *name));
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000776static int builtin_function __ARGS((char_u *name));
Bram Moolenaar05159a02005-02-26 23:04:13 +0000777#ifdef FEAT_PROFILE
778static void func_do_profile __ARGS((ufunc_T *fp));
Bram Moolenaar73830342005-02-28 22:48:19 +0000779static void prof_sort_list __ARGS((FILE *fd, ufunc_T **sorttab, int st_len, char *title, int prefer_self));
780static void prof_func_line __ARGS((FILE *fd, int count, proftime_T *total, proftime_T *self, int prefer_self));
781static int
782# ifdef __BORLANDC__
783 _RTLENTRYF
784# endif
785 prof_total_cmp __ARGS((const void *s1, const void *s2));
786static int
787# ifdef __BORLANDC__
788 _RTLENTRYF
789# endif
790 prof_self_cmp __ARGS((const void *s1, const void *s2));
Bram Moolenaar05159a02005-02-26 23:04:13 +0000791#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000792static int script_autoload __ARGS((char_u *name, int reload));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000793static char_u *autoload_name __ARGS((char_u *name));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000794static void cat_func_name __ARGS((char_u *buf, ufunc_T *fp));
Bram Moolenaar33570922005-01-25 22:26:29 +0000795static void func_free __ARGS((ufunc_T *fp));
796static void func_unref __ARGS((char_u *name));
797static void func_ref __ARGS((char_u *name));
798static 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 +0000799static int can_free_funccal __ARGS((funccall_T *fc, int copyID)) ;
800static void free_funccal __ARGS((funccall_T *fc, int free_val));
Bram Moolenaar33570922005-01-25 22:26:29 +0000801static void add_nr_var __ARGS((dict_T *dp, dictitem_T *v, char *name, varnumber_T nr));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000802static win_T *find_win_by_nr __ARGS((typval_T *vp, tabpage_T *tp));
803static void getwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000804static int searchpair_cmn __ARGS((typval_T *argvars, pos_T *match_pos));
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000805static int search_cmn __ARGS((typval_T *argvars, pos_T *match_pos, int *flagsp));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000806static void setwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
Bram Moolenaar33570922005-01-25 22:26:29 +0000807
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000808/* Character used as separated in autoload function/variable names. */
809#define AUTOLOAD_CHAR '#'
810
Bram Moolenaar33570922005-01-25 22:26:29 +0000811/*
812 * Initialize the global and v: variables.
Bram Moolenaara7043832005-01-21 11:56:39 +0000813 */
814 void
815eval_init()
816{
Bram Moolenaar33570922005-01-25 22:26:29 +0000817 int i;
818 struct vimvar *p;
819
820 init_var_dict(&globvardict, &globvars_var);
821 init_var_dict(&vimvardict, &vimvars_var);
Bram Moolenaar532c7802005-01-27 14:44:31 +0000822 hash_init(&compat_hashtab);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000823 hash_init(&func_hashtab);
Bram Moolenaar33570922005-01-25 22:26:29 +0000824
825 for (i = 0; i < VV_LEN; ++i)
826 {
827 p = &vimvars[i];
828 STRCPY(p->vv_di.di_key, p->vv_name);
829 if (p->vv_flags & VV_RO)
830 p->vv_di.di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
831 else if (p->vv_flags & VV_RO_SBX)
832 p->vv_di.di_flags = DI_FLAGS_RO_SBX | DI_FLAGS_FIX;
833 else
834 p->vv_di.di_flags = DI_FLAGS_FIX;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000835
836 /* add to v: scope dict, unless the value is not always available */
837 if (p->vv_type != VAR_UNKNOWN)
838 hash_add(&vimvarht, p->vv_di.di_key);
Bram Moolenaar33570922005-01-25 22:26:29 +0000839 if (p->vv_flags & VV_COMPAT)
Bram Moolenaar532c7802005-01-27 14:44:31 +0000840 /* add to compat scope dict */
841 hash_add(&compat_hashtab, p->vv_di.di_key);
Bram Moolenaar33570922005-01-25 22:26:29 +0000842 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000843 set_vim_var_nr(VV_SEARCHFORWARD, 1L);
Bram Moolenaara7043832005-01-21 11:56:39 +0000844}
845
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000846#if defined(EXITFREE) || defined(PROTO)
847 void
848eval_clear()
849{
850 int i;
851 struct vimvar *p;
852
853 for (i = 0; i < VV_LEN; ++i)
854 {
855 p = &vimvars[i];
856 if (p->vv_di.di_tv.v_type == VAR_STRING)
Bram Moolenaard9fba312005-06-26 22:34:35 +0000857 {
Bram Moolenaar12193212008-11-09 16:22:01 +0000858 vim_free(p->vv_str);
859 p->vv_str = NULL;
Bram Moolenaard812df62008-11-09 12:46:09 +0000860 }
861 else if (p->vv_di.di_tv.v_type == VAR_LIST)
862 {
863 list_unref(p->vv_list);
864 p->vv_list = NULL;
Bram Moolenaard9fba312005-06-26 22:34:35 +0000865 }
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000866 }
867 hash_clear(&vimvarht);
Bram Moolenaar0f71c6d2008-11-12 14:29:28 +0000868 hash_init(&vimvarht); /* garbage_collect() will access it */
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000869 hash_clear(&compat_hashtab);
870
871 /* script-local variables */
872 for (i = 1; i <= ga_scripts.ga_len; ++i)
873 vars_clear(&SCRIPT_VARS(i));
874 ga_clear(&ga_scripts);
Bram Moolenaard9fba312005-06-26 22:34:35 +0000875 free_scriptnames();
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000876
877 /* global variables */
878 vars_clear(&globvarht);
Bram Moolenaard9fba312005-06-26 22:34:35 +0000879
Bram Moolenaaraa35dd12006-04-29 22:03:41 +0000880 /* autoloaded script names */
881 ga_clear_strings(&ga_loaded);
882
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000883 /* unreferenced lists and dicts */
884 (void)garbage_collect();
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000885
886 /* functions */
887 free_all_functions();
888 hash_clear(&func_hashtab);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000889}
890#endif
891
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000892/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 * Return the name of the executed function.
894 */
895 char_u *
896func_name(cookie)
897 void *cookie;
898{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000899 return ((funccall_T *)cookie)->func->uf_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900}
901
902/*
903 * Return the address holding the next breakpoint line for a funccall cookie.
904 */
905 linenr_T *
906func_breakpoint(cookie)
907 void *cookie;
908{
Bram Moolenaar33570922005-01-25 22:26:29 +0000909 return &((funccall_T *)cookie)->breakpoint;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910}
911
912/*
913 * Return the address holding the debug tick for a funccall cookie.
914 */
915 int *
916func_dbg_tick(cookie)
917 void *cookie;
918{
Bram Moolenaar33570922005-01-25 22:26:29 +0000919 return &((funccall_T *)cookie)->dbg_tick;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920}
921
922/*
923 * Return the nesting level for a funccall cookie.
924 */
925 int
926func_level(cookie)
927 void *cookie;
928{
Bram Moolenaar33570922005-01-25 22:26:29 +0000929 return ((funccall_T *)cookie)->level;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930}
931
932/* pointer to funccal for currently active function */
Bram Moolenaar33570922005-01-25 22:26:29 +0000933funccall_T *current_funccal = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +0000935/* pointer to list of previously used funccal, still around because some
936 * item in it is still being used. */
937funccall_T *previous_funccal = NULL;
938
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939/*
940 * Return TRUE when a function was ended by a ":return" command.
941 */
942 int
943current_func_returned()
944{
945 return current_funccal->returned;
946}
947
948
949/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 * Set an internal variable to a string value. Creates the variable if it does
951 * not already exist.
952 */
953 void
954set_internal_string_var(name, value)
955 char_u *name;
956 char_u *value;
957{
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000958 char_u *val;
Bram Moolenaar33570922005-01-25 22:26:29 +0000959 typval_T *tvp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960
961 val = vim_strsave(value);
962 if (val != NULL)
963 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +0000964 tvp = alloc_string_tv(val);
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000965 if (tvp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000967 set_var(name, tvp, FALSE);
Bram Moolenaarc70646c2005-01-04 21:52:38 +0000968 free_tv(tvp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 }
970 }
971}
972
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000973static lval_T *redir_lval = NULL;
Bram Moolenaar863b53b2007-01-14 14:28:34 +0000974static garray_T redir_ga; /* only valid when redir_lval is not NULL */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000975static char_u *redir_endp = NULL;
976static char_u *redir_varname = NULL;
977
978/*
979 * Start recording command output to a variable
980 * Returns OK if successfully completed the setup. FAIL otherwise.
981 */
982 int
983var_redir_start(name, append)
984 char_u *name;
985 int append; /* append to an existing variable */
986{
987 int save_emsg;
988 int err;
989 typval_T tv;
990
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +0000991 /* Catch a bad name early. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000992 if (!eval_isnamec1(*name))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000993 {
994 EMSG(_(e_invarg));
995 return FAIL;
996 }
997
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +0000998 /* Make a copy of the name, it is used in redir_lval until redir ends. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000999 redir_varname = vim_strsave(name);
1000 if (redir_varname == NULL)
1001 return FAIL;
1002
1003 redir_lval = (lval_T *)alloc_clear((unsigned)sizeof(lval_T));
1004 if (redir_lval == NULL)
1005 {
1006 var_redir_stop();
1007 return FAIL;
1008 }
1009
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001010 /* The output is stored in growarray "redir_ga" until redirection ends. */
1011 ga_init2(&redir_ga, (int)sizeof(char), 500);
1012
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001013 /* Parse the variable name (can be a dict or list entry). */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00001014 redir_endp = get_lval(redir_varname, NULL, redir_lval, FALSE, FALSE, FALSE,
1015 FNE_CHECK_START);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001016 if (redir_endp == NULL || redir_lval->ll_name == NULL || *redir_endp != NUL)
1017 {
1018 if (redir_endp != NULL && *redir_endp != NUL)
1019 /* Trailing characters are present after the variable name */
1020 EMSG(_(e_trailing));
1021 else
1022 EMSG(_(e_invarg));
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001023 redir_endp = NULL; /* don't store a value, only cleanup */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001024 var_redir_stop();
1025 return FAIL;
1026 }
1027
1028 /* check if we can write to the variable: set it to or append an empty
1029 * string */
1030 save_emsg = did_emsg;
1031 did_emsg = FALSE;
1032 tv.v_type = VAR_STRING;
1033 tv.vval.v_string = (char_u *)"";
1034 if (append)
1035 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)".");
1036 else
1037 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)"=");
1038 err = did_emsg;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00001039 did_emsg |= save_emsg;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001040 if (err)
1041 {
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001042 redir_endp = NULL; /* don't store a value, only cleanup */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001043 var_redir_stop();
1044 return FAIL;
1045 }
1046 if (redir_lval->ll_newkey != NULL)
1047 {
1048 /* Dictionary item was created, don't do it again. */
1049 vim_free(redir_lval->ll_newkey);
1050 redir_lval->ll_newkey = NULL;
1051 }
1052
1053 return OK;
1054}
1055
1056/*
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001057 * Append "value[value_len]" to the variable set by var_redir_start().
1058 * The actual appending is postponed until redirection ends, because the value
1059 * appended may in fact be the string we write to, changing it may cause freed
1060 * memory to be used:
1061 * :redir => foo
1062 * :let foo
1063 * :redir END
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001064 */
1065 void
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001066var_redir_str(value, value_len)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001067 char_u *value;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001068 int value_len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001069{
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001070 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001071
1072 if (redir_lval == NULL)
1073 return;
1074
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001075 if (value_len == -1)
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001076 len = (int)STRLEN(value); /* Append the entire string */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001077 else
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001078 len = value_len; /* Append only "value_len" characters */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001079
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001080 if (ga_grow(&redir_ga, len) == OK)
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001081 {
1082 mch_memmove((char *)redir_ga.ga_data + redir_ga.ga_len, value, len);
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001083 redir_ga.ga_len += len;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001084 }
1085 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001086 var_redir_stop();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001087}
1088
1089/*
1090 * Stop redirecting command output to a variable.
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001091 * Frees the allocated memory.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001092 */
1093 void
1094var_redir_stop()
1095{
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001096 typval_T tv;
1097
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001098 if (redir_lval != NULL)
1099 {
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001100 /* If there was no error: assign the text to the variable. */
1101 if (redir_endp != NULL)
1102 {
1103 ga_append(&redir_ga, NUL); /* Append the trailing NUL. */
1104 tv.v_type = VAR_STRING;
1105 tv.vval.v_string = redir_ga.ga_data;
1106 set_var_lval(redir_lval, redir_endp, &tv, FALSE, (char_u *)".");
1107 }
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001108
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001109 /* free the collected output */
1110 vim_free(redir_ga.ga_data);
1111 redir_ga.ga_data = NULL;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001112
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001113 clear_lval(redir_lval);
1114 vim_free(redir_lval);
1115 redir_lval = NULL;
1116 }
1117 vim_free(redir_varname);
1118 redir_varname = NULL;
1119}
1120
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121# if defined(FEAT_MBYTE) || defined(PROTO)
1122 int
1123eval_charconvert(enc_from, enc_to, fname_from, fname_to)
1124 char_u *enc_from;
1125 char_u *enc_to;
1126 char_u *fname_from;
1127 char_u *fname_to;
1128{
1129 int err = FALSE;
1130
1131 set_vim_var_string(VV_CC_FROM, enc_from, -1);
1132 set_vim_var_string(VV_CC_TO, enc_to, -1);
1133 set_vim_var_string(VV_FNAME_IN, fname_from, -1);
1134 set_vim_var_string(VV_FNAME_OUT, fname_to, -1);
1135 if (eval_to_bool(p_ccv, &err, NULL, FALSE))
1136 err = TRUE;
1137 set_vim_var_string(VV_CC_FROM, NULL, -1);
1138 set_vim_var_string(VV_CC_TO, NULL, -1);
1139 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1140 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1141
1142 if (err)
1143 return FAIL;
1144 return OK;
1145}
1146# endif
1147
1148# if defined(FEAT_POSTSCRIPT) || defined(PROTO)
1149 int
1150eval_printexpr(fname, args)
1151 char_u *fname;
1152 char_u *args;
1153{
1154 int err = FALSE;
1155
1156 set_vim_var_string(VV_FNAME_IN, fname, -1);
1157 set_vim_var_string(VV_CMDARG, args, -1);
1158 if (eval_to_bool(p_pexpr, &err, NULL, FALSE))
1159 err = TRUE;
1160 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1161 set_vim_var_string(VV_CMDARG, NULL, -1);
1162
1163 if (err)
1164 {
1165 mch_remove(fname);
1166 return FAIL;
1167 }
1168 return OK;
1169}
1170# endif
1171
1172# if defined(FEAT_DIFF) || defined(PROTO)
1173 void
1174eval_diff(origfile, newfile, outfile)
1175 char_u *origfile;
1176 char_u *newfile;
1177 char_u *outfile;
1178{
1179 int err = FALSE;
1180
1181 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1182 set_vim_var_string(VV_FNAME_NEW, newfile, -1);
1183 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1184 (void)eval_to_bool(p_dex, &err, NULL, FALSE);
1185 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1186 set_vim_var_string(VV_FNAME_NEW, NULL, -1);
1187 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1188}
1189
1190 void
1191eval_patch(origfile, difffile, outfile)
1192 char_u *origfile;
1193 char_u *difffile;
1194 char_u *outfile;
1195{
1196 int err;
1197
1198 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1199 set_vim_var_string(VV_FNAME_DIFF, difffile, -1);
1200 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1201 (void)eval_to_bool(p_pex, &err, NULL, FALSE);
1202 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1203 set_vim_var_string(VV_FNAME_DIFF, NULL, -1);
1204 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1205}
1206# endif
1207
1208/*
1209 * Top level evaluation function, returning a boolean.
1210 * Sets "error" to TRUE if there was an error.
1211 * Return TRUE or FALSE.
1212 */
1213 int
1214eval_to_bool(arg, error, nextcmd, skip)
1215 char_u *arg;
1216 int *error;
1217 char_u **nextcmd;
1218 int skip; /* only parse, don't execute */
1219{
Bram Moolenaar33570922005-01-25 22:26:29 +00001220 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 int retval = FALSE;
1222
1223 if (skip)
1224 ++emsg_skip;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001225 if (eval0(arg, &tv, nextcmd, !skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 *error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 else
1228 {
1229 *error = FALSE;
1230 if (!skip)
1231 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001232 retval = (get_tv_number_chk(&tv, error) != 0);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001233 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 }
1235 }
1236 if (skip)
1237 --emsg_skip;
1238
1239 return retval;
1240}
1241
1242/*
1243 * Top level evaluation function, returning a string. If "skip" is TRUE,
1244 * only parsing to "nextcmd" is done, without reporting errors. Return
1245 * pointer to allocated memory, or NULL for failure or when "skip" is TRUE.
1246 */
1247 char_u *
1248eval_to_string_skip(arg, nextcmd, skip)
1249 char_u *arg;
1250 char_u **nextcmd;
1251 int skip; /* only parse, don't execute */
1252{
Bram Moolenaar33570922005-01-25 22:26:29 +00001253 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 char_u *retval;
1255
1256 if (skip)
1257 ++emsg_skip;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001258 if (eval0(arg, &tv, nextcmd, !skip) == FAIL || skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 retval = NULL;
1260 else
1261 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001262 retval = vim_strsave(get_tv_string(&tv));
1263 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 }
1265 if (skip)
1266 --emsg_skip;
1267
1268 return retval;
1269}
1270
1271/*
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001272 * Skip over an expression at "*pp".
1273 * Return FAIL for an error, OK otherwise.
1274 */
1275 int
1276skip_expr(pp)
1277 char_u **pp;
1278{
Bram Moolenaar33570922005-01-25 22:26:29 +00001279 typval_T rettv;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001280
1281 *pp = skipwhite(*pp);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001282 return eval1(pp, &rettv, FALSE);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001283}
1284
1285/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 * Top level evaluation function, returning a string.
Bram Moolenaara85fb752008-09-07 11:55:43 +00001287 * When "convert" is TRUE convert a List into a sequence of lines and convert
1288 * a Float to a String.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 * Return pointer to allocated memory, or NULL for failure.
1290 */
1291 char_u *
Bram Moolenaara85fb752008-09-07 11:55:43 +00001292eval_to_string(arg, nextcmd, convert)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 char_u *arg;
1294 char_u **nextcmd;
Bram Moolenaara85fb752008-09-07 11:55:43 +00001295 int convert;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296{
Bram Moolenaar33570922005-01-25 22:26:29 +00001297 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 char_u *retval;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001299 garray_T ga;
Bram Moolenaar798b30b2009-04-22 10:56:16 +00001300#ifdef FEAT_FLOAT
Bram Moolenaara85fb752008-09-07 11:55:43 +00001301 char_u numbuf[NUMBUFLEN];
Bram Moolenaar798b30b2009-04-22 10:56:16 +00001302#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001304 if (eval0(arg, &tv, nextcmd, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 retval = NULL;
1306 else
1307 {
Bram Moolenaara85fb752008-09-07 11:55:43 +00001308 if (convert && tv.v_type == VAR_LIST)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001309 {
1310 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001311 if (tv.vval.v_list != NULL)
1312 list_join(&ga, tv.vval.v_list, (char_u *)"\n", TRUE, 0);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001313 ga_append(&ga, NUL);
1314 retval = (char_u *)ga.ga_data;
1315 }
Bram Moolenaara85fb752008-09-07 11:55:43 +00001316#ifdef FEAT_FLOAT
1317 else if (convert && tv.v_type == VAR_FLOAT)
1318 {
1319 vim_snprintf((char *)numbuf, NUMBUFLEN, "%g", tv.vval.v_float);
1320 retval = vim_strsave(numbuf);
1321 }
1322#endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001323 else
1324 retval = vim_strsave(get_tv_string(&tv));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001325 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 }
1327
1328 return retval;
1329}
1330
1331/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001332 * Call eval_to_string() without using current local variables and using
1333 * textlock. When "use_sandbox" is TRUE use the sandbox.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 */
1335 char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001336eval_to_string_safe(arg, nextcmd, use_sandbox)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 char_u *arg;
1338 char_u **nextcmd;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001339 int use_sandbox;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340{
1341 char_u *retval;
1342 void *save_funccalp;
1343
1344 save_funccalp = save_funccal();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001345 if (use_sandbox)
1346 ++sandbox;
1347 ++textlock;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001348 retval = eval_to_string(arg, nextcmd, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001349 if (use_sandbox)
1350 --sandbox;
1351 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 restore_funccal(save_funccalp);
1353 return retval;
1354}
1355
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356/*
1357 * Top level evaluation function, returning a number.
1358 * Evaluates "expr" silently.
1359 * Returns -1 for an error.
1360 */
1361 int
1362eval_to_number(expr)
1363 char_u *expr;
1364{
Bram Moolenaar33570922005-01-25 22:26:29 +00001365 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 int retval;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00001367 char_u *p = skipwhite(expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368
1369 ++emsg_off;
1370
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001371 if (eval1(&p, &rettv, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 retval = -1;
1373 else
1374 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001375 retval = get_tv_number_chk(&rettv, NULL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001376 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 }
1378 --emsg_off;
1379
1380 return retval;
1381}
1382
Bram Moolenaara40058a2005-07-11 22:42:07 +00001383/*
1384 * Prepare v: variable "idx" to be used.
1385 * Save the current typeval in "save_tv".
1386 * When not used yet add the variable to the v: hashtable.
1387 */
1388 static void
1389prepare_vimvar(idx, save_tv)
1390 int idx;
1391 typval_T *save_tv;
1392{
1393 *save_tv = vimvars[idx].vv_tv;
1394 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1395 hash_add(&vimvarht, vimvars[idx].vv_di.di_key);
1396}
1397
1398/*
1399 * Restore v: variable "idx" to typeval "save_tv".
1400 * When no longer defined, remove the variable from the v: hashtable.
1401 */
1402 static void
1403restore_vimvar(idx, save_tv)
1404 int idx;
1405 typval_T *save_tv;
1406{
1407 hashitem_T *hi;
1408
Bram Moolenaara40058a2005-07-11 22:42:07 +00001409 vimvars[idx].vv_tv = *save_tv;
1410 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1411 {
1412 hi = hash_find(&vimvarht, vimvars[idx].vv_di.di_key);
1413 if (HASHITEM_EMPTY(hi))
1414 EMSG2(_(e_intern2), "restore_vimvar()");
1415 else
1416 hash_remove(&vimvarht, hi);
1417 }
1418}
1419
Bram Moolenaar3c56a962006-03-12 22:19:04 +00001420#if defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001421/*
1422 * Evaluate an expression to a list with suggestions.
1423 * For the "expr:" part of 'spellsuggest'.
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001424 * Returns NULL when there is an error.
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001425 */
1426 list_T *
1427eval_spell_expr(badword, expr)
1428 char_u *badword;
1429 char_u *expr;
1430{
1431 typval_T save_val;
1432 typval_T rettv;
1433 list_T *list = NULL;
1434 char_u *p = skipwhite(expr);
1435
1436 /* Set "v:val" to the bad word. */
1437 prepare_vimvar(VV_VAL, &save_val);
1438 vimvars[VV_VAL].vv_type = VAR_STRING;
1439 vimvars[VV_VAL].vv_str = badword;
1440 if (p_verbose == 0)
1441 ++emsg_off;
1442
1443 if (eval1(&p, &rettv, TRUE) == OK)
1444 {
1445 if (rettv.v_type != VAR_LIST)
1446 clear_tv(&rettv);
1447 else
1448 list = rettv.vval.v_list;
1449 }
1450
1451 if (p_verbose == 0)
1452 --emsg_off;
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001453 restore_vimvar(VV_VAL, &save_val);
1454
1455 return list;
1456}
1457
1458/*
1459 * "list" is supposed to contain two items: a word and a number. Return the
1460 * word in "pp" and the number as the return value.
1461 * Return -1 if anything isn't right.
1462 * Used to get the good word and score from the eval_spell_expr() result.
1463 */
1464 int
1465get_spellword(list, pp)
1466 list_T *list;
1467 char_u **pp;
1468{
1469 listitem_T *li;
1470
1471 li = list->lv_first;
1472 if (li == NULL)
1473 return -1;
1474 *pp = get_tv_string(&li->li_tv);
1475
1476 li = li->li_next;
1477 if (li == NULL)
1478 return -1;
1479 return get_tv_number(&li->li_tv);
1480}
1481#endif
1482
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001483/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001484 * Top level evaluation function.
1485 * Returns an allocated typval_T with the result.
1486 * Returns NULL when there is an error.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001487 */
1488 typval_T *
1489eval_expr(arg, nextcmd)
1490 char_u *arg;
1491 char_u **nextcmd;
1492{
1493 typval_T *tv;
1494
1495 tv = (typval_T *)alloc(sizeof(typval_T));
Bram Moolenaar4770d092006-01-12 23:22:24 +00001496 if (tv != NULL && eval0(arg, tv, nextcmd, TRUE) == FAIL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001497 {
1498 vim_free(tv);
Bram Moolenaar4770d092006-01-12 23:22:24 +00001499 tv = NULL;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001500 }
1501
1502 return tv;
1503}
1504
1505
Bram Moolenaar4f688582007-07-24 12:34:30 +00001506#if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) \
1507 || defined(FEAT_COMPL_FUNC) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508/*
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001509 * Call some vimL function and return the result in "*rettv".
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001510 * Uses argv[argc] for the function arguments. Only Number and String
1511 * arguments are currently supported.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001512 * Returns OK or FAIL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 */
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001514 static int
1515call_vim_function(func, argc, argv, safe, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 char_u *func;
1517 int argc;
1518 char_u **argv;
1519 int safe; /* use the sandbox */
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001520 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521{
Bram Moolenaar33570922005-01-25 22:26:29 +00001522 typval_T *argvars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 long n;
1524 int len;
1525 int i;
1526 int doesrange;
1527 void *save_funccalp = NULL;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001528 int ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001530 argvars = (typval_T *)alloc((unsigned)((argc + 1) * sizeof(typval_T)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 if (argvars == NULL)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001532 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533
1534 for (i = 0; i < argc; i++)
1535 {
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001536 /* Pass a NULL or empty argument as an empty string */
1537 if (argv[i] == NULL || *argv[i] == NUL)
1538 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001539 argvars[i].v_type = VAR_STRING;
1540 argvars[i].vval.v_string = (char_u *)"";
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001541 continue;
1542 }
1543
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 /* Recognize a number argument, the others must be strings. */
1545 vim_str2nr(argv[i], NULL, &len, TRUE, TRUE, &n, NULL);
1546 if (len != 0 && len == (int)STRLEN(argv[i]))
1547 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001548 argvars[i].v_type = VAR_NUMBER;
1549 argvars[i].vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 }
1551 else
1552 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001553 argvars[i].v_type = VAR_STRING;
1554 argvars[i].vval.v_string = argv[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 }
1556 }
1557
1558 if (safe)
1559 {
1560 save_funccalp = save_funccal();
1561 ++sandbox;
1562 }
1563
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001564 rettv->v_type = VAR_UNKNOWN; /* clear_tv() uses this */
1565 ret = call_func(func, (int)STRLEN(func), rettv, argc, argvars,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001567 &doesrange, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 if (safe)
1569 {
1570 --sandbox;
1571 restore_funccal(save_funccalp);
1572 }
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001573 vim_free(argvars);
1574
1575 if (ret == FAIL)
1576 clear_tv(rettv);
1577
1578 return ret;
1579}
1580
Bram Moolenaar4f688582007-07-24 12:34:30 +00001581# if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) || defined(PROTO)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001582/*
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001583 * Call vimL function "func" and return the result as a string.
1584 * Returns NULL when calling the function fails.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001585 * Uses argv[argc] for the function arguments.
1586 */
1587 void *
1588call_func_retstr(func, argc, argv, safe)
1589 char_u *func;
1590 int argc;
1591 char_u **argv;
1592 int safe; /* use the sandbox */
1593{
1594 typval_T rettv;
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001595 char_u *retval;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001596
1597 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1598 return NULL;
1599
1600 retval = vim_strsave(get_tv_string(&rettv));
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001601 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 return retval;
1603}
Bram Moolenaar4f688582007-07-24 12:34:30 +00001604# endif
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001605
Bram Moolenaar4f688582007-07-24 12:34:30 +00001606# if defined(FEAT_COMPL_FUNC) || defined(PROTO)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001607/*
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001608 * Call vimL function "func" and return the result as a number.
1609 * Returns -1 when calling the function fails.
1610 * Uses argv[argc] for the function arguments.
1611 */
1612 long
1613call_func_retnr(func, argc, argv, safe)
1614 char_u *func;
1615 int argc;
1616 char_u **argv;
1617 int safe; /* use the sandbox */
1618{
1619 typval_T rettv;
1620 long retval;
1621
1622 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1623 return -1;
1624
1625 retval = get_tv_number_chk(&rettv, NULL);
1626 clear_tv(&rettv);
1627 return retval;
1628}
Bram Moolenaar4f688582007-07-24 12:34:30 +00001629# endif
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001630
1631/*
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001632 * Call vimL function "func" and return the result as a List.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001633 * Uses argv[argc] for the function arguments.
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001634 * Returns NULL when there is something wrong.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001635 */
1636 void *
1637call_func_retlist(func, argc, argv, safe)
1638 char_u *func;
1639 int argc;
1640 char_u **argv;
1641 int safe; /* use the sandbox */
1642{
1643 typval_T rettv;
1644
1645 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1646 return NULL;
1647
1648 if (rettv.v_type != VAR_LIST)
1649 {
1650 clear_tv(&rettv);
1651 return NULL;
1652 }
1653
1654 return rettv.vval.v_list;
1655}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656#endif
1657
Bram Moolenaar4f688582007-07-24 12:34:30 +00001658
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659/*
1660 * Save the current function call pointer, and set it to NULL.
1661 * Used when executing autocommands and for ":source".
1662 */
1663 void *
1664save_funccal()
1665{
Bram Moolenaar05159a02005-02-26 23:04:13 +00001666 funccall_T *fc = current_funccal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 current_funccal = NULL;
1669 return (void *)fc;
1670}
1671
1672 void
Bram Moolenaar05159a02005-02-26 23:04:13 +00001673restore_funccal(vfc)
1674 void *vfc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675{
Bram Moolenaar05159a02005-02-26 23:04:13 +00001676 funccall_T *fc = (funccall_T *)vfc;
1677
1678 current_funccal = fc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679}
1680
Bram Moolenaar05159a02005-02-26 23:04:13 +00001681#if defined(FEAT_PROFILE) || defined(PROTO)
1682/*
1683 * Prepare profiling for entering a child or something else that is not
1684 * counted for the script/function itself.
1685 * Should always be called in pair with prof_child_exit().
1686 */
1687 void
1688prof_child_enter(tm)
1689 proftime_T *tm; /* place to store waittime */
1690{
1691 funccall_T *fc = current_funccal;
1692
1693 if (fc != NULL && fc->func->uf_profiling)
1694 profile_start(&fc->prof_child);
1695 script_prof_save(tm);
1696}
1697
1698/*
1699 * Take care of time spent in a child.
1700 * Should always be called after prof_child_enter().
1701 */
1702 void
1703prof_child_exit(tm)
1704 proftime_T *tm; /* where waittime was stored */
1705{
1706 funccall_T *fc = current_funccal;
1707
1708 if (fc != NULL && fc->func->uf_profiling)
1709 {
1710 profile_end(&fc->prof_child);
1711 profile_sub_wait(tm, &fc->prof_child); /* don't count waiting time */
1712 profile_add(&fc->func->uf_tm_children, &fc->prof_child);
1713 profile_add(&fc->func->uf_tml_children, &fc->prof_child);
1714 }
1715 script_prof_restore(tm);
1716}
1717#endif
1718
1719
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720#ifdef FEAT_FOLDING
1721/*
1722 * Evaluate 'foldexpr'. Returns the foldlevel, and any character preceding
1723 * it in "*cp". Doesn't give error messages.
1724 */
1725 int
1726eval_foldexpr(arg, cp)
1727 char_u *arg;
1728 int *cp;
1729{
Bram Moolenaar33570922005-01-25 22:26:29 +00001730 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 int retval;
1732 char_u *s;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001733 int use_sandbox = was_set_insecurely((char_u *)"foldexpr",
1734 OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735
1736 ++emsg_off;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001737 if (use_sandbox)
1738 ++sandbox;
1739 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 *cp = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001741 if (eval0(arg, &tv, NULL, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 retval = 0;
1743 else
1744 {
1745 /* If the result is a number, just return the number. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001746 if (tv.v_type == VAR_NUMBER)
1747 retval = tv.vval.v_number;
Bram Moolenaar758711c2005-02-02 23:11:38 +00001748 else if (tv.v_type != VAR_STRING || tv.vval.v_string == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 retval = 0;
1750 else
1751 {
1752 /* If the result is a string, check if there is a non-digit before
1753 * the number. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001754 s = tv.vval.v_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 if (!VIM_ISDIGIT(*s) && *s != '-')
1756 *cp = *s++;
1757 retval = atol((char *)s);
1758 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001759 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 }
1761 --emsg_off;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001762 if (use_sandbox)
1763 --sandbox;
1764 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765
1766 return retval;
1767}
1768#endif
1769
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001771 * ":let" list all variable values
1772 * ":let var1 var2" list variable values
1773 * ":let var = expr" assignment command.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001774 * ":let var += expr" assignment command.
1775 * ":let var -= expr" assignment command.
1776 * ":let var .= expr" assignment command.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001777 * ":let [var1, var2] = expr" unpack list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778 */
1779 void
1780ex_let(eap)
1781 exarg_T *eap;
1782{
1783 char_u *arg = eap->arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001784 char_u *expr = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00001785 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 int i;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001787 int var_count = 0;
1788 int semicolon = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001789 char_u op[2];
Bram Moolenaardb552d602006-03-23 22:59:57 +00001790 char_u *argend;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001791 int first = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792
Bram Moolenaardb552d602006-03-23 22:59:57 +00001793 argend = skip_var_list(arg, &var_count, &semicolon);
1794 if (argend == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001795 return;
Bram Moolenaar76b92b22006-03-24 22:46:53 +00001796 if (argend > arg && argend[-1] == '.') /* for var.='str' */
1797 --argend;
Bram Moolenaardb552d602006-03-23 22:59:57 +00001798 expr = vim_strchr(argend, '=');
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001799 if (expr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00001801 /*
1802 * ":let" without "=": list variables
1803 */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001804 if (*arg == '[')
1805 EMSG(_(e_invarg));
1806 else if (!ends_excmd(*arg))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001807 /* ":let var1 var2" */
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001808 arg = list_arg_vars(eap, arg, &first);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001809 else if (!eap->skip)
Bram Moolenaara7043832005-01-21 11:56:39 +00001810 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001811 /* ":let" */
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001812 list_glob_vars(&first);
1813 list_buf_vars(&first);
1814 list_win_vars(&first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001815#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001816 list_tab_vars(&first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001817#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001818 list_script_vars(&first);
1819 list_func_vars(&first);
1820 list_vim_vars(&first);
Bram Moolenaara7043832005-01-21 11:56:39 +00001821 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 eap->nextcmd = check_nextcmd(arg);
1823 }
1824 else
1825 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001826 op[0] = '=';
1827 op[1] = NUL;
Bram Moolenaardb552d602006-03-23 22:59:57 +00001828 if (expr > argend)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001829 {
1830 if (vim_strchr((char_u *)"+-.", expr[-1]) != NULL)
1831 op[0] = expr[-1]; /* +=, -= or .= */
1832 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001833 expr = skipwhite(expr + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001834
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835 if (eap->skip)
1836 ++emsg_skip;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001837 i = eval0(expr, &rettv, &eap->nextcmd, !eap->skip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838 if (eap->skip)
1839 {
1840 if (i != FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001841 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 --emsg_skip;
1843 }
1844 else if (i != FAIL)
1845 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001846 (void)ex_let_vars(eap->arg, &rettv, FALSE, semicolon, var_count,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001847 op);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001848 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 }
1850 }
1851}
1852
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001853/*
1854 * Assign the typevalue "tv" to the variable or variables at "arg_start".
1855 * Handles both "var" with any type and "[var, var; var]" with a list type.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001856 * When "nextchars" is not NULL it points to a string with characters that
1857 * must appear after the variable(s). Use "+", "-" or "." for add, subtract
1858 * or concatenate.
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001859 * Returns OK or FAIL;
1860 */
1861 static int
1862ex_let_vars(arg_start, tv, copy, semicolon, var_count, nextchars)
1863 char_u *arg_start;
Bram Moolenaar33570922005-01-25 22:26:29 +00001864 typval_T *tv;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001865 int copy; /* copy values from "tv", don't move */
1866 int semicolon; /* from skip_var_list() */
1867 int var_count; /* from skip_var_list() */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001868 char_u *nextchars;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001869{
1870 char_u *arg = arg_start;
Bram Moolenaar33570922005-01-25 22:26:29 +00001871 list_T *l;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001872 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +00001873 listitem_T *item;
1874 typval_T ltv;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001875
1876 if (*arg != '[')
1877 {
1878 /*
1879 * ":let var = expr" or ":for var in list"
1880 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001881 if (ex_let_one(arg, tv, copy, nextchars, nextchars) == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001882 return FAIL;
1883 return OK;
1884 }
1885
1886 /*
1887 * ":let [v1, v2] = list" or ":for [v1, v2] in listlist"
1888 */
Bram Moolenaar758711c2005-02-02 23:11:38 +00001889 if (tv->v_type != VAR_LIST || (l = tv->vval.v_list) == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001890 {
1891 EMSG(_(e_listreq));
1892 return FAIL;
1893 }
1894
1895 i = list_len(l);
1896 if (semicolon == 0 && var_count < i)
1897 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00001898 EMSG(_("E687: Less targets than List items"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001899 return FAIL;
1900 }
1901 if (var_count - semicolon > i)
1902 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00001903 EMSG(_("E688: More targets than List items"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001904 return FAIL;
1905 }
1906
1907 item = l->lv_first;
1908 while (*arg != ']')
1909 {
1910 arg = skipwhite(arg + 1);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001911 arg = ex_let_one(arg, &item->li_tv, TRUE, (char_u *)",;]", nextchars);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001912 item = item->li_next;
1913 if (arg == NULL)
1914 return FAIL;
1915
1916 arg = skipwhite(arg);
1917 if (*arg == ';')
1918 {
1919 /* Put the rest of the list (may be empty) in the var after ';'.
1920 * Create a new list for this. */
1921 l = list_alloc();
1922 if (l == NULL)
1923 return FAIL;
1924 while (item != NULL)
1925 {
1926 list_append_tv(l, &item->li_tv);
1927 item = item->li_next;
1928 }
1929
1930 ltv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00001931 ltv.v_lock = 0;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001932 ltv.vval.v_list = l;
1933 l->lv_refcount = 1;
1934
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001935 arg = ex_let_one(skipwhite(arg + 1), &ltv, FALSE,
1936 (char_u *)"]", nextchars);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001937 clear_tv(&ltv);
1938 if (arg == NULL)
1939 return FAIL;
1940 break;
1941 }
1942 else if (*arg != ',' && *arg != ']')
1943 {
1944 EMSG2(_(e_intern2), "ex_let_vars()");
1945 return FAIL;
1946 }
1947 }
1948
1949 return OK;
1950}
1951
1952/*
1953 * Skip over assignable variable "var" or list of variables "[var, var]".
1954 * Used for ":let varvar = expr" and ":for varvar in expr".
1955 * For "[var, var]" increment "*var_count" for each variable.
1956 * for "[var, var; var]" set "semicolon".
1957 * Return NULL for an error.
1958 */
1959 static char_u *
1960skip_var_list(arg, var_count, semicolon)
1961 char_u *arg;
1962 int *var_count;
1963 int *semicolon;
1964{
1965 char_u *p, *s;
1966
1967 if (*arg == '[')
1968 {
1969 /* "[var, var]": find the matching ']'. */
1970 p = arg;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001971 for (;;)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001972 {
1973 p = skipwhite(p + 1); /* skip whites after '[', ';' or ',' */
1974 s = skip_var_one(p);
1975 if (s == p)
1976 {
1977 EMSG2(_(e_invarg2), p);
1978 return NULL;
1979 }
1980 ++*var_count;
1981
1982 p = skipwhite(s);
1983 if (*p == ']')
1984 break;
1985 else if (*p == ';')
1986 {
1987 if (*semicolon == 1)
1988 {
1989 EMSG(_("Double ; in list of variables"));
1990 return NULL;
1991 }
1992 *semicolon = 1;
1993 }
1994 else if (*p != ',')
1995 {
1996 EMSG2(_(e_invarg2), p);
1997 return NULL;
1998 }
1999 }
2000 return p + 1;
2001 }
2002 else
2003 return skip_var_one(arg);
2004}
2005
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002006/*
Bram Moolenaarbae0c162007-05-10 19:30:25 +00002007 * Skip one (assignable) variable name, including @r, $VAR, &option, d.key,
Bram Moolenaar92124a32005-06-17 22:03:40 +00002008 * l[idx].
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002009 */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002010 static char_u *
2011skip_var_one(arg)
2012 char_u *arg;
2013{
Bram Moolenaar92124a32005-06-17 22:03:40 +00002014 if (*arg == '@' && arg[1] != NUL)
2015 return arg + 2;
2016 return find_name_end(*arg == '$' || *arg == '&' ? arg + 1 : arg,
2017 NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002018}
2019
Bram Moolenaara7043832005-01-21 11:56:39 +00002020/*
Bram Moolenaar33570922005-01-25 22:26:29 +00002021 * List variables for hashtab "ht" with prefix "prefix".
2022 * If "empty" is TRUE also list NULL strings as empty strings.
Bram Moolenaara7043832005-01-21 11:56:39 +00002023 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002024 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002025list_hashtable_vars(ht, prefix, empty, first)
Bram Moolenaar33570922005-01-25 22:26:29 +00002026 hashtab_T *ht;
Bram Moolenaara7043832005-01-21 11:56:39 +00002027 char_u *prefix;
Bram Moolenaar33570922005-01-25 22:26:29 +00002028 int empty;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002029 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002030{
Bram Moolenaar33570922005-01-25 22:26:29 +00002031 hashitem_T *hi;
2032 dictitem_T *di;
Bram Moolenaara7043832005-01-21 11:56:39 +00002033 int todo;
2034
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002035 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +00002036 for (hi = ht->ht_array; todo > 0 && !got_int; ++hi)
2037 {
2038 if (!HASHITEM_EMPTY(hi))
2039 {
2040 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00002041 di = HI2DI(hi);
2042 if (empty || di->di_tv.v_type != VAR_STRING
2043 || di->di_tv.vval.v_string != NULL)
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002044 list_one_var(di, prefix, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002045 }
2046 }
2047}
2048
2049/*
2050 * List global variables.
2051 */
2052 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002053list_glob_vars(first)
2054 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002055{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002056 list_hashtable_vars(&globvarht, (char_u *)"", TRUE, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002057}
2058
2059/*
2060 * List buffer variables.
2061 */
2062 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002063list_buf_vars(first)
2064 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002065{
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002066 char_u numbuf[NUMBUFLEN];
2067
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002068 list_hashtable_vars(&curbuf->b_vars.dv_hashtab, (char_u *)"b:",
2069 TRUE, first);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002070
2071 sprintf((char *)numbuf, "%ld", (long)curbuf->b_changedtick);
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002072 list_one_var_a((char_u *)"b:", (char_u *)"changedtick", VAR_NUMBER,
2073 numbuf, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002074}
2075
2076/*
2077 * List window variables.
2078 */
2079 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002080list_win_vars(first)
2081 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002082{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002083 list_hashtable_vars(&curwin->w_vars.dv_hashtab,
2084 (char_u *)"w:", TRUE, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002085}
2086
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002087#ifdef FEAT_WINDOWS
2088/*
2089 * List tab page variables.
2090 */
2091 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002092list_tab_vars(first)
2093 int *first;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002094{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002095 list_hashtable_vars(&curtab->tp_vars.dv_hashtab,
2096 (char_u *)"t:", TRUE, first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002097}
2098#endif
2099
Bram Moolenaara7043832005-01-21 11:56:39 +00002100/*
2101 * List Vim variables.
2102 */
2103 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002104list_vim_vars(first)
2105 int *first;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002106{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002107 list_hashtable_vars(&vimvarht, (char_u *)"v:", FALSE, first);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002108}
2109
2110/*
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002111 * List script-local variables, if there is a script.
2112 */
2113 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002114list_script_vars(first)
2115 int *first;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002116{
2117 if (current_SID > 0 && current_SID <= ga_scripts.ga_len)
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002118 list_hashtable_vars(&SCRIPT_VARS(current_SID),
2119 (char_u *)"s:", FALSE, first);
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002120}
2121
2122/*
2123 * List function variables, if there is a function.
2124 */
2125 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002126list_func_vars(first)
2127 int *first;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002128{
2129 if (current_funccal != NULL)
2130 list_hashtable_vars(&current_funccal->l_vars.dv_hashtab,
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002131 (char_u *)"l:", FALSE, first);
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002132}
2133
2134/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002135 * List variables in "arg".
2136 */
2137 static char_u *
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002138list_arg_vars(eap, arg, first)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002139 exarg_T *eap;
2140 char_u *arg;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002141 int *first;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002142{
2143 int error = FALSE;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002144 int len;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002145 char_u *name;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002146 char_u *name_start;
2147 char_u *arg_subsc;
2148 char_u *tofree;
2149 typval_T tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002150
2151 while (!ends_excmd(*arg) && !got_int)
2152 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002153 if (error || eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002154 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002155 arg = find_name_end(arg, NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002156 if (!vim_iswhite(*arg) && !ends_excmd(*arg))
2157 {
2158 emsg_severe = TRUE;
2159 EMSG(_(e_trailing));
2160 break;
2161 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002162 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002163 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002164 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002165 /* get_name_len() takes care of expanding curly braces */
2166 name_start = name = arg;
2167 len = get_name_len(&arg, &tofree, TRUE, TRUE);
2168 if (len <= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002169 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002170 /* This is mainly to keep test 49 working: when expanding
2171 * curly braces fails overrule the exception error message. */
2172 if (len < 0 && !aborting())
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002173 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002174 emsg_severe = TRUE;
2175 EMSG2(_(e_invarg2), arg);
2176 break;
2177 }
2178 error = TRUE;
2179 }
2180 else
2181 {
2182 if (tofree != NULL)
2183 name = tofree;
2184 if (get_var_tv(name, len, &tv, TRUE) == FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002185 error = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002186 else
2187 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002188 /* handle d.key, l[idx], f(expr) */
2189 arg_subsc = arg;
2190 if (handle_subscript(&arg, &tv, TRUE, TRUE) == FAIL)
Bram Moolenaara7043832005-01-21 11:56:39 +00002191 error = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002192 else
Bram Moolenaara7043832005-01-21 11:56:39 +00002193 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002194 if (arg == arg_subsc && len == 2 && name[1] == ':')
Bram Moolenaara7043832005-01-21 11:56:39 +00002195 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002196 switch (*name)
Bram Moolenaara7043832005-01-21 11:56:39 +00002197 {
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002198 case 'g': list_glob_vars(first); break;
2199 case 'b': list_buf_vars(first); break;
2200 case 'w': list_win_vars(first); break;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002201#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002202 case 't': list_tab_vars(first); break;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002203#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002204 case 'v': list_vim_vars(first); break;
2205 case 's': list_script_vars(first); break;
2206 case 'l': list_func_vars(first); break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002207 default:
2208 EMSG2(_("E738: Can't list variables for %s"), name);
Bram Moolenaara7043832005-01-21 11:56:39 +00002209 }
Bram Moolenaara7043832005-01-21 11:56:39 +00002210 }
2211 else
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002212 {
2213 char_u numbuf[NUMBUFLEN];
2214 char_u *tf;
2215 int c;
2216 char_u *s;
2217
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002218 s = echo_string(&tv, &tf, numbuf, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002219 c = *arg;
2220 *arg = NUL;
2221 list_one_var_a((char_u *)"",
2222 arg == arg_subsc ? name : name_start,
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002223 tv.v_type,
2224 s == NULL ? (char_u *)"" : s,
2225 first);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002226 *arg = c;
2227 vim_free(tf);
2228 }
2229 clear_tv(&tv);
Bram Moolenaara7043832005-01-21 11:56:39 +00002230 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002231 }
2232 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002233
2234 vim_free(tofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002235 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002236
2237 arg = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002238 }
2239
2240 return arg;
2241}
2242
2243/*
2244 * Set one item of ":let var = expr" or ":let [v1, v2] = list" to its value.
2245 * Returns a pointer to the char just after the var name.
2246 * Returns NULL if there is an error.
2247 */
2248 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002249ex_let_one(arg, tv, copy, endchars, op)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002250 char_u *arg; /* points to variable name */
Bram Moolenaar33570922005-01-25 22:26:29 +00002251 typval_T *tv; /* value to assign to variable */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002252 int copy; /* copy value from "tv" */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002253 char_u *endchars; /* valid chars after variable name or NULL */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002254 char_u *op; /* "+", "-", "." or NULL*/
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002255{
2256 int c1;
2257 char_u *name;
2258 char_u *p;
2259 char_u *arg_end = NULL;
2260 int len;
2261 int opt_flags;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002262 char_u *tofree = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002263
2264 /*
2265 * ":let $VAR = expr": Set environment variable.
2266 */
2267 if (*arg == '$')
2268 {
2269 /* Find the end of the name. */
2270 ++arg;
2271 name = arg;
2272 len = get_env_len(&arg);
2273 if (len == 0)
2274 EMSG2(_(e_invarg2), name - 1);
2275 else
2276 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002277 if (op != NULL && (*op == '+' || *op == '-'))
2278 EMSG2(_(e_letwrong), op);
2279 else if (endchars != NULL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002280 && vim_strchr(endchars, *skipwhite(arg)) == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002281 EMSG(_(e_letunexp));
2282 else
2283 {
2284 c1 = name[len];
2285 name[len] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002286 p = get_tv_string_chk(tv);
2287 if (p != NULL && op != NULL && *op == '.')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002288 {
2289 int mustfree = FALSE;
2290 char_u *s = vim_getenv(name, &mustfree);
2291
2292 if (s != NULL)
2293 {
2294 p = tofree = concat_str(s, p);
2295 if (mustfree)
2296 vim_free(s);
2297 }
2298 }
2299 if (p != NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002300 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002301 vim_setenv(name, p);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002302 if (STRICMP(name, "HOME") == 0)
2303 init_homedir();
2304 else if (didset_vim && STRICMP(name, "VIM") == 0)
2305 didset_vim = FALSE;
2306 else if (didset_vimruntime
2307 && STRICMP(name, "VIMRUNTIME") == 0)
2308 didset_vimruntime = FALSE;
2309 arg_end = arg;
2310 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002311 name[len] = c1;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002312 vim_free(tofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002313 }
2314 }
2315 }
2316
2317 /*
2318 * ":let &option = expr": Set option value.
2319 * ":let &l:option = expr": Set local option value.
2320 * ":let &g:option = expr": Set global option value.
2321 */
2322 else if (*arg == '&')
2323 {
2324 /* Find the end of the name. */
2325 p = find_option_end(&arg, &opt_flags);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002326 if (p == NULL || (endchars != NULL
2327 && vim_strchr(endchars, *skipwhite(p)) == NULL))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002328 EMSG(_(e_letunexp));
2329 else
2330 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002331 long n;
2332 int opt_type;
2333 long numval;
2334 char_u *stringval = NULL;
2335 char_u *s;
2336
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002337 c1 = *p;
2338 *p = NUL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002339
2340 n = get_tv_number(tv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002341 s = get_tv_string_chk(tv); /* != NULL if number or string */
2342 if (s != NULL && op != NULL && *op != '=')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002343 {
2344 opt_type = get_option_value(arg, &numval,
2345 &stringval, opt_flags);
2346 if ((opt_type == 1 && *op == '.')
2347 || (opt_type == 0 && *op != '.'))
2348 EMSG2(_(e_letwrong), op);
2349 else
2350 {
2351 if (opt_type == 1) /* number */
2352 {
2353 if (*op == '+')
2354 n = numval + n;
2355 else
2356 n = numval - n;
2357 }
2358 else if (opt_type == 0 && stringval != NULL) /* string */
2359 {
2360 s = concat_str(stringval, s);
2361 vim_free(stringval);
2362 stringval = s;
2363 }
2364 }
2365 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002366 if (s != NULL)
2367 {
2368 set_option_value(arg, n, s, opt_flags);
2369 arg_end = p;
2370 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002371 *p = c1;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002372 vim_free(stringval);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002373 }
2374 }
2375
2376 /*
2377 * ":let @r = expr": Set register contents.
2378 */
2379 else if (*arg == '@')
2380 {
2381 ++arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002382 if (op != NULL && (*op == '+' || *op == '-'))
2383 EMSG2(_(e_letwrong), op);
2384 else if (endchars != NULL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002385 && vim_strchr(endchars, *skipwhite(arg + 1)) == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002386 EMSG(_(e_letunexp));
2387 else
2388 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002389 char_u *ptofree = NULL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002390 char_u *s;
2391
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002392 p = get_tv_string_chk(tv);
2393 if (p != NULL && op != NULL && *op == '.')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002394 {
Bram Moolenaar92124a32005-06-17 22:03:40 +00002395 s = get_reg_contents(*arg == '@' ? '"' : *arg, TRUE, TRUE);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002396 if (s != NULL)
2397 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002398 p = ptofree = concat_str(s, p);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002399 vim_free(s);
2400 }
2401 }
2402 if (p != NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002403 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002404 write_reg_contents(*arg == '@' ? '"' : *arg, p, -1, FALSE);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002405 arg_end = arg + 1;
2406 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002407 vim_free(ptofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002408 }
2409 }
2410
2411 /*
2412 * ":let var = expr": Set internal variable.
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002413 * ":let {expr} = expr": Idem, name made with curly braces
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002414 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002415 else if (eval_isnamec1(*arg) || *arg == '{')
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002416 {
Bram Moolenaar33570922005-01-25 22:26:29 +00002417 lval_T lv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002418
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002419 p = get_lval(arg, tv, &lv, FALSE, FALSE, FALSE, FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002420 if (p != NULL && lv.ll_name != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002421 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002422 if (endchars != NULL && vim_strchr(endchars, *skipwhite(p)) == NULL)
2423 EMSG(_(e_letunexp));
2424 else
2425 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002426 set_var_lval(&lv, p, tv, copy, op);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002427 arg_end = p;
2428 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002429 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002430 clear_lval(&lv);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002431 }
2432
2433 else
2434 EMSG2(_(e_invarg2), arg);
2435
2436 return arg_end;
2437}
2438
2439/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00002440 * If "arg" is equal to "b:changedtick" give an error and return TRUE.
2441 */
2442 static int
2443check_changedtick(arg)
2444 char_u *arg;
2445{
2446 if (STRNCMP(arg, "b:changedtick", 13) == 0 && !eval_isnamec(arg[13]))
2447 {
2448 EMSG2(_(e_readonlyvar), arg);
2449 return TRUE;
2450 }
2451 return FALSE;
2452}
2453
2454/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002455 * Get an lval: variable, Dict item or List item that can be assigned a value
2456 * to: "name", "na{me}", "name[expr]", "name[expr:expr]", "name[expr][expr]",
2457 * "name.key", "name.key[expr]" etc.
2458 * Indexing only works if "name" is an existing List or Dictionary.
2459 * "name" points to the start of the name.
2460 * If "rettv" is not NULL it points to the value to be assigned.
2461 * "unlet" is TRUE for ":unlet": slightly different behavior when something is
2462 * wrong; must end in space or cmd separator.
2463 *
2464 * Returns a pointer to just after the name, including indexes.
Bram Moolenaara7043832005-01-21 11:56:39 +00002465 * When an evaluation error occurs "lp->ll_name" is NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002466 * Returns NULL for a parsing error. Still need to free items in "lp"!
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002467 */
2468 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002469get_lval(name, rettv, lp, unlet, skip, quiet, fne_flags)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002470 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +00002471 typval_T *rettv;
2472 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002473 int unlet;
2474 int skip;
2475 int quiet; /* don't give error messages */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002476 int fne_flags; /* flags for find_name_end() */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002477{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002478 char_u *p;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002479 char_u *expr_start, *expr_end;
2480 int cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00002481 dictitem_T *v;
2482 typval_T var1;
2483 typval_T var2;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002484 int empty1 = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00002485 listitem_T *ni;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002486 char_u *key = NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002487 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +00002488 hashtab_T *ht;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002489
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002490 /* Clear everything in "lp". */
Bram Moolenaar33570922005-01-25 22:26:29 +00002491 vim_memset(lp, 0, sizeof(lval_T));
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002492
2493 if (skip)
2494 {
2495 /* When skipping just find the end of the name. */
2496 lp->ll_name = name;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002497 return find_name_end(name, NULL, NULL, FNE_INCL_BR | fne_flags);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002498 }
2499
2500 /* Find the end of the name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002501 p = find_name_end(name, &expr_start, &expr_end, fne_flags);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002502 if (expr_start != NULL)
2503 {
2504 /* Don't expand the name when we already know there is an error. */
2505 if (unlet && !vim_iswhite(*p) && !ends_excmd(*p)
2506 && *p != '[' && *p != '.')
2507 {
2508 EMSG(_(e_trailing));
2509 return NULL;
2510 }
2511
2512 lp->ll_exp_name = make_expanded_name(name, expr_start, expr_end, p);
2513 if (lp->ll_exp_name == NULL)
2514 {
2515 /* Report an invalid expression in braces, unless the
2516 * expression evaluation has been cancelled due to an
2517 * aborting error, an interrupt, or an exception. */
2518 if (!aborting() && !quiet)
2519 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002520 emsg_severe = TRUE;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002521 EMSG2(_(e_invarg2), name);
2522 return NULL;
2523 }
2524 }
2525 lp->ll_name = lp->ll_exp_name;
2526 }
2527 else
2528 lp->ll_name = name;
2529
2530 /* Without [idx] or .key we are done. */
2531 if ((*p != '[' && *p != '.') || lp->ll_name == NULL)
2532 return p;
2533
2534 cc = *p;
2535 *p = NUL;
Bram Moolenaara7043832005-01-21 11:56:39 +00002536 v = find_var(lp->ll_name, &ht);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002537 if (v == NULL && !quiet)
2538 EMSG2(_(e_undefvar), lp->ll_name);
2539 *p = cc;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002540 if (v == NULL)
2541 return NULL;
2542
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002543 /*
2544 * Loop until no more [idx] or .key is following.
2545 */
Bram Moolenaar33570922005-01-25 22:26:29 +00002546 lp->ll_tv = &v->di_tv;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002547 while (*p == '[' || (*p == '.' && lp->ll_tv->v_type == VAR_DICT))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002548 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002549 if (!(lp->ll_tv->v_type == VAR_LIST && lp->ll_tv->vval.v_list != NULL)
2550 && !(lp->ll_tv->v_type == VAR_DICT
2551 && lp->ll_tv->vval.v_dict != NULL))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002552 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002553 if (!quiet)
2554 EMSG(_("E689: Can only index a List or Dictionary"));
2555 return NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002556 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002557 if (lp->ll_range)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002558 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002559 if (!quiet)
2560 EMSG(_("E708: [:] must come last"));
2561 return NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002562 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002563
Bram Moolenaar8c711452005-01-14 21:53:12 +00002564 len = -1;
2565 if (*p == '.')
2566 {
2567 key = p + 1;
2568 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
2569 ;
2570 if (len == 0)
2571 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002572 if (!quiet)
2573 EMSG(_(e_emptykey));
2574 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002575 }
2576 p = key + len;
2577 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002578 else
2579 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002580 /* Get the index [expr] or the first index [expr: ]. */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002581 p = skipwhite(p + 1);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002582 if (*p == ':')
2583 empty1 = TRUE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002584 else
2585 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002586 empty1 = FALSE;
2587 if (eval1(&p, &var1, TRUE) == FAIL) /* recursive! */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002588 return NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002589 if (get_tv_string_chk(&var1) == NULL)
2590 {
2591 /* not a number or string */
2592 clear_tv(&var1);
2593 return NULL;
2594 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002595 }
2596
2597 /* Optionally get the second index [ :expr]. */
2598 if (*p == ':')
2599 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002600 if (lp->ll_tv->v_type == VAR_DICT)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002601 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002602 if (!quiet)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002603 EMSG(_(e_dictrange));
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002604 if (!empty1)
2605 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002606 return NULL;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002607 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002608 if (rettv != NULL && (rettv->v_type != VAR_LIST
2609 || rettv->vval.v_list == NULL))
Bram Moolenaar8c711452005-01-14 21:53:12 +00002610 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002611 if (!quiet)
2612 EMSG(_("E709: [:] requires a List value"));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002613 if (!empty1)
2614 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002615 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002616 }
2617 p = skipwhite(p + 1);
2618 if (*p == ']')
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002619 lp->ll_empty2 = TRUE;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002620 else
2621 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002622 lp->ll_empty2 = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002623 if (eval1(&p, &var2, TRUE) == FAIL) /* recursive! */
2624 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002625 if (!empty1)
2626 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002627 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002628 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002629 if (get_tv_string_chk(&var2) == NULL)
2630 {
2631 /* not a number or string */
2632 if (!empty1)
2633 clear_tv(&var1);
2634 clear_tv(&var2);
2635 return NULL;
2636 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002637 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002638 lp->ll_range = TRUE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002639 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002640 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002641 lp->ll_range = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002642
Bram Moolenaar8c711452005-01-14 21:53:12 +00002643 if (*p != ']')
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002644 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002645 if (!quiet)
2646 EMSG(_(e_missbrac));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002647 if (!empty1)
2648 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002649 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002650 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002651 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002652 }
2653
2654 /* Skip to past ']'. */
2655 ++p;
2656 }
2657
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002658 if (lp->ll_tv->v_type == VAR_DICT)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002659 {
2660 if (len == -1)
2661 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002662 /* "[key]": get key from "var1" */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002663 key = get_tv_string(&var1); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002664 if (*key == NUL)
2665 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002666 if (!quiet)
2667 EMSG(_(e_emptykey));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002668 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002669 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002670 }
2671 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002672 lp->ll_list = NULL;
2673 lp->ll_dict = lp->ll_tv->vval.v_dict;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002674 lp->ll_di = dict_find(lp->ll_dict, key, len);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002675 if (lp->ll_di == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002676 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002677 /* Key does not exist in dict: may need to add it. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002678 if (*p == '[' || *p == '.' || unlet)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002679 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002680 if (!quiet)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002681 EMSG2(_(e_dictkey), key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002682 if (len == -1)
2683 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002684 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002685 }
2686 if (len == -1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002687 lp->ll_newkey = vim_strsave(key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002688 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002689 lp->ll_newkey = vim_strnsave(key, len);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002690 if (len == -1)
2691 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002692 if (lp->ll_newkey == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002693 p = NULL;
2694 break;
2695 }
2696 if (len == -1)
2697 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002698 lp->ll_tv = &lp->ll_di->di_tv;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002699 }
2700 else
2701 {
2702 /*
2703 * Get the number and item for the only or first index of the List.
2704 */
2705 if (empty1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002706 lp->ll_n1 = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002707 else
2708 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002709 lp->ll_n1 = get_tv_number(&var1); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002710 clear_tv(&var1);
2711 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002712 lp->ll_dict = NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002713 lp->ll_list = lp->ll_tv->vval.v_list;
2714 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2715 if (lp->ll_li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002716 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002717 if (lp->ll_n1 < 0)
2718 {
2719 lp->ll_n1 = 0;
2720 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2721 }
2722 }
2723 if (lp->ll_li == NULL)
2724 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002725 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002726 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002727 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002728 }
2729
2730 /*
2731 * May need to find the item or absolute index for the second
2732 * index of a range.
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002733 * When no index given: "lp->ll_empty2" is TRUE.
2734 * Otherwise "lp->ll_n2" is set to the second index.
Bram Moolenaar8c711452005-01-14 21:53:12 +00002735 */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002736 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002737 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002738 lp->ll_n2 = get_tv_number(&var2); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002739 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002740 if (lp->ll_n2 < 0)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002741 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002742 ni = list_find(lp->ll_list, lp->ll_n2);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002743 if (ni == NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002744 return NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002745 lp->ll_n2 = list_idx_of_item(lp->ll_list, ni);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002746 }
2747
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002748 /* Check that lp->ll_n2 isn't before lp->ll_n1. */
2749 if (lp->ll_n1 < 0)
2750 lp->ll_n1 = list_idx_of_item(lp->ll_list, lp->ll_li);
2751 if (lp->ll_n2 < lp->ll_n1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002752 return NULL;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002753 }
2754
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002755 lp->ll_tv = &lp->ll_li->li_tv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002756 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002757 }
2758
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002759 return p;
2760}
2761
2762/*
Bram Moolenaar33570922005-01-25 22:26:29 +00002763 * Clear lval "lp" that was filled by get_lval().
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002764 */
2765 static void
2766clear_lval(lp)
Bram Moolenaar33570922005-01-25 22:26:29 +00002767 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002768{
2769 vim_free(lp->ll_exp_name);
2770 vim_free(lp->ll_newkey);
2771}
2772
2773/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002774 * Set a variable that was parsed by get_lval() to "rettv".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002775 * "endp" points to just after the parsed name.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002776 * "op" is NULL, "+" for "+=", "-" for "-=", "." for ".=" or "=" for "=".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002777 */
2778 static void
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002779set_var_lval(lp, endp, rettv, copy, op)
Bram Moolenaar33570922005-01-25 22:26:29 +00002780 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002781 char_u *endp;
Bram Moolenaar33570922005-01-25 22:26:29 +00002782 typval_T *rettv;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002783 int copy;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002784 char_u *op;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002785{
2786 int cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00002787 listitem_T *ri;
2788 dictitem_T *di;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002789
2790 if (lp->ll_tv == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002791 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002792 if (!check_changedtick(lp->ll_name))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002793 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002794 cc = *endp;
2795 *endp = NUL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002796 if (op != NULL && *op != '=')
2797 {
Bram Moolenaar33570922005-01-25 22:26:29 +00002798 typval_T tv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002799
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002800 /* handle +=, -= and .= */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002801 if (get_var_tv(lp->ll_name, (int)STRLEN(lp->ll_name),
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002802 &tv, TRUE) == OK)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002803 {
2804 if (tv_op(&tv, rettv, op) == OK)
2805 set_var(lp->ll_name, &tv, FALSE);
2806 clear_tv(&tv);
2807 }
2808 }
2809 else
2810 set_var(lp->ll_name, rettv, copy);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002811 *endp = cc;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002812 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002813 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002814 else if (tv_check_lock(lp->ll_newkey == NULL
2815 ? lp->ll_tv->v_lock
2816 : lp->ll_tv->vval.v_dict->dv_lock, lp->ll_name))
2817 ;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002818 else if (lp->ll_range)
2819 {
2820 /*
2821 * Assign the List values to the list items.
2822 */
2823 for (ri = rettv->vval.v_list->lv_first; ri != NULL; )
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002824 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002825 if (op != NULL && *op != '=')
2826 tv_op(&lp->ll_li->li_tv, &ri->li_tv, op);
2827 else
2828 {
2829 clear_tv(&lp->ll_li->li_tv);
2830 copy_tv(&ri->li_tv, &lp->ll_li->li_tv);
2831 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002832 ri = ri->li_next;
2833 if (ri == NULL || (!lp->ll_empty2 && lp->ll_n2 == lp->ll_n1))
2834 break;
2835 if (lp->ll_li->li_next == NULL)
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002836 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002837 /* Need to add an empty item. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00002838 if (list_append_number(lp->ll_list, 0) == FAIL)
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002839 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002840 ri = NULL;
2841 break;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002842 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002843 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002844 lp->ll_li = lp->ll_li->li_next;
2845 ++lp->ll_n1;
2846 }
2847 if (ri != NULL)
2848 EMSG(_("E710: List value has more items than target"));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002849 else if (lp->ll_empty2
2850 ? (lp->ll_li != NULL && lp->ll_li->li_next != NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002851 : lp->ll_n1 != lp->ll_n2)
2852 EMSG(_("E711: List value has not enough items"));
2853 }
2854 else
2855 {
2856 /*
2857 * Assign to a List or Dictionary item.
2858 */
2859 if (lp->ll_newkey != NULL)
2860 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002861 if (op != NULL && *op != '=')
2862 {
2863 EMSG2(_(e_letwrong), op);
2864 return;
2865 }
2866
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002867 /* Need to add an item to the Dictionary. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002868 di = dictitem_alloc(lp->ll_newkey);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002869 if (di == NULL)
2870 return;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002871 if (dict_add(lp->ll_tv->vval.v_dict, di) == FAIL)
2872 {
2873 vim_free(di);
2874 return;
2875 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002876 lp->ll_tv = &di->di_tv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002877 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002878 else if (op != NULL && *op != '=')
2879 {
2880 tv_op(lp->ll_tv, rettv, op);
2881 return;
2882 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002883 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002884 clear_tv(lp->ll_tv);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002885
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002886 /*
2887 * Assign the value to the variable or list item.
2888 */
2889 if (copy)
2890 copy_tv(rettv, lp->ll_tv);
2891 else
2892 {
2893 *lp->ll_tv = *rettv;
Bram Moolenaar758711c2005-02-02 23:11:38 +00002894 lp->ll_tv->v_lock = 0;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002895 init_tv(rettv);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002896 }
2897 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002898}
2899
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002900/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002901 * Handle "tv1 += tv2", "tv1 -= tv2" and "tv1 .= tv2"
2902 * Returns OK or FAIL.
2903 */
2904 static int
2905tv_op(tv1, tv2, op)
Bram Moolenaar33570922005-01-25 22:26:29 +00002906 typval_T *tv1;
2907 typval_T *tv2;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002908 char_u *op;
2909{
2910 long n;
2911 char_u numbuf[NUMBUFLEN];
2912 char_u *s;
2913
2914 /* Can't do anything with a Funcref or a Dict on the right. */
2915 if (tv2->v_type != VAR_FUNC && tv2->v_type != VAR_DICT)
2916 {
2917 switch (tv1->v_type)
2918 {
2919 case VAR_DICT:
2920 case VAR_FUNC:
2921 break;
2922
2923 case VAR_LIST:
2924 if (*op != '+' || tv2->v_type != VAR_LIST)
2925 break;
2926 /* List += List */
2927 if (tv1->vval.v_list != NULL && tv2->vval.v_list != NULL)
2928 list_extend(tv1->vval.v_list, tv2->vval.v_list, NULL);
2929 return OK;
2930
2931 case VAR_NUMBER:
2932 case VAR_STRING:
2933 if (tv2->v_type == VAR_LIST)
2934 break;
2935 if (*op == '+' || *op == '-')
2936 {
2937 /* nr += nr or nr -= nr*/
2938 n = get_tv_number(tv1);
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002939#ifdef FEAT_FLOAT
2940 if (tv2->v_type == VAR_FLOAT)
2941 {
2942 float_T f = n;
2943
2944 if (*op == '+')
2945 f += tv2->vval.v_float;
2946 else
2947 f -= tv2->vval.v_float;
2948 clear_tv(tv1);
2949 tv1->v_type = VAR_FLOAT;
2950 tv1->vval.v_float = f;
2951 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002952 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002953#endif
2954 {
2955 if (*op == '+')
2956 n += get_tv_number(tv2);
2957 else
2958 n -= get_tv_number(tv2);
2959 clear_tv(tv1);
2960 tv1->v_type = VAR_NUMBER;
2961 tv1->vval.v_number = n;
2962 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002963 }
2964 else
2965 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002966 if (tv2->v_type == VAR_FLOAT)
2967 break;
2968
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002969 /* str .= str */
2970 s = get_tv_string(tv1);
2971 s = concat_str(s, get_tv_string_buf(tv2, numbuf));
2972 clear_tv(tv1);
2973 tv1->v_type = VAR_STRING;
2974 tv1->vval.v_string = s;
2975 }
2976 return OK;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002977
2978#ifdef FEAT_FLOAT
2979 case VAR_FLOAT:
2980 {
2981 float_T f;
2982
2983 if (*op == '.' || (tv2->v_type != VAR_FLOAT
2984 && tv2->v_type != VAR_NUMBER
2985 && tv2->v_type != VAR_STRING))
2986 break;
2987 if (tv2->v_type == VAR_FLOAT)
2988 f = tv2->vval.v_float;
2989 else
2990 f = get_tv_number(tv2);
2991 if (*op == '+')
2992 tv1->vval.v_float += f;
2993 else
2994 tv1->vval.v_float -= f;
2995 }
2996 return OK;
2997#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002998 }
2999 }
3000
3001 EMSG2(_(e_letwrong), op);
3002 return FAIL;
3003}
3004
3005/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003006 * Add a watcher to a list.
3007 */
3008 static void
3009list_add_watch(l, lw)
Bram Moolenaar33570922005-01-25 22:26:29 +00003010 list_T *l;
3011 listwatch_T *lw;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003012{
3013 lw->lw_next = l->lv_watch;
3014 l->lv_watch = lw;
3015}
3016
3017/*
Bram Moolenaar758711c2005-02-02 23:11:38 +00003018 * Remove a watcher from a list.
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003019 * No warning when it isn't found...
3020 */
3021 static void
3022list_rem_watch(l, lwrem)
Bram Moolenaar33570922005-01-25 22:26:29 +00003023 list_T *l;
3024 listwatch_T *lwrem;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003025{
Bram Moolenaar33570922005-01-25 22:26:29 +00003026 listwatch_T *lw, **lwp;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003027
3028 lwp = &l->lv_watch;
3029 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3030 {
3031 if (lw == lwrem)
3032 {
3033 *lwp = lw->lw_next;
3034 break;
3035 }
3036 lwp = &lw->lw_next;
3037 }
3038}
3039
3040/*
3041 * Just before removing an item from a list: advance watchers to the next
3042 * item.
3043 */
3044 static void
3045list_fix_watch(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00003046 list_T *l;
3047 listitem_T *item;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003048{
Bram Moolenaar33570922005-01-25 22:26:29 +00003049 listwatch_T *lw;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003050
3051 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3052 if (lw->lw_item == item)
3053 lw->lw_item = item->li_next;
3054}
3055
3056/*
3057 * Evaluate the expression used in a ":for var in expr" command.
3058 * "arg" points to "var".
3059 * Set "*errp" to TRUE for an error, FALSE otherwise;
3060 * Return a pointer that holds the info. Null when there is an error.
3061 */
3062 void *
3063eval_for_line(arg, errp, nextcmdp, skip)
3064 char_u *arg;
3065 int *errp;
3066 char_u **nextcmdp;
3067 int skip;
3068{
Bram Moolenaar33570922005-01-25 22:26:29 +00003069 forinfo_T *fi;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003070 char_u *expr;
Bram Moolenaar33570922005-01-25 22:26:29 +00003071 typval_T tv;
3072 list_T *l;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003073
3074 *errp = TRUE; /* default: there is an error */
3075
Bram Moolenaar33570922005-01-25 22:26:29 +00003076 fi = (forinfo_T *)alloc_clear(sizeof(forinfo_T));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003077 if (fi == NULL)
3078 return NULL;
3079
3080 expr = skip_var_list(arg, &fi->fi_varcount, &fi->fi_semicolon);
3081 if (expr == NULL)
3082 return fi;
3083
3084 expr = skipwhite(expr);
3085 if (expr[0] != 'i' || expr[1] != 'n' || !vim_iswhite(expr[2]))
3086 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00003087 EMSG(_("E690: Missing \"in\" after :for"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003088 return fi;
3089 }
3090
3091 if (skip)
3092 ++emsg_skip;
3093 if (eval0(skipwhite(expr + 2), &tv, nextcmdp, !skip) == OK)
3094 {
3095 *errp = FALSE;
3096 if (!skip)
3097 {
3098 l = tv.vval.v_list;
3099 if (tv.v_type != VAR_LIST || l == NULL)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003100 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003101 EMSG(_(e_listreq));
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003102 clear_tv(&tv);
3103 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003104 else
3105 {
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00003106 /* No need to increment the refcount, it's already set for the
3107 * list being used in "tv". */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003108 fi->fi_list = l;
3109 list_add_watch(l, &fi->fi_lw);
3110 fi->fi_lw.lw_item = l->lv_first;
3111 }
3112 }
3113 }
3114 if (skip)
3115 --emsg_skip;
3116
3117 return fi;
3118}
3119
3120/*
3121 * Use the first item in a ":for" list. Advance to the next.
3122 * Assign the values to the variable (list). "arg" points to the first one.
3123 * Return TRUE when a valid item was found, FALSE when at end of list or
3124 * something wrong.
3125 */
3126 int
3127next_for_item(fi_void, arg)
3128 void *fi_void;
3129 char_u *arg;
3130{
Bram Moolenaar33570922005-01-25 22:26:29 +00003131 forinfo_T *fi = (forinfo_T *)fi_void;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003132 int result;
Bram Moolenaar33570922005-01-25 22:26:29 +00003133 listitem_T *item;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003134
3135 item = fi->fi_lw.lw_item;
3136 if (item == NULL)
3137 result = FALSE;
3138 else
3139 {
3140 fi->fi_lw.lw_item = item->li_next;
3141 result = (ex_let_vars(arg, &item->li_tv, TRUE,
3142 fi->fi_semicolon, fi->fi_varcount, NULL) == OK);
3143 }
3144 return result;
3145}
3146
3147/*
3148 * Free the structure used to store info used by ":for".
3149 */
3150 void
3151free_for_info(fi_void)
3152 void *fi_void;
3153{
Bram Moolenaar33570922005-01-25 22:26:29 +00003154 forinfo_T *fi = (forinfo_T *)fi_void;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003155
Bram Moolenaarab7013c2005-01-09 21:23:56 +00003156 if (fi != NULL && fi->fi_list != NULL)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003157 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003158 list_rem_watch(fi->fi_list, &fi->fi_lw);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003159 list_unref(fi->fi_list);
3160 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003161 vim_free(fi);
3162}
3163
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3165
3166 void
3167set_context_for_expression(xp, arg, cmdidx)
3168 expand_T *xp;
3169 char_u *arg;
3170 cmdidx_T cmdidx;
3171{
3172 int got_eq = FALSE;
3173 int c;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003174 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003176 if (cmdidx == CMD_let)
3177 {
3178 xp->xp_context = EXPAND_USER_VARS;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003179 if (vim_strpbrk(arg, (char_u *)"\"'+-*/%.=!?~|&$([<>,#") == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003180 {
3181 /* ":let var1 var2 ...": find last space. */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003182 for (p = arg + STRLEN(arg); p >= arg; )
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003183 {
3184 xp->xp_pattern = p;
Bram Moolenaar33570922005-01-25 22:26:29 +00003185 mb_ptr_back(arg, p);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003186 if (vim_iswhite(*p))
3187 break;
3188 }
3189 return;
3190 }
3191 }
3192 else
3193 xp->xp_context = cmdidx == CMD_call ? EXPAND_FUNCTIONS
3194 : EXPAND_EXPRESSION;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 while ((xp->xp_pattern = vim_strpbrk(arg,
3196 (char_u *)"\"'+-*/%.=!?~|&$([<>,#")) != NULL)
3197 {
3198 c = *xp->xp_pattern;
3199 if (c == '&')
3200 {
3201 c = xp->xp_pattern[1];
3202 if (c == '&')
3203 {
3204 ++xp->xp_pattern;
3205 xp->xp_context = cmdidx != CMD_let || got_eq
3206 ? EXPAND_EXPRESSION : EXPAND_NOTHING;
3207 }
3208 else if (c != ' ')
Bram Moolenaar11cbeb12005-03-11 22:51:16 +00003209 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210 xp->xp_context = EXPAND_SETTINGS;
Bram Moolenaar11cbeb12005-03-11 22:51:16 +00003211 if ((c == 'l' || c == 'g') && xp->xp_pattern[2] == ':')
3212 xp->xp_pattern += 2;
3213
3214 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215 }
3216 else if (c == '$')
3217 {
3218 /* environment variable */
3219 xp->xp_context = EXPAND_ENV_VARS;
3220 }
3221 else if (c == '=')
3222 {
3223 got_eq = TRUE;
3224 xp->xp_context = EXPAND_EXPRESSION;
3225 }
3226 else if (c == '<'
3227 && xp->xp_context == EXPAND_FUNCTIONS
3228 && vim_strchr(xp->xp_pattern, '(') == NULL)
3229 {
3230 /* Function name can start with "<SNR>" */
3231 break;
3232 }
3233 else if (cmdidx != CMD_let || got_eq)
3234 {
3235 if (c == '"') /* string */
3236 {
3237 while ((c = *++xp->xp_pattern) != NUL && c != '"')
3238 if (c == '\\' && xp->xp_pattern[1] != NUL)
3239 ++xp->xp_pattern;
3240 xp->xp_context = EXPAND_NOTHING;
3241 }
3242 else if (c == '\'') /* literal string */
3243 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00003244 /* Trick: '' is like stopping and starting a literal string. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245 while ((c = *++xp->xp_pattern) != NUL && c != '\'')
3246 /* skip */ ;
3247 xp->xp_context = EXPAND_NOTHING;
3248 }
3249 else if (c == '|')
3250 {
3251 if (xp->xp_pattern[1] == '|')
3252 {
3253 ++xp->xp_pattern;
3254 xp->xp_context = EXPAND_EXPRESSION;
3255 }
3256 else
3257 xp->xp_context = EXPAND_COMMANDS;
3258 }
3259 else
3260 xp->xp_context = EXPAND_EXPRESSION;
3261 }
3262 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003263 /* Doesn't look like something valid, expand as an expression
3264 * anyway. */
3265 xp->xp_context = EXPAND_EXPRESSION;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 arg = xp->xp_pattern;
3267 if (*arg != NUL)
3268 while ((c = *++arg) != NUL && (c == ' ' || c == '\t'))
3269 /* skip */ ;
3270 }
3271 xp->xp_pattern = arg;
3272}
3273
3274#endif /* FEAT_CMDL_COMPL */
3275
3276/*
3277 * ":1,25call func(arg1, arg2)" function call.
3278 */
3279 void
3280ex_call(eap)
3281 exarg_T *eap;
3282{
3283 char_u *arg = eap->arg;
3284 char_u *startarg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285 char_u *name;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003286 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +00003288 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289 linenr_T lnum;
3290 int doesrange;
3291 int failed = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00003292 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003293
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003294 tofree = trans_function_name(&arg, eap->skip, TFN_INT, &fudi);
Bram Moolenaara2a31752006-10-24 11:49:25 +00003295 if (fudi.fd_newkey != NULL)
3296 {
3297 /* Still need to give an error message for missing key. */
3298 EMSG2(_(e_dictkey), fudi.fd_newkey);
3299 vim_free(fudi.fd_newkey);
3300 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003301 if (tofree == NULL)
3302 return;
3303
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003304 /* Increase refcount on dictionary, it could get deleted when evaluating
3305 * the arguments. */
3306 if (fudi.fd_dict != NULL)
3307 ++fudi.fd_dict->dv_refcount;
3308
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003309 /* If it is the name of a variable of type VAR_FUNC use its contents. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003310 len = (int)STRLEN(tofree);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003311 name = deref_func_name(tofree, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312
Bram Moolenaar532c7802005-01-27 14:44:31 +00003313 /* Skip white space to allow ":call func ()". Not good, but required for
3314 * backward compatibility. */
3315 startarg = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003316 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317
3318 if (*startarg != '(')
3319 {
Bram Moolenaar8dd9ac52008-11-06 10:05:42 +00003320 EMSG2(_("E107: Missing parentheses: %s"), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 goto end;
3322 }
3323
3324 /*
3325 * When skipping, evaluate the function once, to find the end of the
3326 * arguments.
3327 * When the function takes a range, this is discovered after the first
3328 * call, and the loop is broken.
3329 */
3330 if (eap->skip)
3331 {
3332 ++emsg_skip;
3333 lnum = eap->line2; /* do it once, also with an invalid range */
3334 }
3335 else
3336 lnum = eap->line1;
3337 for ( ; lnum <= eap->line2; ++lnum)
3338 {
3339 if (!eap->skip && eap->addr_count > 0)
3340 {
3341 curwin->w_cursor.lnum = lnum;
3342 curwin->w_cursor.col = 0;
3343 }
3344 arg = startarg;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003345 if (get_func_tv(name, (int)STRLEN(name), &rettv, &arg,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003346 eap->line1, eap->line2, &doesrange,
3347 !eap->skip, fudi.fd_dict) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348 {
3349 failed = TRUE;
3350 break;
3351 }
Bram Moolenaarf2789872006-11-28 19:54:04 +00003352
3353 /* Handle a function returning a Funcref, Dictionary or List. */
3354 if (handle_subscript(&arg, &rettv, !eap->skip, TRUE) == FAIL)
3355 {
3356 failed = TRUE;
3357 break;
3358 }
3359
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003360 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361 if (doesrange || eap->skip)
3362 break;
Bram Moolenaarf2789872006-11-28 19:54:04 +00003363
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364 /* Stop when immediately aborting on error, or when an interrupt
Bram Moolenaar49cd9572005-01-03 21:06:01 +00003365 * occurred or an exception was thrown but not caught.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003366 * get_func_tv() returned OK, so that the check for trailing
Bram Moolenaar49cd9572005-01-03 21:06:01 +00003367 * characters below is executed. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368 if (aborting())
3369 break;
3370 }
3371 if (eap->skip)
3372 --emsg_skip;
3373
3374 if (!failed)
3375 {
3376 /* Check for trailing illegal characters and a following command. */
3377 if (!ends_excmd(*arg))
3378 {
3379 emsg_severe = TRUE;
3380 EMSG(_(e_trailing));
3381 }
3382 else
3383 eap->nextcmd = check_nextcmd(arg);
3384 }
3385
3386end:
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003387 dict_unref(fudi.fd_dict);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003388 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389}
3390
3391/*
3392 * ":unlet[!] var1 ... " command.
3393 */
3394 void
3395ex_unlet(eap)
3396 exarg_T *eap;
3397{
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003398 ex_unletlock(eap, eap->arg, 0);
3399}
3400
3401/*
3402 * ":lockvar" and ":unlockvar" commands
3403 */
3404 void
3405ex_lockvar(eap)
3406 exarg_T *eap;
3407{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 char_u *arg = eap->arg;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003409 int deep = 2;
3410
3411 if (eap->forceit)
3412 deep = -1;
3413 else if (vim_isdigit(*arg))
3414 {
3415 deep = getdigits(&arg);
3416 arg = skipwhite(arg);
3417 }
3418
3419 ex_unletlock(eap, arg, deep);
3420}
3421
3422/*
3423 * ":unlet", ":lockvar" and ":unlockvar" are quite similar.
3424 */
3425 static void
3426ex_unletlock(eap, argstart, deep)
3427 exarg_T *eap;
3428 char_u *argstart;
3429 int deep;
3430{
3431 char_u *arg = argstart;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 char_u *name_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 int error = FALSE;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003434 lval_T lv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435
3436 do
3437 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003438 /* Parse the name and find the end. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00003439 name_end = get_lval(arg, NULL, &lv, TRUE, eap->skip || error, FALSE,
3440 FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003441 if (lv.ll_name == NULL)
3442 error = TRUE; /* error but continue parsing */
3443 if (name_end == NULL || (!vim_iswhite(*name_end)
3444 && !ends_excmd(*name_end)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003446 if (name_end != NULL)
3447 {
3448 emsg_severe = TRUE;
3449 EMSG(_(e_trailing));
3450 }
3451 if (!(eap->skip || error))
3452 clear_lval(&lv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 break;
3454 }
3455
3456 if (!error && !eap->skip)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003457 {
3458 if (eap->cmdidx == CMD_unlet)
3459 {
3460 if (do_unlet_var(&lv, name_end, eap->forceit) == FAIL)
3461 error = TRUE;
3462 }
3463 else
3464 {
3465 if (do_lock_var(&lv, name_end, deep,
3466 eap->cmdidx == CMD_lockvar) == FAIL)
3467 error = TRUE;
3468 }
3469 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003471 if (!eap->skip)
3472 clear_lval(&lv);
3473
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474 arg = skipwhite(name_end);
3475 } while (!ends_excmd(*arg));
3476
3477 eap->nextcmd = check_nextcmd(arg);
3478}
3479
Bram Moolenaar8c711452005-01-14 21:53:12 +00003480 static int
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003481do_unlet_var(lp, name_end, forceit)
Bram Moolenaar33570922005-01-25 22:26:29 +00003482 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003483 char_u *name_end;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003484 int forceit;
3485{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003486 int ret = OK;
3487 int cc;
3488
3489 if (lp->ll_tv == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00003490 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003491 cc = *name_end;
3492 *name_end = NUL;
3493
3494 /* Normal name or expanded name. */
3495 if (check_changedtick(lp->ll_name))
3496 ret = FAIL;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003497 else if (do_unlet(lp->ll_name, forceit) == FAIL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003498 ret = FAIL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003499 *name_end = cc;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003500 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003501 else if (tv_check_lock(lp->ll_tv->v_lock, lp->ll_name))
3502 return FAIL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003503 else if (lp->ll_range)
3504 {
Bram Moolenaar33570922005-01-25 22:26:29 +00003505 listitem_T *li;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003506
3507 /* Delete a range of List items. */
3508 while (lp->ll_li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3509 {
3510 li = lp->ll_li->li_next;
3511 listitem_remove(lp->ll_list, lp->ll_li);
3512 lp->ll_li = li;
3513 ++lp->ll_n1;
3514 }
3515 }
3516 else
3517 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003518 if (lp->ll_list != NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003519 /* unlet a List item. */
3520 listitem_remove(lp->ll_list, lp->ll_li);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003521 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003522 /* unlet a Dictionary item. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003523 dictitem_remove(lp->ll_dict, lp->ll_di);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003524 }
3525
3526 return ret;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003527}
3528
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529/*
3530 * "unlet" a variable. Return OK if it existed, FAIL if not.
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003531 * When "forceit" is TRUE don't complain if the variable doesn't exist.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003532 */
3533 int
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003534do_unlet(name, forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535 char_u *name;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003536 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537{
Bram Moolenaar33570922005-01-25 22:26:29 +00003538 hashtab_T *ht;
3539 hashitem_T *hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003540 char_u *varname;
Bram Moolenaarafbdeb82008-01-05 21:16:31 +00003541 dictitem_T *di;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542
Bram Moolenaar33570922005-01-25 22:26:29 +00003543 ht = find_var_ht(name, &varname);
3544 if (ht != NULL && *varname != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545 {
Bram Moolenaar33570922005-01-25 22:26:29 +00003546 hi = hash_find(ht, varname);
3547 if (!HASHITEM_EMPTY(hi))
Bram Moolenaara7043832005-01-21 11:56:39 +00003548 {
Bram Moolenaarafbdeb82008-01-05 21:16:31 +00003549 di = HI2DI(hi);
3550 if (var_check_fixed(di->di_flags, name)
3551 || var_check_ro(di->di_flags, name))
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003552 return FAIL;
3553 delete_var(ht, hi);
3554 return OK;
Bram Moolenaara7043832005-01-21 11:56:39 +00003555 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003557 if (forceit)
3558 return OK;
3559 EMSG2(_("E108: No such variable: \"%s\""), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560 return FAIL;
3561}
3562
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003563/*
3564 * Lock or unlock variable indicated by "lp".
3565 * "deep" is the levels to go (-1 for unlimited);
3566 * "lock" is TRUE for ":lockvar", FALSE for ":unlockvar".
3567 */
3568 static int
3569do_lock_var(lp, name_end, deep, lock)
3570 lval_T *lp;
3571 char_u *name_end;
3572 int deep;
3573 int lock;
3574{
3575 int ret = OK;
3576 int cc;
3577 dictitem_T *di;
3578
3579 if (deep == 0) /* nothing to do */
3580 return OK;
3581
3582 if (lp->ll_tv == NULL)
3583 {
3584 cc = *name_end;
3585 *name_end = NUL;
3586
3587 /* Normal name or expanded name. */
3588 if (check_changedtick(lp->ll_name))
3589 ret = FAIL;
3590 else
3591 {
3592 di = find_var(lp->ll_name, NULL);
3593 if (di == NULL)
3594 ret = FAIL;
3595 else
3596 {
3597 if (lock)
3598 di->di_flags |= DI_FLAGS_LOCK;
3599 else
3600 di->di_flags &= ~DI_FLAGS_LOCK;
3601 item_lock(&di->di_tv, deep, lock);
3602 }
3603 }
3604 *name_end = cc;
3605 }
3606 else if (lp->ll_range)
3607 {
3608 listitem_T *li = lp->ll_li;
3609
3610 /* (un)lock a range of List items. */
3611 while (li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3612 {
3613 item_lock(&li->li_tv, deep, lock);
3614 li = li->li_next;
3615 ++lp->ll_n1;
3616 }
3617 }
3618 else if (lp->ll_list != NULL)
3619 /* (un)lock a List item. */
3620 item_lock(&lp->ll_li->li_tv, deep, lock);
3621 else
3622 /* un(lock) a Dictionary item. */
3623 item_lock(&lp->ll_di->di_tv, deep, lock);
3624
3625 return ret;
3626}
3627
3628/*
3629 * Lock or unlock an item. "deep" is nr of levels to go.
3630 */
3631 static void
3632item_lock(tv, deep, lock)
3633 typval_T *tv;
3634 int deep;
3635 int lock;
3636{
3637 static int recurse = 0;
3638 list_T *l;
3639 listitem_T *li;
3640 dict_T *d;
3641 hashitem_T *hi;
3642 int todo;
3643
3644 if (recurse >= DICT_MAXNEST)
3645 {
3646 EMSG(_("E743: variable nested too deep for (un)lock"));
3647 return;
3648 }
3649 if (deep == 0)
3650 return;
3651 ++recurse;
3652
3653 /* lock/unlock the item itself */
3654 if (lock)
3655 tv->v_lock |= VAR_LOCKED;
3656 else
3657 tv->v_lock &= ~VAR_LOCKED;
3658
3659 switch (tv->v_type)
3660 {
3661 case VAR_LIST:
3662 if ((l = tv->vval.v_list) != NULL)
3663 {
3664 if (lock)
3665 l->lv_lock |= VAR_LOCKED;
3666 else
3667 l->lv_lock &= ~VAR_LOCKED;
3668 if (deep < 0 || deep > 1)
3669 /* recursive: lock/unlock the items the List contains */
3670 for (li = l->lv_first; li != NULL; li = li->li_next)
3671 item_lock(&li->li_tv, deep - 1, lock);
3672 }
3673 break;
3674 case VAR_DICT:
3675 if ((d = tv->vval.v_dict) != NULL)
3676 {
3677 if (lock)
3678 d->dv_lock |= VAR_LOCKED;
3679 else
3680 d->dv_lock &= ~VAR_LOCKED;
3681 if (deep < 0 || deep > 1)
3682 {
3683 /* recursive: lock/unlock the items the List contains */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003684 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003685 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
3686 {
3687 if (!HASHITEM_EMPTY(hi))
3688 {
3689 --todo;
3690 item_lock(&HI2DI(hi)->di_tv, deep - 1, lock);
3691 }
3692 }
3693 }
3694 }
3695 }
3696 --recurse;
3697}
3698
Bram Moolenaara40058a2005-07-11 22:42:07 +00003699/*
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +00003700 * Return TRUE if typeval "tv" is locked: Either that value is locked itself
3701 * or it refers to a List or Dictionary that is locked.
Bram Moolenaara40058a2005-07-11 22:42:07 +00003702 */
3703 static int
3704tv_islocked(tv)
3705 typval_T *tv;
3706{
3707 return (tv->v_lock & VAR_LOCKED)
3708 || (tv->v_type == VAR_LIST
3709 && tv->vval.v_list != NULL
3710 && (tv->vval.v_list->lv_lock & VAR_LOCKED))
3711 || (tv->v_type == VAR_DICT
3712 && tv->vval.v_dict != NULL
3713 && (tv->vval.v_dict->dv_lock & VAR_LOCKED));
3714}
3715
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716#if (defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)) || defined(PROTO)
3717/*
3718 * Delete all "menutrans_" variables.
3719 */
3720 void
3721del_menutrans_vars()
3722{
Bram Moolenaar33570922005-01-25 22:26:29 +00003723 hashitem_T *hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003724 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725
Bram Moolenaar33570922005-01-25 22:26:29 +00003726 hash_lock(&globvarht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003727 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00003728 for (hi = globvarht.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaara7043832005-01-21 11:56:39 +00003729 {
3730 if (!HASHITEM_EMPTY(hi))
3731 {
3732 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00003733 if (STRNCMP(HI2DI(hi)->di_key, "menutrans_", 10) == 0)
3734 delete_var(&globvarht, hi);
Bram Moolenaara7043832005-01-21 11:56:39 +00003735 }
3736 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003737 hash_unlock(&globvarht);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738}
3739#endif
3740
3741#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3742
3743/*
3744 * Local string buffer for the next two functions to store a variable name
3745 * with its prefix. Allocated in cat_prefix_varname(), freed later in
3746 * get_user_var_name().
3747 */
3748
3749static char_u *cat_prefix_varname __ARGS((int prefix, char_u *name));
3750
3751static char_u *varnamebuf = NULL;
3752static int varnamebuflen = 0;
3753
3754/*
3755 * Function to concatenate a prefix and a variable name.
3756 */
3757 static char_u *
3758cat_prefix_varname(prefix, name)
3759 int prefix;
3760 char_u *name;
3761{
3762 int len;
3763
3764 len = (int)STRLEN(name) + 3;
3765 if (len > varnamebuflen)
3766 {
3767 vim_free(varnamebuf);
3768 len += 10; /* some additional space */
3769 varnamebuf = alloc(len);
3770 if (varnamebuf == NULL)
3771 {
3772 varnamebuflen = 0;
3773 return NULL;
3774 }
3775 varnamebuflen = len;
3776 }
3777 *varnamebuf = prefix;
3778 varnamebuf[1] = ':';
3779 STRCPY(varnamebuf + 2, name);
3780 return varnamebuf;
3781}
3782
3783/*
3784 * Function given to ExpandGeneric() to obtain the list of user defined
3785 * (global/buffer/window/built-in) variable names.
3786 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787 char_u *
3788get_user_var_name(xp, idx)
3789 expand_T *xp;
3790 int idx;
3791{
Bram Moolenaar532c7802005-01-27 14:44:31 +00003792 static long_u gdone;
3793 static long_u bdone;
3794 static long_u wdone;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003795#ifdef FEAT_WINDOWS
3796 static long_u tdone;
3797#endif
Bram Moolenaar532c7802005-01-27 14:44:31 +00003798 static int vidx;
3799 static hashitem_T *hi;
3800 hashtab_T *ht;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801
3802 if (idx == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003803 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003804 gdone = bdone = wdone = vidx = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003805#ifdef FEAT_WINDOWS
3806 tdone = 0;
3807#endif
3808 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003809
3810 /* Global variables */
3811 if (gdone < globvarht.ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003813 if (gdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003814 hi = globvarht.ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003815 else
3816 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003817 while (HASHITEM_EMPTY(hi))
3818 ++hi;
3819 if (STRNCMP("g:", xp->xp_pattern, 2) == 0)
3820 return cat_prefix_varname('g', hi->hi_key);
3821 return hi->hi_key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003823
3824 /* b: variables */
3825 ht = &curbuf->b_vars.dv_hashtab;
3826 if (bdone < ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003828 if (bdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003829 hi = ht->ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003830 else
3831 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003832 while (HASHITEM_EMPTY(hi))
3833 ++hi;
3834 return cat_prefix_varname('b', hi->hi_key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003836 if (bdone == ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003838 ++bdone;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839 return (char_u *)"b:changedtick";
3840 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003841
3842 /* w: variables */
3843 ht = &curwin->w_vars.dv_hashtab;
3844 if (wdone < ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00003846 if (wdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003847 hi = ht->ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003848 else
3849 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003850 while (HASHITEM_EMPTY(hi))
3851 ++hi;
3852 return cat_prefix_varname('w', hi->hi_key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003854
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003855#ifdef FEAT_WINDOWS
3856 /* t: variables */
3857 ht = &curtab->tp_vars.dv_hashtab;
3858 if (tdone < ht->ht_used)
3859 {
3860 if (tdone++ == 0)
3861 hi = ht->ht_array;
3862 else
3863 ++hi;
3864 while (HASHITEM_EMPTY(hi))
3865 ++hi;
3866 return cat_prefix_varname('t', hi->hi_key);
3867 }
3868#endif
3869
Bram Moolenaar33570922005-01-25 22:26:29 +00003870 /* v: variables */
3871 if (vidx < VV_LEN)
3872 return cat_prefix_varname('v', (char_u *)vimvars[vidx++].vv_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873
3874 vim_free(varnamebuf);
3875 varnamebuf = NULL;
3876 varnamebuflen = 0;
3877 return NULL;
3878}
3879
3880#endif /* FEAT_CMDL_COMPL */
3881
3882/*
3883 * types for expressions.
3884 */
3885typedef enum
3886{
3887 TYPE_UNKNOWN = 0
3888 , TYPE_EQUAL /* == */
3889 , TYPE_NEQUAL /* != */
3890 , TYPE_GREATER /* > */
3891 , TYPE_GEQUAL /* >= */
3892 , TYPE_SMALLER /* < */
3893 , TYPE_SEQUAL /* <= */
3894 , TYPE_MATCH /* =~ */
3895 , TYPE_NOMATCH /* !~ */
3896} exptype_T;
3897
3898/*
3899 * The "evaluate" argument: When FALSE, the argument is only parsed but not
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003900 * executed. The function may return OK, but the rettv will be of type
Bram Moolenaar071d4272004-06-13 20:20:40 +00003901 * VAR_UNKNOWN. The function still returns FAIL for a syntax error.
3902 */
3903
3904/*
3905 * Handle zero level expression.
3906 * This calls eval1() and handles error message and nextcmd.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003907 * Put the result in "rettv" when returning OK and "evaluate" is TRUE.
Bram Moolenaar4463f292005-09-25 22:20:24 +00003908 * Note: "rettv.v_lock" is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 * Return OK or FAIL.
3910 */
3911 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003912eval0(arg, rettv, nextcmd, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913 char_u *arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00003914 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915 char_u **nextcmd;
3916 int evaluate;
3917{
3918 int ret;
3919 char_u *p;
3920
3921 p = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003922 ret = eval1(&p, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923 if (ret == FAIL || !ends_excmd(*p))
3924 {
3925 if (ret != FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003926 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 /*
3928 * Report the invalid expression unless the expression evaluation has
3929 * been cancelled due to an aborting error, an interrupt, or an
3930 * exception.
3931 */
3932 if (!aborting())
3933 EMSG2(_(e_invexpr2), arg);
3934 ret = FAIL;
3935 }
3936 if (nextcmd != NULL)
3937 *nextcmd = check_nextcmd(p);
3938
3939 return ret;
3940}
3941
3942/*
3943 * Handle top level expression:
Bram Moolenaarb67cc162009-02-04 15:27:06 +00003944 * expr2 ? expr1 : expr1
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945 *
3946 * "arg" must point to the first non-white of the expression.
3947 * "arg" is advanced to the next non-white after the recognized expression.
3948 *
Bram Moolenaar4463f292005-09-25 22:20:24 +00003949 * Note: "rettv.v_lock" is not set.
3950 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 * Return OK or FAIL.
3952 */
3953 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003954eval1(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00003956 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 int evaluate;
3958{
3959 int result;
Bram Moolenaar33570922005-01-25 22:26:29 +00003960 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961
3962 /*
3963 * Get the first variable.
3964 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003965 if (eval2(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 return FAIL;
3967
3968 if ((*arg)[0] == '?')
3969 {
3970 result = FALSE;
3971 if (evaluate)
3972 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003973 int error = FALSE;
3974
3975 if (get_tv_number_chk(rettv, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003977 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003978 if (error)
3979 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 }
3981
3982 /*
3983 * Get the second variable.
3984 */
3985 *arg = skipwhite(*arg + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003986 if (eval1(arg, rettv, evaluate && result) == FAIL) /* recursive! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987 return FAIL;
3988
3989 /*
3990 * Check for the ":".
3991 */
3992 if ((*arg)[0] != ':')
3993 {
3994 EMSG(_("E109: Missing ':' after '?'"));
3995 if (evaluate && result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003996 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997 return FAIL;
3998 }
3999
4000 /*
4001 * Get the third variable.
4002 */
4003 *arg = skipwhite(*arg + 1);
4004 if (eval1(arg, &var2, evaluate && !result) == FAIL) /* recursive! */
4005 {
4006 if (evaluate && result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004007 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008 return FAIL;
4009 }
4010 if (evaluate && !result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004011 *rettv = var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012 }
4013
4014 return OK;
4015}
4016
4017/*
4018 * Handle first level expression:
4019 * expr2 || expr2 || expr2 logical OR
4020 *
4021 * "arg" must point to the first non-white of the expression.
4022 * "arg" is advanced to the next non-white after the recognized expression.
4023 *
4024 * Return OK or FAIL.
4025 */
4026 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004027eval2(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004029 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 int evaluate;
4031{
Bram Moolenaar33570922005-01-25 22:26:29 +00004032 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033 long result;
4034 int first;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004035 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036
4037 /*
4038 * Get the first variable.
4039 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004040 if (eval3(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041 return FAIL;
4042
4043 /*
4044 * Repeat until there is no following "||".
4045 */
4046 first = TRUE;
4047 result = FALSE;
4048 while ((*arg)[0] == '|' && (*arg)[1] == '|')
4049 {
4050 if (evaluate && first)
4051 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004052 if (get_tv_number_chk(rettv, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004054 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004055 if (error)
4056 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004057 first = FALSE;
4058 }
4059
4060 /*
4061 * Get the second variable.
4062 */
4063 *arg = skipwhite(*arg + 2);
4064 if (eval3(arg, &var2, evaluate && !result) == FAIL)
4065 return FAIL;
4066
4067 /*
4068 * Compute the result.
4069 */
4070 if (evaluate && !result)
4071 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004072 if (get_tv_number_chk(&var2, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004074 clear_tv(&var2);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004075 if (error)
4076 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077 }
4078 if (evaluate)
4079 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004080 rettv->v_type = VAR_NUMBER;
4081 rettv->vval.v_number = result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082 }
4083 }
4084
4085 return OK;
4086}
4087
4088/*
4089 * Handle second level expression:
4090 * expr3 && expr3 && expr3 logical AND
4091 *
4092 * "arg" must point to the first non-white of the expression.
4093 * "arg" is advanced to the next non-white after the recognized expression.
4094 *
4095 * Return OK or FAIL.
4096 */
4097 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004098eval3(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004100 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004101 int evaluate;
4102{
Bram Moolenaar33570922005-01-25 22:26:29 +00004103 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 long result;
4105 int first;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004106 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107
4108 /*
4109 * Get the first variable.
4110 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004111 if (eval4(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 return FAIL;
4113
4114 /*
4115 * Repeat until there is no following "&&".
4116 */
4117 first = TRUE;
4118 result = TRUE;
4119 while ((*arg)[0] == '&' && (*arg)[1] == '&')
4120 {
4121 if (evaluate && first)
4122 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004123 if (get_tv_number_chk(rettv, &error) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 result = FALSE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004125 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004126 if (error)
4127 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128 first = FALSE;
4129 }
4130
4131 /*
4132 * Get the second variable.
4133 */
4134 *arg = skipwhite(*arg + 2);
4135 if (eval4(arg, &var2, evaluate && result) == FAIL)
4136 return FAIL;
4137
4138 /*
4139 * Compute the result.
4140 */
4141 if (evaluate && result)
4142 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004143 if (get_tv_number_chk(&var2, &error) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004144 result = FALSE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004145 clear_tv(&var2);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004146 if (error)
4147 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 }
4149 if (evaluate)
4150 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004151 rettv->v_type = VAR_NUMBER;
4152 rettv->vval.v_number = result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 }
4154 }
4155
4156 return OK;
4157}
4158
4159/*
4160 * Handle third level expression:
4161 * var1 == var2
4162 * var1 =~ var2
4163 * var1 != var2
4164 * var1 !~ var2
4165 * var1 > var2
4166 * var1 >= var2
4167 * var1 < var2
4168 * var1 <= var2
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004169 * var1 is var2
4170 * var1 isnot var2
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171 *
4172 * "arg" must point to the first non-white of the expression.
4173 * "arg" is advanced to the next non-white after the recognized expression.
4174 *
4175 * Return OK or FAIL.
4176 */
4177 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004178eval4(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004180 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181 int evaluate;
4182{
Bram Moolenaar33570922005-01-25 22:26:29 +00004183 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184 char_u *p;
4185 int i;
4186 exptype_T type = TYPE_UNKNOWN;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004187 int type_is = FALSE; /* TRUE for "is" and "isnot" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188 int len = 2;
4189 long n1, n2;
4190 char_u *s1, *s2;
4191 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4192 regmatch_T regmatch;
4193 int ic;
4194 char_u *save_cpo;
4195
4196 /*
4197 * Get the first variable.
4198 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004199 if (eval5(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004200 return FAIL;
4201
4202 p = *arg;
4203 switch (p[0])
4204 {
4205 case '=': if (p[1] == '=')
4206 type = TYPE_EQUAL;
4207 else if (p[1] == '~')
4208 type = TYPE_MATCH;
4209 break;
4210 case '!': if (p[1] == '=')
4211 type = TYPE_NEQUAL;
4212 else if (p[1] == '~')
4213 type = TYPE_NOMATCH;
4214 break;
4215 case '>': if (p[1] != '=')
4216 {
4217 type = TYPE_GREATER;
4218 len = 1;
4219 }
4220 else
4221 type = TYPE_GEQUAL;
4222 break;
4223 case '<': if (p[1] != '=')
4224 {
4225 type = TYPE_SMALLER;
4226 len = 1;
4227 }
4228 else
4229 type = TYPE_SEQUAL;
4230 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004231 case 'i': if (p[1] == 's')
4232 {
4233 if (p[2] == 'n' && p[3] == 'o' && p[4] == 't')
4234 len = 5;
4235 if (!vim_isIDc(p[len]))
4236 {
4237 type = len == 2 ? TYPE_EQUAL : TYPE_NEQUAL;
4238 type_is = TRUE;
4239 }
4240 }
4241 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242 }
4243
4244 /*
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004245 * If there is a comparative operator, use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246 */
4247 if (type != TYPE_UNKNOWN)
4248 {
4249 /* extra question mark appended: ignore case */
4250 if (p[len] == '?')
4251 {
4252 ic = TRUE;
4253 ++len;
4254 }
4255 /* extra '#' appended: match case */
4256 else if (p[len] == '#')
4257 {
4258 ic = FALSE;
4259 ++len;
4260 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004261 /* nothing appended: use 'ignorecase' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262 else
4263 ic = p_ic;
4264
4265 /*
4266 * Get the second variable.
4267 */
4268 *arg = skipwhite(p + len);
4269 if (eval5(arg, &var2, evaluate) == FAIL)
4270 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004271 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004272 return FAIL;
4273 }
4274
4275 if (evaluate)
4276 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004277 if (type_is && rettv->v_type != var2.v_type)
4278 {
4279 /* For "is" a different type always means FALSE, for "notis"
4280 * it means TRUE. */
4281 n1 = (type == TYPE_NEQUAL);
4282 }
4283 else if (rettv->v_type == VAR_LIST || var2.v_type == VAR_LIST)
4284 {
4285 if (type_is)
4286 {
4287 n1 = (rettv->v_type == var2.v_type
4288 && rettv->vval.v_list == var2.vval.v_list);
4289 if (type == TYPE_NEQUAL)
4290 n1 = !n1;
4291 }
4292 else if (rettv->v_type != var2.v_type
4293 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4294 {
4295 if (rettv->v_type != var2.v_type)
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004296 EMSG(_("E691: Can only compare List with List"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004297 else
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004298 EMSG(_("E692: Invalid operation for Lists"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004299 clear_tv(rettv);
4300 clear_tv(&var2);
4301 return FAIL;
4302 }
4303 else
4304 {
4305 /* Compare two Lists for being equal or unequal. */
4306 n1 = list_equal(rettv->vval.v_list, var2.vval.v_list, ic);
4307 if (type == TYPE_NEQUAL)
4308 n1 = !n1;
4309 }
4310 }
4311
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00004312 else if (rettv->v_type == VAR_DICT || var2.v_type == VAR_DICT)
4313 {
4314 if (type_is)
4315 {
4316 n1 = (rettv->v_type == var2.v_type
4317 && rettv->vval.v_dict == var2.vval.v_dict);
4318 if (type == TYPE_NEQUAL)
4319 n1 = !n1;
4320 }
4321 else if (rettv->v_type != var2.v_type
4322 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4323 {
4324 if (rettv->v_type != var2.v_type)
4325 EMSG(_("E735: Can only compare Dictionary with Dictionary"));
4326 else
4327 EMSG(_("E736: Invalid operation for Dictionary"));
4328 clear_tv(rettv);
4329 clear_tv(&var2);
4330 return FAIL;
4331 }
4332 else
4333 {
4334 /* Compare two Dictionaries for being equal or unequal. */
4335 n1 = dict_equal(rettv->vval.v_dict, var2.vval.v_dict, ic);
4336 if (type == TYPE_NEQUAL)
4337 n1 = !n1;
4338 }
4339 }
4340
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004341 else if (rettv->v_type == VAR_FUNC || var2.v_type == VAR_FUNC)
4342 {
4343 if (rettv->v_type != var2.v_type
4344 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4345 {
4346 if (rettv->v_type != var2.v_type)
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004347 EMSG(_("E693: Can only compare Funcref with Funcref"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004348 else
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004349 EMSG(_("E694: Invalid operation for Funcrefs"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004350 clear_tv(rettv);
4351 clear_tv(&var2);
4352 return FAIL;
4353 }
4354 else
4355 {
4356 /* Compare two Funcrefs for being equal or unequal. */
4357 if (rettv->vval.v_string == NULL
4358 || var2.vval.v_string == NULL)
4359 n1 = FALSE;
4360 else
4361 n1 = STRCMP(rettv->vval.v_string,
4362 var2.vval.v_string) == 0;
4363 if (type == TYPE_NEQUAL)
4364 n1 = !n1;
4365 }
4366 }
4367
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004368#ifdef FEAT_FLOAT
4369 /*
4370 * If one of the two variables is a float, compare as a float.
4371 * When using "=~" or "!~", always compare as string.
4372 */
4373 else if ((rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4374 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4375 {
4376 float_T f1, f2;
4377
4378 if (rettv->v_type == VAR_FLOAT)
4379 f1 = rettv->vval.v_float;
4380 else
4381 f1 = get_tv_number(rettv);
4382 if (var2.v_type == VAR_FLOAT)
4383 f2 = var2.vval.v_float;
4384 else
4385 f2 = get_tv_number(&var2);
4386 n1 = FALSE;
4387 switch (type)
4388 {
4389 case TYPE_EQUAL: n1 = (f1 == f2); break;
4390 case TYPE_NEQUAL: n1 = (f1 != f2); break;
4391 case TYPE_GREATER: n1 = (f1 > f2); break;
4392 case TYPE_GEQUAL: n1 = (f1 >= f2); break;
4393 case TYPE_SMALLER: n1 = (f1 < f2); break;
4394 case TYPE_SEQUAL: n1 = (f1 <= f2); break;
4395 case TYPE_UNKNOWN:
4396 case TYPE_MATCH:
4397 case TYPE_NOMATCH: break; /* avoid gcc warning */
4398 }
4399 }
4400#endif
4401
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402 /*
4403 * If one of the two variables is a number, compare as a number.
4404 * When using "=~" or "!~", always compare as string.
4405 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004406 else if ((rettv->v_type == VAR_NUMBER || var2.v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4408 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004409 n1 = get_tv_number(rettv);
4410 n2 = get_tv_number(&var2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411 switch (type)
4412 {
4413 case TYPE_EQUAL: n1 = (n1 == n2); break;
4414 case TYPE_NEQUAL: n1 = (n1 != n2); break;
4415 case TYPE_GREATER: n1 = (n1 > n2); break;
4416 case TYPE_GEQUAL: n1 = (n1 >= n2); break;
4417 case TYPE_SMALLER: n1 = (n1 < n2); break;
4418 case TYPE_SEQUAL: n1 = (n1 <= n2); break;
4419 case TYPE_UNKNOWN:
4420 case TYPE_MATCH:
4421 case TYPE_NOMATCH: break; /* avoid gcc warning */
4422 }
4423 }
4424 else
4425 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004426 s1 = get_tv_string_buf(rettv, buf1);
4427 s2 = get_tv_string_buf(&var2, buf2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004428 if (type != TYPE_MATCH && type != TYPE_NOMATCH)
4429 i = ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2);
4430 else
4431 i = 0;
4432 n1 = FALSE;
4433 switch (type)
4434 {
4435 case TYPE_EQUAL: n1 = (i == 0); break;
4436 case TYPE_NEQUAL: n1 = (i != 0); break;
4437 case TYPE_GREATER: n1 = (i > 0); break;
4438 case TYPE_GEQUAL: n1 = (i >= 0); break;
4439 case TYPE_SMALLER: n1 = (i < 0); break;
4440 case TYPE_SEQUAL: n1 = (i <= 0); break;
4441
4442 case TYPE_MATCH:
4443 case TYPE_NOMATCH:
4444 /* avoid 'l' flag in 'cpoptions' */
4445 save_cpo = p_cpo;
4446 p_cpo = (char_u *)"";
4447 regmatch.regprog = vim_regcomp(s2,
4448 RE_MAGIC + RE_STRING);
4449 regmatch.rm_ic = ic;
4450 if (regmatch.regprog != NULL)
4451 {
4452 n1 = vim_regexec_nl(&regmatch, s1, (colnr_T)0);
4453 vim_free(regmatch.regprog);
4454 if (type == TYPE_NOMATCH)
4455 n1 = !n1;
4456 }
4457 p_cpo = save_cpo;
4458 break;
4459
4460 case TYPE_UNKNOWN: break; /* avoid gcc warning */
4461 }
4462 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004463 clear_tv(rettv);
4464 clear_tv(&var2);
4465 rettv->v_type = VAR_NUMBER;
4466 rettv->vval.v_number = n1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 }
4468 }
4469
4470 return OK;
4471}
4472
4473/*
4474 * Handle fourth level expression:
4475 * + number addition
4476 * - number subtraction
4477 * . string concatenation
4478 *
4479 * "arg" must point to the first non-white of the expression.
4480 * "arg" is advanced to the next non-white after the recognized expression.
4481 *
4482 * Return OK or FAIL.
4483 */
4484 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004485eval5(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004487 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488 int evaluate;
4489{
Bram Moolenaar33570922005-01-25 22:26:29 +00004490 typval_T var2;
4491 typval_T var3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492 int op;
4493 long n1, n2;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004494#ifdef FEAT_FLOAT
4495 float_T f1 = 0, f2 = 0;
4496#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 char_u *s1, *s2;
4498 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4499 char_u *p;
4500
4501 /*
4502 * Get the first variable.
4503 */
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004504 if (eval6(arg, rettv, evaluate, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505 return FAIL;
4506
4507 /*
4508 * Repeat computing, until no '+', '-' or '.' is following.
4509 */
4510 for (;;)
4511 {
4512 op = **arg;
4513 if (op != '+' && op != '-' && op != '.')
4514 break;
4515
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004516 if ((op != '+' || rettv->v_type != VAR_LIST)
4517#ifdef FEAT_FLOAT
4518 && (op == '.' || rettv->v_type != VAR_FLOAT)
4519#endif
4520 )
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004521 {
4522 /* For "list + ...", an illegal use of the first operand as
4523 * a number cannot be determined before evaluating the 2nd
4524 * operand: if this is also a list, all is ok.
4525 * For "something . ...", "something - ..." or "non-list + ...",
4526 * we know that the first operand needs to be a string or number
4527 * without evaluating the 2nd operand. So check before to avoid
4528 * side effects after an error. */
4529 if (evaluate && get_tv_string_chk(rettv) == NULL)
4530 {
4531 clear_tv(rettv);
4532 return FAIL;
4533 }
4534 }
4535
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 /*
4537 * Get the second variable.
4538 */
4539 *arg = skipwhite(*arg + 1);
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004540 if (eval6(arg, &var2, evaluate, op == '.') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004542 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004543 return FAIL;
4544 }
4545
4546 if (evaluate)
4547 {
4548 /*
4549 * Compute the result.
4550 */
4551 if (op == '.')
4552 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004553 s1 = get_tv_string_buf(rettv, buf1); /* already checked */
4554 s2 = get_tv_string_buf_chk(&var2, buf2);
4555 if (s2 == NULL) /* type error ? */
4556 {
4557 clear_tv(rettv);
4558 clear_tv(&var2);
4559 return FAIL;
4560 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00004561 p = concat_str(s1, s2);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004562 clear_tv(rettv);
4563 rettv->v_type = VAR_STRING;
4564 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00004566 else if (op == '+' && rettv->v_type == VAR_LIST
4567 && var2.v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004568 {
4569 /* concatenate Lists */
4570 if (list_concat(rettv->vval.v_list, var2.vval.v_list,
4571 &var3) == FAIL)
4572 {
4573 clear_tv(rettv);
4574 clear_tv(&var2);
4575 return FAIL;
4576 }
4577 clear_tv(rettv);
4578 *rettv = var3;
4579 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 else
4581 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004582 int error = FALSE;
4583
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004584#ifdef FEAT_FLOAT
4585 if (rettv->v_type == VAR_FLOAT)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004586 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004587 f1 = rettv->vval.v_float;
4588 n1 = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004589 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004590 else
4591#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004592 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004593 n1 = get_tv_number_chk(rettv, &error);
4594 if (error)
4595 {
4596 /* This can only happen for "list + non-list". For
4597 * "non-list + ..." or "something - ...", we returned
4598 * before evaluating the 2nd operand. */
4599 clear_tv(rettv);
4600 return FAIL;
4601 }
4602#ifdef FEAT_FLOAT
4603 if (var2.v_type == VAR_FLOAT)
4604 f1 = n1;
4605#endif
4606 }
4607#ifdef FEAT_FLOAT
4608 if (var2.v_type == VAR_FLOAT)
4609 {
4610 f2 = var2.vval.v_float;
4611 n2 = 0;
4612 }
4613 else
4614#endif
4615 {
4616 n2 = get_tv_number_chk(&var2, &error);
4617 if (error)
4618 {
4619 clear_tv(rettv);
4620 clear_tv(&var2);
4621 return FAIL;
4622 }
4623#ifdef FEAT_FLOAT
4624 if (rettv->v_type == VAR_FLOAT)
4625 f2 = n2;
4626#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004627 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004628 clear_tv(rettv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004629
4630#ifdef FEAT_FLOAT
4631 /* If there is a float on either side the result is a float. */
4632 if (rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4633 {
4634 if (op == '+')
4635 f1 = f1 + f2;
4636 else
4637 f1 = f1 - f2;
4638 rettv->v_type = VAR_FLOAT;
4639 rettv->vval.v_float = f1;
4640 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004642#endif
4643 {
4644 if (op == '+')
4645 n1 = n1 + n2;
4646 else
4647 n1 = n1 - n2;
4648 rettv->v_type = VAR_NUMBER;
4649 rettv->vval.v_number = n1;
4650 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004652 clear_tv(&var2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 }
4654 }
4655 return OK;
4656}
4657
4658/*
4659 * Handle fifth level expression:
4660 * * number multiplication
4661 * / number division
4662 * % number modulo
4663 *
4664 * "arg" must point to the first non-white of the expression.
4665 * "arg" is advanced to the next non-white after the recognized expression.
4666 *
4667 * Return OK or FAIL.
4668 */
4669 static int
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004670eval6(arg, rettv, evaluate, want_string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004672 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673 int evaluate;
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004674 int want_string; /* after "." operator */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675{
Bram Moolenaar33570922005-01-25 22:26:29 +00004676 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 int op;
4678 long n1, n2;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004679#ifdef FEAT_FLOAT
4680 int use_float = FALSE;
4681 float_T f1 = 0, f2;
4682#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004683 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684
4685 /*
4686 * Get the first variable.
4687 */
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004688 if (eval7(arg, rettv, evaluate, want_string) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689 return FAIL;
4690
4691 /*
4692 * Repeat computing, until no '*', '/' or '%' is following.
4693 */
4694 for (;;)
4695 {
4696 op = **arg;
4697 if (op != '*' && op != '/' && op != '%')
4698 break;
4699
4700 if (evaluate)
4701 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004702#ifdef FEAT_FLOAT
4703 if (rettv->v_type == VAR_FLOAT)
4704 {
4705 f1 = rettv->vval.v_float;
4706 use_float = TRUE;
4707 n1 = 0;
4708 }
4709 else
4710#endif
4711 n1 = get_tv_number_chk(rettv, &error);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004712 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004713 if (error)
4714 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715 }
4716 else
4717 n1 = 0;
4718
4719 /*
4720 * Get the second variable.
4721 */
4722 *arg = skipwhite(*arg + 1);
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004723 if (eval7(arg, &var2, evaluate, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 return FAIL;
4725
4726 if (evaluate)
4727 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004728#ifdef FEAT_FLOAT
4729 if (var2.v_type == VAR_FLOAT)
4730 {
4731 if (!use_float)
4732 {
4733 f1 = n1;
4734 use_float = TRUE;
4735 }
4736 f2 = var2.vval.v_float;
4737 n2 = 0;
4738 }
4739 else
4740#endif
4741 {
4742 n2 = get_tv_number_chk(&var2, &error);
4743 clear_tv(&var2);
4744 if (error)
4745 return FAIL;
4746#ifdef FEAT_FLOAT
4747 if (use_float)
4748 f2 = n2;
4749#endif
4750 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751
4752 /*
4753 * Compute the result.
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004754 * When either side is a float the result is a float.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004756#ifdef FEAT_FLOAT
4757 if (use_float)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004759 if (op == '*')
4760 f1 = f1 * f2;
4761 else if (op == '/')
4762 {
4763 /* We rely on the floating point library to handle divide
4764 * by zero to result in "inf" and not a crash. */
4765 f1 = f1 / f2;
4766 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004768 {
Bram Moolenaar1378fca2008-07-04 16:51:55 +00004769 EMSG(_("E804: Cannot use '%' with Float"));
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004770 return FAIL;
4771 }
4772 rettv->v_type = VAR_FLOAT;
4773 rettv->vval.v_float = f1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774 }
4775 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004776#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004777 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004778 if (op == '*')
4779 n1 = n1 * n2;
4780 else if (op == '/')
4781 {
4782 if (n2 == 0) /* give an error message? */
4783 {
4784 if (n1 == 0)
4785 n1 = -0x7fffffffL - 1L; /* similar to NaN */
4786 else if (n1 < 0)
4787 n1 = -0x7fffffffL;
4788 else
4789 n1 = 0x7fffffffL;
4790 }
4791 else
4792 n1 = n1 / n2;
4793 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004795 {
4796 if (n2 == 0) /* give an error message? */
4797 n1 = 0;
4798 else
4799 n1 = n1 % n2;
4800 }
4801 rettv->v_type = VAR_NUMBER;
4802 rettv->vval.v_number = n1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804 }
4805 }
4806
4807 return OK;
4808}
4809
4810/*
4811 * Handle sixth level expression:
4812 * number number constant
Bram Moolenaarbae0c162007-05-10 19:30:25 +00004813 * "string" string constant
4814 * 'string' literal string constant
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815 * &option-name option value
4816 * @r register contents
4817 * identifier variable value
4818 * function() function call
4819 * $VAR environment variable
4820 * (expression) nested expression
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00004821 * [expr, expr] List
4822 * {key: val, key: val} Dictionary
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823 *
4824 * Also handle:
4825 * ! in front logical NOT
4826 * - in front unary minus
4827 * + in front unary plus (ignored)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004828 * trailing [] subscript in String or List
4829 * trailing .name entry in Dictionary
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830 *
4831 * "arg" must point to the first non-white of the expression.
4832 * "arg" is advanced to the next non-white after the recognized expression.
4833 *
4834 * Return OK or FAIL.
4835 */
4836 static int
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004837eval7(arg, rettv, evaluate, want_string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004839 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 int evaluate;
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004841 int want_string; /* after "." operator */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843 long n;
4844 int len;
4845 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846 char_u *start_leader, *end_leader;
4847 int ret = OK;
4848 char_u *alias;
4849
4850 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004851 * Initialise variable so that clear_tv() can't mistake this for a
Bram Moolenaar49cd9572005-01-03 21:06:01 +00004852 * string and free a string that isn't there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004854 rettv->v_type = VAR_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855
4856 /*
4857 * Skip '!' and '-' characters. They are handled later.
4858 */
4859 start_leader = *arg;
4860 while (**arg == '!' || **arg == '-' || **arg == '+')
4861 *arg = skipwhite(*arg + 1);
4862 end_leader = *arg;
4863
4864 switch (**arg)
4865 {
4866 /*
4867 * Number constant.
4868 */
4869 case '0':
4870 case '1':
4871 case '2':
4872 case '3':
4873 case '4':
4874 case '5':
4875 case '6':
4876 case '7':
4877 case '8':
4878 case '9':
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004879 {
4880#ifdef FEAT_FLOAT
4881 char_u *p = skipdigits(*arg + 1);
4882 int get_float = FALSE;
4883
4884 /* We accept a float when the format matches
4885 * "[0-9]\+\.[0-9]\+\([eE][+-]\?[0-9]\+\)\?". This is very
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004886 * strict to avoid backwards compatibility problems.
4887 * Don't look for a float after the "." operator, so that
4888 * ":let vers = 1.2.3" doesn't fail. */
4889 if (!want_string && p[0] == '.' && vim_isdigit(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004891 get_float = TRUE;
4892 p = skipdigits(p + 2);
4893 if (*p == 'e' || *p == 'E')
4894 {
4895 ++p;
4896 if (*p == '-' || *p == '+')
4897 ++p;
4898 if (!vim_isdigit(*p))
4899 get_float = FALSE;
4900 else
4901 p = skipdigits(p + 1);
4902 }
4903 if (ASCII_ISALPHA(*p) || *p == '.')
4904 get_float = FALSE;
4905 }
4906 if (get_float)
4907 {
4908 float_T f;
4909
4910 *arg += string2float(*arg, &f);
4911 if (evaluate)
4912 {
4913 rettv->v_type = VAR_FLOAT;
4914 rettv->vval.v_float = f;
4915 }
4916 }
4917 else
4918#endif
4919 {
4920 vim_str2nr(*arg, NULL, &len, TRUE, TRUE, &n, NULL);
4921 *arg += len;
4922 if (evaluate)
4923 {
4924 rettv->v_type = VAR_NUMBER;
4925 rettv->vval.v_number = n;
4926 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 }
4928 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004929 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930
4931 /*
4932 * String constant: "string".
4933 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004934 case '"': ret = get_string_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 break;
4936
4937 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00004938 * Literal string constant: 'str''ing'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004940 case '\'': ret = get_lit_string_tv(arg, rettv, evaluate);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00004941 break;
4942
4943 /*
4944 * List: [expr, expr]
4945 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004946 case '[': ret = get_list_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 break;
4948
4949 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00004950 * Dictionary: {key: val, key: val}
4951 */
4952 case '{': ret = get_dict_tv(arg, rettv, evaluate);
4953 break;
4954
4955 /*
Bram Moolenaare9a41262005-01-15 22:18:47 +00004956 * Option value: &name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 */
Bram Moolenaare9a41262005-01-15 22:18:47 +00004958 case '&': ret = get_option_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 break;
4960
4961 /*
4962 * Environment variable: $VAR.
4963 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004964 case '$': ret = get_env_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 break;
4966
4967 /*
4968 * Register contents: @r.
4969 */
4970 case '@': ++*arg;
4971 if (evaluate)
4972 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004973 rettv->v_type = VAR_STRING;
Bram Moolenaar92124a32005-06-17 22:03:40 +00004974 rettv->vval.v_string = get_reg_contents(**arg, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 }
4976 if (**arg != NUL)
4977 ++*arg;
4978 break;
4979
4980 /*
4981 * nested expression: (expression).
4982 */
4983 case '(': *arg = skipwhite(*arg + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004984 ret = eval1(arg, rettv, evaluate); /* recursive! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985 if (**arg == ')')
4986 ++*arg;
4987 else if (ret == OK)
4988 {
4989 EMSG(_("E110: Missing ')'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004990 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991 ret = FAIL;
4992 }
4993 break;
4994
Bram Moolenaar8c711452005-01-14 21:53:12 +00004995 default: ret = NOTDONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 break;
4997 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00004998
4999 if (ret == NOTDONE)
5000 {
5001 /*
5002 * Must be a variable or function name.
5003 * Can also be a curly-braces kind of name: {expr}.
5004 */
5005 s = *arg;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005006 len = get_name_len(arg, &alias, evaluate, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005007 if (alias != NULL)
5008 s = alias;
5009
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005010 if (len <= 0)
Bram Moolenaar8c711452005-01-14 21:53:12 +00005011 ret = FAIL;
5012 else
5013 {
5014 if (**arg == '(') /* recursive! */
5015 {
5016 /* If "s" is the name of a variable of type VAR_FUNC
5017 * use its contents. */
5018 s = deref_func_name(s, &len);
5019
5020 /* Invoke the function. */
5021 ret = get_func_tv(s, len, rettv, arg,
5022 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
Bram Moolenaare9a41262005-01-15 22:18:47 +00005023 &len, evaluate, NULL);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005024 /* Stop the expression evaluation when immediately
5025 * aborting on error, or when an interrupt occurred or
5026 * an exception was thrown but not caught. */
5027 if (aborting())
5028 {
5029 if (ret == OK)
5030 clear_tv(rettv);
5031 ret = FAIL;
5032 }
5033 }
5034 else if (evaluate)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005035 ret = get_var_tv(s, len, rettv, TRUE);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005036 else
5037 ret = OK;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005038 }
5039
5040 if (alias != NULL)
5041 vim_free(alias);
5042 }
5043
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 *arg = skipwhite(*arg);
5045
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005046 /* Handle following '[', '(' and '.' for expr[expr], expr.name,
5047 * expr(expr). */
5048 if (ret == OK)
5049 ret = handle_subscript(arg, rettv, evaluate, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050
5051 /*
5052 * Apply logical NOT and unary '-', from right to left, ignore '+'.
5053 */
5054 if (ret == OK && evaluate && end_leader > start_leader)
5055 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005056 int error = FALSE;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005057 int val = 0;
5058#ifdef FEAT_FLOAT
5059 float_T f = 0.0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005060
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005061 if (rettv->v_type == VAR_FLOAT)
5062 f = rettv->vval.v_float;
5063 else
5064#endif
5065 val = get_tv_number_chk(rettv, &error);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005066 if (error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005068 clear_tv(rettv);
5069 ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005071 else
5072 {
5073 while (end_leader > start_leader)
5074 {
5075 --end_leader;
5076 if (*end_leader == '!')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005077 {
5078#ifdef FEAT_FLOAT
5079 if (rettv->v_type == VAR_FLOAT)
5080 f = !f;
5081 else
5082#endif
5083 val = !val;
5084 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005085 else if (*end_leader == '-')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005086 {
5087#ifdef FEAT_FLOAT
5088 if (rettv->v_type == VAR_FLOAT)
5089 f = -f;
5090 else
5091#endif
5092 val = -val;
5093 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005094 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005095#ifdef FEAT_FLOAT
5096 if (rettv->v_type == VAR_FLOAT)
5097 {
5098 clear_tv(rettv);
5099 rettv->vval.v_float = f;
5100 }
5101 else
5102#endif
5103 {
5104 clear_tv(rettv);
5105 rettv->v_type = VAR_NUMBER;
5106 rettv->vval.v_number = val;
5107 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005108 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 }
5110
5111 return ret;
5112}
5113
5114/*
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005115 * Evaluate an "[expr]" or "[expr:expr]" index. Also "dict.key".
5116 * "*arg" points to the '[' or '.'.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005117 * Returns FAIL or OK. "*arg" is advanced to after the ']'.
5118 */
5119 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005120eval_index(arg, rettv, evaluate, verbose)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005121 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005122 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005123 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005124 int verbose; /* give error messages */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005125{
5126 int empty1 = FALSE, empty2 = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00005127 typval_T var1, var2;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005128 long n1, n2 = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005129 long len = -1;
5130 int range = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005131 char_u *s;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005132 char_u *key = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005133
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005134 if (rettv->v_type == VAR_FUNC
5135#ifdef FEAT_FLOAT
5136 || rettv->v_type == VAR_FLOAT
5137#endif
5138 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005139 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005140 if (verbose)
5141 EMSG(_("E695: Cannot index a Funcref"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005142 return FAIL;
5143 }
5144
Bram Moolenaar8c711452005-01-14 21:53:12 +00005145 if (**arg == '.')
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005146 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005147 /*
5148 * dict.name
5149 */
5150 key = *arg + 1;
5151 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
5152 ;
5153 if (len == 0)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005154 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005155 *arg = skipwhite(key + len);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005156 }
5157 else
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005158 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005159 /*
5160 * something[idx]
5161 *
5162 * Get the (first) variable from inside the [].
5163 */
5164 *arg = skipwhite(*arg + 1);
5165 if (**arg == ':')
5166 empty1 = TRUE;
5167 else if (eval1(arg, &var1, evaluate) == FAIL) /* recursive! */
5168 return FAIL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005169 else if (evaluate && get_tv_string_chk(&var1) == NULL)
5170 {
5171 /* not a number or string */
5172 clear_tv(&var1);
5173 return FAIL;
5174 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005175
5176 /*
5177 * Get the second variable from inside the [:].
5178 */
5179 if (**arg == ':')
5180 {
5181 range = TRUE;
5182 *arg = skipwhite(*arg + 1);
5183 if (**arg == ']')
5184 empty2 = TRUE;
5185 else if (eval1(arg, &var2, evaluate) == FAIL) /* recursive! */
5186 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005187 if (!empty1)
5188 clear_tv(&var1);
5189 return FAIL;
5190 }
5191 else if (evaluate && get_tv_string_chk(&var2) == NULL)
5192 {
5193 /* not a number or string */
5194 if (!empty1)
5195 clear_tv(&var1);
5196 clear_tv(&var2);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005197 return FAIL;
5198 }
5199 }
5200
5201 /* Check for the ']'. */
5202 if (**arg != ']')
5203 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005204 if (verbose)
5205 EMSG(_(e_missbrac));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005206 clear_tv(&var1);
5207 if (range)
5208 clear_tv(&var2);
5209 return FAIL;
5210 }
5211 *arg = skipwhite(*arg + 1); /* skip the ']' */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005212 }
5213
5214 if (evaluate)
5215 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005216 n1 = 0;
5217 if (!empty1 && rettv->v_type != VAR_DICT)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005218 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005219 n1 = get_tv_number(&var1);
5220 clear_tv(&var1);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005221 }
5222 if (range)
5223 {
5224 if (empty2)
5225 n2 = -1;
5226 else
5227 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005228 n2 = get_tv_number(&var2);
5229 clear_tv(&var2);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005230 }
5231 }
5232
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005233 switch (rettv->v_type)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005234 {
5235 case VAR_NUMBER:
5236 case VAR_STRING:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005237 s = get_tv_string(rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005238 len = (long)STRLEN(s);
5239 if (range)
5240 {
5241 /* The resulting variable is a substring. If the indexes
5242 * are out of range the result is empty. */
5243 if (n1 < 0)
5244 {
5245 n1 = len + n1;
5246 if (n1 < 0)
5247 n1 = 0;
5248 }
5249 if (n2 < 0)
5250 n2 = len + n2;
5251 else if (n2 >= len)
5252 n2 = len;
5253 if (n1 >= len || n2 < 0 || n1 > n2)
5254 s = NULL;
5255 else
5256 s = vim_strnsave(s + n1, (int)(n2 - n1 + 1));
5257 }
5258 else
5259 {
5260 /* The resulting variable is a string of a single
5261 * character. If the index is too big or negative the
5262 * result is empty. */
5263 if (n1 >= len || n1 < 0)
5264 s = NULL;
5265 else
5266 s = vim_strnsave(s + n1, 1);
5267 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005268 clear_tv(rettv);
5269 rettv->v_type = VAR_STRING;
5270 rettv->vval.v_string = s;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005271 break;
5272
5273 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005274 len = list_len(rettv->vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005275 if (n1 < 0)
5276 n1 = len + n1;
5277 if (!empty1 && (n1 < 0 || n1 >= len))
5278 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005279 /* For a range we allow invalid values and return an empty
5280 * list. A list index out of range is an error. */
5281 if (!range)
5282 {
5283 if (verbose)
5284 EMSGN(_(e_listidx), n1);
5285 return FAIL;
5286 }
5287 n1 = len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005288 }
5289 if (range)
5290 {
Bram Moolenaar33570922005-01-25 22:26:29 +00005291 list_T *l;
5292 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005293
5294 if (n2 < 0)
5295 n2 = len + n2;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005296 else if (n2 >= len)
5297 n2 = len - 1;
5298 if (!empty2 && (n2 < 0 || n2 + 1 < n1))
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005299 n2 = -1;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005300 l = list_alloc();
5301 if (l == NULL)
5302 return FAIL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005303 for (item = list_find(rettv->vval.v_list, n1);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005304 n1 <= n2; ++n1)
5305 {
5306 if (list_append_tv(l, &item->li_tv) == FAIL)
5307 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00005308 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005309 return FAIL;
5310 }
5311 item = item->li_next;
5312 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005313 clear_tv(rettv);
5314 rettv->v_type = VAR_LIST;
5315 rettv->vval.v_list = l;
Bram Moolenaar0d660222005-01-07 21:51:51 +00005316 ++l->lv_refcount;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005317 }
5318 else
5319 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005320 copy_tv(&list_find(rettv->vval.v_list, n1)->li_tv, &var1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005321 clear_tv(rettv);
5322 *rettv = var1;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005323 }
5324 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005325
5326 case VAR_DICT:
5327 if (range)
5328 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005329 if (verbose)
5330 EMSG(_(e_dictrange));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005331 if (len == -1)
5332 clear_tv(&var1);
5333 return FAIL;
5334 }
5335 {
Bram Moolenaar33570922005-01-25 22:26:29 +00005336 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005337
5338 if (len == -1)
5339 {
5340 key = get_tv_string(&var1);
5341 if (*key == NUL)
5342 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005343 if (verbose)
5344 EMSG(_(e_emptykey));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005345 clear_tv(&var1);
5346 return FAIL;
5347 }
5348 }
5349
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005350 item = dict_find(rettv->vval.v_dict, key, (int)len);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005351
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005352 if (item == NULL && verbose)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005353 EMSG2(_(e_dictkey), key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005354 if (len == -1)
5355 clear_tv(&var1);
5356 if (item == NULL)
5357 return FAIL;
5358
5359 copy_tv(&item->di_tv, &var1);
5360 clear_tv(rettv);
5361 *rettv = var1;
5362 }
5363 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005364 }
5365 }
5366
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005367 return OK;
5368}
5369
5370/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371 * Get an option value.
5372 * "arg" points to the '&' or '+' before the option name.
5373 * "arg" is advanced to character after the option name.
5374 * Return OK or FAIL.
5375 */
5376 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005377get_option_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005379 typval_T *rettv; /* when NULL, only check if option exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005380 int evaluate;
5381{
5382 char_u *option_end;
5383 long numval;
5384 char_u *stringval;
5385 int opt_type;
5386 int c;
5387 int working = (**arg == '+'); /* has("+option") */
5388 int ret = OK;
5389 int opt_flags;
5390
5391 /*
5392 * Isolate the option name and find its value.
5393 */
5394 option_end = find_option_end(arg, &opt_flags);
5395 if (option_end == NULL)
5396 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005397 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398 EMSG2(_("E112: Option name missing: %s"), *arg);
5399 return FAIL;
5400 }
5401
5402 if (!evaluate)
5403 {
5404 *arg = option_end;
5405 return OK;
5406 }
5407
5408 c = *option_end;
5409 *option_end = NUL;
5410 opt_type = get_option_value(*arg, &numval,
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005411 rettv == NULL ? NULL : &stringval, opt_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412
5413 if (opt_type == -3) /* invalid name */
5414 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005415 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416 EMSG2(_("E113: Unknown option: %s"), *arg);
5417 ret = FAIL;
5418 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005419 else if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 {
5421 if (opt_type == -2) /* hidden string option */
5422 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005423 rettv->v_type = VAR_STRING;
5424 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425 }
5426 else if (opt_type == -1) /* hidden number option */
5427 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005428 rettv->v_type = VAR_NUMBER;
5429 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430 }
5431 else if (opt_type == 1) /* number option */
5432 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005433 rettv->v_type = VAR_NUMBER;
5434 rettv->vval.v_number = numval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005435 }
5436 else /* string option */
5437 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005438 rettv->v_type = VAR_STRING;
5439 rettv->vval.v_string = stringval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440 }
5441 }
5442 else if (working && (opt_type == -2 || opt_type == -1))
5443 ret = FAIL;
5444
5445 *option_end = c; /* put back for error messages */
5446 *arg = option_end;
5447
5448 return ret;
5449}
5450
5451/*
5452 * Allocate a variable for a string constant.
5453 * Return OK or FAIL.
5454 */
5455 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005456get_string_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005457 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005458 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005459 int evaluate;
5460{
5461 char_u *p;
5462 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005463 int extra = 0;
5464
5465 /*
5466 * Find the end of the string, skipping backslashed characters.
5467 */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005468 for (p = *arg + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469 {
5470 if (*p == '\\' && p[1] != NUL)
5471 {
5472 ++p;
5473 /* A "\<x>" form occupies at least 4 characters, and produces up
5474 * to 6 characters: reserve space for 2 extra */
5475 if (*p == '<')
5476 extra += 2;
5477 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005478 }
5479
5480 if (*p != '"')
5481 {
5482 EMSG2(_("E114: Missing quote: %s"), *arg);
5483 return FAIL;
5484 }
5485
5486 /* If only parsing, set *arg and return here */
5487 if (!evaluate)
5488 {
5489 *arg = p + 1;
5490 return OK;
5491 }
5492
5493 /*
5494 * Copy the string into allocated memory, handling backslashed
5495 * characters.
5496 */
5497 name = alloc((unsigned)(p - *arg + extra));
5498 if (name == NULL)
5499 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005500 rettv->v_type = VAR_STRING;
5501 rettv->vval.v_string = name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502
Bram Moolenaar8c711452005-01-14 21:53:12 +00005503 for (p = *arg + 1; *p != NUL && *p != '"'; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005504 {
5505 if (*p == '\\')
5506 {
5507 switch (*++p)
5508 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005509 case 'b': *name++ = BS; ++p; break;
5510 case 'e': *name++ = ESC; ++p; break;
5511 case 'f': *name++ = FF; ++p; break;
5512 case 'n': *name++ = NL; ++p; break;
5513 case 'r': *name++ = CAR; ++p; break;
5514 case 't': *name++ = TAB; ++p; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515
5516 case 'X': /* hex: "\x1", "\x12" */
5517 case 'x':
5518 case 'u': /* Unicode: "\u0023" */
5519 case 'U':
5520 if (vim_isxdigit(p[1]))
5521 {
5522 int n, nr;
5523 int c = toupper(*p);
5524
5525 if (c == 'X')
5526 n = 2;
5527 else
5528 n = 4;
5529 nr = 0;
5530 while (--n >= 0 && vim_isxdigit(p[1]))
5531 {
5532 ++p;
5533 nr = (nr << 4) + hex2nr(*p);
5534 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005535 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536#ifdef FEAT_MBYTE
5537 /* For "\u" store the number according to
5538 * 'encoding'. */
5539 if (c != 'X')
Bram Moolenaar8c711452005-01-14 21:53:12 +00005540 name += (*mb_char2bytes)(nr, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 else
5542#endif
Bram Moolenaar8c711452005-01-14 21:53:12 +00005543 *name++ = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005544 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545 break;
5546
5547 /* octal: "\1", "\12", "\123" */
5548 case '0':
5549 case '1':
5550 case '2':
5551 case '3':
5552 case '4':
5553 case '5':
5554 case '6':
Bram Moolenaar8c711452005-01-14 21:53:12 +00005555 case '7': *name = *p++ - '0';
5556 if (*p >= '0' && *p <= '7')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005557 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005558 *name = (*name << 3) + *p++ - '0';
5559 if (*p >= '0' && *p <= '7')
5560 *name = (*name << 3) + *p++ - '0';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005562 ++name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 break;
5564
5565 /* Special key, e.g.: "\<C-W>" */
Bram Moolenaar8c711452005-01-14 21:53:12 +00005566 case '<': extra = trans_special(&p, name, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 if (extra != 0)
5568 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005569 name += extra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 break;
5571 }
5572 /* FALLTHROUGH */
5573
Bram Moolenaar8c711452005-01-14 21:53:12 +00005574 default: MB_COPY_CHAR(p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575 break;
5576 }
5577 }
5578 else
Bram Moolenaar8c711452005-01-14 21:53:12 +00005579 MB_COPY_CHAR(p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005582 *name = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 *arg = p + 1;
5584
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585 return OK;
5586}
5587
5588/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005589 * Allocate a variable for a 'str''ing' constant.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 * Return OK or FAIL.
5591 */
5592 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005593get_lit_string_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005595 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596 int evaluate;
5597{
5598 char_u *p;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005599 char_u *str;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005600 int reduce = 0;
5601
5602 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005603 * Find the end of the string, skipping ''.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005604 */
5605 for (p = *arg + 1; *p != NUL; mb_ptr_adv(p))
5606 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005607 if (*p == '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005608 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005609 if (p[1] != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005610 break;
5611 ++reduce;
5612 ++p;
5613 }
5614 }
5615
Bram Moolenaar8c711452005-01-14 21:53:12 +00005616 if (*p != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005617 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005618 EMSG2(_("E115: Missing quote: %s"), *arg);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005619 return FAIL;
5620 }
5621
Bram Moolenaar8c711452005-01-14 21:53:12 +00005622 /* If only parsing return after setting "*arg" */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005623 if (!evaluate)
5624 {
5625 *arg = p + 1;
5626 return OK;
5627 }
5628
5629 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005630 * Copy the string into allocated memory, handling '' to ' reduction.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005631 */
5632 str = alloc((unsigned)((p - *arg) - reduce));
5633 if (str == NULL)
5634 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005635 rettv->v_type = VAR_STRING;
5636 rettv->vval.v_string = str;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005637
Bram Moolenaar8c711452005-01-14 21:53:12 +00005638 for (p = *arg + 1; *p != NUL; )
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005639 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005640 if (*p == '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005641 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005642 if (p[1] != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005643 break;
5644 ++p;
5645 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005646 MB_COPY_CHAR(p, str);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005647 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005648 *str = NUL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005649 *arg = p + 1;
5650
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005651 return OK;
5652}
5653
5654/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005655 * Allocate a variable for a List and fill it from "*arg".
5656 * Return OK or FAIL.
5657 */
5658 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005659get_list_tv(arg, rettv, evaluate)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005660 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005661 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005662 int evaluate;
5663{
Bram Moolenaar33570922005-01-25 22:26:29 +00005664 list_T *l = NULL;
5665 typval_T tv;
5666 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005667
5668 if (evaluate)
5669 {
5670 l = list_alloc();
5671 if (l == NULL)
5672 return FAIL;
5673 }
5674
5675 *arg = skipwhite(*arg + 1);
5676 while (**arg != ']' && **arg != NUL)
5677 {
5678 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
5679 goto failret;
5680 if (evaluate)
5681 {
5682 item = listitem_alloc();
5683 if (item != NULL)
5684 {
5685 item->li_tv = tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00005686 item->li_tv.v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005687 list_append(l, item);
5688 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005689 else
5690 clear_tv(&tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005691 }
5692
5693 if (**arg == ']')
5694 break;
5695 if (**arg != ',')
5696 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005697 EMSG2(_("E696: Missing comma in List: %s"), *arg);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005698 goto failret;
5699 }
5700 *arg = skipwhite(*arg + 1);
5701 }
5702
5703 if (**arg != ']')
5704 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005705 EMSG2(_("E697: Missing end of List ']': %s"), *arg);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005706failret:
5707 if (evaluate)
Bram Moolenaar685295c2006-10-15 20:37:38 +00005708 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005709 return FAIL;
5710 }
5711
5712 *arg = skipwhite(*arg + 1);
5713 if (evaluate)
5714 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005715 rettv->v_type = VAR_LIST;
5716 rettv->vval.v_list = l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005717 ++l->lv_refcount;
5718 }
5719
5720 return OK;
5721}
5722
5723/*
5724 * Allocate an empty header for a list.
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00005725 * Caller should take care of the reference count.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005726 */
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00005727 list_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005728list_alloc()
5729{
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00005730 list_T *l;
5731
5732 l = (list_T *)alloc_clear(sizeof(list_T));
5733 if (l != NULL)
5734 {
5735 /* Prepend the list to the list of lists for garbage collection. */
5736 if (first_list != NULL)
5737 first_list->lv_used_prev = l;
5738 l->lv_used_prev = NULL;
5739 l->lv_used_next = first_list;
5740 first_list = l;
5741 }
5742 return l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005743}
5744
5745/*
Bram Moolenaareddf53b2006-02-27 00:11:10 +00005746 * Allocate an empty list for a return value.
5747 * Returns OK or FAIL.
5748 */
5749 static int
5750rettv_list_alloc(rettv)
5751 typval_T *rettv;
5752{
5753 list_T *l = list_alloc();
5754
5755 if (l == NULL)
5756 return FAIL;
5757
5758 rettv->vval.v_list = l;
5759 rettv->v_type = VAR_LIST;
5760 ++l->lv_refcount;
5761 return OK;
5762}
5763
5764/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005765 * Unreference a list: decrement the reference count and free it when it
5766 * becomes zero.
5767 */
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00005768 void
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005769list_unref(l)
Bram Moolenaar33570922005-01-25 22:26:29 +00005770 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005771{
Bram Moolenaar685295c2006-10-15 20:37:38 +00005772 if (l != NULL && --l->lv_refcount <= 0)
5773 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005774}
5775
5776/*
5777 * Free a list, including all items it points to.
5778 * Ignores the reference count.
5779 */
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00005780 void
Bram Moolenaar685295c2006-10-15 20:37:38 +00005781list_free(l, recurse)
5782 list_T *l;
5783 int recurse; /* Free Lists and Dictionaries recursively. */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005784{
Bram Moolenaar33570922005-01-25 22:26:29 +00005785 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005786
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00005787 /* Remove the list from the list of lists for garbage collection. */
5788 if (l->lv_used_prev == NULL)
5789 first_list = l->lv_used_next;
5790 else
5791 l->lv_used_prev->lv_used_next = l->lv_used_next;
5792 if (l->lv_used_next != NULL)
5793 l->lv_used_next->lv_used_prev = l->lv_used_prev;
5794
Bram Moolenaard9fba312005-06-26 22:34:35 +00005795 for (item = l->lv_first; item != NULL; item = l->lv_first)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005796 {
Bram Moolenaard9fba312005-06-26 22:34:35 +00005797 /* Remove the item before deleting it. */
5798 l->lv_first = item->li_next;
Bram Moolenaar685295c2006-10-15 20:37:38 +00005799 if (recurse || (item->li_tv.v_type != VAR_LIST
5800 && item->li_tv.v_type != VAR_DICT))
5801 clear_tv(&item->li_tv);
5802 vim_free(item);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005803 }
5804 vim_free(l);
5805}
5806
5807/*
5808 * Allocate a list item.
5809 */
Bram Moolenaar33570922005-01-25 22:26:29 +00005810 static listitem_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005811listitem_alloc()
5812{
Bram Moolenaar33570922005-01-25 22:26:29 +00005813 return (listitem_T *)alloc(sizeof(listitem_T));
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005814}
5815
5816/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00005817 * Free a list item. Also clears the value. Does not notify watchers.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005818 */
5819 static void
5820listitem_free(item)
Bram Moolenaar33570922005-01-25 22:26:29 +00005821 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005822{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005823 clear_tv(&item->li_tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005824 vim_free(item);
5825}
5826
5827/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00005828 * Remove a list item from a List and free it. Also clears the value.
5829 */
5830 static void
5831listitem_remove(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00005832 list_T *l;
5833 listitem_T *item;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00005834{
5835 list_remove(l, item, item);
5836 listitem_free(item);
5837}
5838
5839/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005840 * Get the number of items in a list.
5841 */
5842 static long
5843list_len(l)
Bram Moolenaar33570922005-01-25 22:26:29 +00005844 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005845{
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005846 if (l == NULL)
5847 return 0L;
Bram Moolenaar758711c2005-02-02 23:11:38 +00005848 return l->lv_len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005849}
5850
5851/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005852 * Return TRUE when two lists have exactly the same values.
5853 */
5854 static int
5855list_equal(l1, l2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005856 list_T *l1;
5857 list_T *l2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005858 int ic; /* ignore case for strings */
5859{
Bram Moolenaar33570922005-01-25 22:26:29 +00005860 listitem_T *item1, *item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005861
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00005862 if (l1 == NULL || l2 == NULL)
5863 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005864 if (l1 == l2)
5865 return TRUE;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005866 if (list_len(l1) != list_len(l2))
5867 return FALSE;
5868
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005869 for (item1 = l1->lv_first, item2 = l2->lv_first;
5870 item1 != NULL && item2 != NULL;
5871 item1 = item1->li_next, item2 = item2->li_next)
5872 if (!tv_equal(&item1->li_tv, &item2->li_tv, ic))
5873 return FALSE;
5874 return item1 == NULL && item2 == NULL;
5875}
5876
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00005877#if defined(FEAT_PYTHON) || defined(FEAT_MZSCHEME) || defined(PROTO)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005878/*
5879 * Return the dictitem that an entry in a hashtable points to.
5880 */
5881 dictitem_T *
5882dict_lookup(hi)
5883 hashitem_T *hi;
5884{
5885 return HI2DI(hi);
5886}
5887#endif
5888
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005889/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005890 * Return TRUE when two dictionaries have exactly the same key/values.
5891 */
5892 static int
5893dict_equal(d1, d2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005894 dict_T *d1;
5895 dict_T *d2;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005896 int ic; /* ignore case for strings */
5897{
Bram Moolenaar33570922005-01-25 22:26:29 +00005898 hashitem_T *hi;
5899 dictitem_T *item2;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005900 int todo;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005901
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00005902 if (d1 == NULL || d2 == NULL)
5903 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005904 if (d1 == d2)
5905 return TRUE;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005906 if (dict_len(d1) != dict_len(d2))
5907 return FALSE;
5908
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005909 todo = (int)d1->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00005910 for (hi = d1->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005911 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005912 if (!HASHITEM_EMPTY(hi))
5913 {
5914 item2 = dict_find(d2, hi->hi_key, -1);
5915 if (item2 == NULL)
5916 return FALSE;
5917 if (!tv_equal(&HI2DI(hi)->di_tv, &item2->di_tv, ic))
5918 return FALSE;
5919 --todo;
5920 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005921 }
5922 return TRUE;
5923}
5924
5925/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005926 * Return TRUE if "tv1" and "tv2" have the same value.
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005927 * Compares the items just like "==" would compare them, but strings and
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005928 * numbers are different. Floats and numbers are also different.
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005929 */
5930 static int
5931tv_equal(tv1, tv2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005932 typval_T *tv1;
5933 typval_T *tv2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005934 int ic; /* ignore case */
5935{
5936 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005937 char_u *s1, *s2;
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005938 static int recursive = 0; /* cach recursive loops */
5939 int r;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005940
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005941 if (tv1->v_type != tv2->v_type)
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005942 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005943 /* Catch lists and dicts that have an endless loop by limiting
5944 * recursiveness to 1000. We guess they are equal then. */
5945 if (recursive >= 1000)
5946 return TRUE;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005947
5948 switch (tv1->v_type)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005949 {
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005950 case VAR_LIST:
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005951 ++recursive;
5952 r = list_equal(tv1->vval.v_list, tv2->vval.v_list, ic);
5953 --recursive;
5954 return r;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005955
5956 case VAR_DICT:
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005957 ++recursive;
5958 r = dict_equal(tv1->vval.v_dict, tv2->vval.v_dict, ic);
5959 --recursive;
5960 return r;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005961
5962 case VAR_FUNC:
5963 return (tv1->vval.v_string != NULL
5964 && tv2->vval.v_string != NULL
5965 && STRCMP(tv1->vval.v_string, tv2->vval.v_string) == 0);
5966
5967 case VAR_NUMBER:
5968 return tv1->vval.v_number == tv2->vval.v_number;
5969
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005970#ifdef FEAT_FLOAT
5971 case VAR_FLOAT:
5972 return tv1->vval.v_float == tv2->vval.v_float;
5973#endif
5974
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005975 case VAR_STRING:
5976 s1 = get_tv_string_buf(tv1, buf1);
5977 s2 = get_tv_string_buf(tv2, buf2);
5978 return ((ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2)) == 0);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005979 }
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005980
5981 EMSG2(_(e_intern2), "tv_equal()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005982 return TRUE;
5983}
5984
5985/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005986 * Locate item with index "n" in list "l" and return it.
5987 * A negative index is counted from the end; -1 is the last item.
5988 * Returns NULL when "n" is out of range.
5989 */
Bram Moolenaar33570922005-01-25 22:26:29 +00005990 static listitem_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005991list_find(l, n)
Bram Moolenaar33570922005-01-25 22:26:29 +00005992 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005993 long n;
5994{
Bram Moolenaar33570922005-01-25 22:26:29 +00005995 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005996 long idx;
5997
5998 if (l == NULL)
5999 return NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006000
6001 /* Negative index is relative to the end. */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006002 if (n < 0)
Bram Moolenaar758711c2005-02-02 23:11:38 +00006003 n = l->lv_len + n;
6004
6005 /* Check for index out of range. */
6006 if (n < 0 || n >= l->lv_len)
6007 return NULL;
6008
6009 /* When there is a cached index may start search from there. */
6010 if (l->lv_idx_item != NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006011 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006012 if (n < l->lv_idx / 2)
6013 {
6014 /* closest to the start of the list */
6015 item = l->lv_first;
6016 idx = 0;
6017 }
6018 else if (n > (l->lv_idx + l->lv_len) / 2)
6019 {
6020 /* closest to the end of the list */
6021 item = l->lv_last;
6022 idx = l->lv_len - 1;
6023 }
6024 else
6025 {
6026 /* closest to the cached index */
6027 item = l->lv_idx_item;
6028 idx = l->lv_idx;
6029 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006030 }
6031 else
6032 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006033 if (n < l->lv_len / 2)
6034 {
6035 /* closest to the start of the list */
6036 item = l->lv_first;
6037 idx = 0;
6038 }
6039 else
6040 {
6041 /* closest to the end of the list */
6042 item = l->lv_last;
6043 idx = l->lv_len - 1;
6044 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006045 }
Bram Moolenaar758711c2005-02-02 23:11:38 +00006046
6047 while (n > idx)
6048 {
6049 /* search forward */
6050 item = item->li_next;
6051 ++idx;
6052 }
6053 while (n < idx)
6054 {
6055 /* search backward */
6056 item = item->li_prev;
6057 --idx;
6058 }
6059
6060 /* cache the used index */
6061 l->lv_idx = idx;
6062 l->lv_idx_item = item;
6063
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006064 return item;
6065}
6066
6067/*
Bram Moolenaara5525202006-03-02 22:52:09 +00006068 * Get list item "l[idx]" as a number.
6069 */
6070 static long
6071list_find_nr(l, idx, errorp)
6072 list_T *l;
6073 long idx;
6074 int *errorp; /* set to TRUE when something wrong */
6075{
6076 listitem_T *li;
6077
6078 li = list_find(l, idx);
6079 if (li == NULL)
6080 {
6081 if (errorp != NULL)
6082 *errorp = TRUE;
6083 return -1L;
6084 }
6085 return get_tv_number_chk(&li->li_tv, errorp);
6086}
6087
6088/*
Bram Moolenaard812df62008-11-09 12:46:09 +00006089 * Get list item "l[idx - 1]" as a string. Returns NULL for failure.
6090 */
6091 char_u *
6092list_find_str(l, idx)
6093 list_T *l;
6094 long idx;
6095{
6096 listitem_T *li;
6097
6098 li = list_find(l, idx - 1);
6099 if (li == NULL)
6100 {
6101 EMSGN(_(e_listidx), idx);
6102 return NULL;
6103 }
6104 return get_tv_string(&li->li_tv);
6105}
6106
6107/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006108 * Locate "item" list "l" and return its index.
6109 * Returns -1 when "item" is not in the list.
6110 */
6111 static long
6112list_idx_of_item(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006113 list_T *l;
6114 listitem_T *item;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006115{
6116 long idx = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +00006117 listitem_T *li;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006118
6119 if (l == NULL)
6120 return -1;
6121 idx = 0;
6122 for (li = l->lv_first; li != NULL && li != item; li = li->li_next)
6123 ++idx;
6124 if (li == NULL)
6125 return -1;
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006126 return idx;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006127}
6128
6129/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006130 * Append item "item" to the end of list "l".
6131 */
6132 static void
6133list_append(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006134 list_T *l;
6135 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006136{
6137 if (l->lv_last == NULL)
6138 {
6139 /* empty list */
6140 l->lv_first = item;
6141 l->lv_last = item;
6142 item->li_prev = NULL;
6143 }
6144 else
6145 {
6146 l->lv_last->li_next = item;
6147 item->li_prev = l->lv_last;
6148 l->lv_last = item;
6149 }
Bram Moolenaar758711c2005-02-02 23:11:38 +00006150 ++l->lv_len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006151 item->li_next = NULL;
6152}
6153
6154/*
Bram Moolenaar33570922005-01-25 22:26:29 +00006155 * Append typval_T "tv" to the end of list "l".
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006156 * Return FAIL when out of memory.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006157 */
6158 static int
6159list_append_tv(l, tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00006160 list_T *l;
6161 typval_T *tv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006162{
Bram Moolenaar05159a02005-02-26 23:04:13 +00006163 listitem_T *li = listitem_alloc();
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006164
Bram Moolenaar05159a02005-02-26 23:04:13 +00006165 if (li == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006166 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00006167 copy_tv(tv, &li->li_tv);
6168 list_append(l, li);
6169 return OK;
6170}
6171
6172/*
Bram Moolenaar2641f772005-03-25 21:58:17 +00006173 * Add a dictionary to a list. Used by getqflist().
Bram Moolenaar05159a02005-02-26 23:04:13 +00006174 * Return FAIL when out of memory.
6175 */
6176 int
6177list_append_dict(list, dict)
6178 list_T *list;
6179 dict_T *dict;
6180{
6181 listitem_T *li = listitem_alloc();
6182
6183 if (li == NULL)
6184 return FAIL;
6185 li->li_tv.v_type = VAR_DICT;
6186 li->li_tv.v_lock = 0;
6187 li->li_tv.vval.v_dict = dict;
6188 list_append(list, li);
6189 ++dict->dv_refcount;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006190 return OK;
6191}
6192
6193/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006194 * Make a copy of "str" and append it as an item to list "l".
Bram Moolenaar4463f292005-09-25 22:20:24 +00006195 * When "len" >= 0 use "str[len]".
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006196 * Returns FAIL when out of memory.
6197 */
Bram Moolenaard812df62008-11-09 12:46:09 +00006198 int
Bram Moolenaar4463f292005-09-25 22:20:24 +00006199list_append_string(l, str, len)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006200 list_T *l;
6201 char_u *str;
Bram Moolenaar4463f292005-09-25 22:20:24 +00006202 int len;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006203{
6204 listitem_T *li = listitem_alloc();
6205
6206 if (li == NULL)
6207 return FAIL;
6208 list_append(l, li);
6209 li->li_tv.v_type = VAR_STRING;
6210 li->li_tv.v_lock = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006211 if (str == NULL)
6212 li->li_tv.vval.v_string = NULL;
6213 else if ((li->li_tv.vval.v_string = (len >= 0 ? vim_strnsave(str, len)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006214 : vim_strsave(str))) == NULL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006215 return FAIL;
6216 return OK;
6217}
6218
6219/*
Bram Moolenaar4463f292005-09-25 22:20:24 +00006220 * Append "n" to list "l".
6221 * Returns FAIL when out of memory.
6222 */
6223 static int
6224list_append_number(l, n)
6225 list_T *l;
6226 varnumber_T n;
6227{
6228 listitem_T *li;
6229
6230 li = listitem_alloc();
6231 if (li == NULL)
6232 return FAIL;
6233 li->li_tv.v_type = VAR_NUMBER;
6234 li->li_tv.v_lock = 0;
6235 li->li_tv.vval.v_number = n;
6236 list_append(l, li);
6237 return OK;
6238}
6239
6240/*
Bram Moolenaar33570922005-01-25 22:26:29 +00006241 * Insert typval_T "tv" in list "l" before "item".
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006242 * If "item" is NULL append at the end.
6243 * Return FAIL when out of memory.
6244 */
6245 static int
6246list_insert_tv(l, tv, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006247 list_T *l;
6248 typval_T *tv;
6249 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006250{
Bram Moolenaar33570922005-01-25 22:26:29 +00006251 listitem_T *ni = listitem_alloc();
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006252
6253 if (ni == NULL)
6254 return FAIL;
6255 copy_tv(tv, &ni->li_tv);
6256 if (item == NULL)
6257 /* Append new item at end of list. */
6258 list_append(l, ni);
6259 else
6260 {
6261 /* Insert new item before existing item. */
6262 ni->li_prev = item->li_prev;
6263 ni->li_next = item;
6264 if (item->li_prev == NULL)
Bram Moolenaar758711c2005-02-02 23:11:38 +00006265 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006266 l->lv_first = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006267 ++l->lv_idx;
6268 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006269 else
Bram Moolenaar758711c2005-02-02 23:11:38 +00006270 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006271 item->li_prev->li_next = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006272 l->lv_idx_item = NULL;
6273 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006274 item->li_prev = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006275 ++l->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006276 }
6277 return OK;
6278}
6279
6280/*
6281 * Extend "l1" with "l2".
6282 * If "bef" is NULL append at the end, otherwise insert before this item.
6283 * Returns FAIL when out of memory.
6284 */
6285 static int
6286list_extend(l1, l2, bef)
Bram Moolenaar33570922005-01-25 22:26:29 +00006287 list_T *l1;
6288 list_T *l2;
6289 listitem_T *bef;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006290{
Bram Moolenaar33570922005-01-25 22:26:29 +00006291 listitem_T *item;
Bram Moolenaardc9cf9c2008-08-08 10:36:31 +00006292 int todo = l2->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006293
Bram Moolenaardc9cf9c2008-08-08 10:36:31 +00006294 /* We also quit the loop when we have inserted the original item count of
6295 * the list, avoid a hang when we extend a list with itself. */
6296 for (item = l2->lv_first; item != NULL && --todo >= 0; item = item->li_next)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006297 if (list_insert_tv(l1, &item->li_tv, bef) == FAIL)
6298 return FAIL;
6299 return OK;
6300}
6301
6302/*
6303 * Concatenate lists "l1" and "l2" into a new list, stored in "tv".
6304 * Return FAIL when out of memory.
6305 */
6306 static int
6307list_concat(l1, l2, tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00006308 list_T *l1;
6309 list_T *l2;
6310 typval_T *tv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006311{
Bram Moolenaar33570922005-01-25 22:26:29 +00006312 list_T *l;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006313
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00006314 if (l1 == NULL || l2 == NULL)
6315 return FAIL;
6316
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006317 /* make a copy of the first list. */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006318 l = list_copy(l1, FALSE, 0);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006319 if (l == NULL)
6320 return FAIL;
6321 tv->v_type = VAR_LIST;
6322 tv->vval.v_list = l;
6323
6324 /* append all items from the second list */
6325 return list_extend(l, l2, NULL);
6326}
6327
6328/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006329 * Make a copy of list "orig". Shallow if "deep" is FALSE.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006330 * The refcount of the new list is set to 1.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006331 * See item_copy() for "copyID".
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006332 * Returns NULL when out of memory.
6333 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006334 static list_T *
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006335list_copy(orig, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006336 list_T *orig;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006337 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006338 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006339{
Bram Moolenaar33570922005-01-25 22:26:29 +00006340 list_T *copy;
6341 listitem_T *item;
6342 listitem_T *ni;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006343
6344 if (orig == NULL)
6345 return NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006346
6347 copy = list_alloc();
6348 if (copy != NULL)
6349 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006350 if (copyID != 0)
6351 {
6352 /* Do this before adding the items, because one of the items may
6353 * refer back to this list. */
6354 orig->lv_copyID = copyID;
6355 orig->lv_copylist = copy;
6356 }
6357 for (item = orig->lv_first; item != NULL && !got_int;
6358 item = item->li_next)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006359 {
6360 ni = listitem_alloc();
6361 if (ni == NULL)
6362 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006363 if (deep)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006364 {
6365 if (item_copy(&item->li_tv, &ni->li_tv, deep, copyID) == FAIL)
6366 {
6367 vim_free(ni);
6368 break;
6369 }
6370 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006371 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00006372 copy_tv(&item->li_tv, &ni->li_tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006373 list_append(copy, ni);
6374 }
6375 ++copy->lv_refcount;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006376 if (item != NULL)
6377 {
6378 list_unref(copy);
6379 copy = NULL;
6380 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006381 }
6382
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006383 return copy;
6384}
6385
6386/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006387 * Remove items "item" to "item2" from list "l".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006388 * Does not free the listitem or the value!
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006389 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006390 static void
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006391list_remove(l, item, item2)
Bram Moolenaar33570922005-01-25 22:26:29 +00006392 list_T *l;
6393 listitem_T *item;
6394 listitem_T *item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006395{
Bram Moolenaar33570922005-01-25 22:26:29 +00006396 listitem_T *ip;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006397
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006398 /* notify watchers */
6399 for (ip = item; ip != NULL; ip = ip->li_next)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006400 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006401 --l->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006402 list_fix_watch(l, ip);
6403 if (ip == item2)
6404 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006405 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006406
6407 if (item2->li_next == NULL)
6408 l->lv_last = item->li_prev;
6409 else
6410 item2->li_next->li_prev = item->li_prev;
6411 if (item->li_prev == NULL)
6412 l->lv_first = item2->li_next;
6413 else
6414 item->li_prev->li_next = item2->li_next;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006415 l->lv_idx_item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006416}
6417
6418/*
6419 * Return an allocated string with the string representation of a list.
6420 * May return NULL.
6421 */
6422 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006423list2string(tv, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006424 typval_T *tv;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006425 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006426{
6427 garray_T ga;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006428
6429 if (tv->vval.v_list == NULL)
6430 return NULL;
6431 ga_init2(&ga, (int)sizeof(char), 80);
6432 ga_append(&ga, '[');
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006433 if (list_join(&ga, tv->vval.v_list, (char_u *)", ", FALSE, copyID) == FAIL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006434 {
6435 vim_free(ga.ga_data);
6436 return NULL;
6437 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006438 ga_append(&ga, ']');
6439 ga_append(&ga, NUL);
6440 return (char_u *)ga.ga_data;
6441}
6442
6443/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006444 * Join list "l" into a string in "*gap", using separator "sep".
6445 * When "echo" is TRUE use String as echoed, otherwise as inside a List.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006446 * Return FAIL or OK.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006447 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006448 static int
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006449list_join(gap, l, sep, echo, copyID)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006450 garray_T *gap;
Bram Moolenaar33570922005-01-25 22:26:29 +00006451 list_T *l;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006452 char_u *sep;
6453 int echo;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006454 int copyID;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006455{
6456 int first = TRUE;
6457 char_u *tofree;
6458 char_u numbuf[NUMBUFLEN];
Bram Moolenaar33570922005-01-25 22:26:29 +00006459 listitem_T *item;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006460 char_u *s;
6461
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006462 for (item = l->lv_first; item != NULL && !got_int; item = item->li_next)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006463 {
6464 if (first)
6465 first = FALSE;
6466 else
6467 ga_concat(gap, sep);
6468
6469 if (echo)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006470 s = echo_string(&item->li_tv, &tofree, numbuf, copyID);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006471 else
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006472 s = tv2string(&item->li_tv, &tofree, numbuf, copyID);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006473 if (s != NULL)
6474 ga_concat(gap, s);
6475 vim_free(tofree);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006476 if (s == NULL)
6477 return FAIL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006478 }
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006479 return OK;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006480}
6481
6482/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006483 * Garbage collection for lists and dictionaries.
6484 *
6485 * We use reference counts to be able to free most items right away when they
6486 * are no longer used. But for composite items it's possible that it becomes
6487 * unused while the reference count is > 0: When there is a recursive
6488 * reference. Example:
6489 * :let l = [1, 2, 3]
6490 * :let d = {9: l}
6491 * :let l[1] = d
6492 *
6493 * Since this is quite unusual we handle this with garbage collection: every
6494 * once in a while find out which lists and dicts are not referenced from any
6495 * variable.
6496 *
6497 * Here is a good reference text about garbage collection (refers to Python
6498 * but it applies to all reference-counting mechanisms):
6499 * http://python.ca/nas/python/gc/
Bram Moolenaard9fba312005-06-26 22:34:35 +00006500 */
Bram Moolenaard9fba312005-06-26 22:34:35 +00006501
6502/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006503 * Do garbage collection for lists and dicts.
6504 * Return TRUE if some memory was freed.
Bram Moolenaard9fba312005-06-26 22:34:35 +00006505 */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006506 int
6507garbage_collect()
Bram Moolenaard9fba312005-06-26 22:34:35 +00006508{
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006509 int copyID;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006510 buf_T *buf;
6511 win_T *wp;
6512 int i;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +00006513 funccall_T *fc, **pfc;
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006514 int did_free;
6515 int did_free_funccal = FALSE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006516#ifdef FEAT_WINDOWS
6517 tabpage_T *tp;
6518#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006519
Bram Moolenaar9fecb462006-09-05 10:59:47 +00006520 /* Only do this once. */
6521 want_garbage_collect = FALSE;
6522 may_garbage_collect = FALSE;
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00006523 garbage_collect_at_exit = FALSE;
Bram Moolenaar9fecb462006-09-05 10:59:47 +00006524
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006525 /* We advance by two because we add one for items referenced through
6526 * previous_funccal. */
6527 current_copyID += COPYID_INC;
6528 copyID = current_copyID;
6529
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006530 /*
6531 * 1. Go through all accessible variables and mark all lists and dicts
6532 * with copyID.
6533 */
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006534
6535 /* Don't free variables in the previous_funccal list unless they are only
6536 * referenced through previous_funccal. This must be first, because if
Bram Moolenaar2c2398c2009-06-03 11:22:45 +00006537 * the item is referenced elsewhere the funccal must not be freed. */
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006538 for (fc = previous_funccal; fc != NULL; fc = fc->caller)
6539 {
6540 set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID + 1);
6541 set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID + 1);
6542 }
6543
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006544 /* script-local variables */
6545 for (i = 1; i <= ga_scripts.ga_len; ++i)
6546 set_ref_in_ht(&SCRIPT_VARS(i), copyID);
6547
6548 /* buffer-local variables */
6549 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
6550 set_ref_in_ht(&buf->b_vars.dv_hashtab, copyID);
6551
6552 /* window-local variables */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006553 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006554 set_ref_in_ht(&wp->w_vars.dv_hashtab, copyID);
6555
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006556#ifdef FEAT_WINDOWS
6557 /* tabpage-local variables */
6558 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6559 set_ref_in_ht(&tp->tp_vars.dv_hashtab, copyID);
6560#endif
6561
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006562 /* global variables */
6563 set_ref_in_ht(&globvarht, copyID);
6564
6565 /* function-local variables */
6566 for (fc = current_funccal; fc != NULL; fc = fc->caller)
6567 {
6568 set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID);
6569 set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID);
6570 }
6571
Bram Moolenaard812df62008-11-09 12:46:09 +00006572 /* v: vars */
6573 set_ref_in_ht(&vimvarht, copyID);
6574
Bram Moolenaar2c2398c2009-06-03 11:22:45 +00006575 /*
6576 * 2. Free lists and dictionaries that are not referenced.
6577 */
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006578 did_free = free_unref_items(copyID);
6579
Bram Moolenaar2c2398c2009-06-03 11:22:45 +00006580 /*
6581 * 3. Check if any funccal can be freed now.
6582 */
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006583 for (pfc = &previous_funccal; *pfc != NULL; )
6584 {
6585 if (can_free_funccal(*pfc, copyID))
6586 {
6587 fc = *pfc;
6588 *pfc = fc->caller;
6589 free_funccal(fc, TRUE);
6590 did_free = TRUE;
6591 did_free_funccal = TRUE;
6592 }
6593 else
6594 pfc = &(*pfc)->caller;
6595 }
6596 if (did_free_funccal)
6597 /* When a funccal was freed some more items might be garbage
6598 * collected, so run again. */
6599 (void)garbage_collect();
6600
6601 return did_free;
6602}
6603
6604/*
6605 * Free lists and dictionaries that are no longer referenced.
6606 */
6607 static int
6608free_unref_items(copyID)
6609 int copyID;
6610{
6611 dict_T *dd;
6612 list_T *ll;
6613 int did_free = FALSE;
6614
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006615 /*
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006616 * Go through the list of dicts and free items without the copyID.
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006617 */
6618 for (dd = first_dict; dd != NULL; )
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006619 if ((dd->dv_copyID & COPYID_MASK) != (copyID & COPYID_MASK))
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006620 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006621 /* Free the Dictionary and ordinary items it contains, but don't
6622 * recurse into Lists and Dictionaries, they will be in the list
6623 * of dicts or list of lists. */
6624 dict_free(dd, FALSE);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006625 did_free = TRUE;
6626
6627 /* restart, next dict may also have been freed */
6628 dd = first_dict;
6629 }
6630 else
6631 dd = dd->dv_used_next;
6632
6633 /*
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006634 * Go through the list of lists and free items without the copyID.
6635 * But don't free a list that has a watcher (used in a for loop), these
6636 * are not referenced anywhere.
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006637 */
6638 for (ll = first_list; ll != NULL; )
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006639 if ((ll->lv_copyID & COPYID_MASK) != (copyID & COPYID_MASK)
6640 && ll->lv_watch == NULL)
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006641 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006642 /* Free the List and ordinary items it contains, but don't recurse
6643 * into Lists and Dictionaries, they will be in the list of dicts
6644 * or list of lists. */
6645 list_free(ll, FALSE);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006646 did_free = TRUE;
6647
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00006648 /* restart, next list may also have been freed */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006649 ll = first_list;
6650 }
6651 else
6652 ll = ll->lv_used_next;
6653
6654 return did_free;
6655}
6656
6657/*
6658 * Mark all lists and dicts referenced through hashtab "ht" with "copyID".
6659 */
6660 static void
6661set_ref_in_ht(ht, copyID)
6662 hashtab_T *ht;
6663 int copyID;
6664{
6665 int todo;
6666 hashitem_T *hi;
6667
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006668 todo = (int)ht->ht_used;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006669 for (hi = ht->ht_array; todo > 0; ++hi)
6670 if (!HASHITEM_EMPTY(hi))
6671 {
6672 --todo;
6673 set_ref_in_item(&HI2DI(hi)->di_tv, copyID);
6674 }
6675}
6676
6677/*
6678 * Mark all lists and dicts referenced through list "l" with "copyID".
6679 */
6680 static void
6681set_ref_in_list(l, copyID)
6682 list_T *l;
6683 int copyID;
6684{
6685 listitem_T *li;
6686
6687 for (li = l->lv_first; li != NULL; li = li->li_next)
6688 set_ref_in_item(&li->li_tv, copyID);
6689}
6690
6691/*
6692 * Mark all lists and dicts referenced through typval "tv" with "copyID".
6693 */
6694 static void
6695set_ref_in_item(tv, copyID)
6696 typval_T *tv;
6697 int copyID;
6698{
6699 dict_T *dd;
6700 list_T *ll;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006701
6702 switch (tv->v_type)
6703 {
6704 case VAR_DICT:
6705 dd = tv->vval.v_dict;
Bram Moolenaard812df62008-11-09 12:46:09 +00006706 if (dd != NULL && dd->dv_copyID != copyID)
Bram Moolenaard9fba312005-06-26 22:34:35 +00006707 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006708 /* Didn't see this dict yet. */
6709 dd->dv_copyID = copyID;
6710 set_ref_in_ht(&dd->dv_hashtab, copyID);
Bram Moolenaard9fba312005-06-26 22:34:35 +00006711 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006712 break;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006713
6714 case VAR_LIST:
6715 ll = tv->vval.v_list;
Bram Moolenaard812df62008-11-09 12:46:09 +00006716 if (ll != NULL && ll->lv_copyID != copyID)
Bram Moolenaard9fba312005-06-26 22:34:35 +00006717 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006718 /* Didn't see this list yet. */
6719 ll->lv_copyID = copyID;
6720 set_ref_in_list(ll, copyID);
Bram Moolenaard9fba312005-06-26 22:34:35 +00006721 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006722 break;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006723 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006724 return;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006725}
6726
6727/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006728 * Allocate an empty header for a dictionary.
6729 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00006730 dict_T *
Bram Moolenaar8c711452005-01-14 21:53:12 +00006731dict_alloc()
6732{
Bram Moolenaar33570922005-01-25 22:26:29 +00006733 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006734
Bram Moolenaar33570922005-01-25 22:26:29 +00006735 d = (dict_T *)alloc(sizeof(dict_T));
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006736 if (d != NULL)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006737 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006738 /* Add the list to the list of dicts for garbage collection. */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006739 if (first_dict != NULL)
6740 first_dict->dv_used_prev = d;
6741 d->dv_used_next = first_dict;
6742 d->dv_used_prev = NULL;
Bram Moolenaar685295c2006-10-15 20:37:38 +00006743 first_dict = d;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006744
Bram Moolenaar33570922005-01-25 22:26:29 +00006745 hash_init(&d->dv_hashtab);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006746 d->dv_lock = 0;
6747 d->dv_refcount = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006748 d->dv_copyID = 0;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006749 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006750 return d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006751}
6752
6753/*
6754 * Unreference a Dictionary: decrement the reference count and free it when it
6755 * becomes zero.
6756 */
6757 static void
6758dict_unref(d)
Bram Moolenaar33570922005-01-25 22:26:29 +00006759 dict_T *d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006760{
Bram Moolenaar685295c2006-10-15 20:37:38 +00006761 if (d != NULL && --d->dv_refcount <= 0)
6762 dict_free(d, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006763}
6764
6765/*
6766 * Free a Dictionary, including all items it contains.
6767 * Ignores the reference count.
6768 */
6769 static void
Bram Moolenaar685295c2006-10-15 20:37:38 +00006770dict_free(d, recurse)
6771 dict_T *d;
6772 int recurse; /* Free Lists and Dictionaries recursively. */
Bram Moolenaar8c711452005-01-14 21:53:12 +00006773{
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006774 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00006775 hashitem_T *hi;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006776 dictitem_T *di;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006777
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006778 /* Remove the dict from the list of dicts for garbage collection. */
6779 if (d->dv_used_prev == NULL)
6780 first_dict = d->dv_used_next;
6781 else
6782 d->dv_used_prev->dv_used_next = d->dv_used_next;
6783 if (d->dv_used_next != NULL)
6784 d->dv_used_next->dv_used_prev = d->dv_used_prev;
6785
6786 /* Lock the hashtab, we don't want it to resize while freeing items. */
Bram Moolenaard9fba312005-06-26 22:34:35 +00006787 hash_lock(&d->dv_hashtab);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006788 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00006789 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +00006790 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006791 if (!HASHITEM_EMPTY(hi))
6792 {
Bram Moolenaard9fba312005-06-26 22:34:35 +00006793 /* Remove the item before deleting it, just in case there is
6794 * something recursive causing trouble. */
6795 di = HI2DI(hi);
6796 hash_remove(&d->dv_hashtab, hi);
Bram Moolenaar685295c2006-10-15 20:37:38 +00006797 if (recurse || (di->di_tv.v_type != VAR_LIST
6798 && di->di_tv.v_type != VAR_DICT))
6799 clear_tv(&di->di_tv);
6800 vim_free(di);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006801 --todo;
6802 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00006803 }
Bram Moolenaar33570922005-01-25 22:26:29 +00006804 hash_clear(&d->dv_hashtab);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006805 vim_free(d);
6806}
6807
6808/*
6809 * Allocate a Dictionary item.
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006810 * The "key" is copied to the new item.
6811 * Note that the value of the item "di_tv" still needs to be initialized!
6812 * Returns NULL when out of memory.
Bram Moolenaar8c711452005-01-14 21:53:12 +00006813 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006814 static dictitem_T *
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006815dictitem_alloc(key)
6816 char_u *key;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006817{
Bram Moolenaar33570922005-01-25 22:26:29 +00006818 dictitem_T *di;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006819
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006820 di = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T) + STRLEN(key)));
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006821 if (di != NULL)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006822 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006823 STRCPY(di->di_key, key);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006824 di->di_flags = 0;
6825 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006826 return di;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006827}
6828
6829/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006830 * Make a copy of a Dictionary item.
6831 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006832 static dictitem_T *
Bram Moolenaare9a41262005-01-15 22:18:47 +00006833dictitem_copy(org)
Bram Moolenaar33570922005-01-25 22:26:29 +00006834 dictitem_T *org;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006835{
Bram Moolenaar33570922005-01-25 22:26:29 +00006836 dictitem_T *di;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006837
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006838 di = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
6839 + STRLEN(org->di_key)));
Bram Moolenaare9a41262005-01-15 22:18:47 +00006840 if (di != NULL)
6841 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006842 STRCPY(di->di_key, org->di_key);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006843 di->di_flags = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006844 copy_tv(&org->di_tv, &di->di_tv);
6845 }
6846 return di;
6847}
6848
6849/*
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006850 * Remove item "item" from Dictionary "dict" and free it.
6851 */
6852 static void
6853dictitem_remove(dict, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006854 dict_T *dict;
6855 dictitem_T *item;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006856{
Bram Moolenaar33570922005-01-25 22:26:29 +00006857 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006858
Bram Moolenaar33570922005-01-25 22:26:29 +00006859 hi = hash_find(&dict->dv_hashtab, item->di_key);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006860 if (HASHITEM_EMPTY(hi))
6861 EMSG2(_(e_intern2), "dictitem_remove()");
6862 else
Bram Moolenaar33570922005-01-25 22:26:29 +00006863 hash_remove(&dict->dv_hashtab, hi);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006864 dictitem_free(item);
6865}
6866
6867/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006868 * Free a dict item. Also clears the value.
6869 */
6870 static void
6871dictitem_free(item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006872 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006873{
Bram Moolenaar8c711452005-01-14 21:53:12 +00006874 clear_tv(&item->di_tv);
6875 vim_free(item);
6876}
6877
6878/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006879 * Make a copy of dict "d". Shallow if "deep" is FALSE.
6880 * The refcount of the new dict is set to 1.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006881 * See item_copy() for "copyID".
Bram Moolenaare9a41262005-01-15 22:18:47 +00006882 * Returns NULL when out of memory.
6883 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006884 static dict_T *
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006885dict_copy(orig, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006886 dict_T *orig;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006887 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006888 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006889{
Bram Moolenaar33570922005-01-25 22:26:29 +00006890 dict_T *copy;
6891 dictitem_T *di;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006892 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00006893 hashitem_T *hi;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006894
6895 if (orig == NULL)
6896 return NULL;
6897
6898 copy = dict_alloc();
6899 if (copy != NULL)
6900 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006901 if (copyID != 0)
6902 {
6903 orig->dv_copyID = copyID;
6904 orig->dv_copydict = copy;
6905 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006906 todo = (int)orig->dv_hashtab.ht_used;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006907 for (hi = orig->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +00006908 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006909 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +00006910 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006911 --todo;
6912
6913 di = dictitem_alloc(hi->hi_key);
6914 if (di == NULL)
6915 break;
6916 if (deep)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006917 {
6918 if (item_copy(&HI2DI(hi)->di_tv, &di->di_tv, deep,
6919 copyID) == FAIL)
6920 {
6921 vim_free(di);
6922 break;
6923 }
6924 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006925 else
6926 copy_tv(&HI2DI(hi)->di_tv, &di->di_tv);
6927 if (dict_add(copy, di) == FAIL)
6928 {
6929 dictitem_free(di);
6930 break;
6931 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006932 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006933 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006934
Bram Moolenaare9a41262005-01-15 22:18:47 +00006935 ++copy->dv_refcount;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006936 if (todo > 0)
6937 {
6938 dict_unref(copy);
6939 copy = NULL;
6940 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006941 }
6942
6943 return copy;
6944}
6945
6946/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006947 * Add item "item" to Dictionary "d".
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006948 * Returns FAIL when out of memory and when key already existed.
Bram Moolenaar8c711452005-01-14 21:53:12 +00006949 */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006950 static int
Bram Moolenaar8c711452005-01-14 21:53:12 +00006951dict_add(d, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006952 dict_T *d;
6953 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006954{
Bram Moolenaar33570922005-01-25 22:26:29 +00006955 return hash_add(&d->dv_hashtab, item->di_key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006956}
6957
Bram Moolenaar8c711452005-01-14 21:53:12 +00006958/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00006959 * Add a number or string entry to dictionary "d".
6960 * When "str" is NULL use number "nr", otherwise use "str".
6961 * Returns FAIL when out of memory and when key already exists.
6962 */
6963 int
6964dict_add_nr_str(d, key, nr, str)
6965 dict_T *d;
6966 char *key;
6967 long nr;
6968 char_u *str;
6969{
6970 dictitem_T *item;
6971
6972 item = dictitem_alloc((char_u *)key);
6973 if (item == NULL)
6974 return FAIL;
6975 item->di_tv.v_lock = 0;
6976 if (str == NULL)
6977 {
6978 item->di_tv.v_type = VAR_NUMBER;
6979 item->di_tv.vval.v_number = nr;
6980 }
6981 else
6982 {
6983 item->di_tv.v_type = VAR_STRING;
6984 item->di_tv.vval.v_string = vim_strsave(str);
6985 }
6986 if (dict_add(d, item) == FAIL)
6987 {
6988 dictitem_free(item);
6989 return FAIL;
6990 }
6991 return OK;
6992}
6993
6994/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006995 * Get the number of items in a Dictionary.
6996 */
6997 static long
6998dict_len(d)
Bram Moolenaar33570922005-01-25 22:26:29 +00006999 dict_T *d;
Bram Moolenaare9a41262005-01-15 22:18:47 +00007000{
Bram Moolenaare9a41262005-01-15 22:18:47 +00007001 if (d == NULL)
7002 return 0L;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007003 return (long)d->dv_hashtab.ht_used;
Bram Moolenaare9a41262005-01-15 22:18:47 +00007004}
7005
7006/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00007007 * Find item "key[len]" in Dictionary "d".
7008 * If "len" is negative use strlen(key).
7009 * Returns NULL when not found.
7010 */
Bram Moolenaar33570922005-01-25 22:26:29 +00007011 static dictitem_T *
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007012dict_find(d, key, len)
Bram Moolenaar33570922005-01-25 22:26:29 +00007013 dict_T *d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007014 char_u *key;
7015 int len;
7016{
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007017#define AKEYLEN 200
7018 char_u buf[AKEYLEN];
7019 char_u *akey;
7020 char_u *tofree = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00007021 hashitem_T *hi;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007022
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007023 if (len < 0)
7024 akey = key;
7025 else if (len >= AKEYLEN)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00007026 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007027 tofree = akey = vim_strnsave(key, len);
7028 if (akey == NULL)
7029 return NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00007030 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007031 else
7032 {
7033 /* Avoid a malloc/free by using buf[]. */
Bram Moolenaarce0842a2005-07-18 21:58:11 +00007034 vim_strncpy(buf, key, len);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007035 akey = buf;
7036 }
7037
Bram Moolenaar33570922005-01-25 22:26:29 +00007038 hi = hash_find(&d->dv_hashtab, akey);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007039 vim_free(tofree);
7040 if (HASHITEM_EMPTY(hi))
7041 return NULL;
7042 return HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007043}
7044
7045/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00007046 * Get a string item from a dictionary.
7047 * When "save" is TRUE allocate memory for it.
Bram Moolenaar2641f772005-03-25 21:58:17 +00007048 * Returns NULL if the entry doesn't exist or out of memory.
7049 */
7050 char_u *
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00007051get_dict_string(d, key, save)
Bram Moolenaar2641f772005-03-25 21:58:17 +00007052 dict_T *d;
7053 char_u *key;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00007054 int save;
Bram Moolenaar2641f772005-03-25 21:58:17 +00007055{
7056 dictitem_T *di;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00007057 char_u *s;
Bram Moolenaar2641f772005-03-25 21:58:17 +00007058
7059 di = dict_find(d, key, -1);
7060 if (di == NULL)
7061 return NULL;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00007062 s = get_tv_string(&di->di_tv);
7063 if (save && s != NULL)
7064 s = vim_strsave(s);
7065 return s;
Bram Moolenaar2641f772005-03-25 21:58:17 +00007066}
7067
7068/*
7069 * Get a number item from a dictionary.
7070 * Returns 0 if the entry doesn't exist or out of memory.
7071 */
7072 long
7073get_dict_number(d, key)
7074 dict_T *d;
7075 char_u *key;
7076{
7077 dictitem_T *di;
7078
7079 di = dict_find(d, key, -1);
7080 if (di == NULL)
7081 return 0;
7082 return get_tv_number(&di->di_tv);
7083}
7084
7085/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00007086 * Return an allocated string with the string representation of a Dictionary.
7087 * May return NULL.
7088 */
7089 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007090dict2string(tv, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007091 typval_T *tv;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007092 int copyID;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007093{
7094 garray_T ga;
7095 int first = TRUE;
7096 char_u *tofree;
7097 char_u numbuf[NUMBUFLEN];
Bram Moolenaar33570922005-01-25 22:26:29 +00007098 hashitem_T *hi;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007099 char_u *s;
Bram Moolenaar33570922005-01-25 22:26:29 +00007100 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007101 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007102
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007103 if ((d = tv->vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007104 return NULL;
7105 ga_init2(&ga, (int)sizeof(char), 80);
7106 ga_append(&ga, '{');
7107
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007108 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007109 for (hi = d->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007110 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007111 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +00007112 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007113 --todo;
7114
7115 if (first)
7116 first = FALSE;
7117 else
7118 ga_concat(&ga, (char_u *)", ");
7119
7120 tofree = string_quote(hi->hi_key, FALSE);
7121 if (tofree != NULL)
7122 {
7123 ga_concat(&ga, tofree);
7124 vim_free(tofree);
7125 }
7126 ga_concat(&ga, (char_u *)": ");
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007127 s = tv2string(&HI2DI(hi)->di_tv, &tofree, numbuf, copyID);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007128 if (s != NULL)
7129 ga_concat(&ga, s);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007130 vim_free(tofree);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007131 if (s == NULL)
7132 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007133 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007134 }
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007135 if (todo > 0)
7136 {
7137 vim_free(ga.ga_data);
7138 return NULL;
7139 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007140
7141 ga_append(&ga, '}');
7142 ga_append(&ga, NUL);
7143 return (char_u *)ga.ga_data;
7144}
7145
7146/*
7147 * Allocate a variable for a Dictionary and fill it from "*arg".
7148 * Return OK or FAIL. Returns NOTDONE for {expr}.
7149 */
7150 static int
7151get_dict_tv(arg, rettv, evaluate)
7152 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00007153 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007154 int evaluate;
7155{
Bram Moolenaar33570922005-01-25 22:26:29 +00007156 dict_T *d = NULL;
7157 typval_T tvkey;
7158 typval_T tv;
Bram Moolenaarad6c2272007-09-17 20:21:33 +00007159 char_u *key = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00007160 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007161 char_u *start = skipwhite(*arg + 1);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007162 char_u buf[NUMBUFLEN];
Bram Moolenaar8c711452005-01-14 21:53:12 +00007163
7164 /*
7165 * First check if it's not a curly-braces thing: {expr}.
7166 * Must do this without evaluating, otherwise a function may be called
7167 * twice. Unfortunately this means we need to call eval1() twice for the
7168 * first item.
Bram Moolenaare9a41262005-01-15 22:18:47 +00007169 * But {} is an empty Dictionary.
Bram Moolenaar8c711452005-01-14 21:53:12 +00007170 */
Bram Moolenaare9a41262005-01-15 22:18:47 +00007171 if (*start != '}')
7172 {
7173 if (eval1(&start, &tv, FALSE) == FAIL) /* recursive! */
7174 return FAIL;
7175 if (*start == '}')
7176 return NOTDONE;
7177 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007178
7179 if (evaluate)
7180 {
7181 d = dict_alloc();
7182 if (d == NULL)
7183 return FAIL;
7184 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007185 tvkey.v_type = VAR_UNKNOWN;
7186 tv.v_type = VAR_UNKNOWN;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007187
7188 *arg = skipwhite(*arg + 1);
7189 while (**arg != '}' && **arg != NUL)
7190 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007191 if (eval1(arg, &tvkey, evaluate) == FAIL) /* recursive! */
Bram Moolenaar8c711452005-01-14 21:53:12 +00007192 goto failret;
7193 if (**arg != ':')
7194 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007195 EMSG2(_("E720: Missing colon in Dictionary: %s"), *arg);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007196 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007197 goto failret;
7198 }
Bram Moolenaar037cc642007-09-13 18:40:54 +00007199 if (evaluate)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007200 {
Bram Moolenaar037cc642007-09-13 18:40:54 +00007201 key = get_tv_string_buf_chk(&tvkey, buf);
7202 if (key == NULL || *key == NUL)
7203 {
7204 /* "key" is NULL when get_tv_string_buf_chk() gave an errmsg */
7205 if (key != NULL)
7206 EMSG(_(e_emptykey));
7207 clear_tv(&tvkey);
7208 goto failret;
7209 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007210 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007211
7212 *arg = skipwhite(*arg + 1);
7213 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
7214 {
Bram Moolenaar037cc642007-09-13 18:40:54 +00007215 if (evaluate)
7216 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007217 goto failret;
7218 }
7219 if (evaluate)
7220 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007221 item = dict_find(d, key, -1);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007222 if (item != NULL)
7223 {
Bram Moolenaarb982ca52005-03-28 21:02:15 +00007224 EMSG2(_("E721: Duplicate key in Dictionary: \"%s\""), key);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007225 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007226 clear_tv(&tv);
7227 goto failret;
7228 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007229 item = dictitem_alloc(key);
7230 clear_tv(&tvkey);
7231 if (item != NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007232 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00007233 item->di_tv = tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00007234 item->di_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007235 if (dict_add(d, item) == FAIL)
7236 dictitem_free(item);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007237 }
7238 }
7239
7240 if (**arg == '}')
7241 break;
7242 if (**arg != ',')
7243 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007244 EMSG2(_("E722: Missing comma in Dictionary: %s"), *arg);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007245 goto failret;
7246 }
7247 *arg = skipwhite(*arg + 1);
7248 }
7249
7250 if (**arg != '}')
7251 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007252 EMSG2(_("E723: Missing end of Dictionary '}': %s"), *arg);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007253failret:
7254 if (evaluate)
Bram Moolenaar685295c2006-10-15 20:37:38 +00007255 dict_free(d, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007256 return FAIL;
7257 }
7258
7259 *arg = skipwhite(*arg + 1);
7260 if (evaluate)
7261 {
7262 rettv->v_type = VAR_DICT;
7263 rettv->vval.v_dict = d;
7264 ++d->dv_refcount;
7265 }
7266
7267 return OK;
7268}
7269
Bram Moolenaar8c711452005-01-14 21:53:12 +00007270/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007271 * Return a string with the string representation of a variable.
7272 * If the memory is allocated "tofree" is set to it, otherwise NULL.
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007273 * "numbuf" is used for a number.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007274 * Does not put quotes around strings, as ":echo" displays values.
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007275 * When "copyID" is not NULL replace recursive lists and dicts with "...".
Bram Moolenaar92c5aba2007-08-14 20:29:31 +00007276 * May return NULL.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007277 */
7278 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007279echo_string(tv, tofree, numbuf, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007280 typval_T *tv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007281 char_u **tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007282 char_u *numbuf;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007283 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007284{
Bram Moolenaare9a41262005-01-15 22:18:47 +00007285 static int recurse = 0;
7286 char_u *r = NULL;
7287
Bram Moolenaar33570922005-01-25 22:26:29 +00007288 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +00007289 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007290 EMSG(_("E724: variable nested too deep for displaying"));
Bram Moolenaare9a41262005-01-15 22:18:47 +00007291 *tofree = NULL;
7292 return NULL;
7293 }
7294 ++recurse;
7295
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007296 switch (tv->v_type)
7297 {
7298 case VAR_FUNC:
7299 *tofree = NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00007300 r = tv->vval.v_string;
7301 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007302
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007303 case VAR_LIST:
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007304 if (tv->vval.v_list == NULL)
7305 {
7306 *tofree = NULL;
7307 r = NULL;
7308 }
7309 else if (copyID != 0 && tv->vval.v_list->lv_copyID == copyID)
7310 {
7311 *tofree = NULL;
7312 r = (char_u *)"[...]";
7313 }
7314 else
7315 {
7316 tv->vval.v_list->lv_copyID = copyID;
7317 *tofree = list2string(tv, copyID);
7318 r = *tofree;
7319 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007320 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007321
Bram Moolenaar8c711452005-01-14 21:53:12 +00007322 case VAR_DICT:
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007323 if (tv->vval.v_dict == NULL)
7324 {
7325 *tofree = NULL;
7326 r = NULL;
7327 }
7328 else if (copyID != 0 && tv->vval.v_dict->dv_copyID == copyID)
7329 {
7330 *tofree = NULL;
7331 r = (char_u *)"{...}";
7332 }
7333 else
7334 {
7335 tv->vval.v_dict->dv_copyID = copyID;
7336 *tofree = dict2string(tv, copyID);
7337 r = *tofree;
7338 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007339 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007340
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007341 case VAR_STRING:
7342 case VAR_NUMBER:
Bram Moolenaare9a41262005-01-15 22:18:47 +00007343 *tofree = NULL;
7344 r = get_tv_string_buf(tv, numbuf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007345 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007346
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007347#ifdef FEAT_FLOAT
7348 case VAR_FLOAT:
7349 *tofree = NULL;
7350 vim_snprintf((char *)numbuf, NUMBUFLEN, "%g", tv->vval.v_float);
7351 r = numbuf;
7352 break;
7353#endif
7354
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007355 default:
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007356 EMSG2(_(e_intern2), "echo_string()");
Bram Moolenaare9a41262005-01-15 22:18:47 +00007357 *tofree = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007358 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007359
7360 --recurse;
7361 return r;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007362}
7363
7364/*
7365 * Return a string with the string representation of a variable.
7366 * If the memory is allocated "tofree" is set to it, otherwise NULL.
7367 * "numbuf" is used for a number.
7368 * Puts quotes around strings, so that they can be parsed back by eval().
Bram Moolenaar92c5aba2007-08-14 20:29:31 +00007369 * May return NULL.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007370 */
7371 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007372tv2string(tv, tofree, numbuf, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007373 typval_T *tv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007374 char_u **tofree;
7375 char_u *numbuf;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007376 int copyID;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007377{
7378 switch (tv->v_type)
7379 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007380 case VAR_FUNC:
7381 *tofree = string_quote(tv->vval.v_string, TRUE);
7382 return *tofree;
7383 case VAR_STRING:
7384 *tofree = string_quote(tv->vval.v_string, FALSE);
7385 return *tofree;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007386#ifdef FEAT_FLOAT
7387 case VAR_FLOAT:
7388 *tofree = NULL;
7389 vim_snprintf((char *)numbuf, NUMBUFLEN - 1, "%g", tv->vval.v_float);
7390 return numbuf;
7391#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +00007392 case VAR_NUMBER:
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007393 case VAR_LIST:
Bram Moolenaar8c711452005-01-14 21:53:12 +00007394 case VAR_DICT:
Bram Moolenaare9a41262005-01-15 22:18:47 +00007395 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007396 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007397 EMSG2(_(e_intern2), "tv2string()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007398 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007399 return echo_string(tv, tofree, numbuf, copyID);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007400}
7401
7402/*
Bram Moolenaar33570922005-01-25 22:26:29 +00007403 * Return string "str" in ' quotes, doubling ' characters.
7404 * If "str" is NULL an empty string is assumed.
Bram Moolenaar8c711452005-01-14 21:53:12 +00007405 * If "function" is TRUE make it function('string').
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007406 */
7407 static char_u *
7408string_quote(str, function)
7409 char_u *str;
7410 int function;
7411{
Bram Moolenaar33570922005-01-25 22:26:29 +00007412 unsigned len;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007413 char_u *p, *r, *s;
7414
Bram Moolenaar33570922005-01-25 22:26:29 +00007415 len = (function ? 13 : 3);
7416 if (str != NULL)
7417 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007418 len += (unsigned)STRLEN(str);
Bram Moolenaar33570922005-01-25 22:26:29 +00007419 for (p = str; *p != NUL; mb_ptr_adv(p))
7420 if (*p == '\'')
7421 ++len;
7422 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007423 s = r = alloc(len);
7424 if (r != NULL)
7425 {
7426 if (function)
7427 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00007428 STRCPY(r, "function('");
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007429 r += 10;
7430 }
7431 else
Bram Moolenaar8c711452005-01-14 21:53:12 +00007432 *r++ = '\'';
Bram Moolenaar33570922005-01-25 22:26:29 +00007433 if (str != NULL)
7434 for (p = str; *p != NUL; )
7435 {
7436 if (*p == '\'')
7437 *r++ = '\'';
7438 MB_COPY_CHAR(p, r);
7439 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007440 *r++ = '\'';
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007441 if (function)
7442 *r++ = ')';
7443 *r++ = NUL;
7444 }
7445 return s;
7446}
7447
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007448#ifdef FEAT_FLOAT
7449/*
7450 * Convert the string "text" to a floating point number.
7451 * This uses strtod(). setlocale(LC_NUMERIC, "C") has been used to make sure
7452 * this always uses a decimal point.
7453 * Returns the length of the text that was consumed.
7454 */
7455 static int
7456string2float(text, value)
7457 char_u *text;
7458 float_T *value; /* result stored here */
7459{
7460 char *s = (char *)text;
7461 float_T f;
7462
7463 f = strtod(s, &s);
7464 *value = f;
7465 return (int)((char_u *)s - text);
7466}
7467#endif
7468
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007469/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007470 * Get the value of an environment variable.
7471 * "arg" is pointing to the '$'. It is advanced to after the name.
7472 * If the environment variable was not set, silently assume it is empty.
7473 * Always return OK.
7474 */
7475 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007476get_env_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007477 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00007478 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007479 int evaluate;
7480{
7481 char_u *string = NULL;
7482 int len;
7483 int cc;
7484 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +00007485 int mustfree = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007486
7487 ++*arg;
7488 name = *arg;
7489 len = get_env_len(arg);
7490 if (evaluate)
7491 {
7492 if (len != 0)
7493 {
7494 cc = name[len];
7495 name[len] = NUL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00007496 /* first try vim_getenv(), fast for normal environment vars */
7497 string = vim_getenv(name, &mustfree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007498 if (string != NULL && *string != NUL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00007499 {
7500 if (!mustfree)
7501 string = vim_strsave(string);
7502 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007503 else
7504 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00007505 if (mustfree)
7506 vim_free(string);
7507
Bram Moolenaar071d4272004-06-13 20:20:40 +00007508 /* next try expanding things like $VIM and ${HOME} */
7509 string = expand_env_save(name - 1);
7510 if (string != NULL && *string == '$')
7511 {
7512 vim_free(string);
7513 string = NULL;
7514 }
7515 }
7516 name[len] = cc;
7517 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007518 rettv->v_type = VAR_STRING;
7519 rettv->vval.v_string = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007520 }
7521
7522 return OK;
7523}
7524
7525/*
7526 * Array with names and number of arguments of all internal functions
7527 * MUST BE KEPT SORTED IN strcmp() ORDER FOR BINARY SEARCH!
7528 */
7529static struct fst
7530{
7531 char *f_name; /* function name */
7532 char f_min_argc; /* minimal number of arguments */
7533 char f_max_argc; /* maximal number of arguments */
Bram Moolenaar33570922005-01-25 22:26:29 +00007534 void (*f_func) __ARGS((typval_T *args, typval_T *rvar));
Bram Moolenaarbae0c162007-05-10 19:30:25 +00007535 /* implementation of function */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007536} functions[] =
7537{
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007538#ifdef FEAT_FLOAT
7539 {"abs", 1, 1, f_abs},
7540#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +00007541 {"add", 2, 2, f_add},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007542 {"append", 2, 2, f_append},
7543 {"argc", 0, 0, f_argc},
7544 {"argidx", 0, 0, f_argidx},
Bram Moolenaare2f98b92006-03-29 21:18:24 +00007545 {"argv", 0, 1, f_argv},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007546#ifdef FEAT_FLOAT
7547 {"atan", 1, 1, f_atan},
7548#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007549 {"browse", 4, 4, f_browse},
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00007550 {"browsedir", 2, 2, f_browsedir},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007551 {"bufexists", 1, 1, f_bufexists},
7552 {"buffer_exists", 1, 1, f_bufexists}, /* obsolete */
7553 {"buffer_name", 1, 1, f_bufname}, /* obsolete */
7554 {"buffer_number", 1, 1, f_bufnr}, /* obsolete */
7555 {"buflisted", 1, 1, f_buflisted},
7556 {"bufloaded", 1, 1, f_bufloaded},
7557 {"bufname", 1, 1, f_bufname},
Bram Moolenaar0e34f622006-03-03 23:00:03 +00007558 {"bufnr", 1, 2, f_bufnr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007559 {"bufwinnr", 1, 1, f_bufwinnr},
7560 {"byte2line", 1, 1, f_byte2line},
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007561 {"byteidx", 2, 2, f_byteidx},
Bram Moolenaare9a41262005-01-15 22:18:47 +00007562 {"call", 2, 3, f_call},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007563#ifdef FEAT_FLOAT
7564 {"ceil", 1, 1, f_ceil},
7565#endif
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00007566 {"changenr", 0, 0, f_changenr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007567 {"char2nr", 1, 1, f_char2nr},
7568 {"cindent", 1, 1, f_cindent},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007569 {"clearmatches", 0, 0, f_clearmatches},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007570 {"col", 1, 1, f_col},
Bram Moolenaar572cb562005-08-05 21:35:02 +00007571#if defined(FEAT_INS_EXPAND)
Bram Moolenaarade00832006-03-10 21:46:58 +00007572 {"complete", 2, 2, f_complete},
Bram Moolenaar572cb562005-08-05 21:35:02 +00007573 {"complete_add", 1, 1, f_complete_add},
7574 {"complete_check", 0, 0, f_complete_check},
7575#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007576 {"confirm", 1, 4, f_confirm},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007577 {"copy", 1, 1, f_copy},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007578#ifdef FEAT_FLOAT
7579 {"cos", 1, 1, f_cos},
7580#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007581 {"count", 2, 4, f_count},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007582 {"cscope_connection",0,3, f_cscope_connection},
Bram Moolenaara5525202006-03-02 22:52:09 +00007583 {"cursor", 1, 3, f_cursor},
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007584 {"deepcopy", 1, 2, f_deepcopy},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007585 {"delete", 1, 1, f_delete},
7586 {"did_filetype", 0, 0, f_did_filetype},
Bram Moolenaar47136d72004-10-12 20:02:24 +00007587 {"diff_filler", 1, 1, f_diff_filler},
7588 {"diff_hlID", 2, 2, f_diff_hlID},
Bram Moolenaare49b69a2005-01-08 16:11:57 +00007589 {"empty", 1, 1, f_empty},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007590 {"escape", 2, 2, f_escape},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007591 {"eval", 1, 1, f_eval},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007592 {"eventhandler", 0, 0, f_eventhandler},
7593 {"executable", 1, 1, f_executable},
7594 {"exists", 1, 1, f_exists},
7595 {"expand", 1, 2, f_expand},
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007596 {"extend", 2, 3, f_extend},
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007597 {"feedkeys", 1, 2, f_feedkeys},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007598 {"file_readable", 1, 1, f_filereadable}, /* obsolete */
7599 {"filereadable", 1, 1, f_filereadable},
7600 {"filewritable", 1, 1, f_filewritable},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007601 {"filter", 2, 2, f_filter},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007602 {"finddir", 1, 3, f_finddir},
7603 {"findfile", 1, 3, f_findfile},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007604#ifdef FEAT_FLOAT
7605 {"float2nr", 1, 1, f_float2nr},
7606 {"floor", 1, 1, f_floor},
7607#endif
Bram Moolenaaraebaf892008-05-28 14:49:58 +00007608 {"fnameescape", 1, 1, f_fnameescape},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007609 {"fnamemodify", 2, 2, f_fnamemodify},
7610 {"foldclosed", 1, 1, f_foldclosed},
7611 {"foldclosedend", 1, 1, f_foldclosedend},
7612 {"foldlevel", 1, 1, f_foldlevel},
7613 {"foldtext", 0, 0, f_foldtext},
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00007614 {"foldtextresult", 1, 1, f_foldtextresult},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007615 {"foreground", 0, 0, f_foreground},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007616 {"function", 1, 1, f_function},
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00007617 {"garbagecollect", 0, 1, f_garbagecollect},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007618 {"get", 2, 3, f_get},
Bram Moolenaar80fc0432005-07-20 22:06:07 +00007619 {"getbufline", 2, 3, f_getbufline},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007620 {"getbufvar", 2, 2, f_getbufvar},
7621 {"getchar", 0, 1, f_getchar},
7622 {"getcharmod", 0, 0, f_getcharmod},
7623 {"getcmdline", 0, 0, f_getcmdline},
7624 {"getcmdpos", 0, 0, f_getcmdpos},
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007625 {"getcmdtype", 0, 0, f_getcmdtype},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007626 {"getcwd", 0, 0, f_getcwd},
Bram Moolenaar46c9c732004-12-12 11:37:09 +00007627 {"getfontname", 0, 1, f_getfontname},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007628 {"getfperm", 1, 1, f_getfperm},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007629 {"getfsize", 1, 1, f_getfsize},
7630 {"getftime", 1, 1, f_getftime},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007631 {"getftype", 1, 1, f_getftype},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007632 {"getline", 1, 2, f_getline},
Bram Moolenaar280f1262006-01-30 00:14:18 +00007633 {"getloclist", 1, 1, f_getqflist},
Bram Moolenaar2240aeb2007-07-27 19:33:14 +00007634 {"getmatches", 0, 0, f_getmatches},
Bram Moolenaar18081e32008-02-20 19:11:07 +00007635 {"getpid", 0, 0, f_getpid},
Bram Moolenaara5525202006-03-02 22:52:09 +00007636 {"getpos", 1, 1, f_getpos},
Bram Moolenaar2641f772005-03-25 21:58:17 +00007637 {"getqflist", 0, 0, f_getqflist},
Bram Moolenaar67fe1a12005-05-22 22:12:58 +00007638 {"getreg", 0, 2, f_getreg},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007639 {"getregtype", 0, 1, f_getregtype},
Bram Moolenaar99ebf042006-04-15 20:28:54 +00007640 {"gettabwinvar", 3, 3, f_gettabwinvar},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007641 {"getwinposx", 0, 0, f_getwinposx},
7642 {"getwinposy", 0, 0, f_getwinposy},
7643 {"getwinvar", 2, 2, f_getwinvar},
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00007644 {"glob", 1, 2, f_glob},
7645 {"globpath", 2, 3, f_globpath},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007646 {"has", 1, 1, f_has},
Bram Moolenaare9a41262005-01-15 22:18:47 +00007647 {"has_key", 2, 2, f_has_key},
Bram Moolenaard267b9c2007-04-26 15:06:45 +00007648 {"haslocaldir", 0, 0, f_haslocaldir},
Bram Moolenaar2c932302006-03-18 21:42:09 +00007649 {"hasmapto", 1, 3, f_hasmapto},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007650 {"highlightID", 1, 1, f_hlID}, /* obsolete */
7651 {"highlight_exists",1, 1, f_hlexists}, /* obsolete */
7652 {"histadd", 2, 2, f_histadd},
7653 {"histdel", 1, 2, f_histdel},
7654 {"histget", 1, 2, f_histget},
7655 {"histnr", 1, 1, f_histnr},
7656 {"hlID", 1, 1, f_hlID},
7657 {"hlexists", 1, 1, f_hlexists},
7658 {"hostname", 0, 0, f_hostname},
7659 {"iconv", 3, 3, f_iconv},
7660 {"indent", 1, 1, f_indent},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007661 {"index", 2, 4, f_index},
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007662 {"input", 1, 3, f_input},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007663 {"inputdialog", 1, 3, f_inputdialog},
Bram Moolenaar6efa2b32005-09-10 19:26:26 +00007664 {"inputlist", 1, 1, f_inputlist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007665 {"inputrestore", 0, 0, f_inputrestore},
7666 {"inputsave", 0, 0, f_inputsave},
7667 {"inputsecret", 1, 2, f_inputsecret},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007668 {"insert", 2, 3, f_insert},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007669 {"isdirectory", 1, 1, f_isdirectory},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00007670 {"islocked", 1, 1, f_islocked},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007671 {"items", 1, 1, f_items},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007672 {"join", 1, 2, f_join},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007673 {"keys", 1, 1, f_keys},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007674 {"last_buffer_nr", 0, 0, f_last_buffer_nr},/* obsolete */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007675 {"len", 1, 1, f_len},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007676 {"libcall", 3, 3, f_libcall},
7677 {"libcallnr", 3, 3, f_libcallnr},
7678 {"line", 1, 1, f_line},
7679 {"line2byte", 1, 1, f_line2byte},
7680 {"lispindent", 1, 1, f_lispindent},
7681 {"localtime", 0, 0, f_localtime},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007682#ifdef FEAT_FLOAT
7683 {"log10", 1, 1, f_log10},
7684#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007685 {"map", 2, 2, f_map},
Bram Moolenaar2c932302006-03-18 21:42:09 +00007686 {"maparg", 1, 3, f_maparg},
7687 {"mapcheck", 1, 3, f_mapcheck},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007688 {"match", 2, 4, f_match},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007689 {"matchadd", 2, 4, f_matchadd},
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007690 {"matcharg", 1, 1, f_matcharg},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007691 {"matchdelete", 1, 1, f_matchdelete},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007692 {"matchend", 2, 4, f_matchend},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00007693 {"matchlist", 2, 4, f_matchlist},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007694 {"matchstr", 2, 4, f_matchstr},
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007695 {"max", 1, 1, f_max},
7696 {"min", 1, 1, f_min},
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007697#ifdef vim_mkdir
7698 {"mkdir", 1, 3, f_mkdir},
7699#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007700 {"mode", 0, 1, f_mode},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007701 {"nextnonblank", 1, 1, f_nextnonblank},
7702 {"nr2char", 1, 1, f_nr2char},
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007703 {"pathshorten", 1, 1, f_pathshorten},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007704#ifdef FEAT_FLOAT
7705 {"pow", 2, 2, f_pow},
7706#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007707 {"prevnonblank", 1, 1, f_prevnonblank},
Bram Moolenaar4be06f92005-07-29 22:36:03 +00007708 {"printf", 2, 19, f_printf},
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007709 {"pumvisible", 0, 0, f_pumvisible},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007710 {"range", 1, 3, f_range},
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007711 {"readfile", 1, 3, f_readfile},
Bram Moolenaare580b0c2006-03-21 21:33:03 +00007712 {"reltime", 0, 2, f_reltime},
7713 {"reltimestr", 1, 1, f_reltimestr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007714 {"remote_expr", 2, 3, f_remote_expr},
7715 {"remote_foreground", 1, 1, f_remote_foreground},
7716 {"remote_peek", 1, 2, f_remote_peek},
7717 {"remote_read", 1, 1, f_remote_read},
7718 {"remote_send", 2, 3, f_remote_send},
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007719 {"remove", 2, 3, f_remove},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007720 {"rename", 2, 2, f_rename},
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007721 {"repeat", 2, 2, f_repeat},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007722 {"resolve", 1, 1, f_resolve},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007723 {"reverse", 1, 1, f_reverse},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007724#ifdef FEAT_FLOAT
7725 {"round", 1, 1, f_round},
7726#endif
Bram Moolenaar76929292008-01-06 19:07:36 +00007727 {"search", 1, 4, f_search},
Bram Moolenaare6facf92005-09-13 21:22:27 +00007728 {"searchdecl", 1, 3, f_searchdecl},
Bram Moolenaar76929292008-01-06 19:07:36 +00007729 {"searchpair", 3, 7, f_searchpair},
7730 {"searchpairpos", 3, 7, f_searchpairpos},
7731 {"searchpos", 1, 4, f_searchpos},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007732 {"server2client", 2, 2, f_server2client},
7733 {"serverlist", 0, 0, f_serverlist},
7734 {"setbufvar", 3, 3, f_setbufvar},
7735 {"setcmdpos", 1, 1, f_setcmdpos},
7736 {"setline", 2, 2, f_setline},
Bram Moolenaar17c7c012006-01-26 22:25:15 +00007737 {"setloclist", 2, 3, f_setloclist},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007738 {"setmatches", 1, 1, f_setmatches},
Bram Moolenaar0e34f622006-03-03 23:00:03 +00007739 {"setpos", 2, 2, f_setpos},
Bram Moolenaarf4630b62005-05-20 21:31:17 +00007740 {"setqflist", 1, 2, f_setqflist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007741 {"setreg", 2, 3, f_setreg},
Bram Moolenaar99ebf042006-04-15 20:28:54 +00007742 {"settabwinvar", 4, 4, f_settabwinvar},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007743 {"setwinvar", 3, 3, f_setwinvar},
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007744 {"shellescape", 1, 2, f_shellescape},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007745 {"simplify", 1, 1, f_simplify},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007746#ifdef FEAT_FLOAT
7747 {"sin", 1, 1, f_sin},
7748#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +00007749 {"sort", 1, 2, f_sort},
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00007750 {"soundfold", 1, 1, f_soundfold},
Bram Moolenaar4463f292005-09-25 22:20:24 +00007751 {"spellbadword", 0, 1, f_spellbadword},
Bram Moolenaar69e0ff92005-09-30 21:23:56 +00007752 {"spellsuggest", 1, 3, f_spellsuggest},
Bram Moolenaar67fe1a12005-05-22 22:12:58 +00007753 {"split", 1, 3, f_split},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007754#ifdef FEAT_FLOAT
7755 {"sqrt", 1, 1, f_sqrt},
7756 {"str2float", 1, 1, f_str2float},
7757#endif
Bram Moolenaar2c932302006-03-18 21:42:09 +00007758 {"str2nr", 1, 2, f_str2nr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007759#ifdef HAVE_STRFTIME
7760 {"strftime", 1, 2, f_strftime},
7761#endif
Bram Moolenaar33570922005-01-25 22:26:29 +00007762 {"stridx", 2, 3, f_stridx},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007763 {"string", 1, 1, f_string},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007764 {"strlen", 1, 1, f_strlen},
7765 {"strpart", 2, 3, f_strpart},
Bram Moolenaar532c7802005-01-27 14:44:31 +00007766 {"strridx", 2, 3, f_strridx},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007767 {"strtrans", 1, 1, f_strtrans},
7768 {"submatch", 1, 1, f_submatch},
7769 {"substitute", 4, 4, f_substitute},
7770 {"synID", 3, 3, f_synID},
7771 {"synIDattr", 2, 3, f_synIDattr},
7772 {"synIDtrans", 1, 1, f_synIDtrans},
Bram Moolenaar9d188ab2008-01-10 21:24:39 +00007773 {"synstack", 2, 2, f_synstack},
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007774 {"system", 1, 2, f_system},
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007775 {"tabpagebuflist", 0, 1, f_tabpagebuflist},
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007776 {"tabpagenr", 0, 1, f_tabpagenr},
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007777 {"tabpagewinnr", 1, 2, f_tabpagewinnr},
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00007778 {"tagfiles", 0, 0, f_tagfiles},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00007779 {"taglist", 1, 1, f_taglist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007780 {"tempname", 0, 0, f_tempname},
Bram Moolenaard52d9742005-08-21 22:20:28 +00007781 {"test", 1, 1, f_test},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007782 {"tolower", 1, 1, f_tolower},
7783 {"toupper", 1, 1, f_toupper},
Bram Moolenaar8299df92004-07-10 09:47:34 +00007784 {"tr", 3, 3, f_tr},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007785#ifdef FEAT_FLOAT
7786 {"trunc", 1, 1, f_trunc},
7787#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007788 {"type", 1, 1, f_type},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007789 {"values", 1, 1, f_values},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007790 {"virtcol", 1, 1, f_virtcol},
7791 {"visualmode", 0, 1, f_visualmode},
7792 {"winbufnr", 1, 1, f_winbufnr},
7793 {"wincol", 0, 0, f_wincol},
7794 {"winheight", 1, 1, f_winheight},
7795 {"winline", 0, 0, f_winline},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007796 {"winnr", 0, 1, f_winnr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007797 {"winrestcmd", 0, 0, f_winrestcmd},
Bram Moolenaar768b8c42006-03-04 21:58:33 +00007798 {"winrestview", 1, 1, f_winrestview},
7799 {"winsaveview", 0, 0, f_winsaveview},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007800 {"winwidth", 1, 1, f_winwidth},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00007801 {"writefile", 2, 3, f_writefile},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007802};
7803
7804#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
7805
7806/*
7807 * Function given to ExpandGeneric() to obtain the list of internal
7808 * or user defined function names.
7809 */
7810 char_u *
7811get_function_name(xp, idx)
7812 expand_T *xp;
7813 int idx;
7814{
7815 static int intidx = -1;
7816 char_u *name;
7817
7818 if (idx == 0)
7819 intidx = -1;
7820 if (intidx < 0)
7821 {
7822 name = get_user_func_name(xp, idx);
7823 if (name != NULL)
7824 return name;
7825 }
7826 if (++intidx < (int)(sizeof(functions) / sizeof(struct fst)))
7827 {
7828 STRCPY(IObuff, functions[intidx].f_name);
7829 STRCAT(IObuff, "(");
7830 if (functions[intidx].f_max_argc == 0)
7831 STRCAT(IObuff, ")");
7832 return IObuff;
7833 }
7834
7835 return NULL;
7836}
7837
7838/*
7839 * Function given to ExpandGeneric() to obtain the list of internal or
7840 * user defined variable or function names.
7841 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007842 char_u *
7843get_expr_name(xp, idx)
7844 expand_T *xp;
7845 int idx;
7846{
7847 static int intidx = -1;
7848 char_u *name;
7849
7850 if (idx == 0)
7851 intidx = -1;
7852 if (intidx < 0)
7853 {
7854 name = get_function_name(xp, idx);
7855 if (name != NULL)
7856 return name;
7857 }
7858 return get_user_var_name(xp, ++intidx);
7859}
7860
7861#endif /* FEAT_CMDL_COMPL */
7862
7863/*
7864 * Find internal function in table above.
7865 * Return index, or -1 if not found
7866 */
7867 static int
7868find_internal_func(name)
7869 char_u *name; /* name of the function */
7870{
7871 int first = 0;
7872 int last = (int)(sizeof(functions) / sizeof(struct fst)) - 1;
7873 int cmp;
7874 int x;
7875
7876 /*
7877 * Find the function name in the table. Binary search.
7878 */
7879 while (first <= last)
7880 {
7881 x = first + ((unsigned)(last - first) >> 1);
7882 cmp = STRCMP(name, functions[x].f_name);
7883 if (cmp < 0)
7884 last = x - 1;
7885 else if (cmp > 0)
7886 first = x + 1;
7887 else
7888 return x;
7889 }
7890 return -1;
7891}
7892
7893/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007894 * Check if "name" is a variable of type VAR_FUNC. If so, return the function
7895 * name it contains, otherwise return "name".
7896 */
7897 static char_u *
7898deref_func_name(name, lenp)
7899 char_u *name;
7900 int *lenp;
7901{
Bram Moolenaar33570922005-01-25 22:26:29 +00007902 dictitem_T *v;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007903 int cc;
7904
7905 cc = name[*lenp];
7906 name[*lenp] = NUL;
Bram Moolenaara7043832005-01-21 11:56:39 +00007907 v = find_var(name, NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007908 name[*lenp] = cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00007909 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007910 {
Bram Moolenaar33570922005-01-25 22:26:29 +00007911 if (v->di_tv.vval.v_string == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007912 {
7913 *lenp = 0;
7914 return (char_u *)""; /* just in case */
7915 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007916 *lenp = (int)STRLEN(v->di_tv.vval.v_string);
Bram Moolenaar33570922005-01-25 22:26:29 +00007917 return v->di_tv.vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007918 }
7919
7920 return name;
7921}
7922
7923/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007924 * Allocate a variable for the result of a function.
7925 * Return OK or FAIL.
7926 */
7927 static int
Bram Moolenaare9a41262005-01-15 22:18:47 +00007928get_func_tv(name, len, rettv, arg, firstline, lastline, doesrange,
7929 evaluate, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007930 char_u *name; /* name of the function */
7931 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +00007932 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007933 char_u **arg; /* argument, pointing to the '(' */
7934 linenr_T firstline; /* first line of range */
7935 linenr_T lastline; /* last line of range */
7936 int *doesrange; /* return: function handled range */
7937 int evaluate;
Bram Moolenaar33570922005-01-25 22:26:29 +00007938 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007939{
7940 char_u *argp;
7941 int ret = OK;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007942 typval_T argvars[MAX_FUNC_ARGS + 1]; /* vars for arguments */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007943 int argcount = 0; /* number of arguments found */
7944
7945 /*
7946 * Get the arguments.
7947 */
7948 argp = *arg;
7949 while (argcount < MAX_FUNC_ARGS)
7950 {
7951 argp = skipwhite(argp + 1); /* skip the '(' or ',' */
7952 if (*argp == ')' || *argp == ',' || *argp == NUL)
7953 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007954 if (eval1(&argp, &argvars[argcount], evaluate) == FAIL)
7955 {
7956 ret = FAIL;
7957 break;
7958 }
7959 ++argcount;
7960 if (*argp != ',')
7961 break;
7962 }
7963 if (*argp == ')')
7964 ++argp;
7965 else
7966 ret = FAIL;
7967
7968 if (ret == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007969 ret = call_func(name, len, rettv, argcount, argvars,
Bram Moolenaare9a41262005-01-15 22:18:47 +00007970 firstline, lastline, doesrange, evaluate, selfdict);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007971 else if (!aborting())
Bram Moolenaar33570922005-01-25 22:26:29 +00007972 {
7973 if (argcount == MAX_FUNC_ARGS)
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +00007974 emsg_funcname(N_("E740: Too many arguments for function %s"), name);
Bram Moolenaar33570922005-01-25 22:26:29 +00007975 else
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +00007976 emsg_funcname(N_("E116: Invalid arguments for function %s"), name);
Bram Moolenaar33570922005-01-25 22:26:29 +00007977 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007978
7979 while (--argcount >= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007980 clear_tv(&argvars[argcount]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007981
7982 *arg = skipwhite(argp);
7983 return ret;
7984}
7985
7986
7987/*
7988 * Call a function with its resolved parameters
Bram Moolenaar280f1262006-01-30 00:14:18 +00007989 * Return OK when the function can't be called, FAIL otherwise.
7990 * Also returns OK when an error was encountered while executing the function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007991 */
7992 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007993call_func(name, len, rettv, argcount, argvars, firstline, lastline,
Bram Moolenaare9a41262005-01-15 22:18:47 +00007994 doesrange, evaluate, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007995 char_u *name; /* name of the function */
7996 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +00007997 typval_T *rettv; /* return value goes here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007998 int argcount; /* number of "argvars" */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007999 typval_T *argvars; /* vars for arguments, must have "argcount"
8000 PLUS ONE elements! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008001 linenr_T firstline; /* first line of range */
8002 linenr_T lastline; /* last line of range */
8003 int *doesrange; /* return: function handled range */
8004 int evaluate;
Bram Moolenaar33570922005-01-25 22:26:29 +00008005 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008006{
8007 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008008#define ERROR_UNKNOWN 0
8009#define ERROR_TOOMANY 1
8010#define ERROR_TOOFEW 2
8011#define ERROR_SCRIPT 3
Bram Moolenaare9a41262005-01-15 22:18:47 +00008012#define ERROR_DICT 4
8013#define ERROR_NONE 5
8014#define ERROR_OTHER 6
Bram Moolenaar071d4272004-06-13 20:20:40 +00008015 int error = ERROR_NONE;
8016 int i;
8017 int llen;
8018 ufunc_T *fp;
8019 int cc;
8020#define FLEN_FIXED 40
8021 char_u fname_buf[FLEN_FIXED + 1];
8022 char_u *fname;
8023
8024 /*
8025 * In a script change <SID>name() and s:name() to K_SNR 123_name().
8026 * Change <SNR>123_name() to K_SNR 123_name().
8027 * Use fname_buf[] when it fits, otherwise allocate memory (slow).
8028 */
8029 cc = name[len];
8030 name[len] = NUL;
8031 llen = eval_fname_script(name);
8032 if (llen > 0)
8033 {
8034 fname_buf[0] = K_SPECIAL;
8035 fname_buf[1] = KS_EXTRA;
8036 fname_buf[2] = (int)KE_SNR;
8037 i = 3;
8038 if (eval_fname_sid(name)) /* "<SID>" or "s:" */
8039 {
8040 if (current_SID <= 0)
8041 error = ERROR_SCRIPT;
8042 else
8043 {
8044 sprintf((char *)fname_buf + 3, "%ld_", (long)current_SID);
8045 i = (int)STRLEN(fname_buf);
8046 }
8047 }
8048 if (i + STRLEN(name + llen) < FLEN_FIXED)
8049 {
8050 STRCPY(fname_buf + i, name + llen);
8051 fname = fname_buf;
8052 }
8053 else
8054 {
8055 fname = alloc((unsigned)(i + STRLEN(name + llen) + 1));
8056 if (fname == NULL)
8057 error = ERROR_OTHER;
8058 else
8059 {
8060 mch_memmove(fname, fname_buf, (size_t)i);
8061 STRCPY(fname + i, name + llen);
8062 }
8063 }
8064 }
8065 else
8066 fname = name;
8067
8068 *doesrange = FALSE;
8069
8070
8071 /* execute the function if no errors detected and executing */
8072 if (evaluate && error == ERROR_NONE)
8073 {
Bram Moolenaar798b30b2009-04-22 10:56:16 +00008074 rettv->v_type = VAR_NUMBER; /* default rettv is number zero */
8075 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008076 error = ERROR_UNKNOWN;
8077
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008078 if (!builtin_function(fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008079 {
8080 /*
8081 * User defined function.
8082 */
8083 fp = find_func(fname);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008084
Bram Moolenaar071d4272004-06-13 20:20:40 +00008085#ifdef FEAT_AUTOCMD
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008086 /* Trigger FuncUndefined event, may load the function. */
8087 if (fp == NULL
8088 && apply_autocmds(EVENT_FUNCUNDEFINED,
8089 fname, fname, TRUE, NULL)
8090 && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00008091 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008092 /* executed an autocommand, search for the function again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008093 fp = find_func(fname);
8094 }
8095#endif
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008096 /* Try loading a package. */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00008097 if (fp == NULL && script_autoload(fname, TRUE) && !aborting())
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008098 {
8099 /* loaded a package, search for the function again */
8100 fp = find_func(fname);
8101 }
8102
Bram Moolenaar071d4272004-06-13 20:20:40 +00008103 if (fp != NULL)
8104 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008105 if (fp->uf_flags & FC_RANGE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008106 *doesrange = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008107 if (argcount < fp->uf_args.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008108 error = ERROR_TOOFEW;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008109 else if (!fp->uf_varargs && argcount > fp->uf_args.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008110 error = ERROR_TOOMANY;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008111 else if ((fp->uf_flags & FC_DICT) && selfdict == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00008112 error = ERROR_DICT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008113 else
8114 {
8115 /*
8116 * Call the user function.
8117 * Save and restore search patterns, script variables and
8118 * redo buffer.
8119 */
8120 save_search_patterns();
8121 saveRedobuff();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008122 ++fp->uf_calls;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008123 call_user_func(fp, argcount, argvars, rettv,
Bram Moolenaare9a41262005-01-15 22:18:47 +00008124 firstline, lastline,
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008125 (fp->uf_flags & FC_DICT) ? selfdict : NULL);
8126 if (--fp->uf_calls <= 0 && isdigit(*fp->uf_name)
8127 && fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00008128 /* Function was unreferenced while being used, free it
8129 * now. */
8130 func_free(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008131 restoreRedobuff();
8132 restore_search_patterns();
8133 error = ERROR_NONE;
8134 }
8135 }
8136 }
8137 else
8138 {
8139 /*
8140 * Find the function name in the table, call its implementation.
8141 */
8142 i = find_internal_func(fname);
8143 if (i >= 0)
8144 {
8145 if (argcount < functions[i].f_min_argc)
8146 error = ERROR_TOOFEW;
8147 else if (argcount > functions[i].f_max_argc)
8148 error = ERROR_TOOMANY;
8149 else
8150 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008151 argvars[argcount].v_type = VAR_UNKNOWN;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008152 functions[i].f_func(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008153 error = ERROR_NONE;
8154 }
8155 }
8156 }
8157 /*
8158 * The function call (or "FuncUndefined" autocommand sequence) might
8159 * have been aborted by an error, an interrupt, or an explicitly thrown
8160 * exception that has not been caught so far. This situation can be
8161 * tested for by calling aborting(). For an error in an internal
8162 * function or for the "E132" error in call_user_func(), however, the
8163 * throw point at which the "force_abort" flag (temporarily reset by
8164 * emsg()) is normally updated has not been reached yet. We need to
8165 * update that flag first to make aborting() reliable.
8166 */
8167 update_force_abort();
8168 }
8169 if (error == ERROR_NONE)
8170 ret = OK;
8171
8172 /*
8173 * Report an error unless the argument evaluation or function call has been
8174 * cancelled due to an aborting error, an interrupt, or an exception.
8175 */
Bram Moolenaar8c711452005-01-14 21:53:12 +00008176 if (!aborting())
8177 {
8178 switch (error)
8179 {
8180 case ERROR_UNKNOWN:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008181 emsg_funcname(N_("E117: Unknown function: %s"), name);
Bram Moolenaar8c711452005-01-14 21:53:12 +00008182 break;
8183 case ERROR_TOOMANY:
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008184 emsg_funcname(e_toomanyarg, name);
Bram Moolenaar8c711452005-01-14 21:53:12 +00008185 break;
8186 case ERROR_TOOFEW:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008187 emsg_funcname(N_("E119: Not enough arguments for function: %s"),
Bram Moolenaar8c711452005-01-14 21:53:12 +00008188 name);
8189 break;
8190 case ERROR_SCRIPT:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008191 emsg_funcname(N_("E120: Using <SID> not in a script context: %s"),
Bram Moolenaar8c711452005-01-14 21:53:12 +00008192 name);
8193 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00008194 case ERROR_DICT:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008195 emsg_funcname(N_("E725: Calling dict function without Dictionary: %s"),
Bram Moolenaare9a41262005-01-15 22:18:47 +00008196 name);
8197 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00008198 }
8199 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008200
8201 name[len] = cc;
8202 if (fname != name && fname != fname_buf)
8203 vim_free(fname);
8204
8205 return ret;
8206}
8207
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008208/*
8209 * Give an error message with a function name. Handle <SNR> things.
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +00008210 * "ermsg" is to be passed without translation, use N_() instead of _().
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008211 */
8212 static void
Bram Moolenaar89d40322006-08-29 15:30:07 +00008213emsg_funcname(ermsg, name)
8214 char *ermsg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008215 char_u *name;
8216{
8217 char_u *p;
8218
8219 if (*name == K_SPECIAL)
8220 p = concat_str((char_u *)"<SNR>", name + 3);
8221 else
8222 p = name;
Bram Moolenaar89d40322006-08-29 15:30:07 +00008223 EMSG2(_(ermsg), p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008224 if (p != name)
8225 vim_free(p);
8226}
8227
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008228/*
8229 * Return TRUE for a non-zero Number and a non-empty String.
8230 */
8231 static int
8232non_zero_arg(argvars)
8233 typval_T *argvars;
8234{
8235 return ((argvars[0].v_type == VAR_NUMBER
8236 && argvars[0].vval.v_number != 0)
8237 || (argvars[0].v_type == VAR_STRING
8238 && argvars[0].vval.v_string != NULL
8239 && *argvars[0].vval.v_string != NUL));
8240}
8241
Bram Moolenaar071d4272004-06-13 20:20:40 +00008242/*********************************************
8243 * Implementation of the built-in functions
8244 */
8245
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008246#ifdef FEAT_FLOAT
8247/*
8248 * "abs(expr)" function
8249 */
8250 static void
8251f_abs(argvars, rettv)
8252 typval_T *argvars;
8253 typval_T *rettv;
8254{
8255 if (argvars[0].v_type == VAR_FLOAT)
8256 {
8257 rettv->v_type = VAR_FLOAT;
8258 rettv->vval.v_float = fabs(argvars[0].vval.v_float);
8259 }
8260 else
8261 {
8262 varnumber_T n;
8263 int error = FALSE;
8264
8265 n = get_tv_number_chk(&argvars[0], &error);
8266 if (error)
8267 rettv->vval.v_number = -1;
8268 else if (n > 0)
8269 rettv->vval.v_number = n;
8270 else
8271 rettv->vval.v_number = -n;
8272 }
8273}
8274#endif
8275
Bram Moolenaar071d4272004-06-13 20:20:40 +00008276/*
Bram Moolenaar0d660222005-01-07 21:51:51 +00008277 * "add(list, item)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +00008278 */
8279 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +00008280f_add(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008281 typval_T *argvars;
8282 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008283{
Bram Moolenaar33570922005-01-25 22:26:29 +00008284 list_T *l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008285
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008286 rettv->vval.v_number = 1; /* Default: Failed */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008287 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008288 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00008289 if ((l = argvars[0].vval.v_list) != NULL
8290 && !tv_check_lock(l->lv_lock, (char_u *)"add()")
8291 && list_append_tv(l, &argvars[1]) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008292 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008293 }
8294 else
Bram Moolenaar0d660222005-01-07 21:51:51 +00008295 EMSG(_(e_listreq));
8296}
8297
8298/*
8299 * "append(lnum, string/list)" function
8300 */
8301 static void
8302f_append(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008303 typval_T *argvars;
8304 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00008305{
8306 long lnum;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008307 char_u *line;
Bram Moolenaar33570922005-01-25 22:26:29 +00008308 list_T *l = NULL;
8309 listitem_T *li = NULL;
8310 typval_T *tv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00008311 long added = 0;
8312
Bram Moolenaar0d660222005-01-07 21:51:51 +00008313 lnum = get_tv_lnum(argvars);
8314 if (lnum >= 0
8315 && lnum <= curbuf->b_ml.ml_line_count
8316 && u_save(lnum, lnum + 1) == OK)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008317 {
Bram Moolenaar0d660222005-01-07 21:51:51 +00008318 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008319 {
Bram Moolenaar0d660222005-01-07 21:51:51 +00008320 l = argvars[1].vval.v_list;
8321 if (l == NULL)
8322 return;
8323 li = l->lv_first;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008324 }
Bram Moolenaar0d660222005-01-07 21:51:51 +00008325 for (;;)
8326 {
8327 if (l == NULL)
8328 tv = &argvars[1]; /* append a string */
8329 else if (li == NULL)
8330 break; /* end of list */
8331 else
8332 tv = &li->li_tv; /* append item from list */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008333 line = get_tv_string_chk(tv);
8334 if (line == NULL) /* type error */
8335 {
8336 rettv->vval.v_number = 1; /* Failed */
8337 break;
8338 }
8339 ml_append(lnum + added, line, (colnr_T)0, FALSE);
Bram Moolenaar0d660222005-01-07 21:51:51 +00008340 ++added;
8341 if (l == NULL)
8342 break;
8343 li = li->li_next;
8344 }
8345
8346 appended_lines_mark(lnum, added);
8347 if (curwin->w_cursor.lnum > lnum)
8348 curwin->w_cursor.lnum += added;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008349 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008350 else
8351 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008352}
8353
8354/*
8355 * "argc()" function
8356 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008357 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008358f_argc(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008359 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008360 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008361{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008362 rettv->vval.v_number = ARGCOUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008363}
8364
8365/*
8366 * "argidx()" function
8367 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008368 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008369f_argidx(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008370 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008371 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008372{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008373 rettv->vval.v_number = curwin->w_arg_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008374}
8375
8376/*
8377 * "argv(nr)" function
8378 */
8379 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008380f_argv(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008381 typval_T *argvars;
8382 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008383{
8384 int idx;
8385
Bram Moolenaare2f98b92006-03-29 21:18:24 +00008386 if (argvars[0].v_type != VAR_UNKNOWN)
8387 {
8388 idx = get_tv_number_chk(&argvars[0], NULL);
8389 if (idx >= 0 && idx < ARGCOUNT)
8390 rettv->vval.v_string = vim_strsave(alist_name(&ARGLIST[idx]));
8391 else
8392 rettv->vval.v_string = NULL;
8393 rettv->v_type = VAR_STRING;
8394 }
8395 else if (rettv_list_alloc(rettv) == OK)
8396 for (idx = 0; idx < ARGCOUNT; ++idx)
8397 list_append_string(rettv->vval.v_list,
8398 alist_name(&ARGLIST[idx]), -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008399}
8400
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008401#ifdef FEAT_FLOAT
8402static int get_float_arg __ARGS((typval_T *argvars, float_T *f));
8403
8404/*
8405 * Get the float value of "argvars[0]" into "f".
8406 * Returns FAIL when the argument is not a Number or Float.
8407 */
8408 static int
8409get_float_arg(argvars, f)
8410 typval_T *argvars;
8411 float_T *f;
8412{
8413 if (argvars[0].v_type == VAR_FLOAT)
8414 {
8415 *f = argvars[0].vval.v_float;
8416 return OK;
8417 }
8418 if (argvars[0].v_type == VAR_NUMBER)
8419 {
8420 *f = (float_T)argvars[0].vval.v_number;
8421 return OK;
8422 }
8423 EMSG(_("E808: Number or Float required"));
8424 return FAIL;
8425}
8426
8427/*
8428 * "atan()" function
8429 */
8430 static void
8431f_atan(argvars, rettv)
8432 typval_T *argvars;
8433 typval_T *rettv;
8434{
8435 float_T f;
8436
8437 rettv->v_type = VAR_FLOAT;
8438 if (get_float_arg(argvars, &f) == OK)
8439 rettv->vval.v_float = atan(f);
8440 else
8441 rettv->vval.v_float = 0.0;
8442}
8443#endif
8444
Bram Moolenaar071d4272004-06-13 20:20:40 +00008445/*
8446 * "browse(save, title, initdir, default)" function
8447 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008448 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008449f_browse(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008450 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008451 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008452{
8453#ifdef FEAT_BROWSE
8454 int save;
8455 char_u *title;
8456 char_u *initdir;
8457 char_u *defname;
8458 char_u buf[NUMBUFLEN];
8459 char_u buf2[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008460 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008461
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008462 save = get_tv_number_chk(&argvars[0], &error);
8463 title = get_tv_string_chk(&argvars[1]);
8464 initdir = get_tv_string_buf_chk(&argvars[2], buf);
8465 defname = get_tv_string_buf_chk(&argvars[3], buf2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008466
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008467 if (error || title == NULL || initdir == NULL || defname == NULL)
8468 rettv->vval.v_string = NULL;
8469 else
8470 rettv->vval.v_string =
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008471 do_browse(save ? BROWSE_SAVE : 0,
8472 title, defname, NULL, initdir, NULL, curbuf);
8473#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008474 rettv->vval.v_string = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008475#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008476 rettv->v_type = VAR_STRING;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008477}
8478
8479/*
8480 * "browsedir(title, initdir)" function
8481 */
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008482 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008483f_browsedir(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008484 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008485 typval_T *rettv;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008486{
8487#ifdef FEAT_BROWSE
8488 char_u *title;
8489 char_u *initdir;
8490 char_u buf[NUMBUFLEN];
8491
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008492 title = get_tv_string_chk(&argvars[0]);
8493 initdir = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008494
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008495 if (title == NULL || initdir == NULL)
8496 rettv->vval.v_string = NULL;
8497 else
8498 rettv->vval.v_string = do_browse(BROWSE_DIR,
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008499 title, NULL, NULL, initdir, NULL, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008500#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008501 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008502#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008503 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008504}
8505
Bram Moolenaar33570922005-01-25 22:26:29 +00008506static buf_T *find_buffer __ARGS((typval_T *avar));
Bram Moolenaar0d660222005-01-07 21:51:51 +00008507
Bram Moolenaar071d4272004-06-13 20:20:40 +00008508/*
8509 * Find a buffer by number or exact name.
8510 */
8511 static buf_T *
8512find_buffer(avar)
Bram Moolenaar33570922005-01-25 22:26:29 +00008513 typval_T *avar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008514{
8515 buf_T *buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008516
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008517 if (avar->v_type == VAR_NUMBER)
8518 buf = buflist_findnr((int)avar->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +00008519 else if (avar->v_type == VAR_STRING && avar->vval.v_string != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008520 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008521 buf = buflist_findname_exp(avar->vval.v_string);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00008522 if (buf == NULL)
8523 {
8524 /* No full path name match, try a match with a URL or a "nofile"
8525 * buffer, these don't use the full path. */
8526 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
8527 if (buf->b_fname != NULL
8528 && (path_with_url(buf->b_fname)
8529#ifdef FEAT_QUICKFIX
8530 || bt_nofile(buf)
8531#endif
8532 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008533 && STRCMP(buf->b_fname, avar->vval.v_string) == 0)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00008534 break;
8535 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008536 }
8537 return buf;
8538}
8539
8540/*
8541 * "bufexists(expr)" function
8542 */
8543 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008544f_bufexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008545 typval_T *argvars;
8546 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008547{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008548 rettv->vval.v_number = (find_buffer(&argvars[0]) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008549}
8550
8551/*
8552 * "buflisted(expr)" function
8553 */
8554 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008555f_buflisted(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008556 typval_T *argvars;
8557 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008558{
8559 buf_T *buf;
8560
8561 buf = find_buffer(&argvars[0]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008562 rettv->vval.v_number = (buf != NULL && buf->b_p_bl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008563}
8564
8565/*
8566 * "bufloaded(expr)" function
8567 */
8568 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008569f_bufloaded(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008570 typval_T *argvars;
8571 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008572{
8573 buf_T *buf;
8574
8575 buf = find_buffer(&argvars[0]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008576 rettv->vval.v_number = (buf != NULL && buf->b_ml.ml_mfp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008577}
8578
Bram Moolenaar33570922005-01-25 22:26:29 +00008579static buf_T *get_buf_tv __ARGS((typval_T *tv));
Bram Moolenaar0d660222005-01-07 21:51:51 +00008580
Bram Moolenaar071d4272004-06-13 20:20:40 +00008581/*
8582 * Get buffer by number or pattern.
8583 */
8584 static buf_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008585get_buf_tv(tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008586 typval_T *tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008587{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008588 char_u *name = tv->vval.v_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008589 int save_magic;
8590 char_u *save_cpo;
8591 buf_T *buf;
8592
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008593 if (tv->v_type == VAR_NUMBER)
8594 return buflist_findnr((int)tv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +00008595 if (tv->v_type != VAR_STRING)
8596 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008597 if (name == NULL || *name == NUL)
8598 return curbuf;
8599 if (name[0] == '$' && name[1] == NUL)
8600 return lastbuf;
8601
8602 /* Ignore 'magic' and 'cpoptions' here to make scripts portable */
8603 save_magic = p_magic;
8604 p_magic = TRUE;
8605 save_cpo = p_cpo;
8606 p_cpo = (char_u *)"";
8607
8608 buf = buflist_findnr(buflist_findpat(name, name + STRLEN(name),
8609 TRUE, FALSE));
8610
8611 p_magic = save_magic;
8612 p_cpo = save_cpo;
8613
8614 /* If not found, try expanding the name, like done for bufexists(). */
8615 if (buf == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008616 buf = find_buffer(tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008617
8618 return buf;
8619}
8620
8621/*
8622 * "bufname(expr)" function
8623 */
8624 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008625f_bufname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008626 typval_T *argvars;
8627 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008628{
8629 buf_T *buf;
8630
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008631 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008632 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008633 buf = get_buf_tv(&argvars[0]);
8634 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008635 if (buf != NULL && buf->b_fname != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008636 rettv->vval.v_string = vim_strsave(buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008637 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008638 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008639 --emsg_off;
8640}
8641
8642/*
8643 * "bufnr(expr)" function
8644 */
8645 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008646f_bufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008647 typval_T *argvars;
8648 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008649{
8650 buf_T *buf;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008651 int error = FALSE;
8652 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008653
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008654 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008655 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008656 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008657 --emsg_off;
8658
8659 /* If the buffer isn't found and the second argument is not zero create a
8660 * new buffer. */
8661 if (buf == NULL
8662 && argvars[1].v_type != VAR_UNKNOWN
8663 && get_tv_number_chk(&argvars[1], &error) != 0
8664 && !error
8665 && (name = get_tv_string_chk(&argvars[0])) != NULL
8666 && !error)
8667 buf = buflist_new(name, NULL, (linenr_T)1, 0);
8668
Bram Moolenaar071d4272004-06-13 20:20:40 +00008669 if (buf != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008670 rettv->vval.v_number = buf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008671 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008672 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008673}
8674
8675/*
8676 * "bufwinnr(nr)" function
8677 */
8678 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008679f_bufwinnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008680 typval_T *argvars;
8681 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008682{
8683#ifdef FEAT_WINDOWS
8684 win_T *wp;
8685 int winnr = 0;
8686#endif
8687 buf_T *buf;
8688
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008689 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008690 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008691 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008692#ifdef FEAT_WINDOWS
8693 for (wp = firstwin; wp; wp = wp->w_next)
8694 {
8695 ++winnr;
8696 if (wp->w_buffer == buf)
8697 break;
8698 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008699 rettv->vval.v_number = (wp != NULL ? winnr : -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008700#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008701 rettv->vval.v_number = (curwin->w_buffer == buf ? 1 : -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008702#endif
8703 --emsg_off;
8704}
8705
8706/*
8707 * "byte2line(byte)" function
8708 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008709 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008710f_byte2line(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00008711 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008712 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008713{
8714#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008715 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008716#else
8717 long boff = 0;
8718
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008719 boff = get_tv_number(&argvars[0]) - 1; /* boff gets -1 on type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008720 if (boff < 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008721 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008722 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008723 rettv->vval.v_number = ml_find_line_or_offset(curbuf,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008724 (linenr_T)0, &boff);
8725#endif
8726}
8727
8728/*
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008729 * "byteidx()" function
8730 */
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008731 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008732f_byteidx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008733 typval_T *argvars;
8734 typval_T *rettv;
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008735{
8736#ifdef FEAT_MBYTE
8737 char_u *t;
8738#endif
8739 char_u *str;
8740 long idx;
8741
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008742 str = get_tv_string_chk(&argvars[0]);
8743 idx = get_tv_number_chk(&argvars[1], NULL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008744 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008745 if (str == NULL || idx < 0)
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008746 return;
8747
8748#ifdef FEAT_MBYTE
8749 t = str;
8750 for ( ; idx > 0; idx--)
8751 {
8752 if (*t == NUL) /* EOL reached */
8753 return;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008754 t += (*mb_ptr2len)(t);
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008755 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008756 rettv->vval.v_number = (varnumber_T)(t - str);
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008757#else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008758 if ((size_t)idx <= STRLEN(str))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008759 rettv->vval.v_number = idx;
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008760#endif
8761}
8762
8763/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008764 * "call(func, arglist)" function
8765 */
8766 static void
8767f_call(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008768 typval_T *argvars;
8769 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008770{
8771 char_u *func;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00008772 typval_T argv[MAX_FUNC_ARGS + 1];
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008773 int argc = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +00008774 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008775 int dummy;
Bram Moolenaar33570922005-01-25 22:26:29 +00008776 dict_T *selfdict = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008777
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008778 if (argvars[1].v_type != VAR_LIST)
8779 {
8780 EMSG(_(e_listreq));
8781 return;
8782 }
8783 if (argvars[1].vval.v_list == NULL)
8784 return;
8785
8786 if (argvars[0].v_type == VAR_FUNC)
8787 func = argvars[0].vval.v_string;
8788 else
8789 func = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008790 if (*func == NUL)
8791 return; /* type error or empty name */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008792
Bram Moolenaare9a41262005-01-15 22:18:47 +00008793 if (argvars[2].v_type != VAR_UNKNOWN)
8794 {
8795 if (argvars[2].v_type != VAR_DICT)
8796 {
8797 EMSG(_(e_dictreq));
8798 return;
8799 }
8800 selfdict = argvars[2].vval.v_dict;
8801 }
8802
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008803 for (item = argvars[1].vval.v_list->lv_first; item != NULL;
8804 item = item->li_next)
8805 {
8806 if (argc == MAX_FUNC_ARGS)
8807 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00008808 EMSG(_("E699: Too many arguments"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008809 break;
8810 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00008811 /* Make a copy of each argument. This is needed to be able to set
8812 * v_lock to VAR_FIXED in the copy without changing the original list.
8813 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008814 copy_tv(&item->li_tv, &argv[argc++]);
8815 }
8816
8817 if (item == NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008818 (void)call_func(func, (int)STRLEN(func), rettv, argc, argv,
Bram Moolenaare9a41262005-01-15 22:18:47 +00008819 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
8820 &dummy, TRUE, selfdict);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008821
8822 /* Free the arguments. */
8823 while (argc > 0)
8824 clear_tv(&argv[--argc]);
8825}
8826
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008827#ifdef FEAT_FLOAT
8828/*
8829 * "ceil({float})" function
8830 */
8831 static void
8832f_ceil(argvars, rettv)
8833 typval_T *argvars;
8834 typval_T *rettv;
8835{
8836 float_T f;
8837
8838 rettv->v_type = VAR_FLOAT;
8839 if (get_float_arg(argvars, &f) == OK)
8840 rettv->vval.v_float = ceil(f);
8841 else
8842 rettv->vval.v_float = 0.0;
8843}
8844#endif
8845
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008846/*
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00008847 * "changenr()" function
8848 */
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00008849 static void
8850f_changenr(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008851 typval_T *argvars UNUSED;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00008852 typval_T *rettv;
8853{
8854 rettv->vval.v_number = curbuf->b_u_seq_cur;
8855}
8856
8857/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008858 * "char2nr(string)" function
8859 */
8860 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008861f_char2nr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008862 typval_T *argvars;
8863 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008864{
8865#ifdef FEAT_MBYTE
8866 if (has_mbyte)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008867 rettv->vval.v_number = (*mb_ptr2char)(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008868 else
8869#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008870 rettv->vval.v_number = get_tv_string(&argvars[0])[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00008871}
8872
8873/*
8874 * "cindent(lnum)" function
8875 */
8876 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008877f_cindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008878 typval_T *argvars;
8879 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008880{
8881#ifdef FEAT_CINDENT
8882 pos_T pos;
8883 linenr_T lnum;
8884
8885 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008886 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008887 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
8888 {
8889 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008890 rettv->vval.v_number = get_c_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008891 curwin->w_cursor = pos;
8892 }
8893 else
8894#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008895 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008896}
8897
8898/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +00008899 * "clearmatches()" function
8900 */
Bram Moolenaar6ee10162007-07-26 20:58:42 +00008901 static void
8902f_clearmatches(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008903 typval_T *argvars UNUSED;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00008904 typval_T *rettv UNUSED;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00008905{
8906#ifdef FEAT_SEARCH_EXTRA
8907 clear_matches(curwin);
8908#endif
8909}
8910
8911/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008912 * "col(string)" function
8913 */
8914 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008915f_col(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008916 typval_T *argvars;
8917 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008918{
8919 colnr_T col = 0;
8920 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008921 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008922
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008923 fp = var2fpos(&argvars[0], FALSE, &fnum);
8924 if (fp != NULL && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008925 {
8926 if (fp->col == MAXCOL)
8927 {
8928 /* '> can be MAXCOL, get the length of the line then */
8929 if (fp->lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008930 col = (colnr_T)STRLEN(ml_get(fp->lnum)) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008931 else
8932 col = MAXCOL;
8933 }
8934 else
8935 {
8936 col = fp->col + 1;
8937#ifdef FEAT_VIRTUALEDIT
8938 /* col(".") when the cursor is on the NUL at the end of the line
8939 * because of "coladd" can be seen as an extra column. */
8940 if (virtual_active() && fp == &curwin->w_cursor)
8941 {
8942 char_u *p = ml_get_cursor();
8943
8944 if (curwin->w_cursor.coladd >= (colnr_T)chartabsize(p,
8945 curwin->w_virtcol - curwin->w_cursor.coladd))
8946 {
8947# ifdef FEAT_MBYTE
8948 int l;
8949
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008950 if (*p != NUL && p[(l = (*mb_ptr2len)(p))] == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008951 col += l;
8952# else
8953 if (*p != NUL && p[1] == NUL)
8954 ++col;
8955# endif
8956 }
8957 }
8958#endif
8959 }
8960 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008961 rettv->vval.v_number = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008962}
8963
Bram Moolenaar572cb562005-08-05 21:35:02 +00008964#if defined(FEAT_INS_EXPAND)
8965/*
Bram Moolenaarade00832006-03-10 21:46:58 +00008966 * "complete()" function
8967 */
Bram Moolenaarade00832006-03-10 21:46:58 +00008968 static void
8969f_complete(argvars, rettv)
8970 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00008971 typval_T *rettv UNUSED;
Bram Moolenaarade00832006-03-10 21:46:58 +00008972{
8973 int startcol;
8974
8975 if ((State & INSERT) == 0)
8976 {
8977 EMSG(_("E785: complete() can only be used in Insert mode"));
8978 return;
8979 }
Bram Moolenaarce6ef252006-07-12 19:49:41 +00008980
8981 /* Check for undo allowed here, because if something was already inserted
8982 * the line was already saved for undo and this check isn't done. */
8983 if (!undo_allowed())
8984 return;
8985
Bram Moolenaarade00832006-03-10 21:46:58 +00008986 if (argvars[1].v_type != VAR_LIST || argvars[1].vval.v_list == NULL)
8987 {
8988 EMSG(_(e_invarg));
8989 return;
8990 }
8991
8992 startcol = get_tv_number_chk(&argvars[0], NULL);
8993 if (startcol <= 0)
8994 return;
8995
8996 set_completion(startcol - 1, argvars[1].vval.v_list);
8997}
8998
8999/*
Bram Moolenaar572cb562005-08-05 21:35:02 +00009000 * "complete_add()" function
9001 */
Bram Moolenaar572cb562005-08-05 21:35:02 +00009002 static void
9003f_complete_add(argvars, rettv)
9004 typval_T *argvars;
9005 typval_T *rettv;
9006{
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00009007 rettv->vval.v_number = ins_compl_add_tv(&argvars[0], 0);
Bram Moolenaar572cb562005-08-05 21:35:02 +00009008}
9009
9010/*
9011 * "complete_check()" function
9012 */
Bram Moolenaar572cb562005-08-05 21:35:02 +00009013 static void
9014f_complete_check(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009015 typval_T *argvars UNUSED;
Bram Moolenaar572cb562005-08-05 21:35:02 +00009016 typval_T *rettv;
9017{
9018 int saved = RedrawingDisabled;
9019
9020 RedrawingDisabled = 0;
9021 ins_compl_check_keys(0);
9022 rettv->vval.v_number = compl_interrupted;
9023 RedrawingDisabled = saved;
9024}
9025#endif
9026
Bram Moolenaar071d4272004-06-13 20:20:40 +00009027/*
9028 * "confirm(message, buttons[, default [, type]])" function
9029 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009030 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009031f_confirm(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009032 typval_T *argvars UNUSED;
9033 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009034{
9035#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
9036 char_u *message;
9037 char_u *buttons = NULL;
9038 char_u buf[NUMBUFLEN];
9039 char_u buf2[NUMBUFLEN];
9040 int def = 1;
9041 int type = VIM_GENERIC;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009042 char_u *typestr;
9043 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009044
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009045 message = get_tv_string_chk(&argvars[0]);
9046 if (message == NULL)
9047 error = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009048 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009049 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009050 buttons = get_tv_string_buf_chk(&argvars[1], buf);
9051 if (buttons == NULL)
9052 error = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009053 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009054 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009055 def = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009056 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009057 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009058 typestr = get_tv_string_buf_chk(&argvars[3], buf2);
9059 if (typestr == NULL)
9060 error = TRUE;
9061 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00009062 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009063 switch (TOUPPER_ASC(*typestr))
9064 {
9065 case 'E': type = VIM_ERROR; break;
9066 case 'Q': type = VIM_QUESTION; break;
9067 case 'I': type = VIM_INFO; break;
9068 case 'W': type = VIM_WARNING; break;
9069 case 'G': type = VIM_GENERIC; break;
9070 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009071 }
9072 }
9073 }
9074 }
9075
9076 if (buttons == NULL || *buttons == NUL)
9077 buttons = (char_u *)_("&Ok");
9078
Bram Moolenaar798b30b2009-04-22 10:56:16 +00009079 if (!error)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009080 rettv->vval.v_number = do_dialog(type, NULL, message, buttons,
Bram Moolenaar071d4272004-06-13 20:20:40 +00009081 def, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009082#endif
9083}
9084
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009085/*
9086 * "copy()" function
9087 */
9088 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009089f_copy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009090 typval_T *argvars;
9091 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009092{
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009093 item_copy(&argvars[0], rettv, FALSE, 0);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009094}
Bram Moolenaar071d4272004-06-13 20:20:40 +00009095
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009096#ifdef FEAT_FLOAT
9097/*
9098 * "cos()" function
9099 */
9100 static void
9101f_cos(argvars, rettv)
9102 typval_T *argvars;
9103 typval_T *rettv;
9104{
9105 float_T f;
9106
9107 rettv->v_type = VAR_FLOAT;
9108 if (get_float_arg(argvars, &f) == OK)
9109 rettv->vval.v_float = cos(f);
9110 else
9111 rettv->vval.v_float = 0.0;
9112}
9113#endif
9114
Bram Moolenaar071d4272004-06-13 20:20:40 +00009115/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009116 * "count()" function
9117 */
9118 static void
9119f_count(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009120 typval_T *argvars;
9121 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009122{
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009123 long n = 0;
9124 int ic = FALSE;
9125
Bram Moolenaare9a41262005-01-15 22:18:47 +00009126 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009127 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009128 listitem_T *li;
9129 list_T *l;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009130 long idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009131
Bram Moolenaare9a41262005-01-15 22:18:47 +00009132 if ((l = argvars[0].vval.v_list) != NULL)
9133 {
9134 li = l->lv_first;
9135 if (argvars[2].v_type != VAR_UNKNOWN)
9136 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009137 int error = FALSE;
9138
9139 ic = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009140 if (argvars[3].v_type != VAR_UNKNOWN)
9141 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009142 idx = get_tv_number_chk(&argvars[3], &error);
9143 if (!error)
9144 {
9145 li = list_find(l, idx);
9146 if (li == NULL)
9147 EMSGN(_(e_listidx), idx);
9148 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009149 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009150 if (error)
9151 li = NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009152 }
9153
9154 for ( ; li != NULL; li = li->li_next)
9155 if (tv_equal(&li->li_tv, &argvars[1], ic))
9156 ++n;
9157 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009158 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009159 else if (argvars[0].v_type == VAR_DICT)
9160 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009161 int todo;
9162 dict_T *d;
9163 hashitem_T *hi;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009164
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009165 if ((d = argvars[0].vval.v_dict) != NULL)
9166 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009167 int error = FALSE;
9168
Bram Moolenaare9a41262005-01-15 22:18:47 +00009169 if (argvars[2].v_type != VAR_UNKNOWN)
9170 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009171 ic = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009172 if (argvars[3].v_type != VAR_UNKNOWN)
9173 EMSG(_(e_invarg));
9174 }
9175
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009176 todo = error ? 0 : (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00009177 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009178 {
9179 if (!HASHITEM_EMPTY(hi))
9180 {
9181 --todo;
9182 if (tv_equal(&HI2DI(hi)->di_tv, &argvars[1], ic))
9183 ++n;
9184 }
9185 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009186 }
9187 }
9188 else
9189 EMSG2(_(e_listdictarg), "count()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009190 rettv->vval.v_number = n;
9191}
9192
9193/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009194 * "cscope_connection([{num} , {dbpath} [, {prepend}]])" function
9195 *
9196 * Checks the existence of a cscope connection.
9197 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009198 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009199f_cscope_connection(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009200 typval_T *argvars UNUSED;
9201 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009202{
9203#ifdef FEAT_CSCOPE
9204 int num = 0;
9205 char_u *dbpath = NULL;
9206 char_u *prepend = NULL;
9207 char_u buf[NUMBUFLEN];
9208
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009209 if (argvars[0].v_type != VAR_UNKNOWN
9210 && argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009211 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009212 num = (int)get_tv_number(&argvars[0]);
9213 dbpath = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009214 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009215 prepend = get_tv_string_buf(&argvars[2], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009216 }
9217
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009218 rettv->vval.v_number = cs_connection(num, dbpath, prepend);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009219#endif
9220}
9221
9222/*
9223 * "cursor(lnum, col)" function
9224 *
Bram Moolenaar798b30b2009-04-22 10:56:16 +00009225 * Moves the cursor to the specified line and column.
9226 * Returns 0 when the position could be set, -1 otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009227 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009228 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009229f_cursor(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009230 typval_T *argvars;
9231 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009232{
9233 long line, col;
Bram Moolenaara5525202006-03-02 22:52:09 +00009234#ifdef FEAT_VIRTUALEDIT
9235 long coladd = 0;
9236#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009237
Bram Moolenaar798b30b2009-04-22 10:56:16 +00009238 rettv->vval.v_number = -1;
Bram Moolenaara5525202006-03-02 22:52:09 +00009239 if (argvars[1].v_type == VAR_UNKNOWN)
9240 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009241 pos_T pos;
Bram Moolenaara5525202006-03-02 22:52:09 +00009242
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009243 if (list2fpos(argvars, &pos, NULL) == FAIL)
Bram Moolenaara5525202006-03-02 22:52:09 +00009244 return;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009245 line = pos.lnum;
9246 col = pos.col;
Bram Moolenaara5525202006-03-02 22:52:09 +00009247#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009248 coladd = pos.coladd;
Bram Moolenaara5525202006-03-02 22:52:09 +00009249#endif
9250 }
9251 else
9252 {
9253 line = get_tv_lnum(argvars);
9254 col = get_tv_number_chk(&argvars[1], NULL);
9255#ifdef FEAT_VIRTUALEDIT
9256 if (argvars[2].v_type != VAR_UNKNOWN)
9257 coladd = get_tv_number_chk(&argvars[2], NULL);
9258#endif
9259 }
9260 if (line < 0 || col < 0
9261#ifdef FEAT_VIRTUALEDIT
9262 || coladd < 0
9263#endif
9264 )
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009265 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009266 if (line > 0)
9267 curwin->w_cursor.lnum = line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009268 if (col > 0)
9269 curwin->w_cursor.col = col - 1;
9270#ifdef FEAT_VIRTUALEDIT
Bram Moolenaara5525202006-03-02 22:52:09 +00009271 curwin->w_cursor.coladd = coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009272#endif
9273
9274 /* Make sure the cursor is in a valid position. */
9275 check_cursor();
9276#ifdef FEAT_MBYTE
9277 /* Correct cursor for multi-byte character. */
9278 if (has_mbyte)
9279 mb_adjust_cursor();
9280#endif
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00009281
9282 curwin->w_set_curswant = TRUE;
Bram Moolenaar798b30b2009-04-22 10:56:16 +00009283 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009284}
9285
9286/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009287 * "deepcopy()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +00009288 */
9289 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009290f_deepcopy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009291 typval_T *argvars;
9292 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009293{
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009294 int noref = 0;
9295
9296 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009297 noref = get_tv_number_chk(&argvars[1], NULL);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009298 if (noref < 0 || noref > 1)
9299 EMSG(_(e_invarg));
9300 else
Bram Moolenaar2c2398c2009-06-03 11:22:45 +00009301 {
9302 current_copyID += COPYID_INC;
9303 item_copy(&argvars[0], rettv, TRUE, noref == 0 ? current_copyID : 0);
9304 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009305}
9306
9307/*
9308 * "delete()" function
9309 */
9310 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009311f_delete(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009312 typval_T *argvars;
9313 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009314{
9315 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009316 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009317 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009318 rettv->vval.v_number = mch_remove(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009319}
9320
9321/*
9322 * "did_filetype()" function
9323 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009324 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009325f_did_filetype(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009326 typval_T *argvars UNUSED;
9327 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009328{
9329#ifdef FEAT_AUTOCMD
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009330 rettv->vval.v_number = did_filetype;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009331#endif
9332}
9333
9334/*
Bram Moolenaar47136d72004-10-12 20:02:24 +00009335 * "diff_filler()" function
9336 */
Bram Moolenaar47136d72004-10-12 20:02:24 +00009337 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009338f_diff_filler(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009339 typval_T *argvars UNUSED;
9340 typval_T *rettv UNUSED;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009341{
9342#ifdef FEAT_DIFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009343 rettv->vval.v_number = diff_check_fill(curwin, get_tv_lnum(argvars));
Bram Moolenaar47136d72004-10-12 20:02:24 +00009344#endif
9345}
9346
9347/*
9348 * "diff_hlID()" function
9349 */
Bram Moolenaar47136d72004-10-12 20:02:24 +00009350 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009351f_diff_hlID(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009352 typval_T *argvars UNUSED;
9353 typval_T *rettv UNUSED;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009354{
9355#ifdef FEAT_DIFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009356 linenr_T lnum = get_tv_lnum(argvars);
Bram Moolenaar47136d72004-10-12 20:02:24 +00009357 static linenr_T prev_lnum = 0;
9358 static int changedtick = 0;
9359 static int fnum = 0;
9360 static int change_start = 0;
9361 static int change_end = 0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00009362 static hlf_T hlID = (hlf_T)0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009363 int filler_lines;
9364 int col;
9365
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009366 if (lnum < 0) /* ignore type error in {lnum} arg */
9367 lnum = 0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009368 if (lnum != prev_lnum
9369 || changedtick != curbuf->b_changedtick
9370 || fnum != curbuf->b_fnum)
9371 {
9372 /* New line, buffer, change: need to get the values. */
9373 filler_lines = diff_check(curwin, lnum);
9374 if (filler_lines < 0)
9375 {
9376 if (filler_lines == -1)
9377 {
9378 change_start = MAXCOL;
9379 change_end = -1;
9380 if (diff_find_change(curwin, lnum, &change_start, &change_end))
9381 hlID = HLF_ADD; /* added line */
9382 else
9383 hlID = HLF_CHD; /* changed line */
9384 }
9385 else
9386 hlID = HLF_ADD; /* added line */
9387 }
9388 else
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009389 hlID = (hlf_T)0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009390 prev_lnum = lnum;
9391 changedtick = curbuf->b_changedtick;
9392 fnum = curbuf->b_fnum;
9393 }
9394
9395 if (hlID == HLF_CHD || hlID == HLF_TXD)
9396 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009397 col = get_tv_number(&argvars[1]) - 1; /* ignore type error in {col} */
Bram Moolenaar47136d72004-10-12 20:02:24 +00009398 if (col >= change_start && col <= change_end)
9399 hlID = HLF_TXD; /* changed text */
9400 else
9401 hlID = HLF_CHD; /* changed line */
9402 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009403 rettv->vval.v_number = hlID == (hlf_T)0 ? 0 : (int)hlID;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009404#endif
9405}
9406
9407/*
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009408 * "empty({expr})" function
9409 */
9410 static void
9411f_empty(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009412 typval_T *argvars;
9413 typval_T *rettv;
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009414{
9415 int n;
9416
9417 switch (argvars[0].v_type)
9418 {
9419 case VAR_STRING:
9420 case VAR_FUNC:
9421 n = argvars[0].vval.v_string == NULL
9422 || *argvars[0].vval.v_string == NUL;
9423 break;
9424 case VAR_NUMBER:
9425 n = argvars[0].vval.v_number == 0;
9426 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009427#ifdef FEAT_FLOAT
9428 case VAR_FLOAT:
9429 n = argvars[0].vval.v_float == 0.0;
9430 break;
9431#endif
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009432 case VAR_LIST:
9433 n = argvars[0].vval.v_list == NULL
9434 || argvars[0].vval.v_list->lv_first == NULL;
9435 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009436 case VAR_DICT:
9437 n = argvars[0].vval.v_dict == NULL
Bram Moolenaar33570922005-01-25 22:26:29 +00009438 || argvars[0].vval.v_dict->dv_hashtab.ht_used == 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009439 break;
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009440 default:
9441 EMSG2(_(e_intern2), "f_empty()");
9442 n = 0;
9443 }
9444
9445 rettv->vval.v_number = n;
9446}
9447
9448/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009449 * "escape({string}, {chars})" function
9450 */
9451 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009452f_escape(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009453 typval_T *argvars;
9454 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009455{
9456 char_u buf[NUMBUFLEN];
9457
Bram Moolenaar758711c2005-02-02 23:11:38 +00009458 rettv->vval.v_string = vim_strsave_escaped(get_tv_string(&argvars[0]),
9459 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009460 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009461}
9462
9463/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009464 * "eval()" function
9465 */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009466 static void
9467f_eval(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009468 typval_T *argvars;
9469 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009470{
9471 char_u *s;
9472
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009473 s = get_tv_string_chk(&argvars[0]);
9474 if (s != NULL)
9475 s = skipwhite(s);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009476
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009477 if (s == NULL || eval1(&s, rettv, TRUE) == FAIL)
9478 {
9479 rettv->v_type = VAR_NUMBER;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009480 rettv->vval.v_number = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009481 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009482 else if (*s != NUL)
9483 EMSG(_(e_trailing));
9484}
9485
9486/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009487 * "eventhandler()" function
9488 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009489 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009490f_eventhandler(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009491 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00009492 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009493{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009494 rettv->vval.v_number = vgetc_busy;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009495}
9496
9497/*
9498 * "executable()" function
9499 */
9500 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009501f_executable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009502 typval_T *argvars;
9503 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009504{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009505 rettv->vval.v_number = mch_can_exe(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009506}
9507
9508/*
9509 * "exists()" function
9510 */
9511 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009512f_exists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009513 typval_T *argvars;
9514 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009515{
9516 char_u *p;
9517 char_u *name;
9518 int n = FALSE;
9519 int len = 0;
9520
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009521 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009522 if (*p == '$') /* environment variable */
9523 {
9524 /* first try "normal" environment variables (fast) */
9525 if (mch_getenv(p + 1) != NULL)
9526 n = TRUE;
9527 else
9528 {
9529 /* try expanding things like $VIM and ${HOME} */
9530 p = expand_env_save(p);
9531 if (p != NULL && *p != '$')
9532 n = TRUE;
9533 vim_free(p);
9534 }
9535 }
9536 else if (*p == '&' || *p == '+') /* option */
Bram Moolenaar79783442006-05-05 21:18:03 +00009537 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009538 n = (get_option_tv(&p, NULL, TRUE) == OK);
Bram Moolenaar79783442006-05-05 21:18:03 +00009539 if (*skipwhite(p) != NUL)
9540 n = FALSE; /* trailing garbage */
9541 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009542 else if (*p == '*') /* internal or user defined function */
9543 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009544 n = function_exists(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009545 }
9546 else if (*p == ':')
9547 {
9548 n = cmd_exists(p + 1);
9549 }
9550 else if (*p == '#')
9551 {
9552#ifdef FEAT_AUTOCMD
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00009553 if (p[1] == '#')
9554 n = autocmd_supported(p + 2);
9555 else
9556 n = au_exists(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009557#endif
9558 }
9559 else /* internal variable */
9560 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009561 char_u *tofree;
9562 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009563
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009564 /* get_name_len() takes care of expanding curly braces */
9565 name = p;
9566 len = get_name_len(&p, &tofree, TRUE, FALSE);
9567 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009568 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009569 if (tofree != NULL)
9570 name = tofree;
9571 n = (get_var_tv(name, len, &tv, FALSE) == OK);
9572 if (n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009573 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009574 /* handle d.key, l[idx], f(expr) */
9575 n = (handle_subscript(&p, &tv, TRUE, FALSE) == OK);
9576 if (n)
9577 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009578 }
9579 }
Bram Moolenaar79783442006-05-05 21:18:03 +00009580 if (*p != NUL)
9581 n = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009582
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009583 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009584 }
9585
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009586 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009587}
9588
9589/*
9590 * "expand()" function
9591 */
9592 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009593f_expand(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009594 typval_T *argvars;
9595 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009596{
9597 char_u *s;
9598 int len;
9599 char_u *errormsg;
9600 int flags = WILD_SILENT|WILD_USE_NL|WILD_LIST_NOTFOUND;
9601 expand_T xpc;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009602 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009603
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009604 rettv->v_type = VAR_STRING;
9605 s = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009606 if (*s == '%' || *s == '#' || *s == '<')
9607 {
9608 ++emsg_off;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009609 rettv->vval.v_string = eval_vars(s, s, &len, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009610 --emsg_off;
9611 }
9612 else
9613 {
9614 /* When the optional second argument is non-zero, don't remove matches
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00009615 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009616 if (argvars[1].v_type != VAR_UNKNOWN
9617 && get_tv_number_chk(&argvars[1], &error))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009618 flags |= WILD_KEEP_ALL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009619 if (!error)
9620 {
9621 ExpandInit(&xpc);
9622 xpc.xp_context = EXPAND_FILES;
9623 rettv->vval.v_string = ExpandOne(&xpc, s, NULL, flags, WILD_ALL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009624 }
9625 else
9626 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009627 }
9628}
9629
9630/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009631 * "extend(list, list [, idx])" function
Bram Moolenaare9a41262005-01-15 22:18:47 +00009632 * "extend(dict, dict [, action])" function
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009633 */
9634 static void
9635f_extend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009636 typval_T *argvars;
9637 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009638{
Bram Moolenaare9a41262005-01-15 22:18:47 +00009639 if (argvars[0].v_type == VAR_LIST && argvars[1].v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009640 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009641 list_T *l1, *l2;
9642 listitem_T *item;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009643 long before;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009644 int error = FALSE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009645
Bram Moolenaare9a41262005-01-15 22:18:47 +00009646 l1 = argvars[0].vval.v_list;
9647 l2 = argvars[1].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009648 if (l1 != NULL && !tv_check_lock(l1->lv_lock, (char_u *)"extend()")
9649 && l2 != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009650 {
9651 if (argvars[2].v_type != VAR_UNKNOWN)
9652 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009653 before = get_tv_number_chk(&argvars[2], &error);
9654 if (error)
9655 return; /* type error; errmsg already given */
9656
Bram Moolenaar758711c2005-02-02 23:11:38 +00009657 if (before == l1->lv_len)
9658 item = NULL;
9659 else
Bram Moolenaare9a41262005-01-15 22:18:47 +00009660 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00009661 item = list_find(l1, before);
9662 if (item == NULL)
9663 {
9664 EMSGN(_(e_listidx), before);
9665 return;
9666 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009667 }
9668 }
9669 else
9670 item = NULL;
9671 list_extend(l1, l2, item);
9672
Bram Moolenaare9a41262005-01-15 22:18:47 +00009673 copy_tv(&argvars[0], rettv);
9674 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009675 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009676 else if (argvars[0].v_type == VAR_DICT && argvars[1].v_type == VAR_DICT)
9677 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009678 dict_T *d1, *d2;
9679 dictitem_T *di1;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009680 char_u *action;
9681 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +00009682 hashitem_T *hi2;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009683 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009684
9685 d1 = argvars[0].vval.v_dict;
9686 d2 = argvars[1].vval.v_dict;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009687 if (d1 != NULL && !tv_check_lock(d1->dv_lock, (char_u *)"extend()")
9688 && d2 != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009689 {
9690 /* Check the third argument. */
9691 if (argvars[2].v_type != VAR_UNKNOWN)
9692 {
9693 static char *(av[]) = {"keep", "force", "error"};
9694
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009695 action = get_tv_string_chk(&argvars[2]);
9696 if (action == NULL)
9697 return; /* type error; errmsg already given */
Bram Moolenaare9a41262005-01-15 22:18:47 +00009698 for (i = 0; i < 3; ++i)
9699 if (STRCMP(action, av[i]) == 0)
9700 break;
9701 if (i == 3)
9702 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009703 EMSG2(_(e_invarg2), action);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009704 return;
9705 }
9706 }
9707 else
9708 action = (char_u *)"force";
9709
9710 /* Go over all entries in the second dict and add them to the
9711 * first dict. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009712 todo = (int)d2->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00009713 for (hi2 = d2->dv_hashtab.ht_array; todo > 0; ++hi2)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009714 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009715 if (!HASHITEM_EMPTY(hi2))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009716 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009717 --todo;
9718 di1 = dict_find(d1, hi2->hi_key, -1);
9719 if (di1 == NULL)
9720 {
9721 di1 = dictitem_copy(HI2DI(hi2));
9722 if (di1 != NULL && dict_add(d1, di1) == FAIL)
9723 dictitem_free(di1);
9724 }
9725 else if (*action == 'e')
9726 {
9727 EMSG2(_("E737: Key already exists: %s"), hi2->hi_key);
9728 break;
9729 }
9730 else if (*action == 'f')
9731 {
9732 clear_tv(&di1->di_tv);
9733 copy_tv(&HI2DI(hi2)->di_tv, &di1->di_tv);
9734 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009735 }
9736 }
9737
Bram Moolenaare9a41262005-01-15 22:18:47 +00009738 copy_tv(&argvars[0], rettv);
9739 }
9740 }
9741 else
9742 EMSG2(_(e_listdictarg), "extend()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009743}
9744
9745/*
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009746 * "feedkeys()" function
9747 */
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009748 static void
9749f_feedkeys(argvars, rettv)
9750 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009751 typval_T *rettv UNUSED;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009752{
9753 int remap = TRUE;
9754 char_u *keys, *flags;
9755 char_u nbuf[NUMBUFLEN];
9756 int typed = FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009757 char_u *keys_esc;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009758
Bram Moolenaar3d43a662007-04-27 20:15:55 +00009759 /* This is not allowed in the sandbox. If the commands would still be
9760 * executed in the sandbox it would be OK, but it probably happens later,
9761 * when "sandbox" is no longer set. */
9762 if (check_secure())
9763 return;
9764
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009765 keys = get_tv_string(&argvars[0]);
9766 if (*keys != NUL)
9767 {
9768 if (argvars[1].v_type != VAR_UNKNOWN)
9769 {
9770 flags = get_tv_string_buf(&argvars[1], nbuf);
9771 for ( ; *flags != NUL; ++flags)
9772 {
9773 switch (*flags)
9774 {
9775 case 'n': remap = FALSE; break;
9776 case 'm': remap = TRUE; break;
9777 case 't': typed = TRUE; break;
9778 }
9779 }
9780 }
9781
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009782 /* Need to escape K_SPECIAL and CSI before putting the string in the
9783 * typeahead buffer. */
9784 keys_esc = vim_strsave_escape_csi(keys);
9785 if (keys_esc != NULL)
9786 {
9787 ins_typebuf(keys_esc, (remap ? REMAP_YES : REMAP_NONE),
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009788 typebuf.tb_len, !typed, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009789 vim_free(keys_esc);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00009790 if (vgetc_busy)
9791 typebuf_was_filled = TRUE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009792 }
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009793 }
9794}
9795
9796/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009797 * "filereadable()" function
9798 */
9799 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009800f_filereadable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009801 typval_T *argvars;
9802 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009803{
Bram Moolenaarc236c162008-07-13 17:41:49 +00009804 int fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009805 char_u *p;
9806 int n;
9807
Bram Moolenaarc236c162008-07-13 17:41:49 +00009808#ifndef O_NONBLOCK
9809# define O_NONBLOCK 0
9810#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009811 p = get_tv_string(&argvars[0]);
Bram Moolenaarc236c162008-07-13 17:41:49 +00009812 if (*p && !mch_isdir(p) && (fd = mch_open((char *)p,
9813 O_RDONLY | O_NONBLOCK, 0)) >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009814 {
9815 n = TRUE;
Bram Moolenaarc236c162008-07-13 17:41:49 +00009816 close(fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009817 }
9818 else
9819 n = FALSE;
9820
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009821 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009822}
9823
9824/*
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00009825 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
Bram Moolenaar071d4272004-06-13 20:20:40 +00009826 * rights to write into.
9827 */
9828 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009829f_filewritable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009830 typval_T *argvars;
9831 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009832{
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00009833 rettv->vval.v_number = filewritable(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009834}
9835
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009836static void findfilendir __ARGS((typval_T *argvars, typval_T *rettv, int find_what));
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009837
9838 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009839findfilendir(argvars, rettv, find_what)
Bram Moolenaar33570922005-01-25 22:26:29 +00009840 typval_T *argvars;
9841 typval_T *rettv;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009842 int find_what;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009843{
9844#ifdef FEAT_SEARCHPATH
9845 char_u *fname;
9846 char_u *fresult = NULL;
9847 char_u *path = *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path;
9848 char_u *p;
9849 char_u pathbuf[NUMBUFLEN];
9850 int count = 1;
9851 int first = TRUE;
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009852 int error = FALSE;
9853#endif
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009854
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009855 rettv->vval.v_string = NULL;
9856 rettv->v_type = VAR_STRING;
9857
9858#ifdef FEAT_SEARCHPATH
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009859 fname = get_tv_string(&argvars[0]);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009860
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009861 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009862 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009863 p = get_tv_string_buf_chk(&argvars[1], pathbuf);
9864 if (p == NULL)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009865 error = TRUE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009866 else
9867 {
9868 if (*p != NUL)
9869 path = p;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009870
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009871 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009872 count = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009873 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009874 }
9875
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009876 if (count < 0 && rettv_list_alloc(rettv) == FAIL)
9877 error = TRUE;
9878
9879 if (*fname != NUL && !error)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009880 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009881 do
9882 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009883 if (rettv->v_type == VAR_STRING)
9884 vim_free(fresult);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009885 fresult = find_file_in_path_option(first ? fname : NULL,
9886 first ? (int)STRLEN(fname) : 0,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009887 0, first, path,
9888 find_what,
9889 curbuf->b_ffname,
9890 find_what == FINDFILE_DIR
9891 ? (char_u *)"" : curbuf->b_p_sua);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009892 first = FALSE;
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009893
9894 if (fresult != NULL && rettv->v_type == VAR_LIST)
9895 list_append_string(rettv->vval.v_list, fresult, -1);
9896
9897 } while ((rettv->v_type == VAR_LIST || --count > 0) && fresult != NULL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009898 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009899
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009900 if (rettv->v_type == VAR_STRING)
9901 rettv->vval.v_string = fresult;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009902#endif
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009903}
9904
Bram Moolenaar33570922005-01-25 22:26:29 +00009905static void filter_map __ARGS((typval_T *argvars, typval_T *rettv, int map));
9906static int filter_map_one __ARGS((typval_T *tv, char_u *expr, int map, int *remp));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009907
9908/*
9909 * Implementation of map() and filter().
9910 */
9911 static void
9912filter_map(argvars, rettv, map)
Bram Moolenaar33570922005-01-25 22:26:29 +00009913 typval_T *argvars;
9914 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009915 int map;
9916{
9917 char_u buf[NUMBUFLEN];
Bram Moolenaare9a41262005-01-15 22:18:47 +00009918 char_u *expr;
Bram Moolenaar33570922005-01-25 22:26:29 +00009919 listitem_T *li, *nli;
9920 list_T *l = NULL;
9921 dictitem_T *di;
9922 hashtab_T *ht;
9923 hashitem_T *hi;
9924 dict_T *d = NULL;
9925 typval_T save_val;
9926 typval_T save_key;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009927 int rem;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009928 int todo;
Bram Moolenaar89d40322006-08-29 15:30:07 +00009929 char_u *ermsg = map ? (char_u *)"map()" : (char_u *)"filter()";
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009930 int save_did_emsg;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009931
Bram Moolenaare9a41262005-01-15 22:18:47 +00009932 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009933 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009934 if ((l = argvars[0].vval.v_list) == NULL
Bram Moolenaar89d40322006-08-29 15:30:07 +00009935 || (map && tv_check_lock(l->lv_lock, ermsg)))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009936 return;
9937 }
9938 else if (argvars[0].v_type == VAR_DICT)
9939 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009940 if ((d = argvars[0].vval.v_dict) == NULL
Bram Moolenaar89d40322006-08-29 15:30:07 +00009941 || (map && tv_check_lock(d->dv_lock, ermsg)))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009942 return;
9943 }
9944 else
9945 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00009946 EMSG2(_(e_listdictarg), ermsg);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009947 return;
9948 }
9949
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009950 expr = get_tv_string_buf_chk(&argvars[1], buf);
9951 /* On type errors, the preceding call has already displayed an error
9952 * message. Avoid a misleading error message for an empty string that
9953 * was not passed as argument. */
9954 if (expr != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009955 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009956 prepare_vimvar(VV_VAL, &save_val);
9957 expr = skipwhite(expr);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009958
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009959 /* We reset "did_emsg" to be able to detect whether an error
9960 * occurred during evaluation of the expression. */
9961 save_did_emsg = did_emsg;
9962 did_emsg = FALSE;
Bram Moolenaar280f1262006-01-30 00:14:18 +00009963
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009964 if (argvars[0].v_type == VAR_DICT)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009965 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009966 prepare_vimvar(VV_KEY, &save_key);
9967 vimvars[VV_KEY].vv_type = VAR_STRING;
9968
9969 ht = &d->dv_hashtab;
9970 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009971 todo = (int)ht->ht_used;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009972 for (hi = ht->ht_array; todo > 0; ++hi)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009973 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009974 if (!HASHITEM_EMPTY(hi))
9975 {
9976 --todo;
9977 di = HI2DI(hi);
Bram Moolenaar89d40322006-08-29 15:30:07 +00009978 if (tv_check_lock(di->di_tv.v_lock, ermsg))
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009979 break;
9980 vimvars[VV_KEY].vv_str = vim_strsave(di->di_key);
Bram Moolenaar280f1262006-01-30 00:14:18 +00009981 if (filter_map_one(&di->di_tv, expr, map, &rem) == FAIL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009982 || did_emsg)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009983 break;
9984 if (!map && rem)
9985 dictitem_remove(d, di);
9986 clear_tv(&vimvars[VV_KEY].vv_tv);
9987 }
9988 }
9989 hash_unlock(ht);
9990
9991 restore_vimvar(VV_KEY, &save_key);
9992 }
9993 else
9994 {
9995 for (li = l->lv_first; li != NULL; li = nli)
9996 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00009997 if (tv_check_lock(li->li_tv.v_lock, ermsg))
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009998 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009999 nli = li->li_next;
Bram Moolenaar280f1262006-01-30 00:14:18 +000010000 if (filter_map_one(&li->li_tv, expr, map, &rem) == FAIL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000010001 || did_emsg)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010002 break;
10003 if (!map && rem)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010004 listitem_remove(l, li);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010005 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010006 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010007
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010008 restore_vimvar(VV_VAL, &save_val);
Bram Moolenaar280f1262006-01-30 00:14:18 +000010009
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000010010 did_emsg |= save_did_emsg;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010011 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000010012
10013 copy_tv(&argvars[0], rettv);
10014}
10015
10016 static int
10017filter_map_one(tv, expr, map, remp)
Bram Moolenaar33570922005-01-25 22:26:29 +000010018 typval_T *tv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010019 char_u *expr;
10020 int map;
10021 int *remp;
10022{
Bram Moolenaar33570922005-01-25 22:26:29 +000010023 typval_T rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010024 char_u *s;
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010025 int retval = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010026
Bram Moolenaar33570922005-01-25 22:26:29 +000010027 copy_tv(tv, &vimvars[VV_VAL].vv_tv);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010028 s = expr;
10029 if (eval1(&s, &rettv, TRUE) == FAIL)
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010030 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010031 if (*s != NUL) /* check for trailing chars after expr */
10032 {
10033 EMSG2(_(e_invexpr2), s);
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010034 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010035 }
10036 if (map)
10037 {
10038 /* map(): replace the list item value */
10039 clear_tv(tv);
Bram Moolenaar4463f292005-09-25 22:20:24 +000010040 rettv.v_lock = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010041 *tv = rettv;
10042 }
10043 else
10044 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010045 int error = FALSE;
10046
Bram Moolenaare9a41262005-01-15 22:18:47 +000010047 /* filter(): when expr is zero remove the item */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010048 *remp = (get_tv_number_chk(&rettv, &error) == 0);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010049 clear_tv(&rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010050 /* On type error, nothing has been removed; return FAIL to stop the
10051 * loop. The error message was given by get_tv_number_chk(). */
10052 if (error)
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010053 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010054 }
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010055 retval = OK;
10056theend:
Bram Moolenaar33570922005-01-25 22:26:29 +000010057 clear_tv(&vimvars[VV_VAL].vv_tv);
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010058 return retval;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010059}
10060
10061/*
10062 * "filter()" function
10063 */
10064 static void
10065f_filter(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010066 typval_T *argvars;
10067 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010068{
10069 filter_map(argvars, rettv, FALSE);
10070}
10071
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000010072/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010073 * "finddir({fname}[, {path}[, {count}]])" function
10074 */
10075 static void
10076f_finddir(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010077 typval_T *argvars;
10078 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010079{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +000010080 findfilendir(argvars, rettv, FINDFILE_DIR);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010081}
10082
10083/*
10084 * "findfile({fname}[, {path}[, {count}]])" function
10085 */
10086 static void
10087f_findfile(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_FILE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010092}
10093
Bram Moolenaar8c8de832008-06-24 22:58:06 +000010094#ifdef FEAT_FLOAT
10095/*
10096 * "float2nr({float})" function
10097 */
10098 static void
10099f_float2nr(argvars, rettv)
10100 typval_T *argvars;
10101 typval_T *rettv;
10102{
10103 float_T f;
10104
10105 if (get_float_arg(argvars, &f) == OK)
10106 {
10107 if (f < -0x7fffffff)
10108 rettv->vval.v_number = -0x7fffffff;
10109 else if (f > 0x7fffffff)
10110 rettv->vval.v_number = 0x7fffffff;
10111 else
10112 rettv->vval.v_number = (varnumber_T)f;
10113 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000010114}
10115
10116/*
10117 * "floor({float})" function
10118 */
10119 static void
10120f_floor(argvars, rettv)
10121 typval_T *argvars;
10122 typval_T *rettv;
10123{
10124 float_T f;
10125
10126 rettv->v_type = VAR_FLOAT;
10127 if (get_float_arg(argvars, &f) == OK)
10128 rettv->vval.v_float = floor(f);
10129 else
10130 rettv->vval.v_float = 0.0;
10131}
10132#endif
10133
Bram Moolenaar0d660222005-01-07 21:51:51 +000010134/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +000010135 * "fnameescape({string})" function
10136 */
10137 static void
10138f_fnameescape(argvars, rettv)
10139 typval_T *argvars;
10140 typval_T *rettv;
10141{
10142 rettv->vval.v_string = vim_strsave_fnameescape(
10143 get_tv_string(&argvars[0]), FALSE);
10144 rettv->v_type = VAR_STRING;
10145}
10146
10147/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010148 * "fnamemodify({fname}, {mods})" function
10149 */
10150 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010151f_fnamemodify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010152 typval_T *argvars;
10153 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010154{
10155 char_u *fname;
10156 char_u *mods;
10157 int usedlen = 0;
10158 int len;
10159 char_u *fbuf = NULL;
10160 char_u buf[NUMBUFLEN];
10161
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010162 fname = get_tv_string_chk(&argvars[0]);
10163 mods = get_tv_string_buf_chk(&argvars[1], buf);
10164 if (fname == NULL || mods == NULL)
10165 fname = NULL;
10166 else
10167 {
10168 len = (int)STRLEN(fname);
10169 (void)modify_fname(mods, &usedlen, &fname, &fbuf, &len);
10170 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010171
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010172 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010173 if (fname == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010174 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010175 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010176 rettv->vval.v_string = vim_strnsave(fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010177 vim_free(fbuf);
10178}
10179
Bram Moolenaar33570922005-01-25 22:26:29 +000010180static void foldclosed_both __ARGS((typval_T *argvars, typval_T *rettv, int end));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010181
10182/*
10183 * "foldclosed()" function
10184 */
10185 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010186foldclosed_both(argvars, rettv, end)
Bram Moolenaar33570922005-01-25 22:26:29 +000010187 typval_T *argvars;
10188 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010189 int end;
10190{
10191#ifdef FEAT_FOLDING
10192 linenr_T lnum;
10193 linenr_T first, last;
10194
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010195 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010196 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
10197 {
10198 if (hasFoldingWin(curwin, lnum, &first, &last, FALSE, NULL))
10199 {
10200 if (end)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010201 rettv->vval.v_number = (varnumber_T)last;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010202 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010203 rettv->vval.v_number = (varnumber_T)first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010204 return;
10205 }
10206 }
10207#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010208 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010209}
10210
10211/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010212 * "foldclosed()" function
10213 */
10214 static void
10215f_foldclosed(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010216 typval_T *argvars;
10217 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010218{
10219 foldclosed_both(argvars, rettv, FALSE);
10220}
10221
10222/*
10223 * "foldclosedend()" function
10224 */
10225 static void
10226f_foldclosedend(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, TRUE);
10231}
10232
10233/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010234 * "foldlevel()" function
10235 */
10236 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010237f_foldlevel(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010238 typval_T *argvars;
10239 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010240{
10241#ifdef FEAT_FOLDING
10242 linenr_T lnum;
10243
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010244 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010245 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010246 rettv->vval.v_number = foldLevel(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010247#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010248}
10249
10250/*
10251 * "foldtext()" function
10252 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010253 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010254f_foldtext(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010255 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010256 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010257{
10258#ifdef FEAT_FOLDING
10259 linenr_T lnum;
10260 char_u *s;
10261 char_u *r;
10262 int len;
10263 char *txt;
10264#endif
10265
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010266 rettv->v_type = VAR_STRING;
10267 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010268#ifdef FEAT_FOLDING
Bram Moolenaare9a41262005-01-15 22:18:47 +000010269 if ((linenr_T)vimvars[VV_FOLDSTART].vv_nr > 0
10270 && (linenr_T)vimvars[VV_FOLDEND].vv_nr
10271 <= curbuf->b_ml.ml_line_count
10272 && vimvars[VV_FOLDDASHES].vv_str != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010273 {
10274 /* Find first non-empty line in the fold. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000010275 lnum = (linenr_T)vimvars[VV_FOLDSTART].vv_nr;
10276 while (lnum < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010277 {
10278 if (!linewhite(lnum))
10279 break;
10280 ++lnum;
10281 }
10282
10283 /* Find interesting text in this line. */
10284 s = skipwhite(ml_get(lnum));
10285 /* skip C comment-start */
10286 if (s[0] == '/' && (s[1] == '*' || s[1] == '/'))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010287 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000010288 s = skipwhite(s + 2);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010289 if (*skipwhite(s) == NUL
Bram Moolenaare9a41262005-01-15 22:18:47 +000010290 && lnum + 1 < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010291 {
10292 s = skipwhite(ml_get(lnum + 1));
10293 if (*s == '*')
10294 s = skipwhite(s + 1);
10295 }
10296 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010297 txt = _("+-%s%3ld lines: ");
10298 r = alloc((unsigned)(STRLEN(txt)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010299 + STRLEN(vimvars[VV_FOLDDASHES].vv_str) /* for %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010300 + 20 /* for %3ld */
10301 + STRLEN(s))); /* concatenated */
10302 if (r != NULL)
10303 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000010304 sprintf((char *)r, txt, vimvars[VV_FOLDDASHES].vv_str,
10305 (long)((linenr_T)vimvars[VV_FOLDEND].vv_nr
10306 - (linenr_T)vimvars[VV_FOLDSTART].vv_nr + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010307 len = (int)STRLEN(r);
10308 STRCAT(r, s);
10309 /* remove 'foldmarker' and 'commentstring' */
10310 foldtext_cleanup(r + len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010311 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010312 }
10313 }
10314#endif
10315}
10316
10317/*
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010318 * "foldtextresult(lnum)" function
10319 */
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010320 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010321f_foldtextresult(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010322 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010323 typval_T *rettv;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010324{
10325#ifdef FEAT_FOLDING
10326 linenr_T lnum;
10327 char_u *text;
10328 char_u buf[51];
10329 foldinfo_T foldinfo;
10330 int fold_count;
10331#endif
10332
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010333 rettv->v_type = VAR_STRING;
10334 rettv->vval.v_string = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010335#ifdef FEAT_FOLDING
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010336 lnum = get_tv_lnum(argvars);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010337 /* treat illegal types and illegal string values for {lnum} the same */
10338 if (lnum < 0)
10339 lnum = 0;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010340 fold_count = foldedCount(curwin, lnum, &foldinfo);
10341 if (fold_count > 0)
10342 {
10343 text = get_foldtext(curwin, lnum, lnum + fold_count - 1,
10344 &foldinfo, buf);
10345 if (text == buf)
10346 text = vim_strsave(text);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010347 rettv->vval.v_string = text;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010348 }
10349#endif
10350}
10351
10352/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010353 * "foreground()" function
10354 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010355 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010356f_foreground(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010357 typval_T *argvars UNUSED;
10358 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010359{
Bram Moolenaar071d4272004-06-13 20:20:40 +000010360#ifdef FEAT_GUI
10361 if (gui.in_use)
10362 gui_mch_set_foreground();
10363#else
10364# ifdef WIN32
10365 win32_set_foreground();
10366# endif
10367#endif
10368}
10369
10370/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010371 * "function()" function
10372 */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010373 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010374f_function(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010375 typval_T *argvars;
10376 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010377{
10378 char_u *s;
10379
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010380 s = get_tv_string(&argvars[0]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010381 if (s == NULL || *s == NUL || VIM_ISDIGIT(*s))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010382 EMSG2(_(e_invarg2), s);
Bram Moolenaar3d0089f2008-12-03 08:52:26 +000010383 /* Don't check an autoload name for existence here. */
10384 else if (vim_strchr(s, AUTOLOAD_CHAR) == NULL && !function_exists(s))
Bram Moolenaare49b69a2005-01-08 16:11:57 +000010385 EMSG2(_("E700: Unknown function: %s"), s);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010386 else
10387 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010388 rettv->vval.v_string = vim_strsave(s);
10389 rettv->v_type = VAR_FUNC;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010390 }
10391}
10392
10393/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010394 * "garbagecollect()" function
10395 */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010396 static void
10397f_garbagecollect(argvars, rettv)
10398 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010399 typval_T *rettv UNUSED;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010400{
Bram Moolenaar9fecb462006-09-05 10:59:47 +000010401 /* This is postponed until we are back at the toplevel, because we may be
10402 * using Lists and Dicts internally. E.g.: ":echo [garbagecollect()]". */
10403 want_garbage_collect = TRUE;
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +000010404
10405 if (argvars[0].v_type != VAR_UNKNOWN && get_tv_number(&argvars[0]) == 1)
10406 garbage_collect_at_exit = TRUE;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010407}
10408
10409/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010410 * "get()" function
10411 */
10412 static void
10413f_get(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010414 typval_T *argvars;
10415 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010416{
Bram Moolenaar33570922005-01-25 22:26:29 +000010417 listitem_T *li;
10418 list_T *l;
10419 dictitem_T *di;
10420 dict_T *d;
10421 typval_T *tv = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010422
Bram Moolenaare9a41262005-01-15 22:18:47 +000010423 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000010424 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000010425 if ((l = argvars[0].vval.v_list) != NULL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000010426 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010427 int error = FALSE;
10428
10429 li = list_find(l, get_tv_number_chk(&argvars[1], &error));
10430 if (!error && li != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010431 tv = &li->li_tv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010432 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000010433 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000010434 else if (argvars[0].v_type == VAR_DICT)
10435 {
10436 if ((d = argvars[0].vval.v_dict) != NULL)
10437 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010438 di = dict_find(d, get_tv_string(&argvars[1]), -1);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010439 if (di != NULL)
10440 tv = &di->di_tv;
10441 }
10442 }
10443 else
10444 EMSG2(_(e_listdictarg), "get()");
10445
10446 if (tv == NULL)
10447 {
Bram Moolenaar798b30b2009-04-22 10:56:16 +000010448 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010449 copy_tv(&argvars[2], rettv);
10450 }
10451 else
10452 copy_tv(tv, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010453}
10454
Bram Moolenaar342337a2005-07-21 21:11:17 +000010455static 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 +000010456
10457/*
10458 * Get line or list of lines from buffer "buf" into "rettv".
Bram Moolenaar342337a2005-07-21 21:11:17 +000010459 * Return a range (from start to end) of lines in rettv from the specified
10460 * buffer.
10461 * If 'retlist' is TRUE, then the lines are returned as a Vim List.
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010462 */
10463 static void
Bram Moolenaar342337a2005-07-21 21:11:17 +000010464get_buffer_lines(buf, start, end, retlist, rettv)
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010465 buf_T *buf;
10466 linenr_T start;
10467 linenr_T end;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010468 int retlist;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010469 typval_T *rettv;
10470{
10471 char_u *p;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010472
Bram Moolenaar798b30b2009-04-22 10:56:16 +000010473 if (retlist && rettv_list_alloc(rettv) == FAIL)
10474 return;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010475
10476 if (buf == NULL || buf->b_ml.ml_mfp == NULL || start < 0)
10477 return;
10478
10479 if (!retlist)
10480 {
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010481 if (start >= 1 && start <= buf->b_ml.ml_line_count)
10482 p = ml_get_buf(buf, start, FALSE);
10483 else
10484 p = (char_u *)"";
10485
10486 rettv->v_type = VAR_STRING;
10487 rettv->vval.v_string = vim_strsave(p);
10488 }
10489 else
10490 {
10491 if (end < start)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010492 return;
10493
10494 if (start < 1)
10495 start = 1;
10496 if (end > buf->b_ml.ml_line_count)
10497 end = buf->b_ml.ml_line_count;
10498 while (start <= end)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000010499 if (list_append_string(rettv->vval.v_list,
10500 ml_get_buf(buf, start++, FALSE), -1) == FAIL)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010501 break;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010502 }
10503}
10504
10505/*
10506 * "getbufline()" function
10507 */
10508 static void
10509f_getbufline(argvars, rettv)
10510 typval_T *argvars;
10511 typval_T *rettv;
10512{
10513 linenr_T lnum;
10514 linenr_T end;
10515 buf_T *buf;
10516
10517 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10518 ++emsg_off;
10519 buf = get_buf_tv(&argvars[0]);
10520 --emsg_off;
10521
Bram Moolenaar661b1822005-07-28 22:36:45 +000010522 lnum = get_tv_lnum_buf(&argvars[1], buf);
Bram Moolenaar342337a2005-07-21 21:11:17 +000010523 if (argvars[2].v_type == VAR_UNKNOWN)
10524 end = lnum;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010525 else
Bram Moolenaar661b1822005-07-28 22:36:45 +000010526 end = get_tv_lnum_buf(&argvars[2], buf);
10527
Bram Moolenaar342337a2005-07-21 21:11:17 +000010528 get_buffer_lines(buf, lnum, end, TRUE, rettv);
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010529}
10530
Bram Moolenaar0d660222005-01-07 21:51:51 +000010531/*
10532 * "getbufvar()" function
10533 */
10534 static void
10535f_getbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010536 typval_T *argvars;
10537 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010538{
10539 buf_T *buf;
10540 buf_T *save_curbuf;
10541 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000010542 dictitem_T *v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010543
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010544 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10545 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010546 ++emsg_off;
10547 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010548
10549 rettv->v_type = VAR_STRING;
10550 rettv->vval.v_string = NULL;
10551
10552 if (buf != NULL && varname != NULL)
10553 {
Bram Moolenaar632deed2008-06-27 18:26:11 +000010554 /* set curbuf to be our buf, temporarily */
10555 save_curbuf = curbuf;
10556 curbuf = buf;
10557
Bram Moolenaar0d660222005-01-07 21:51:51 +000010558 if (*varname == '&') /* buffer-local-option */
Bram Moolenaar0d660222005-01-07 21:51:51 +000010559 get_option_tv(&varname, rettv, TRUE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010560 else
10561 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010562 if (*varname == NUL)
10563 /* let getbufvar({nr}, "") return the "b:" dictionary. The
10564 * scope prefix before the NUL byte is required by
10565 * find_var_in_ht(). */
10566 varname = (char_u *)"b:" + 2;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010567 /* look up the variable */
Bram Moolenaar632deed2008-06-27 18:26:11 +000010568 v = find_var_in_ht(&curbuf->b_vars.dv_hashtab, varname, FALSE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010569 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000010570 copy_tv(&v->di_tv, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010571 }
Bram Moolenaar632deed2008-06-27 18:26:11 +000010572
10573 /* restore previous notion of curbuf */
10574 curbuf = save_curbuf;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010575 }
10576
10577 --emsg_off;
10578}
10579
10580/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010581 * "getchar()" function
10582 */
10583 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010584f_getchar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010585 typval_T *argvars;
10586 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010587{
10588 varnumber_T n;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010589 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010590
Bram Moolenaar4015b2c2006-06-22 19:01:34 +000010591 /* Position the cursor. Needed after a message that ends in a space. */
10592 windgoto(msg_row, msg_col);
10593
Bram Moolenaar071d4272004-06-13 20:20:40 +000010594 ++no_mapping;
10595 ++allow_keys;
Bram Moolenaar9c8791f2007-09-05 19:47:23 +000010596 for (;;)
10597 {
10598 if (argvars[0].v_type == VAR_UNKNOWN)
10599 /* getchar(): blocking wait. */
10600 n = safe_vgetc();
10601 else if (get_tv_number_chk(&argvars[0], &error) == 1)
10602 /* getchar(1): only check if char avail */
10603 n = vpeekc();
10604 else if (error || vpeekc() == NUL)
10605 /* illegal argument or getchar(0) and no char avail: return zero */
10606 n = 0;
10607 else
10608 /* getchar(0) and char avail: return char */
10609 n = safe_vgetc();
10610 if (n == K_IGNORE)
10611 continue;
10612 break;
10613 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010614 --no_mapping;
10615 --allow_keys;
10616
Bram Moolenaar219b8702006-11-01 14:32:36 +000010617 vimvars[VV_MOUSE_WIN].vv_nr = 0;
10618 vimvars[VV_MOUSE_LNUM].vv_nr = 0;
10619 vimvars[VV_MOUSE_COL].vv_nr = 0;
10620
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010621 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010622 if (IS_SPECIAL(n) || mod_mask != 0)
10623 {
10624 char_u temp[10]; /* modifier: 3, mbyte-char: 6, NUL: 1 */
10625 int i = 0;
10626
10627 /* Turn a special key into three bytes, plus modifier. */
10628 if (mod_mask != 0)
10629 {
10630 temp[i++] = K_SPECIAL;
10631 temp[i++] = KS_MODIFIER;
10632 temp[i++] = mod_mask;
10633 }
10634 if (IS_SPECIAL(n))
10635 {
10636 temp[i++] = K_SPECIAL;
10637 temp[i++] = K_SECOND(n);
10638 temp[i++] = K_THIRD(n);
10639 }
10640#ifdef FEAT_MBYTE
10641 else if (has_mbyte)
10642 i += (*mb_char2bytes)(n, temp + i);
10643#endif
10644 else
10645 temp[i++] = n;
10646 temp[i++] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010647 rettv->v_type = VAR_STRING;
10648 rettv->vval.v_string = vim_strsave(temp);
Bram Moolenaar219b8702006-11-01 14:32:36 +000010649
10650#ifdef FEAT_MOUSE
10651 if (n == K_LEFTMOUSE
10652 || n == K_LEFTMOUSE_NM
10653 || n == K_LEFTDRAG
10654 || n == K_LEFTRELEASE
10655 || n == K_LEFTRELEASE_NM
10656 || n == K_MIDDLEMOUSE
10657 || n == K_MIDDLEDRAG
10658 || n == K_MIDDLERELEASE
10659 || n == K_RIGHTMOUSE
10660 || n == K_RIGHTDRAG
10661 || n == K_RIGHTRELEASE
10662 || n == K_X1MOUSE
10663 || n == K_X1DRAG
10664 || n == K_X1RELEASE
10665 || n == K_X2MOUSE
10666 || n == K_X2DRAG
10667 || n == K_X2RELEASE
10668 || n == K_MOUSEDOWN
10669 || n == K_MOUSEUP)
10670 {
10671 int row = mouse_row;
10672 int col = mouse_col;
10673 win_T *win;
10674 linenr_T lnum;
10675# ifdef FEAT_WINDOWS
10676 win_T *wp;
10677# endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000010678 int winnr = 1;
Bram Moolenaar219b8702006-11-01 14:32:36 +000010679
10680 if (row >= 0 && col >= 0)
10681 {
10682 /* Find the window at the mouse coordinates and compute the
10683 * text position. */
10684 win = mouse_find_win(&row, &col);
10685 (void)mouse_comp_pos(win, &row, &col, &lnum);
10686# ifdef FEAT_WINDOWS
10687 for (wp = firstwin; wp != win; wp = wp->w_next)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000010688 ++winnr;
Bram Moolenaar219b8702006-11-01 14:32:36 +000010689# endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000010690 vimvars[VV_MOUSE_WIN].vv_nr = winnr;
Bram Moolenaar219b8702006-11-01 14:32:36 +000010691 vimvars[VV_MOUSE_LNUM].vv_nr = lnum;
10692 vimvars[VV_MOUSE_COL].vv_nr = col + 1;
10693 }
10694 }
10695#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010696 }
10697}
10698
10699/*
10700 * "getcharmod()" function
10701 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010702 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010703f_getcharmod(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010704 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010705 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010706{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010707 rettv->vval.v_number = mod_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010708}
10709
10710/*
10711 * "getcmdline()" function
10712 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010713 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010714f_getcmdline(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->v_type = VAR_STRING;
10719 rettv->vval.v_string = get_cmdline_str();
Bram Moolenaar071d4272004-06-13 20:20:40 +000010720}
10721
10722/*
10723 * "getcmdpos()" function
10724 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010725 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010726f_getcmdpos(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010727 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010728 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010729{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010730 rettv->vval.v_number = get_cmdline_pos() + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010731}
10732
10733/*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010734 * "getcmdtype()" function
10735 */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010736 static void
10737f_getcmdtype(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010738 typval_T *argvars UNUSED;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010739 typval_T *rettv;
10740{
10741 rettv->v_type = VAR_STRING;
10742 rettv->vval.v_string = alloc(2);
10743 if (rettv->vval.v_string != NULL)
10744 {
10745 rettv->vval.v_string[0] = get_cmdline_type();
10746 rettv->vval.v_string[1] = NUL;
10747 }
10748}
10749
10750/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010751 * "getcwd()" function
10752 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010753 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010754f_getcwd(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010755 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010756 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010757{
10758 char_u cwd[MAXPATHL];
10759
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010760 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010761 if (mch_dirname(cwd, MAXPATHL) == FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010762 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010763 else
10764 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010765 rettv->vval.v_string = vim_strsave(cwd);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010766#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar342337a2005-07-21 21:11:17 +000010767 if (rettv->vval.v_string != NULL)
10768 slash_adjust(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010769#endif
10770 }
10771}
10772
10773/*
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010774 * "getfontname()" function
10775 */
10776 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010777f_getfontname(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010778 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010779 typval_T *rettv;
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010780{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010781 rettv->v_type = VAR_STRING;
10782 rettv->vval.v_string = NULL;
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010783#ifdef FEAT_GUI
10784 if (gui.in_use)
10785 {
10786 GuiFont font;
10787 char_u *name = NULL;
10788
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010789 if (argvars[0].v_type == VAR_UNKNOWN)
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010790 {
10791 /* Get the "Normal" font. Either the name saved by
10792 * hl_set_font_name() or from the font ID. */
10793 font = gui.norm_font;
10794 name = hl_get_font_name();
10795 }
10796 else
10797 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010798 name = get_tv_string(&argvars[0]);
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010799 if (STRCMP(name, "*") == 0) /* don't use font dialog */
10800 return;
10801 font = gui_mch_get_font(name, FALSE);
10802 if (font == NOFONT)
10803 return; /* Invalid font name, return empty string. */
10804 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010805 rettv->vval.v_string = gui_mch_get_fontname(font, name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010806 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010807 gui_mch_free_font(font);
10808 }
10809#endif
10810}
10811
10812/*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010813 * "getfperm({fname})" function
10814 */
10815 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010816f_getfperm(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010817 typval_T *argvars;
10818 typval_T *rettv;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010819{
10820 char_u *fname;
10821 struct stat st;
10822 char_u *perm = NULL;
10823 char_u flags[] = "rwx";
10824 int i;
10825
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010826 fname = get_tv_string(&argvars[0]);
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010827
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010828 rettv->v_type = VAR_STRING;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010829 if (mch_stat((char *)fname, &st) >= 0)
10830 {
10831 perm = vim_strsave((char_u *)"---------");
10832 if (perm != NULL)
10833 {
10834 for (i = 0; i < 9; i++)
10835 {
10836 if (st.st_mode & (1 << (8 - i)))
10837 perm[i] = flags[i % 3];
10838 }
10839 }
10840 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010841 rettv->vval.v_string = perm;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010842}
10843
10844/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010845 * "getfsize({fname})" function
10846 */
10847 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010848f_getfsize(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010849 typval_T *argvars;
10850 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010851{
10852 char_u *fname;
10853 struct stat st;
10854
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010855 fname = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010856
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010857 rettv->v_type = VAR_NUMBER;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010858
10859 if (mch_stat((char *)fname, &st) >= 0)
10860 {
10861 if (mch_isdir(fname))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010862 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010863 else
Bram Moolenaard827ada2007-06-19 15:19:55 +000010864 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010865 rettv->vval.v_number = (varnumber_T)st.st_size;
Bram Moolenaard827ada2007-06-19 15:19:55 +000010866
10867 /* non-perfect check for overflow */
10868 if ((off_t)rettv->vval.v_number != (off_t)st.st_size)
10869 rettv->vval.v_number = -2;
10870 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010871 }
10872 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010873 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010874}
10875
10876/*
10877 * "getftime({fname})" function
10878 */
10879 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010880f_getftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010881 typval_T *argvars;
10882 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010883{
10884 char_u *fname;
10885 struct stat st;
10886
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010887 fname = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010888
10889 if (mch_stat((char *)fname, &st) >= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010890 rettv->vval.v_number = (varnumber_T)st.st_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010891 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010892 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010893}
10894
10895/*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010896 * "getftype({fname})" function
10897 */
10898 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010899f_getftype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010900 typval_T *argvars;
10901 typval_T *rettv;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010902{
10903 char_u *fname;
10904 struct stat st;
10905 char_u *type = NULL;
10906 char *t;
10907
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010908 fname = get_tv_string(&argvars[0]);
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010909
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010910 rettv->v_type = VAR_STRING;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010911 if (mch_lstat((char *)fname, &st) >= 0)
10912 {
10913#ifdef S_ISREG
10914 if (S_ISREG(st.st_mode))
10915 t = "file";
10916 else if (S_ISDIR(st.st_mode))
10917 t = "dir";
10918# ifdef S_ISLNK
10919 else if (S_ISLNK(st.st_mode))
10920 t = "link";
10921# endif
10922# ifdef S_ISBLK
10923 else if (S_ISBLK(st.st_mode))
10924 t = "bdev";
10925# endif
10926# ifdef S_ISCHR
10927 else if (S_ISCHR(st.st_mode))
10928 t = "cdev";
10929# endif
10930# ifdef S_ISFIFO
10931 else if (S_ISFIFO(st.st_mode))
10932 t = "fifo";
10933# endif
10934# ifdef S_ISSOCK
10935 else if (S_ISSOCK(st.st_mode))
10936 t = "fifo";
10937# endif
10938 else
10939 t = "other";
10940#else
10941# ifdef S_IFMT
10942 switch (st.st_mode & S_IFMT)
10943 {
10944 case S_IFREG: t = "file"; break;
10945 case S_IFDIR: t = "dir"; break;
10946# ifdef S_IFLNK
10947 case S_IFLNK: t = "link"; break;
10948# endif
10949# ifdef S_IFBLK
10950 case S_IFBLK: t = "bdev"; break;
10951# endif
10952# ifdef S_IFCHR
10953 case S_IFCHR: t = "cdev"; break;
10954# endif
10955# ifdef S_IFIFO
10956 case S_IFIFO: t = "fifo"; break;
10957# endif
10958# ifdef S_IFSOCK
10959 case S_IFSOCK: t = "socket"; break;
10960# endif
10961 default: t = "other";
10962 }
10963# else
10964 if (mch_isdir(fname))
10965 t = "dir";
10966 else
10967 t = "file";
10968# endif
10969#endif
10970 type = vim_strsave((char_u *)t);
10971 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010972 rettv->vval.v_string = type;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010973}
10974
10975/*
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010976 * "getline(lnum, [end])" function
Bram Moolenaar0d660222005-01-07 21:51:51 +000010977 */
10978 static void
10979f_getline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010980 typval_T *argvars;
10981 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010982{
10983 linenr_T lnum;
10984 linenr_T end;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010985 int retlist;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010986
10987 lnum = get_tv_lnum(argvars);
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010988 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010989 {
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010990 end = 0;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010991 retlist = FALSE;
10992 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000010993 else
Bram Moolenaar342337a2005-07-21 21:11:17 +000010994 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000010995 end = get_tv_lnum(&argvars[1]);
Bram Moolenaar342337a2005-07-21 21:11:17 +000010996 retlist = TRUE;
10997 }
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010998
Bram Moolenaar342337a2005-07-21 21:11:17 +000010999 get_buffer_lines(curbuf, lnum, end, retlist, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000011000}
11001
11002/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011003 * "getmatches()" function
11004 */
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011005 static void
11006f_getmatches(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011007 typval_T *argvars UNUSED;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011008 typval_T *rettv;
11009{
11010#ifdef FEAT_SEARCH_EXTRA
11011 dict_T *dict;
11012 matchitem_T *cur = curwin->w_match_head;
11013
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011014 if (rettv_list_alloc(rettv) == OK)
11015 {
11016 while (cur != NULL)
11017 {
11018 dict = dict_alloc();
11019 if (dict == NULL)
11020 return;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011021 dict_add_nr_str(dict, "group", 0L, syn_id2name(cur->hlg_id));
11022 dict_add_nr_str(dict, "pattern", 0L, cur->pattern);
11023 dict_add_nr_str(dict, "priority", (long)cur->priority, NULL);
11024 dict_add_nr_str(dict, "id", (long)cur->id, NULL);
11025 list_append_dict(rettv->vval.v_list, dict);
11026 cur = cur->next;
11027 }
11028 }
11029#endif
11030}
11031
11032/*
Bram Moolenaar18081e32008-02-20 19:11:07 +000011033 * "getpid()" function
11034 */
Bram Moolenaar18081e32008-02-20 19:11:07 +000011035 static void
11036f_getpid(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011037 typval_T *argvars UNUSED;
Bram Moolenaar18081e32008-02-20 19:11:07 +000011038 typval_T *rettv;
11039{
11040 rettv->vval.v_number = mch_get_pid();
11041}
11042
11043/*
Bram Moolenaara5525202006-03-02 22:52:09 +000011044 * "getpos(string)" function
11045 */
11046 static void
11047f_getpos(argvars, rettv)
11048 typval_T *argvars;
11049 typval_T *rettv;
11050{
11051 pos_T *fp;
11052 list_T *l;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000011053 int fnum = -1;
Bram Moolenaara5525202006-03-02 22:52:09 +000011054
11055 if (rettv_list_alloc(rettv) == OK)
11056 {
11057 l = rettv->vval.v_list;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000011058 fp = var2fpos(&argvars[0], TRUE, &fnum);
11059 if (fnum != -1)
11060 list_append_number(l, (varnumber_T)fnum);
11061 else
11062 list_append_number(l, (varnumber_T)0);
Bram Moolenaara5525202006-03-02 22:52:09 +000011063 list_append_number(l, (fp != NULL) ? (varnumber_T)fp->lnum
11064 : (varnumber_T)0);
Bram Moolenaare65f7322007-10-02 20:08:54 +000011065 list_append_number(l, (fp != NULL)
11066 ? (varnumber_T)(fp->col == MAXCOL ? MAXCOL : fp->col + 1)
Bram Moolenaara5525202006-03-02 22:52:09 +000011067 : (varnumber_T)0);
11068 list_append_number(l,
11069#ifdef FEAT_VIRTUALEDIT
11070 (fp != NULL) ? (varnumber_T)fp->coladd :
11071#endif
11072 (varnumber_T)0);
11073 }
11074 else
11075 rettv->vval.v_number = FALSE;
11076}
11077
11078/*
Bram Moolenaar280f1262006-01-30 00:14:18 +000011079 * "getqflist()" and "getloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000011080 */
Bram Moolenaar2641f772005-03-25 21:58:17 +000011081 static void
Bram Moolenaar280f1262006-01-30 00:14:18 +000011082f_getqflist(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011083 typval_T *argvars UNUSED;
11084 typval_T *rettv UNUSED;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011085{
11086#ifdef FEAT_QUICKFIX
Bram Moolenaar280f1262006-01-30 00:14:18 +000011087 win_T *wp;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011088#endif
11089
Bram Moolenaar2641f772005-03-25 21:58:17 +000011090#ifdef FEAT_QUICKFIX
Bram Moolenaareddf53b2006-02-27 00:11:10 +000011091 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000011092 {
Bram Moolenaar280f1262006-01-30 00:14:18 +000011093 wp = NULL;
11094 if (argvars[0].v_type != VAR_UNKNOWN) /* getloclist() */
11095 {
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011096 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar280f1262006-01-30 00:14:18 +000011097 if (wp == NULL)
11098 return;
11099 }
11100
Bram Moolenaareddf53b2006-02-27 00:11:10 +000011101 (void)get_errorlist(wp, rettv->vval.v_list);
Bram Moolenaar2641f772005-03-25 21:58:17 +000011102 }
11103#endif
11104}
11105
11106/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011107 * "getreg()" function
11108 */
11109 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011110f_getreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011111 typval_T *argvars;
11112 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011113{
11114 char_u *strregname;
11115 int regname;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011116 int arg2 = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011117 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011118
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011119 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011120 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011121 strregname = get_tv_string_chk(&argvars[0]);
11122 error = strregname == NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011123 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011124 arg2 = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011125 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011126 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000011127 strregname = vimvars[VV_REG].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011128 regname = (strregname == NULL ? '"' : *strregname);
11129 if (regname == 0)
11130 regname = '"';
11131
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011132 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011133 rettv->vval.v_string = error ? NULL :
11134 get_reg_contents(regname, TRUE, arg2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011135}
11136
11137/*
11138 * "getregtype()" function
11139 */
11140 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011141f_getregtype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011142 typval_T *argvars;
11143 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011144{
11145 char_u *strregname;
11146 int regname;
11147 char_u buf[NUMBUFLEN + 2];
11148 long reglen = 0;
11149
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011150 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011151 {
11152 strregname = get_tv_string_chk(&argvars[0]);
11153 if (strregname == NULL) /* type error; errmsg already given */
11154 {
11155 rettv->v_type = VAR_STRING;
11156 rettv->vval.v_string = NULL;
11157 return;
11158 }
11159 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011160 else
11161 /* Default to v:register */
Bram Moolenaare9a41262005-01-15 22:18:47 +000011162 strregname = vimvars[VV_REG].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011163
11164 regname = (strregname == NULL ? '"' : *strregname);
11165 if (regname == 0)
11166 regname = '"';
11167
11168 buf[0] = NUL;
11169 buf[1] = NUL;
11170 switch (get_reg_type(regname, &reglen))
11171 {
11172 case MLINE: buf[0] = 'V'; break;
11173 case MCHAR: buf[0] = 'v'; break;
11174#ifdef FEAT_VISUAL
11175 case MBLOCK:
11176 buf[0] = Ctrl_V;
11177 sprintf((char *)buf + 1, "%ld", reglen + 1);
11178 break;
11179#endif
11180 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011181 rettv->v_type = VAR_STRING;
11182 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011183}
11184
11185/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011186 * "gettabwinvar()" function
11187 */
11188 static void
11189f_gettabwinvar(argvars, rettv)
11190 typval_T *argvars;
11191 typval_T *rettv;
11192{
11193 getwinvar(argvars, rettv, 1);
11194}
11195
11196/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011197 * "getwinposx()" function
11198 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011199 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011200f_getwinposx(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011201 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000011202 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011203{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011204 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011205#ifdef FEAT_GUI
11206 if (gui.in_use)
11207 {
11208 int x, y;
11209
11210 if (gui_mch_get_winpos(&x, &y) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011211 rettv->vval.v_number = x;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011212 }
11213#endif
11214}
11215
11216/*
11217 * "getwinposy()" function
11218 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011219 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011220f_getwinposy(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011221 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000011222 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011223{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011224 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011225#ifdef FEAT_GUI
11226 if (gui.in_use)
11227 {
11228 int x, y;
11229
11230 if (gui_mch_get_winpos(&x, &y) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011231 rettv->vval.v_number = y;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011232 }
11233#endif
11234}
11235
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011236/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011237 * Find window specified by "vp" in tabpage "tp".
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011238 */
Bram Moolenaara40058a2005-07-11 22:42:07 +000011239 static win_T *
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011240find_win_by_nr(vp, tp)
Bram Moolenaara40058a2005-07-11 22:42:07 +000011241 typval_T *vp;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011242 tabpage_T *tp; /* NULL for current tab page */
Bram Moolenaara40058a2005-07-11 22:42:07 +000011243{
11244#ifdef FEAT_WINDOWS
11245 win_T *wp;
11246#endif
11247 int nr;
11248
11249 nr = get_tv_number_chk(vp, NULL);
11250
11251#ifdef FEAT_WINDOWS
11252 if (nr < 0)
11253 return NULL;
11254 if (nr == 0)
11255 return curwin;
11256
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011257 for (wp = (tp == NULL || tp == curtab) ? firstwin : tp->tp_firstwin;
11258 wp != NULL; wp = wp->w_next)
Bram Moolenaara40058a2005-07-11 22:42:07 +000011259 if (--nr <= 0)
11260 break;
11261 return wp;
11262#else
11263 if (nr == 0 || nr == 1)
11264 return curwin;
11265 return NULL;
11266#endif
11267}
11268
Bram Moolenaar071d4272004-06-13 20:20:40 +000011269/*
11270 * "getwinvar()" function
11271 */
11272 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011273f_getwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011274 typval_T *argvars;
11275 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011276{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011277 getwinvar(argvars, rettv, 0);
11278}
11279
11280/*
11281 * getwinvar() and gettabwinvar()
11282 */
11283 static void
11284getwinvar(argvars, rettv, off)
11285 typval_T *argvars;
11286 typval_T *rettv;
11287 int off; /* 1 for gettabwinvar() */
11288{
Bram Moolenaar071d4272004-06-13 20:20:40 +000011289 win_T *win, *oldcurwin;
11290 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000011291 dictitem_T *v;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011292 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011293
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011294#ifdef FEAT_WINDOWS
11295 if (off == 1)
11296 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
11297 else
11298 tp = curtab;
11299#endif
11300 win = find_win_by_nr(&argvars[off], tp);
11301 varname = get_tv_string_chk(&argvars[off + 1]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011302 ++emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011303
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011304 rettv->v_type = VAR_STRING;
11305 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011306
11307 if (win != NULL && varname != NULL)
11308 {
Bram Moolenaar69a7e432006-10-10 10:55:47 +000011309 /* Set curwin to be our win, temporarily. Also set curbuf, so
11310 * that we can get buffer-local options. */
11311 oldcurwin = curwin;
11312 curwin = win;
11313 curbuf = win->w_buffer;
11314
Bram Moolenaar071d4272004-06-13 20:20:40 +000011315 if (*varname == '&') /* window-local-option */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011316 get_option_tv(&varname, rettv, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011317 else
11318 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011319 if (*varname == NUL)
11320 /* let getwinvar({nr}, "") return the "w:" dictionary. The
11321 * scope prefix before the NUL byte is required by
11322 * find_var_in_ht(). */
11323 varname = (char_u *)"w:" + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011324 /* look up the variable */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011325 v = find_var_in_ht(&win->w_vars.dv_hashtab, varname, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011326 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000011327 copy_tv(&v->di_tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011328 }
Bram Moolenaar69a7e432006-10-10 10:55:47 +000011329
11330 /* restore previous notion of curwin */
11331 curwin = oldcurwin;
11332 curbuf = curwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011333 }
11334
11335 --emsg_off;
11336}
11337
11338/*
11339 * "glob()" function
11340 */
11341 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011342f_glob(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011343 typval_T *argvars;
11344 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011345{
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011346 int flags = WILD_SILENT|WILD_USE_NL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011347 expand_T xpc;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011348 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011349
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011350 /* When the optional second argument is non-zero, don't remove matches
11351 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
11352 if (argvars[1].v_type != VAR_UNKNOWN
11353 && get_tv_number_chk(&argvars[1], &error))
11354 flags |= WILD_KEEP_ALL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011355 rettv->v_type = VAR_STRING;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011356 if (!error)
11357 {
11358 ExpandInit(&xpc);
11359 xpc.xp_context = EXPAND_FILES;
11360 rettv->vval.v_string = ExpandOne(&xpc, get_tv_string(&argvars[0]),
11361 NULL, flags, WILD_ALL);
11362 }
11363 else
11364 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011365}
11366
11367/*
11368 * "globpath()" function
11369 */
11370 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011371f_globpath(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011372 typval_T *argvars;
11373 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011374{
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011375 int flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011376 char_u buf1[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011377 char_u *file = get_tv_string_buf_chk(&argvars[1], buf1);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011378 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011379
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011380 /* When the optional second argument is non-zero, don't remove matches
11381 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
11382 if (argvars[2].v_type != VAR_UNKNOWN
11383 && get_tv_number_chk(&argvars[2], &error))
11384 flags |= WILD_KEEP_ALL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011385 rettv->v_type = VAR_STRING;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011386 if (file == NULL || error)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011387 rettv->vval.v_string = NULL;
11388 else
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011389 rettv->vval.v_string = globpath(get_tv_string(&argvars[0]), file,
11390 flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011391}
11392
11393/*
11394 * "has()" function
11395 */
11396 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011397f_has(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011398 typval_T *argvars;
11399 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011400{
11401 int i;
11402 char_u *name;
11403 int n = FALSE;
11404 static char *(has_list[]) =
11405 {
11406#ifdef AMIGA
11407 "amiga",
11408# ifdef FEAT_ARP
11409 "arp",
11410# endif
11411#endif
11412#ifdef __BEOS__
11413 "beos",
11414#endif
11415#ifdef MSDOS
11416# ifdef DJGPP
11417 "dos32",
11418# else
11419 "dos16",
11420# endif
11421#endif
Bram Moolenaar241a8aa2005-12-06 20:04:44 +000011422#ifdef MACOS
Bram Moolenaar071d4272004-06-13 20:20:40 +000011423 "mac",
11424#endif
11425#if defined(MACOS_X_UNIX)
11426 "macunix",
11427#endif
11428#ifdef OS2
11429 "os2",
11430#endif
11431#ifdef __QNX__
11432 "qnx",
11433#endif
11434#ifdef RISCOS
11435 "riscos",
11436#endif
11437#ifdef UNIX
11438 "unix",
11439#endif
11440#ifdef VMS
11441 "vms",
11442#endif
11443#ifdef WIN16
11444 "win16",
11445#endif
11446#ifdef WIN32
11447 "win32",
11448#endif
11449#if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
11450 "win32unix",
11451#endif
11452#ifdef WIN64
11453 "win64",
11454#endif
11455#ifdef EBCDIC
11456 "ebcdic",
11457#endif
11458#ifndef CASE_INSENSITIVE_FILENAME
11459 "fname_case",
11460#endif
11461#ifdef FEAT_ARABIC
11462 "arabic",
11463#endif
11464#ifdef FEAT_AUTOCMD
11465 "autocmd",
11466#endif
11467#ifdef FEAT_BEVAL
11468 "balloon_eval",
Bram Moolenaar342337a2005-07-21 21:11:17 +000011469# ifndef FEAT_GUI_W32 /* other GUIs always have multiline balloons */
11470 "balloon_multiline",
11471# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011472#endif
11473#if defined(SOME_BUILTIN_TCAPS) || defined(ALL_BUILTIN_TCAPS)
11474 "builtin_terms",
11475# ifdef ALL_BUILTIN_TCAPS
11476 "all_builtin_terms",
11477# endif
11478#endif
11479#ifdef FEAT_BYTEOFF
11480 "byte_offset",
11481#endif
11482#ifdef FEAT_CINDENT
11483 "cindent",
11484#endif
11485#ifdef FEAT_CLIENTSERVER
11486 "clientserver",
11487#endif
11488#ifdef FEAT_CLIPBOARD
11489 "clipboard",
11490#endif
11491#ifdef FEAT_CMDL_COMPL
11492 "cmdline_compl",
11493#endif
11494#ifdef FEAT_CMDHIST
11495 "cmdline_hist",
11496#endif
11497#ifdef FEAT_COMMENTS
11498 "comments",
11499#endif
11500#ifdef FEAT_CRYPT
11501 "cryptv",
11502#endif
11503#ifdef FEAT_CSCOPE
11504 "cscope",
11505#endif
Bram Moolenaarac6e65f2005-08-29 22:25:38 +000011506#ifdef CURSOR_SHAPE
11507 "cursorshape",
11508#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011509#ifdef DEBUG
11510 "debug",
11511#endif
11512#ifdef FEAT_CON_DIALOG
11513 "dialog_con",
11514#endif
11515#ifdef FEAT_GUI_DIALOG
11516 "dialog_gui",
11517#endif
11518#ifdef FEAT_DIFF
11519 "diff",
11520#endif
11521#ifdef FEAT_DIGRAPHS
11522 "digraphs",
11523#endif
11524#ifdef FEAT_DND
11525 "dnd",
11526#endif
11527#ifdef FEAT_EMACS_TAGS
11528 "emacs_tags",
11529#endif
11530 "eval", /* always present, of course! */
11531#ifdef FEAT_EX_EXTRA
11532 "ex_extra",
11533#endif
11534#ifdef FEAT_SEARCH_EXTRA
11535 "extra_search",
11536#endif
11537#ifdef FEAT_FKMAP
11538 "farsi",
11539#endif
11540#ifdef FEAT_SEARCHPATH
11541 "file_in_path",
11542#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011543#if defined(UNIX) && !defined(USE_SYSTEM)
11544 "filterpipe",
11545#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011546#ifdef FEAT_FIND_ID
11547 "find_in_path",
11548#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011549#ifdef FEAT_FLOAT
11550 "float",
11551#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011552#ifdef FEAT_FOLDING
11553 "folding",
11554#endif
11555#ifdef FEAT_FOOTER
11556 "footer",
11557#endif
11558#if !defined(USE_SYSTEM) && defined(UNIX)
11559 "fork",
11560#endif
11561#ifdef FEAT_GETTEXT
11562 "gettext",
11563#endif
11564#ifdef FEAT_GUI
11565 "gui",
11566#endif
11567#ifdef FEAT_GUI_ATHENA
11568# ifdef FEAT_GUI_NEXTAW
11569 "gui_neXtaw",
11570# else
11571 "gui_athena",
11572# endif
11573#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011574#ifdef FEAT_GUI_GTK
11575 "gui_gtk",
11576# ifdef HAVE_GTK2
11577 "gui_gtk2",
11578# endif
11579#endif
Bram Moolenaar7b188622007-09-25 10:51:12 +000011580#ifdef FEAT_GUI_GNOME
11581 "gui_gnome",
11582#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011583#ifdef FEAT_GUI_MAC
11584 "gui_mac",
11585#endif
11586#ifdef FEAT_GUI_MOTIF
11587 "gui_motif",
11588#endif
11589#ifdef FEAT_GUI_PHOTON
11590 "gui_photon",
11591#endif
11592#ifdef FEAT_GUI_W16
11593 "gui_win16",
11594#endif
11595#ifdef FEAT_GUI_W32
11596 "gui_win32",
11597#endif
11598#ifdef FEAT_HANGULIN
11599 "hangul_input",
11600#endif
11601#if defined(HAVE_ICONV_H) && defined(USE_ICONV)
11602 "iconv",
11603#endif
11604#ifdef FEAT_INS_EXPAND
11605 "insert_expand",
11606#endif
11607#ifdef FEAT_JUMPLIST
11608 "jumplist",
11609#endif
11610#ifdef FEAT_KEYMAP
11611 "keymap",
11612#endif
11613#ifdef FEAT_LANGMAP
11614 "langmap",
11615#endif
11616#ifdef FEAT_LIBCALL
11617 "libcall",
11618#endif
11619#ifdef FEAT_LINEBREAK
11620 "linebreak",
11621#endif
11622#ifdef FEAT_LISP
11623 "lispindent",
11624#endif
11625#ifdef FEAT_LISTCMDS
11626 "listcmds",
11627#endif
11628#ifdef FEAT_LOCALMAP
11629 "localmap",
11630#endif
11631#ifdef FEAT_MENU
11632 "menu",
11633#endif
11634#ifdef FEAT_SESSION
11635 "mksession",
11636#endif
11637#ifdef FEAT_MODIFY_FNAME
11638 "modify_fname",
11639#endif
11640#ifdef FEAT_MOUSE
11641 "mouse",
11642#endif
11643#ifdef FEAT_MOUSESHAPE
11644 "mouseshape",
11645#endif
11646#if defined(UNIX) || defined(VMS)
11647# ifdef FEAT_MOUSE_DEC
11648 "mouse_dec",
11649# endif
11650# ifdef FEAT_MOUSE_GPM
11651 "mouse_gpm",
11652# endif
11653# ifdef FEAT_MOUSE_JSB
11654 "mouse_jsbterm",
11655# endif
11656# ifdef FEAT_MOUSE_NET
11657 "mouse_netterm",
11658# endif
11659# ifdef FEAT_MOUSE_PTERM
11660 "mouse_pterm",
11661# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011662# ifdef FEAT_SYSMOUSE
11663 "mouse_sysmouse",
11664# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011665# ifdef FEAT_MOUSE_XTERM
11666 "mouse_xterm",
11667# endif
11668#endif
11669#ifdef FEAT_MBYTE
11670 "multi_byte",
11671#endif
11672#ifdef FEAT_MBYTE_IME
11673 "multi_byte_ime",
11674#endif
11675#ifdef FEAT_MULTI_LANG
11676 "multi_lang",
11677#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011678#ifdef FEAT_MZSCHEME
Bram Moolenaar33570922005-01-25 22:26:29 +000011679#ifndef DYNAMIC_MZSCHEME
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011680 "mzscheme",
11681#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011682#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011683#ifdef FEAT_OLE
11684 "ole",
11685#endif
11686#ifdef FEAT_OSFILETYPE
11687 "osfiletype",
11688#endif
11689#ifdef FEAT_PATH_EXTRA
11690 "path_extra",
11691#endif
11692#ifdef FEAT_PERL
11693#ifndef DYNAMIC_PERL
11694 "perl",
11695#endif
11696#endif
11697#ifdef FEAT_PYTHON
11698#ifndef DYNAMIC_PYTHON
11699 "python",
11700#endif
11701#endif
11702#ifdef FEAT_POSTSCRIPT
11703 "postscript",
11704#endif
11705#ifdef FEAT_PRINTER
11706 "printer",
11707#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +000011708#ifdef FEAT_PROFILE
11709 "profile",
11710#endif
Bram Moolenaare580b0c2006-03-21 21:33:03 +000011711#ifdef FEAT_RELTIME
11712 "reltime",
11713#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011714#ifdef FEAT_QUICKFIX
11715 "quickfix",
11716#endif
11717#ifdef FEAT_RIGHTLEFT
11718 "rightleft",
11719#endif
11720#if defined(FEAT_RUBY) && !defined(DYNAMIC_RUBY)
11721 "ruby",
11722#endif
11723#ifdef FEAT_SCROLLBIND
11724 "scrollbind",
11725#endif
11726#ifdef FEAT_CMDL_INFO
11727 "showcmd",
11728 "cmdline_info",
11729#endif
11730#ifdef FEAT_SIGNS
11731 "signs",
11732#endif
11733#ifdef FEAT_SMARTINDENT
11734 "smartindent",
11735#endif
11736#ifdef FEAT_SNIFF
11737 "sniff",
11738#endif
11739#ifdef FEAT_STL_OPT
11740 "statusline",
11741#endif
11742#ifdef FEAT_SUN_WORKSHOP
11743 "sun_workshop",
11744#endif
11745#ifdef FEAT_NETBEANS_INTG
11746 "netbeans_intg",
11747#endif
Bram Moolenaar3c56a962006-03-12 22:19:04 +000011748#ifdef FEAT_SPELL
Bram Moolenaar0e4d8772005-06-07 21:12:49 +000011749 "spell",
11750#endif
11751#ifdef FEAT_SYN_HL
Bram Moolenaar071d4272004-06-13 20:20:40 +000011752 "syntax",
11753#endif
11754#if defined(USE_SYSTEM) || !defined(UNIX)
11755 "system",
11756#endif
11757#ifdef FEAT_TAG_BINS
11758 "tag_binary",
11759#endif
11760#ifdef FEAT_TAG_OLDSTATIC
11761 "tag_old_static",
11762#endif
11763#ifdef FEAT_TAG_ANYWHITE
11764 "tag_any_white",
11765#endif
11766#ifdef FEAT_TCL
11767# ifndef DYNAMIC_TCL
11768 "tcl",
11769# endif
11770#endif
11771#ifdef TERMINFO
11772 "terminfo",
11773#endif
11774#ifdef FEAT_TERMRESPONSE
11775 "termresponse",
11776#endif
11777#ifdef FEAT_TEXTOBJ
11778 "textobjects",
11779#endif
11780#ifdef HAVE_TGETENT
11781 "tgetent",
11782#endif
11783#ifdef FEAT_TITLE
11784 "title",
11785#endif
11786#ifdef FEAT_TOOLBAR
11787 "toolbar",
11788#endif
11789#ifdef FEAT_USR_CMDS
11790 "user-commands", /* was accidentally included in 5.4 */
11791 "user_commands",
11792#endif
11793#ifdef FEAT_VIMINFO
11794 "viminfo",
11795#endif
11796#ifdef FEAT_VERTSPLIT
11797 "vertsplit",
11798#endif
11799#ifdef FEAT_VIRTUALEDIT
11800 "virtualedit",
11801#endif
11802#ifdef FEAT_VISUAL
11803 "visual",
11804#endif
11805#ifdef FEAT_VISUALEXTRA
11806 "visualextra",
11807#endif
11808#ifdef FEAT_VREPLACE
11809 "vreplace",
11810#endif
11811#ifdef FEAT_WILDIGN
11812 "wildignore",
11813#endif
11814#ifdef FEAT_WILDMENU
11815 "wildmenu",
11816#endif
11817#ifdef FEAT_WINDOWS
11818 "windows",
11819#endif
11820#ifdef FEAT_WAK
11821 "winaltkeys",
11822#endif
11823#ifdef FEAT_WRITEBACKUP
11824 "writebackup",
11825#endif
11826#ifdef FEAT_XIM
11827 "xim",
11828#endif
11829#ifdef FEAT_XFONTSET
11830 "xfontset",
11831#endif
11832#ifdef USE_XSMP
11833 "xsmp",
11834#endif
11835#ifdef USE_XSMP_INTERACT
11836 "xsmp_interact",
11837#endif
11838#ifdef FEAT_XCLIPBOARD
11839 "xterm_clipboard",
11840#endif
11841#ifdef FEAT_XTERM_SAVE
11842 "xterm_save",
11843#endif
11844#if defined(UNIX) && defined(FEAT_X11)
11845 "X11",
11846#endif
11847 NULL
11848 };
11849
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011850 name = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011851 for (i = 0; has_list[i] != NULL; ++i)
11852 if (STRICMP(name, has_list[i]) == 0)
11853 {
11854 n = TRUE;
11855 break;
11856 }
11857
11858 if (n == FALSE)
11859 {
11860 if (STRNICMP(name, "patch", 5) == 0)
11861 n = has_patch(atoi((char *)name + 5));
11862 else if (STRICMP(name, "vim_starting") == 0)
11863 n = (starting != 0);
Bram Moolenaar42022d52008-12-09 09:57:49 +000011864#ifdef FEAT_MBYTE
11865 else if (STRICMP(name, "multi_byte_encoding") == 0)
11866 n = has_mbyte;
11867#endif
Bram Moolenaar342337a2005-07-21 21:11:17 +000011868#if defined(FEAT_BEVAL) && defined(FEAT_GUI_W32)
11869 else if (STRICMP(name, "balloon_multiline") == 0)
11870 n = multiline_balloon_available();
11871#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011872#ifdef DYNAMIC_TCL
11873 else if (STRICMP(name, "tcl") == 0)
11874 n = tcl_enabled(FALSE);
11875#endif
11876#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
11877 else if (STRICMP(name, "iconv") == 0)
11878 n = iconv_enabled(FALSE);
11879#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011880#ifdef DYNAMIC_MZSCHEME
11881 else if (STRICMP(name, "mzscheme") == 0)
11882 n = mzscheme_enabled(FALSE);
11883#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011884#ifdef DYNAMIC_RUBY
11885 else if (STRICMP(name, "ruby") == 0)
11886 n = ruby_enabled(FALSE);
11887#endif
11888#ifdef DYNAMIC_PYTHON
11889 else if (STRICMP(name, "python") == 0)
11890 n = python_enabled(FALSE);
11891#endif
11892#ifdef DYNAMIC_PERL
11893 else if (STRICMP(name, "perl") == 0)
11894 n = perl_enabled(FALSE);
11895#endif
11896#ifdef FEAT_GUI
11897 else if (STRICMP(name, "gui_running") == 0)
11898 n = (gui.in_use || gui.starting);
11899# ifdef FEAT_GUI_W32
11900 else if (STRICMP(name, "gui_win32s") == 0)
11901 n = gui_is_win32s();
11902# endif
11903# ifdef FEAT_BROWSE
11904 else if (STRICMP(name, "browse") == 0)
11905 n = gui.in_use; /* gui_mch_browse() works when GUI is running */
11906# endif
11907#endif
11908#ifdef FEAT_SYN_HL
11909 else if (STRICMP(name, "syntax_items") == 0)
11910 n = syntax_present(curbuf);
11911#endif
11912#if defined(WIN3264)
11913 else if (STRICMP(name, "win95") == 0)
11914 n = mch_windows95();
11915#endif
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +000011916#ifdef FEAT_NETBEANS_INTG
11917 else if (STRICMP(name, "netbeans_enabled") == 0)
11918 n = usingNetbeans;
11919#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011920 }
11921
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011922 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011923}
11924
11925/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000011926 * "has_key()" function
11927 */
11928 static void
11929f_has_key(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011930 typval_T *argvars;
11931 typval_T *rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011932{
Bram Moolenaare9a41262005-01-15 22:18:47 +000011933 if (argvars[0].v_type != VAR_DICT)
11934 {
11935 EMSG(_(e_dictreq));
11936 return;
11937 }
11938 if (argvars[0].vval.v_dict == NULL)
11939 return;
11940
11941 rettv->vval.v_number = dict_find(argvars[0].vval.v_dict,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000011942 get_tv_string(&argvars[1]), -1) != NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011943}
11944
11945/*
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011946 * "haslocaldir()" function
11947 */
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011948 static void
11949f_haslocaldir(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011950 typval_T *argvars UNUSED;
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011951 typval_T *rettv;
11952{
11953 rettv->vval.v_number = (curwin->w_localdir != NULL);
11954}
11955
11956/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011957 * "hasmapto()" function
11958 */
11959 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011960f_hasmapto(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011961 typval_T *argvars;
11962 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011963{
11964 char_u *name;
11965 char_u *mode;
11966 char_u buf[NUMBUFLEN];
Bram Moolenaar2c932302006-03-18 21:42:09 +000011967 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011968
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011969 name = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011970 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011971 mode = (char_u *)"nvo";
11972 else
Bram Moolenaar2c932302006-03-18 21:42:09 +000011973 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011974 mode = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000011975 if (argvars[2].v_type != VAR_UNKNOWN)
11976 abbr = get_tv_number(&argvars[2]);
11977 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011978
Bram Moolenaar2c932302006-03-18 21:42:09 +000011979 if (map_to_exists(name, mode, abbr))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011980 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011981 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011982 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011983}
11984
11985/*
11986 * "histadd()" function
11987 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011988 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011989f_histadd(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011990 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000011991 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011992{
11993#ifdef FEAT_CMDHIST
11994 int histype;
11995 char_u *str;
11996 char_u buf[NUMBUFLEN];
11997#endif
11998
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011999 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012000 if (check_restricted() || check_secure())
12001 return;
12002#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012003 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12004 histype = str != NULL ? get_histtype(str) : -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012005 if (histype >= 0)
12006 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012007 str = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012008 if (*str != NUL)
12009 {
12010 add_to_history(histype, str, FALSE, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012011 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012012 return;
12013 }
12014 }
12015#endif
12016}
12017
12018/*
12019 * "histdel()" function
12020 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012021 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012022f_histdel(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012023 typval_T *argvars UNUSED;
12024 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012025{
12026#ifdef FEAT_CMDHIST
12027 int n;
12028 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012029 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012030
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012031 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12032 if (str == NULL)
12033 n = 0;
12034 else if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000012035 /* only one argument: clear entire history */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012036 n = clr_history(get_histtype(str));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012037 else if (argvars[1].v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +000012038 /* index given: remove that entry */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012039 n = del_history_idx(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012040 (int)get_tv_number(&argvars[1]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012041 else
12042 /* string given: remove all matching entries */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012043 n = del_history_entry(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012044 get_tv_string_buf(&argvars[1], buf));
12045 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012046#endif
12047}
12048
12049/*
12050 * "histget()" function
12051 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012052 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012053f_histget(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012054 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012055 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012056{
12057#ifdef FEAT_CMDHIST
12058 int type;
12059 int idx;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012060 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012061
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012062 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12063 if (str == NULL)
12064 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012065 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012066 {
12067 type = get_histtype(str);
12068 if (argvars[1].v_type == VAR_UNKNOWN)
12069 idx = get_history_idx(type);
12070 else
12071 idx = (int)get_tv_number_chk(&argvars[1], NULL);
12072 /* -1 on type error */
12073 rettv->vval.v_string = vim_strsave(get_history_entry(type, idx));
12074 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012075#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012076 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012077#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012078 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012079}
12080
12081/*
12082 * "histnr()" function
12083 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012084 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012085f_histnr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012086 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012087 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012088{
12089 int i;
12090
12091#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012092 char_u *history = get_tv_string_chk(&argvars[0]);
12093
12094 i = history == NULL ? HIST_CMD - 1 : get_histtype(history);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012095 if (i >= HIST_CMD && i < HIST_COUNT)
12096 i = get_history_idx(i);
12097 else
12098#endif
12099 i = -1;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012100 rettv->vval.v_number = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012101}
12102
12103/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012104 * "highlightID(name)" function
12105 */
12106 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012107f_hlID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012108 typval_T *argvars;
12109 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012110{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012111 rettv->vval.v_number = syn_name2id(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012112}
12113
12114/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012115 * "highlight_exists()" function
12116 */
12117 static void
12118f_hlexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012119 typval_T *argvars;
12120 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012121{
12122 rettv->vval.v_number = highlight_exists(get_tv_string(&argvars[0]));
12123}
12124
12125/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012126 * "hostname()" function
12127 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012128 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012129f_hostname(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012130 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012131 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012132{
12133 char_u hostname[256];
12134
12135 mch_get_host_name(hostname, 256);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012136 rettv->v_type = VAR_STRING;
12137 rettv->vval.v_string = vim_strsave(hostname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012138}
12139
12140/*
12141 * iconv() function
12142 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012143 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012144f_iconv(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#ifdef FEAT_MBYTE
12149 char_u buf1[NUMBUFLEN];
12150 char_u buf2[NUMBUFLEN];
12151 char_u *from, *to, *str;
12152 vimconv_T vimconv;
12153#endif
12154
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012155 rettv->v_type = VAR_STRING;
12156 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012157
12158#ifdef FEAT_MBYTE
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012159 str = get_tv_string(&argvars[0]);
12160 from = enc_canonize(enc_skip(get_tv_string_buf(&argvars[1], buf1)));
12161 to = enc_canonize(enc_skip(get_tv_string_buf(&argvars[2], buf2)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012162 vimconv.vc_type = CONV_NONE;
12163 convert_setup(&vimconv, from, to);
12164
12165 /* If the encodings are equal, no conversion needed. */
12166 if (vimconv.vc_type == CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012167 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012168 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012169 rettv->vval.v_string = string_convert(&vimconv, str, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012170
12171 convert_setup(&vimconv, NULL, NULL);
12172 vim_free(from);
12173 vim_free(to);
12174#endif
12175}
12176
12177/*
12178 * "indent()" function
12179 */
12180 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012181f_indent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012182 typval_T *argvars;
12183 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012184{
12185 linenr_T lnum;
12186
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012187 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012188 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012189 rettv->vval.v_number = get_indent_lnum(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012190 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012191 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012192}
12193
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012194/*
12195 * "index()" function
12196 */
12197 static void
12198f_index(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012199 typval_T *argvars;
12200 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012201{
Bram Moolenaar33570922005-01-25 22:26:29 +000012202 list_T *l;
12203 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012204 long idx = 0;
12205 int ic = FALSE;
12206
12207 rettv->vval.v_number = -1;
12208 if (argvars[0].v_type != VAR_LIST)
12209 {
12210 EMSG(_(e_listreq));
12211 return;
12212 }
12213 l = argvars[0].vval.v_list;
12214 if (l != NULL)
12215 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012216 item = l->lv_first;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012217 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012218 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012219 int error = FALSE;
12220
Bram Moolenaar758711c2005-02-02 23:11:38 +000012221 /* Start at specified item. Use the cached index that list_find()
12222 * sets, so that a negative number also works. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012223 item = list_find(l, get_tv_number_chk(&argvars[2], &error));
Bram Moolenaar758711c2005-02-02 23:11:38 +000012224 idx = l->lv_idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012225 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012226 ic = get_tv_number_chk(&argvars[3], &error);
12227 if (error)
12228 item = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012229 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012230
Bram Moolenaar758711c2005-02-02 23:11:38 +000012231 for ( ; item != NULL; item = item->li_next, ++idx)
12232 if (tv_equal(&item->li_tv, &argvars[1], ic))
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012233 {
12234 rettv->vval.v_number = idx;
12235 break;
12236 }
12237 }
12238}
12239
Bram Moolenaar071d4272004-06-13 20:20:40 +000012240static int inputsecret_flag = 0;
12241
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012242static void get_user_input __ARGS((typval_T *argvars, typval_T *rettv, int inputdialog));
12243
Bram Moolenaar071d4272004-06-13 20:20:40 +000012244/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012245 * This function is used by f_input() and f_inputdialog() functions. The third
12246 * argument to f_input() specifies the type of completion to use at the
12247 * prompt. The third argument to f_inputdialog() specifies the value to return
12248 * when the user cancels the prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +000012249 */
12250 static void
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012251get_user_input(argvars, rettv, inputdialog)
Bram Moolenaar33570922005-01-25 22:26:29 +000012252 typval_T *argvars;
12253 typval_T *rettv;
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012254 int inputdialog;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012255{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012256 char_u *prompt = get_tv_string_chk(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012257 char_u *p = NULL;
12258 int c;
12259 char_u buf[NUMBUFLEN];
12260 int cmd_silent_save = cmd_silent;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012261 char_u *defstr = (char_u *)"";
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012262 int xp_type = EXPAND_NOTHING;
12263 char_u *xp_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012264
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012265 rettv->v_type = VAR_STRING;
Bram Moolenaarce85c562007-09-16 12:21:16 +000012266 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012267
12268#ifdef NO_CONSOLE_INPUT
12269 /* While starting up, there is no place to enter text. */
12270 if (no_console_input())
Bram Moolenaar071d4272004-06-13 20:20:40 +000012271 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012272#endif
12273
12274 cmd_silent = FALSE; /* Want to see the prompt. */
12275 if (prompt != NULL)
12276 {
12277 /* Only the part of the message after the last NL is considered as
12278 * prompt for the command line */
12279 p = vim_strrchr(prompt, '\n');
12280 if (p == NULL)
12281 p = prompt;
12282 else
12283 {
12284 ++p;
12285 c = *p;
12286 *p = NUL;
12287 msg_start();
12288 msg_clr_eos();
12289 msg_puts_attr(prompt, echo_attr);
12290 msg_didout = FALSE;
12291 msg_starthere();
12292 *p = c;
12293 }
12294 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012295
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012296 if (argvars[1].v_type != VAR_UNKNOWN)
12297 {
12298 defstr = get_tv_string_buf_chk(&argvars[1], buf);
12299 if (defstr != NULL)
12300 stuffReadbuffSpec(defstr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012301
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012302 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar4463f292005-09-25 22:20:24 +000012303 {
12304 char_u *xp_name;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000012305 int xp_namelen;
Bram Moolenaar4463f292005-09-25 22:20:24 +000012306 long argt;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012307
Bram Moolenaar4463f292005-09-25 22:20:24 +000012308 rettv->vval.v_string = NULL;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012309
Bram Moolenaar4463f292005-09-25 22:20:24 +000012310 xp_name = get_tv_string_buf_chk(&argvars[2], buf);
12311 if (xp_name == NULL)
12312 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012313
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012314 xp_namelen = (int)STRLEN(xp_name);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012315
Bram Moolenaar4463f292005-09-25 22:20:24 +000012316 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt,
12317 &xp_arg) == FAIL)
12318 return;
12319 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012320 }
12321
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012322 if (defstr != NULL)
12323 rettv->vval.v_string =
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012324 getcmdline_prompt(inputsecret_flag ? NUL : '@', p, echo_attr,
12325 xp_type, xp_arg);
12326
12327 vim_free(xp_arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012328
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012329 /* since the user typed this, no need to wait for return */
12330 need_wait_return = FALSE;
12331 msg_didout = FALSE;
12332 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012333 cmd_silent = cmd_silent_save;
12334}
12335
12336/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012337 * "input()" function
12338 * Also handles inputsecret() when inputsecret is set.
12339 */
12340 static void
12341f_input(argvars, rettv)
12342 typval_T *argvars;
12343 typval_T *rettv;
12344{
12345 get_user_input(argvars, rettv, FALSE);
12346}
12347
12348/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012349 * "inputdialog()" function
12350 */
12351 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012352f_inputdialog(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012353 typval_T *argvars;
12354 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012355{
12356#if defined(FEAT_GUI_TEXTDIALOG)
12357 /* Use a GUI dialog if the GUI is running and 'c' is not in 'guioptions' */
12358 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
12359 {
12360 char_u *message;
12361 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012362 char_u *defstr = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +000012363
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012364 message = get_tv_string_chk(&argvars[0]);
12365 if (argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaarc05f93f2006-05-02 22:09:31 +000012366 && (defstr = get_tv_string_buf_chk(&argvars[1], buf)) != NULL)
Bram Moolenaarce0842a2005-07-18 21:58:11 +000012367 vim_strncpy(IObuff, defstr, IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012368 else
12369 IObuff[0] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012370 if (message != NULL && defstr != NULL
12371 && do_dialog(VIM_QUESTION, NULL, message,
12372 (char_u *)_("&OK\n&Cancel"), 1, IObuff) == 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012373 rettv->vval.v_string = vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012374 else
12375 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012376 if (message != NULL && defstr != NULL
12377 && argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012378 && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012379 rettv->vval.v_string = vim_strsave(
12380 get_tv_string_buf(&argvars[2], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012381 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012382 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012383 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012384 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012385 }
12386 else
12387#endif
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012388 get_user_input(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012389}
12390
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012391/*
12392 * "inputlist()" function
12393 */
12394 static void
12395f_inputlist(argvars, rettv)
12396 typval_T *argvars;
12397 typval_T *rettv;
12398{
12399 listitem_T *li;
12400 int selected;
12401 int mouse_used;
12402
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012403#ifdef NO_CONSOLE_INPUT
12404 /* While starting up, there is no place to enter text. */
12405 if (no_console_input())
12406 return;
12407#endif
12408 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
12409 {
12410 EMSG2(_(e_listarg), "inputlist()");
12411 return;
12412 }
12413
12414 msg_start();
Bram Moolenaar412f7442006-07-23 19:51:57 +000012415 msg_row = Rows - 1; /* for when 'cmdheight' > 1 */
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012416 lines_left = Rows; /* avoid more prompt */
12417 msg_scroll = TRUE;
12418 msg_clr_eos();
12419
12420 for (li = argvars[0].vval.v_list->lv_first; li != NULL; li = li->li_next)
12421 {
12422 msg_puts(get_tv_string(&li->li_tv));
12423 msg_putchar('\n');
12424 }
12425
12426 /* Ask for choice. */
12427 selected = prompt_for_number(&mouse_used);
12428 if (mouse_used)
12429 selected -= lines_left;
12430
12431 rettv->vval.v_number = selected;
12432}
12433
12434
Bram Moolenaar071d4272004-06-13 20:20:40 +000012435static garray_T ga_userinput = {0, 0, sizeof(tasave_T), 4, NULL};
12436
12437/*
12438 * "inputrestore()" function
12439 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012440 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012441f_inputrestore(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012442 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012443 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012444{
12445 if (ga_userinput.ga_len > 0)
12446 {
12447 --ga_userinput.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012448 restore_typeahead((tasave_T *)(ga_userinput.ga_data)
12449 + ga_userinput.ga_len);
Bram Moolenaar798b30b2009-04-22 10:56:16 +000012450 /* default return is zero == OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012451 }
12452 else if (p_verbose > 1)
12453 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +000012454 verb_msg((char_u *)_("called inputrestore() more often than inputsave()"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012455 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012456 }
12457}
12458
12459/*
12460 * "inputsave()" function
12461 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012462 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012463f_inputsave(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012464 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012465 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012466{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012467 /* Add an entry to the stack of typeahead storage. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012468 if (ga_grow(&ga_userinput, 1) == OK)
12469 {
12470 save_typeahead((tasave_T *)(ga_userinput.ga_data)
12471 + ga_userinput.ga_len);
12472 ++ga_userinput.ga_len;
Bram Moolenaar798b30b2009-04-22 10:56:16 +000012473 /* default return is zero == OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012474 }
12475 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012476 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012477}
12478
12479/*
12480 * "inputsecret()" function
12481 */
12482 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012483f_inputsecret(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012484 typval_T *argvars;
12485 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012486{
12487 ++cmdline_star;
12488 ++inputsecret_flag;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012489 f_input(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012490 --cmdline_star;
12491 --inputsecret_flag;
12492}
12493
12494/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012495 * "insert()" function
12496 */
12497 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012498f_insert(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012499 typval_T *argvars;
12500 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012501{
12502 long before = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000012503 listitem_T *item;
12504 list_T *l;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012505 int error = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012506
12507 if (argvars[0].v_type != VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000012508 EMSG2(_(e_listarg), "insert()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012509 else if ((l = argvars[0].vval.v_list) != NULL
12510 && !tv_check_lock(l->lv_lock, (char_u *)"insert()"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012511 {
12512 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012513 before = get_tv_number_chk(&argvars[2], &error);
12514 if (error)
12515 return; /* type error; errmsg already given */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012516
Bram Moolenaar758711c2005-02-02 23:11:38 +000012517 if (before == l->lv_len)
12518 item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012519 else
12520 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012521 item = list_find(l, before);
12522 if (item == NULL)
12523 {
12524 EMSGN(_(e_listidx), before);
12525 l = NULL;
12526 }
12527 }
12528 if (l != NULL)
12529 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012530 list_insert_tv(l, &argvars[1], item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012531 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012532 }
12533 }
12534}
12535
12536/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012537 * "isdirectory()" function
12538 */
12539 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012540f_isdirectory(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012541 typval_T *argvars;
12542 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012543{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012544 rettv->vval.v_number = mch_isdir(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012545}
12546
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012547/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012548 * "islocked()" function
12549 */
12550 static void
12551f_islocked(argvars, rettv)
12552 typval_T *argvars;
12553 typval_T *rettv;
12554{
12555 lval_T lv;
12556 char_u *end;
12557 dictitem_T *di;
12558
12559 rettv->vval.v_number = -1;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000012560 end = get_lval(get_tv_string(&argvars[0]), NULL, &lv, FALSE, FALSE, FALSE,
12561 FNE_CHECK_START);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012562 if (end != NULL && lv.ll_name != NULL)
12563 {
12564 if (*end != NUL)
12565 EMSG(_(e_trailing));
12566 else
12567 {
12568 if (lv.ll_tv == NULL)
12569 {
12570 if (check_changedtick(lv.ll_name))
12571 rettv->vval.v_number = 1; /* always locked */
12572 else
12573 {
12574 di = find_var(lv.ll_name, NULL);
12575 if (di != NULL)
12576 {
12577 /* Consider a variable locked when:
12578 * 1. the variable itself is locked
12579 * 2. the value of the variable is locked.
12580 * 3. the List or Dict value is locked.
12581 */
12582 rettv->vval.v_number = ((di->di_flags & DI_FLAGS_LOCK)
12583 || tv_islocked(&di->di_tv));
12584 }
12585 }
12586 }
12587 else if (lv.ll_range)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000012588 EMSG(_("E786: Range not allowed"));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012589 else if (lv.ll_newkey != NULL)
12590 EMSG2(_(e_dictkey), lv.ll_newkey);
12591 else if (lv.ll_list != NULL)
12592 /* List item. */
12593 rettv->vval.v_number = tv_islocked(&lv.ll_li->li_tv);
12594 else
12595 /* Dictionary item. */
12596 rettv->vval.v_number = tv_islocked(&lv.ll_di->di_tv);
12597 }
12598 }
12599
12600 clear_lval(&lv);
12601}
12602
Bram Moolenaar33570922005-01-25 22:26:29 +000012603static void dict_list __ARGS((typval_T *argvars, typval_T *rettv, int what));
Bram Moolenaar8c711452005-01-14 21:53:12 +000012604
12605/*
12606 * Turn a dict into a list:
12607 * "what" == 0: list of keys
12608 * "what" == 1: list of values
12609 * "what" == 2: list of items
12610 */
12611 static void
12612dict_list(argvars, rettv, what)
Bram Moolenaar33570922005-01-25 22:26:29 +000012613 typval_T *argvars;
12614 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012615 int what;
12616{
Bram Moolenaar33570922005-01-25 22:26:29 +000012617 list_T *l2;
12618 dictitem_T *di;
12619 hashitem_T *hi;
12620 listitem_T *li;
12621 listitem_T *li2;
12622 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012623 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012624
Bram Moolenaar8c711452005-01-14 21:53:12 +000012625 if (argvars[0].v_type != VAR_DICT)
12626 {
12627 EMSG(_(e_dictreq));
12628 return;
12629 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012630 if ((d = argvars[0].vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012631 return;
12632
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012633 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012634 return;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012635
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012636 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000012637 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012638 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012639 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +000012640 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012641 --todo;
12642 di = HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012643
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012644 li = listitem_alloc();
12645 if (li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012646 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012647 list_append(rettv->vval.v_list, li);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012648
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012649 if (what == 0)
12650 {
12651 /* keys() */
12652 li->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012653 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012654 li->li_tv.vval.v_string = vim_strsave(di->di_key);
12655 }
12656 else if (what == 1)
12657 {
12658 /* values() */
12659 copy_tv(&di->di_tv, &li->li_tv);
12660 }
12661 else
12662 {
12663 /* items() */
12664 l2 = list_alloc();
12665 li->li_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012666 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012667 li->li_tv.vval.v_list = l2;
12668 if (l2 == NULL)
12669 break;
12670 ++l2->lv_refcount;
12671
12672 li2 = listitem_alloc();
12673 if (li2 == NULL)
12674 break;
12675 list_append(l2, li2);
12676 li2->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012677 li2->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012678 li2->li_tv.vval.v_string = vim_strsave(di->di_key);
12679
12680 li2 = listitem_alloc();
12681 if (li2 == NULL)
12682 break;
12683 list_append(l2, li2);
12684 copy_tv(&di->di_tv, &li2->li_tv);
12685 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000012686 }
12687 }
12688}
12689
12690/*
12691 * "items(dict)" function
12692 */
12693 static void
12694f_items(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012695 typval_T *argvars;
12696 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012697{
12698 dict_list(argvars, rettv, 2);
12699}
12700
Bram Moolenaar071d4272004-06-13 20:20:40 +000012701/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012702 * "join()" function
12703 */
12704 static void
12705f_join(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012706 typval_T *argvars;
12707 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012708{
12709 garray_T ga;
12710 char_u *sep;
12711
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012712 if (argvars[0].v_type != VAR_LIST)
12713 {
12714 EMSG(_(e_listreq));
12715 return;
12716 }
12717 if (argvars[0].vval.v_list == NULL)
12718 return;
12719 if (argvars[1].v_type == VAR_UNKNOWN)
12720 sep = (char_u *)" ";
12721 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012722 sep = get_tv_string_chk(&argvars[1]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012723
12724 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012725
12726 if (sep != NULL)
12727 {
12728 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000012729 list_join(&ga, argvars[0].vval.v_list, sep, TRUE, 0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012730 ga_append(&ga, NUL);
12731 rettv->vval.v_string = (char_u *)ga.ga_data;
12732 }
12733 else
12734 rettv->vval.v_string = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012735}
12736
12737/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000012738 * "keys()" function
12739 */
12740 static void
12741f_keys(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012742 typval_T *argvars;
12743 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012744{
12745 dict_list(argvars, rettv, 0);
12746}
12747
12748/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012749 * "last_buffer_nr()" function.
12750 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012751 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012752f_last_buffer_nr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012753 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012754 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012755{
12756 int n = 0;
12757 buf_T *buf;
12758
12759 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
12760 if (n < buf->b_fnum)
12761 n = buf->b_fnum;
12762
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012763 rettv->vval.v_number = n;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012764}
12765
12766/*
12767 * "len()" function
12768 */
12769 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012770f_len(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012771 typval_T *argvars;
12772 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012773{
12774 switch (argvars[0].v_type)
12775 {
12776 case VAR_STRING:
12777 case VAR_NUMBER:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012778 rettv->vval.v_number = (varnumber_T)STRLEN(
12779 get_tv_string(&argvars[0]));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012780 break;
12781 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012782 rettv->vval.v_number = list_len(argvars[0].vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012783 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +000012784 case VAR_DICT:
12785 rettv->vval.v_number = dict_len(argvars[0].vval.v_dict);
12786 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012787 default:
Bram Moolenaare49b69a2005-01-08 16:11:57 +000012788 EMSG(_("E701: Invalid type for len()"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012789 break;
12790 }
12791}
12792
Bram Moolenaar33570922005-01-25 22:26:29 +000012793static void libcall_common __ARGS((typval_T *argvars, typval_T *rettv, int type));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012794
12795 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012796libcall_common(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000012797 typval_T *argvars;
12798 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012799 int type;
12800{
12801#ifdef FEAT_LIBCALL
12802 char_u *string_in;
12803 char_u **string_result;
12804 int nr_result;
12805#endif
12806
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012807 rettv->v_type = type;
Bram Moolenaar798b30b2009-04-22 10:56:16 +000012808 if (type != VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012809 rettv->vval.v_string = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012810
12811 if (check_restricted() || check_secure())
12812 return;
12813
12814#ifdef FEAT_LIBCALL
12815 /* The first two args must be strings, otherwise its meaningless */
12816 if (argvars[0].v_type == VAR_STRING && argvars[1].v_type == VAR_STRING)
12817 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012818 string_in = NULL;
12819 if (argvars[2].v_type == VAR_STRING)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012820 string_in = argvars[2].vval.v_string;
12821 if (type == VAR_NUMBER)
12822 string_result = NULL;
12823 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012824 string_result = &rettv->vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012825 if (mch_libcall(argvars[0].vval.v_string,
12826 argvars[1].vval.v_string,
12827 string_in,
12828 argvars[2].vval.v_number,
12829 string_result,
12830 &nr_result) == OK
12831 && type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012832 rettv->vval.v_number = nr_result;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012833 }
12834#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000012835}
12836
12837/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012838 * "libcall()" function
12839 */
12840 static void
12841f_libcall(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012842 typval_T *argvars;
12843 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012844{
12845 libcall_common(argvars, rettv, VAR_STRING);
12846}
12847
12848/*
12849 * "libcallnr()" function
12850 */
12851 static void
12852f_libcallnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012853 typval_T *argvars;
12854 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012855{
12856 libcall_common(argvars, rettv, VAR_NUMBER);
12857}
12858
12859/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012860 * "line(string)" function
12861 */
12862 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012863f_line(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012864 typval_T *argvars;
12865 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012866{
12867 linenr_T lnum = 0;
12868 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012869 int fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012870
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012871 fp = var2fpos(&argvars[0], TRUE, &fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012872 if (fp != NULL)
12873 lnum = fp->lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012874 rettv->vval.v_number = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012875}
12876
12877/*
12878 * "line2byte(lnum)" function
12879 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012880 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012881f_line2byte(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012882 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012883 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012884{
12885#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012886 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012887#else
12888 linenr_T lnum;
12889
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012890 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012891 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012892 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012893 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012894 rettv->vval.v_number = ml_find_line_or_offset(curbuf, lnum, NULL);
12895 if (rettv->vval.v_number >= 0)
12896 ++rettv->vval.v_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012897#endif
12898}
12899
12900/*
12901 * "lispindent(lnum)" function
12902 */
12903 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012904f_lispindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012905 typval_T *argvars;
12906 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012907{
12908#ifdef FEAT_LISP
12909 pos_T pos;
12910 linenr_T lnum;
12911
12912 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012913 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012914 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
12915 {
12916 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012917 rettv->vval.v_number = get_lisp_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +000012918 curwin->w_cursor = pos;
12919 }
12920 else
12921#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012922 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012923}
12924
12925/*
12926 * "localtime()" function
12927 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012928 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012929f_localtime(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012930 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012931 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012932{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012933 rettv->vval.v_number = (varnumber_T)time(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012934}
12935
Bram Moolenaar33570922005-01-25 22:26:29 +000012936static void get_maparg __ARGS((typval_T *argvars, typval_T *rettv, int exact));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012937
12938 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012939get_maparg(argvars, rettv, exact)
Bram Moolenaar33570922005-01-25 22:26:29 +000012940 typval_T *argvars;
12941 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012942 int exact;
12943{
12944 char_u *keys;
12945 char_u *which;
12946 char_u buf[NUMBUFLEN];
12947 char_u *keys_buf = NULL;
12948 char_u *rhs;
12949 int mode;
12950 garray_T ga;
Bram Moolenaar2c932302006-03-18 21:42:09 +000012951 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012952
12953 /* return empty string for failure */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012954 rettv->v_type = VAR_STRING;
12955 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012956
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012957 keys = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012958 if (*keys == NUL)
12959 return;
12960
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012961 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar2c932302006-03-18 21:42:09 +000012962 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012963 which = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012964 if (argvars[2].v_type != VAR_UNKNOWN)
12965 abbr = get_tv_number(&argvars[2]);
12966 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012967 else
12968 which = (char_u *)"";
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012969 if (which == NULL)
12970 return;
12971
Bram Moolenaar071d4272004-06-13 20:20:40 +000012972 mode = get_map_mode(&which, 0);
12973
Bram Moolenaar3fb9eda2006-05-03 21:29:58 +000012974 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE, FALSE);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012975 rhs = check_map(keys, mode, exact, FALSE, abbr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012976 vim_free(keys_buf);
12977 if (rhs != NULL)
12978 {
12979 ga_init(&ga);
12980 ga.ga_itemsize = 1;
12981 ga.ga_growsize = 40;
12982
12983 while (*rhs != NUL)
12984 ga_concat(&ga, str2special(&rhs, FALSE));
12985
12986 ga_append(&ga, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012987 rettv->vval.v_string = (char_u *)ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012988 }
12989}
12990
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012991#ifdef FEAT_FLOAT
12992/*
12993 * "log10()" function
12994 */
12995 static void
12996f_log10(argvars, rettv)
12997 typval_T *argvars;
12998 typval_T *rettv;
12999{
13000 float_T f;
13001
13002 rettv->v_type = VAR_FLOAT;
13003 if (get_float_arg(argvars, &f) == OK)
13004 rettv->vval.v_float = log10(f);
13005 else
13006 rettv->vval.v_float = 0.0;
13007}
13008#endif
13009
Bram Moolenaar071d4272004-06-13 20:20:40 +000013010/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013011 * "map()" function
13012 */
13013 static void
13014f_map(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013015 typval_T *argvars;
13016 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013017{
13018 filter_map(argvars, rettv, TRUE);
13019}
13020
13021/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013022 * "maparg()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013023 */
13024 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013025f_maparg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013026 typval_T *argvars;
13027 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013028{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013029 get_maparg(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013030}
13031
13032/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013033 * "mapcheck()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013034 */
13035 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013036f_mapcheck(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013037 typval_T *argvars;
13038 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013039{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013040 get_maparg(argvars, rettv, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013041}
13042
Bram Moolenaar33570922005-01-25 22:26:29 +000013043static void find_some_match __ARGS((typval_T *argvars, typval_T *rettv, int start));
Bram Moolenaar071d4272004-06-13 20:20:40 +000013044
13045 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013046find_some_match(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000013047 typval_T *argvars;
13048 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013049 int type;
13050{
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013051 char_u *str = NULL;
13052 char_u *expr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013053 char_u *pat;
13054 regmatch_T regmatch;
13055 char_u patbuf[NUMBUFLEN];
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013056 char_u strbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000013057 char_u *save_cpo;
13058 long start = 0;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013059 long nth = 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013060 colnr_T startcol = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013061 int match = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000013062 list_T *l = NULL;
13063 listitem_T *li = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013064 long idx = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013065 char_u *tofree = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013066
13067 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
13068 save_cpo = p_cpo;
13069 p_cpo = (char_u *)"";
13070
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013071 rettv->vval.v_number = -1;
13072 if (type == 3)
13073 {
13074 /* return empty list when there are no matches */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013075 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013076 goto theend;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013077 }
13078 else if (type == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013079 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013080 rettv->v_type = VAR_STRING;
13081 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013082 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013083
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013084 if (argvars[0].v_type == VAR_LIST)
13085 {
13086 if ((l = argvars[0].vval.v_list) == NULL)
13087 goto theend;
13088 li = l->lv_first;
13089 }
13090 else
13091 expr = str = get_tv_string(&argvars[0]);
13092
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013093 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
13094 if (pat == NULL)
13095 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013096
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013097 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013098 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013099 int error = FALSE;
13100
13101 start = get_tv_number_chk(&argvars[2], &error);
13102 if (error)
13103 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013104 if (l != NULL)
13105 {
13106 li = list_find(l, start);
13107 if (li == NULL)
13108 goto theend;
Bram Moolenaar758711c2005-02-02 23:11:38 +000013109 idx = l->lv_idx; /* use the cached index */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013110 }
13111 else
13112 {
13113 if (start < 0)
13114 start = 0;
13115 if (start > (long)STRLEN(str))
13116 goto theend;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000013117 /* When "count" argument is there ignore matches before "start",
13118 * otherwise skip part of the string. Differs when pattern is "^"
13119 * or "\<". */
13120 if (argvars[3].v_type != VAR_UNKNOWN)
13121 startcol = start;
13122 else
13123 str += start;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013124 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013125
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013126 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013127 nth = get_tv_number_chk(&argvars[3], &error);
13128 if (error)
13129 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013130 }
13131
13132 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
13133 if (regmatch.regprog != NULL)
13134 {
13135 regmatch.rm_ic = p_ic;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013136
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013137 for (;;)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013138 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013139 if (l != NULL)
13140 {
13141 if (li == NULL)
13142 {
13143 match = FALSE;
13144 break;
13145 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013146 vim_free(tofree);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013147 str = echo_string(&li->li_tv, &tofree, strbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013148 if (str == NULL)
13149 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013150 }
13151
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013152 match = vim_regexec_nl(&regmatch, str, (colnr_T)startcol);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013153
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013154 if (match && --nth <= 0)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013155 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013156 if (l == NULL && !match)
13157 break;
13158
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013159 /* Advance to just after the match. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013160 if (l != NULL)
13161 {
13162 li = li->li_next;
13163 ++idx;
13164 }
13165 else
13166 {
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013167#ifdef FEAT_MBYTE
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013168 startcol = (colnr_T)(regmatch.startp[0]
13169 + (*mb_ptr2len)(regmatch.startp[0]) - str);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013170#else
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013171 startcol = regmatch.startp[0] + 1 - str;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013172#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013173 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013174 }
13175
13176 if (match)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013177 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013178 if (type == 3)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013179 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013180 int i;
13181
13182 /* return list with matched string and submatches */
13183 for (i = 0; i < NSUBEXP; ++i)
13184 {
13185 if (regmatch.endp[i] == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000013186 {
13187 if (list_append_string(rettv->vval.v_list,
13188 (char_u *)"", 0) == FAIL)
13189 break;
13190 }
13191 else if (list_append_string(rettv->vval.v_list,
Bram Moolenaar4463f292005-09-25 22:20:24 +000013192 regmatch.startp[i],
13193 (int)(regmatch.endp[i] - regmatch.startp[i]))
13194 == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013195 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013196 }
13197 }
13198 else if (type == 2)
13199 {
13200 /* return matched string */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013201 if (l != NULL)
13202 copy_tv(&li->li_tv, rettv);
13203 else
13204 rettv->vval.v_string = vim_strnsave(regmatch.startp[0],
Bram Moolenaar071d4272004-06-13 20:20:40 +000013205 (int)(regmatch.endp[0] - regmatch.startp[0]));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013206 }
13207 else if (l != NULL)
13208 rettv->vval.v_number = idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013209 else
13210 {
13211 if (type != 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013212 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013213 (varnumber_T)(regmatch.startp[0] - str);
13214 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013215 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013216 (varnumber_T)(regmatch.endp[0] - str);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013217 rettv->vval.v_number += (varnumber_T)(str - expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013218 }
13219 }
13220 vim_free(regmatch.regprog);
13221 }
13222
13223theend:
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013224 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013225 p_cpo = save_cpo;
13226}
13227
13228/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013229 * "match()" function
13230 */
13231 static void
13232f_match(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013233 typval_T *argvars;
13234 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013235{
13236 find_some_match(argvars, rettv, 1);
13237}
13238
13239/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013240 * "matchadd()" function
13241 */
13242 static void
13243f_matchadd(argvars, rettv)
13244 typval_T *argvars;
13245 typval_T *rettv;
13246{
13247#ifdef FEAT_SEARCH_EXTRA
13248 char_u buf[NUMBUFLEN];
13249 char_u *grp = get_tv_string_buf_chk(&argvars[0], buf); /* group */
13250 char_u *pat = get_tv_string_buf_chk(&argvars[1], buf); /* pattern */
13251 int prio = 10; /* default priority */
13252 int id = -1;
13253 int error = FALSE;
13254
13255 rettv->vval.v_number = -1;
13256
13257 if (grp == NULL || pat == NULL)
13258 return;
13259 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013260 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013261 prio = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013262 if (argvars[3].v_type != VAR_UNKNOWN)
13263 id = get_tv_number_chk(&argvars[3], &error);
13264 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013265 if (error == TRUE)
13266 return;
13267 if (id >= 1 && id <= 3)
13268 {
13269 EMSGN("E798: ID is reserved for \":match\": %ld", id);
13270 return;
13271 }
13272
13273 rettv->vval.v_number = match_add(curwin, grp, pat, prio, id);
13274#endif
13275}
13276
13277/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013278 * "matcharg()" function
13279 */
13280 static void
13281f_matcharg(argvars, rettv)
13282 typval_T *argvars;
13283 typval_T *rettv;
13284{
13285 if (rettv_list_alloc(rettv) == OK)
13286 {
13287#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013288 int id = get_tv_number(&argvars[0]);
13289 matchitem_T *m;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013290
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013291 if (id >= 1 && id <= 3)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013292 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013293 if ((m = (matchitem_T *)get_match(curwin, id)) != NULL)
13294 {
13295 list_append_string(rettv->vval.v_list,
13296 syn_id2name(m->hlg_id), -1);
13297 list_append_string(rettv->vval.v_list, m->pattern, -1);
13298 }
13299 else
13300 {
13301 list_append_string(rettv->vval.v_list, NUL, -1);
13302 list_append_string(rettv->vval.v_list, NUL, -1);
13303 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013304 }
13305#endif
13306 }
13307}
13308
13309/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013310 * "matchdelete()" function
13311 */
13312 static void
13313f_matchdelete(argvars, rettv)
13314 typval_T *argvars;
13315 typval_T *rettv;
13316{
13317#ifdef FEAT_SEARCH_EXTRA
13318 rettv->vval.v_number = match_delete(curwin,
13319 (int)get_tv_number(&argvars[0]), TRUE);
13320#endif
13321}
13322
13323/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013324 * "matchend()" function
13325 */
13326 static void
13327f_matchend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013328 typval_T *argvars;
13329 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013330{
13331 find_some_match(argvars, rettv, 0);
13332}
13333
13334/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013335 * "matchlist()" function
13336 */
13337 static void
13338f_matchlist(argvars, rettv)
13339 typval_T *argvars;
13340 typval_T *rettv;
13341{
13342 find_some_match(argvars, rettv, 3);
13343}
13344
13345/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013346 * "matchstr()" function
13347 */
13348 static void
13349f_matchstr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013350 typval_T *argvars;
13351 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013352{
13353 find_some_match(argvars, rettv, 2);
13354}
13355
Bram Moolenaar33570922005-01-25 22:26:29 +000013356static void max_min __ARGS((typval_T *argvars, typval_T *rettv, int domax));
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013357
13358 static void
13359max_min(argvars, rettv, domax)
Bram Moolenaar33570922005-01-25 22:26:29 +000013360 typval_T *argvars;
13361 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013362 int domax;
13363{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013364 long n = 0;
13365 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013366 int error = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013367
13368 if (argvars[0].v_type == VAR_LIST)
13369 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013370 list_T *l;
13371 listitem_T *li;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013372
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013373 l = argvars[0].vval.v_list;
13374 if (l != NULL)
13375 {
13376 li = l->lv_first;
13377 if (li != NULL)
13378 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013379 n = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013380 for (;;)
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013381 {
13382 li = li->li_next;
13383 if (li == NULL)
13384 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013385 i = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013386 if (domax ? i > n : i < n)
13387 n = i;
13388 }
13389 }
13390 }
13391 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000013392 else if (argvars[0].v_type == VAR_DICT)
13393 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013394 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013395 int first = TRUE;
Bram Moolenaar33570922005-01-25 22:26:29 +000013396 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013397 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013398
13399 d = argvars[0].vval.v_dict;
13400 if (d != NULL)
13401 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013402 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000013403 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013404 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013405 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +000013406 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013407 --todo;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013408 i = get_tv_number_chk(&HI2DI(hi)->di_tv, &error);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013409 if (first)
13410 {
13411 n = i;
13412 first = FALSE;
13413 }
13414 else if (domax ? i > n : i < n)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013415 n = i;
13416 }
13417 }
13418 }
13419 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013420 else
Bram Moolenaar758711c2005-02-02 23:11:38 +000013421 EMSG(_(e_listdictarg));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013422 rettv->vval.v_number = error ? 0 : n;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013423}
13424
13425/*
13426 * "max()" function
13427 */
13428 static void
13429f_max(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013430 typval_T *argvars;
13431 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013432{
13433 max_min(argvars, rettv, TRUE);
13434}
13435
13436/*
13437 * "min()" function
13438 */
13439 static void
13440f_min(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013441 typval_T *argvars;
13442 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013443{
13444 max_min(argvars, rettv, FALSE);
13445}
13446
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013447static int mkdir_recurse __ARGS((char_u *dir, int prot));
13448
13449/*
13450 * Create the directory in which "dir" is located, and higher levels when
13451 * needed.
13452 */
13453 static int
13454mkdir_recurse(dir, prot)
13455 char_u *dir;
13456 int prot;
13457{
13458 char_u *p;
13459 char_u *updir;
13460 int r = FAIL;
13461
13462 /* Get end of directory name in "dir".
13463 * We're done when it's "/" or "c:/". */
13464 p = gettail_sep(dir);
13465 if (p <= get_past_head(dir))
13466 return OK;
13467
13468 /* If the directory exists we're done. Otherwise: create it.*/
13469 updir = vim_strnsave(dir, (int)(p - dir));
13470 if (updir == NULL)
13471 return FAIL;
13472 if (mch_isdir(updir))
13473 r = OK;
13474 else if (mkdir_recurse(updir, prot) == OK)
13475 r = vim_mkdir_emsg(updir, prot);
13476 vim_free(updir);
13477 return r;
13478}
13479
13480#ifdef vim_mkdir
13481/*
13482 * "mkdir()" function
13483 */
13484 static void
13485f_mkdir(argvars, rettv)
13486 typval_T *argvars;
13487 typval_T *rettv;
13488{
13489 char_u *dir;
13490 char_u buf[NUMBUFLEN];
13491 int prot = 0755;
13492
13493 rettv->vval.v_number = FAIL;
13494 if (check_restricted() || check_secure())
13495 return;
13496
13497 dir = get_tv_string_buf(&argvars[0], buf);
13498 if (argvars[1].v_type != VAR_UNKNOWN)
13499 {
13500 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013501 prot = get_tv_number_chk(&argvars[2], NULL);
13502 if (prot != -1 && STRCMP(get_tv_string(&argvars[1]), "p") == 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013503 mkdir_recurse(dir, prot);
13504 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013505 rettv->vval.v_number = prot != -1 ? vim_mkdir_emsg(dir, prot) : 0;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013506}
13507#endif
13508
Bram Moolenaar0d660222005-01-07 21:51:51 +000013509/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013510 * "mode()" function
13511 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000013512 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013513f_mode(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013514 typval_T *argvars;
13515 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013516{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013517 char_u buf[3];
13518
13519 buf[1] = NUL;
13520 buf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013521
13522#ifdef FEAT_VISUAL
13523 if (VIsual_active)
13524 {
13525 if (VIsual_select)
13526 buf[0] = VIsual_mode + 's' - 'v';
13527 else
13528 buf[0] = VIsual_mode;
13529 }
13530 else
13531#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013532 if (State == HITRETURN || State == ASKMORE || State == SETWSIZE
13533 || State == CONFIRM)
13534 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013535 buf[0] = 'r';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013536 if (State == ASKMORE)
13537 buf[1] = 'm';
13538 else if (State == CONFIRM)
13539 buf[1] = '?';
13540 }
13541 else if (State == EXTERNCMD)
13542 buf[0] = '!';
Bram Moolenaar071d4272004-06-13 20:20:40 +000013543 else if (State & INSERT)
13544 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013545#ifdef FEAT_VREPLACE
13546 if (State & VREPLACE_FLAG)
13547 {
13548 buf[0] = 'R';
13549 buf[1] = 'v';
13550 }
13551 else
13552#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000013553 if (State & REPLACE_FLAG)
13554 buf[0] = 'R';
13555 else
13556 buf[0] = 'i';
13557 }
13558 else if (State & CMDLINE)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013559 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013560 buf[0] = 'c';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013561 if (exmode_active)
13562 buf[1] = 'v';
13563 }
13564 else if (exmode_active)
13565 {
13566 buf[0] = 'c';
13567 buf[1] = 'e';
13568 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013569 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013570 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013571 buf[0] = 'n';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013572 if (finish_op)
13573 buf[1] = 'o';
13574 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013575
Bram Moolenaar05bb9532008-07-04 09:44:11 +000013576 /* Clear out the minor mode when the argument is not a non-zero number or
13577 * non-empty string. */
13578 if (!non_zero_arg(&argvars[0]))
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013579 buf[1] = NUL;
13580
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013581 rettv->vval.v_string = vim_strsave(buf);
13582 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013583}
13584
13585/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013586 * "nextnonblank()" function
13587 */
13588 static void
13589f_nextnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013590 typval_T *argvars;
13591 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013592{
13593 linenr_T lnum;
13594
13595 for (lnum = get_tv_lnum(argvars); ; ++lnum)
13596 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013597 if (lnum < 0 || lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar0d660222005-01-07 21:51:51 +000013598 {
13599 lnum = 0;
13600 break;
13601 }
13602 if (*skipwhite(ml_get(lnum)) != NUL)
13603 break;
13604 }
13605 rettv->vval.v_number = lnum;
13606}
13607
13608/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013609 * "nr2char()" function
13610 */
13611 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013612f_nr2char(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013613 typval_T *argvars;
13614 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013615{
13616 char_u buf[NUMBUFLEN];
13617
13618#ifdef FEAT_MBYTE
13619 if (has_mbyte)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013620 buf[(*mb_char2bytes)((int)get_tv_number(&argvars[0]), buf)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013621 else
13622#endif
13623 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013624 buf[0] = (char_u)get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013625 buf[1] = NUL;
13626 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013627 rettv->v_type = VAR_STRING;
13628 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013629}
13630
13631/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013632 * "pathshorten()" function
13633 */
13634 static void
13635f_pathshorten(argvars, rettv)
13636 typval_T *argvars;
13637 typval_T *rettv;
13638{
13639 char_u *p;
13640
13641 rettv->v_type = VAR_STRING;
13642 p = get_tv_string_chk(&argvars[0]);
13643 if (p == NULL)
13644 rettv->vval.v_string = NULL;
13645 else
13646 {
13647 p = vim_strsave(p);
13648 rettv->vval.v_string = p;
13649 if (p != NULL)
13650 shorten_dir(p);
13651 }
13652}
13653
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013654#ifdef FEAT_FLOAT
13655/*
13656 * "pow()" function
13657 */
13658 static void
13659f_pow(argvars, rettv)
13660 typval_T *argvars;
13661 typval_T *rettv;
13662{
13663 float_T fx, fy;
13664
13665 rettv->v_type = VAR_FLOAT;
13666 if (get_float_arg(argvars, &fx) == OK
13667 && get_float_arg(&argvars[1], &fy) == OK)
13668 rettv->vval.v_float = pow(fx, fy);
13669 else
13670 rettv->vval.v_float = 0.0;
13671}
13672#endif
13673
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013674/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013675 * "prevnonblank()" function
13676 */
13677 static void
13678f_prevnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013679 typval_T *argvars;
13680 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013681{
13682 linenr_T lnum;
13683
13684 lnum = get_tv_lnum(argvars);
13685 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
13686 lnum = 0;
13687 else
13688 while (lnum >= 1 && *skipwhite(ml_get(lnum)) == NUL)
13689 --lnum;
13690 rettv->vval.v_number = lnum;
13691}
13692
Bram Moolenaara6c840d2005-08-22 22:59:46 +000013693#ifdef HAVE_STDARG_H
13694/* This dummy va_list is here because:
13695 * - passing a NULL pointer doesn't work when va_list isn't a pointer
13696 * - locally in the function results in a "used before set" warning
13697 * - using va_start() to initialize it gives "function with fixed args" error */
13698static va_list ap;
13699#endif
13700
Bram Moolenaar8c711452005-01-14 21:53:12 +000013701/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013702 * "printf()" function
13703 */
13704 static void
13705f_printf(argvars, rettv)
13706 typval_T *argvars;
13707 typval_T *rettv;
13708{
13709 rettv->v_type = VAR_STRING;
13710 rettv->vval.v_string = NULL;
Bram Moolenaard52d9742005-08-21 22:20:28 +000013711#ifdef HAVE_STDARG_H /* only very old compilers can't do this */
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013712 {
13713 char_u buf[NUMBUFLEN];
13714 int len;
13715 char_u *s;
13716 int saved_did_emsg = did_emsg;
13717 char *fmt;
13718
13719 /* Get the required length, allocate the buffer and do it for real. */
13720 did_emsg = FALSE;
13721 fmt = (char *)get_tv_string_buf(&argvars[0], buf);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013722 len = vim_vsnprintf(NULL, 0, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013723 if (!did_emsg)
13724 {
13725 s = alloc(len + 1);
13726 if (s != NULL)
13727 {
13728 rettv->vval.v_string = s;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013729 (void)vim_vsnprintf((char *)s, len + 1, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013730 }
13731 }
13732 did_emsg |= saved_did_emsg;
13733 }
13734#endif
13735}
13736
13737/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013738 * "pumvisible()" function
13739 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013740 static void
13741f_pumvisible(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000013742 typval_T *argvars UNUSED;
13743 typval_T *rettv UNUSED;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013744{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013745#ifdef FEAT_INS_EXPAND
13746 if (pum_visible())
13747 rettv->vval.v_number = 1;
13748#endif
13749}
13750
13751/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000013752 * "range()" function
13753 */
13754 static void
13755f_range(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013756 typval_T *argvars;
13757 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013758{
13759 long start;
13760 long end;
13761 long stride = 1;
13762 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013763 int error = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013764
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013765 start = get_tv_number_chk(&argvars[0], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013766 if (argvars[1].v_type == VAR_UNKNOWN)
13767 {
13768 end = start - 1;
13769 start = 0;
13770 }
13771 else
13772 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013773 end = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013774 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013775 stride = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013776 }
13777
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013778 if (error)
13779 return; /* type error; errmsg already given */
Bram Moolenaar8c711452005-01-14 21:53:12 +000013780 if (stride == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013781 EMSG(_("E726: Stride is zero"));
Bram Moolenaar92124a32005-06-17 22:03:40 +000013782 else if (stride > 0 ? end + 1 < start : end - 1 > start)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013783 EMSG(_("E727: Start past end"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000013784 else
13785 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013786 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013787 for (i = start; stride > 0 ? i <= end : i >= end; i += stride)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013788 if (list_append_number(rettv->vval.v_list,
13789 (varnumber_T)i) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013790 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013791 }
13792}
13793
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013794/*
13795 * "readfile()" function
13796 */
13797 static void
13798f_readfile(argvars, rettv)
13799 typval_T *argvars;
13800 typval_T *rettv;
13801{
13802 int binary = FALSE;
13803 char_u *fname;
13804 FILE *fd;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013805 listitem_T *li;
13806#define FREAD_SIZE 200 /* optimized for text lines */
13807 char_u buf[FREAD_SIZE];
13808 int readlen; /* size of last fread() */
13809 int buflen; /* nr of valid chars in buf[] */
13810 int filtd; /* how much in buf[] was NUL -> '\n' filtered */
13811 int tolist; /* first byte in buf[] still to be put in list */
13812 int chop; /* how many CR to chop off */
13813 char_u *prev = NULL; /* previously read bytes, if any */
13814 int prevlen = 0; /* length of "prev" if not NULL */
13815 char_u *s;
13816 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013817 long maxline = MAXLNUM;
13818 long cnt = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013819
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013820 if (argvars[1].v_type != VAR_UNKNOWN)
13821 {
13822 if (STRCMP(get_tv_string(&argvars[1]), "b") == 0)
13823 binary = TRUE;
13824 if (argvars[2].v_type != VAR_UNKNOWN)
13825 maxline = get_tv_number(&argvars[2]);
13826 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013827
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013828 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013829 return;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013830
13831 /* Always open the file in binary mode, library functions have a mind of
13832 * their own about CR-LF conversion. */
13833 fname = get_tv_string(&argvars[0]);
13834 if (*fname == NUL || (fd = mch_fopen((char *)fname, READBIN)) == NULL)
13835 {
13836 EMSG2(_(e_notopen), *fname == NUL ? (char_u *)_("<empty>") : fname);
13837 return;
13838 }
13839
13840 filtd = 0;
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013841 while (cnt < maxline || maxline < 0)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013842 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013843 readlen = (int)fread(buf + filtd, 1, FREAD_SIZE - filtd, fd);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013844 buflen = filtd + readlen;
13845 tolist = 0;
13846 for ( ; filtd < buflen || readlen <= 0; ++filtd)
13847 {
13848 if (buf[filtd] == '\n' || readlen <= 0)
13849 {
13850 /* Only when in binary mode add an empty list item when the
13851 * last line ends in a '\n'. */
13852 if (!binary && readlen == 0 && filtd == 0)
13853 break;
13854
13855 /* Found end-of-line or end-of-file: add a text line to the
13856 * list. */
13857 chop = 0;
13858 if (!binary)
13859 while (filtd - chop - 1 >= tolist
13860 && buf[filtd - chop - 1] == '\r')
13861 ++chop;
13862 len = filtd - tolist - chop;
13863 if (prev == NULL)
13864 s = vim_strnsave(buf + tolist, len);
13865 else
13866 {
13867 s = alloc((unsigned)(prevlen + len + 1));
13868 if (s != NULL)
13869 {
13870 mch_memmove(s, prev, prevlen);
13871 vim_free(prev);
13872 prev = NULL;
13873 mch_memmove(s + prevlen, buf + tolist, len);
13874 s[prevlen + len] = NUL;
13875 }
13876 }
13877 tolist = filtd + 1;
13878
13879 li = listitem_alloc();
13880 if (li == NULL)
13881 {
13882 vim_free(s);
13883 break;
13884 }
13885 li->li_tv.v_type = VAR_STRING;
13886 li->li_tv.v_lock = 0;
13887 li->li_tv.vval.v_string = s;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013888 list_append(rettv->vval.v_list, li);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013889
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013890 if (++cnt >= maxline && maxline >= 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013891 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013892 if (readlen <= 0)
13893 break;
13894 }
13895 else if (buf[filtd] == NUL)
13896 buf[filtd] = '\n';
13897 }
13898 if (readlen <= 0)
13899 break;
13900
13901 if (tolist == 0)
13902 {
13903 /* "buf" is full, need to move text to an allocated buffer */
13904 if (prev == NULL)
13905 {
13906 prev = vim_strnsave(buf, buflen);
13907 prevlen = buflen;
13908 }
13909 else
13910 {
13911 s = alloc((unsigned)(prevlen + buflen));
13912 if (s != NULL)
13913 {
13914 mch_memmove(s, prev, prevlen);
13915 mch_memmove(s + prevlen, buf, buflen);
13916 vim_free(prev);
13917 prev = s;
13918 prevlen += buflen;
13919 }
13920 }
13921 filtd = 0;
13922 }
13923 else
13924 {
13925 mch_memmove(buf, buf + tolist, buflen - tolist);
13926 filtd -= tolist;
13927 }
13928 }
13929
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013930 /*
13931 * For a negative line count use only the lines at the end of the file,
13932 * free the rest.
13933 */
13934 if (maxline < 0)
13935 while (cnt > -maxline)
13936 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013937 listitem_remove(rettv->vval.v_list, rettv->vval.v_list->lv_first);
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013938 --cnt;
13939 }
13940
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013941 vim_free(prev);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013942 fclose(fd);
13943}
13944
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013945#if defined(FEAT_RELTIME)
13946static int list2proftime __ARGS((typval_T *arg, proftime_T *tm));
13947
13948/*
13949 * Convert a List to proftime_T.
13950 * Return FAIL when there is something wrong.
13951 */
13952 static int
13953list2proftime(arg, tm)
13954 typval_T *arg;
13955 proftime_T *tm;
13956{
13957 long n1, n2;
13958 int error = FALSE;
13959
13960 if (arg->v_type != VAR_LIST || arg->vval.v_list == NULL
13961 || arg->vval.v_list->lv_len != 2)
13962 return FAIL;
13963 n1 = list_find_nr(arg->vval.v_list, 0L, &error);
13964 n2 = list_find_nr(arg->vval.v_list, 1L, &error);
13965# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000013966 tm->HighPart = n1;
13967 tm->LowPart = n2;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013968# else
13969 tm->tv_sec = n1;
13970 tm->tv_usec = n2;
13971# endif
13972 return error ? FAIL : OK;
13973}
13974#endif /* FEAT_RELTIME */
13975
13976/*
13977 * "reltime()" function
13978 */
13979 static void
13980f_reltime(argvars, rettv)
13981 typval_T *argvars;
13982 typval_T *rettv;
13983{
13984#ifdef FEAT_RELTIME
13985 proftime_T res;
13986 proftime_T start;
13987
13988 if (argvars[0].v_type == VAR_UNKNOWN)
13989 {
13990 /* No arguments: get current time. */
13991 profile_start(&res);
13992 }
13993 else if (argvars[1].v_type == VAR_UNKNOWN)
13994 {
13995 if (list2proftime(&argvars[0], &res) == FAIL)
13996 return;
13997 profile_end(&res);
13998 }
13999 else
14000 {
14001 /* Two arguments: compute the difference. */
14002 if (list2proftime(&argvars[0], &start) == FAIL
14003 || list2proftime(&argvars[1], &res) == FAIL)
14004 return;
14005 profile_sub(&res, &start);
14006 }
14007
14008 if (rettv_list_alloc(rettv) == OK)
14009 {
14010 long n1, n2;
14011
14012# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000014013 n1 = res.HighPart;
14014 n2 = res.LowPart;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000014015# else
14016 n1 = res.tv_sec;
14017 n2 = res.tv_usec;
14018# endif
14019 list_append_number(rettv->vval.v_list, (varnumber_T)n1);
14020 list_append_number(rettv->vval.v_list, (varnumber_T)n2);
14021 }
14022#endif
14023}
14024
14025/*
14026 * "reltimestr()" function
14027 */
14028 static void
14029f_reltimestr(argvars, rettv)
14030 typval_T *argvars;
14031 typval_T *rettv;
14032{
14033#ifdef FEAT_RELTIME
14034 proftime_T tm;
14035#endif
14036
14037 rettv->v_type = VAR_STRING;
14038 rettv->vval.v_string = NULL;
14039#ifdef FEAT_RELTIME
14040 if (list2proftime(&argvars[0], &tm) == OK)
14041 rettv->vval.v_string = vim_strsave((char_u *)profile_msg(&tm));
14042#endif
14043}
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000014044
Bram Moolenaar0d660222005-01-07 21:51:51 +000014045#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
14046static void make_connection __ARGS((void));
14047static int check_connection __ARGS((void));
14048
14049 static void
14050make_connection()
14051{
14052 if (X_DISPLAY == NULL
14053# ifdef FEAT_GUI
14054 && !gui.in_use
14055# endif
14056 )
14057 {
14058 x_force_connect = TRUE;
14059 setup_term_clip();
14060 x_force_connect = FALSE;
14061 }
14062}
14063
14064 static int
14065check_connection()
14066{
14067 make_connection();
14068 if (X_DISPLAY == NULL)
14069 {
14070 EMSG(_("E240: No connection to Vim server"));
14071 return FAIL;
14072 }
14073 return OK;
14074}
14075#endif
14076
14077#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014078static void remote_common __ARGS((typval_T *argvars, typval_T *rettv, int expr));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014079
14080 static void
14081remote_common(argvars, rettv, expr)
Bram Moolenaar33570922005-01-25 22:26:29 +000014082 typval_T *argvars;
14083 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014084 int expr;
14085{
14086 char_u *server_name;
14087 char_u *keys;
14088 char_u *r = NULL;
14089 char_u buf[NUMBUFLEN];
14090# ifdef WIN32
14091 HWND w;
14092# else
14093 Window w;
14094# endif
14095
14096 if (check_restricted() || check_secure())
14097 return;
14098
14099# ifdef FEAT_X11
14100 if (check_connection() == FAIL)
14101 return;
14102# endif
14103
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014104 server_name = get_tv_string_chk(&argvars[0]);
14105 if (server_name == NULL)
14106 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014107 keys = get_tv_string_buf(&argvars[1], buf);
14108# ifdef WIN32
14109 if (serverSendToVim(server_name, keys, &r, &w, expr, TRUE) < 0)
14110# else
14111 if (serverSendToVim(X_DISPLAY, server_name, keys, &r, &w, expr, 0, TRUE)
14112 < 0)
14113# endif
14114 {
14115 if (r != NULL)
14116 EMSG(r); /* sending worked but evaluation failed */
14117 else
14118 EMSG2(_("E241: Unable to send to %s"), server_name);
14119 return;
14120 }
14121
14122 rettv->vval.v_string = r;
14123
14124 if (argvars[2].v_type != VAR_UNKNOWN)
14125 {
Bram Moolenaar33570922005-01-25 22:26:29 +000014126 dictitem_T v;
Bram Moolenaar555b2802005-05-19 21:08:39 +000014127 char_u str[30];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014128 char_u *idvar;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014129
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014130 sprintf((char *)str, PRINTF_HEX_LONG_U, (long_u)w);
Bram Moolenaar33570922005-01-25 22:26:29 +000014131 v.di_tv.v_type = VAR_STRING;
14132 v.di_tv.vval.v_string = vim_strsave(str);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014133 idvar = get_tv_string_chk(&argvars[2]);
14134 if (idvar != NULL)
14135 set_var(idvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014136 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014137 }
14138}
14139#endif
14140
14141/*
14142 * "remote_expr()" function
14143 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014144 static void
14145f_remote_expr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014146 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014147 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014148{
14149 rettv->v_type = VAR_STRING;
14150 rettv->vval.v_string = NULL;
14151#ifdef FEAT_CLIENTSERVER
14152 remote_common(argvars, rettv, TRUE);
14153#endif
14154}
14155
14156/*
14157 * "remote_foreground()" function
14158 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014159 static void
14160f_remote_foreground(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014161 typval_T *argvars UNUSED;
14162 typval_T *rettv UNUSED;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014163{
Bram Moolenaar0d660222005-01-07 21:51:51 +000014164#ifdef FEAT_CLIENTSERVER
14165# ifdef WIN32
14166 /* On Win32 it's done in this application. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014167 {
14168 char_u *server_name = get_tv_string_chk(&argvars[0]);
14169
14170 if (server_name != NULL)
14171 serverForeground(server_name);
14172 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014173# else
14174 /* Send a foreground() expression to the server. */
14175 argvars[1].v_type = VAR_STRING;
14176 argvars[1].vval.v_string = vim_strsave((char_u *)"foreground()");
14177 argvars[2].v_type = VAR_UNKNOWN;
14178 remote_common(argvars, rettv, TRUE);
14179 vim_free(argvars[1].vval.v_string);
14180# endif
14181#endif
14182}
14183
Bram Moolenaar0d660222005-01-07 21:51:51 +000014184 static void
14185f_remote_peek(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014186 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014187 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014188{
14189#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014190 dictitem_T v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014191 char_u *s = NULL;
14192# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014193 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014194# endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014195 char_u *serverid;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014196
14197 if (check_restricted() || check_secure())
14198 {
14199 rettv->vval.v_number = -1;
14200 return;
14201 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014202 serverid = get_tv_string_chk(&argvars[0]);
14203 if (serverid == NULL)
14204 {
14205 rettv->vval.v_number = -1;
14206 return; /* type error; errmsg already given */
14207 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014208# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014209 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014210 if (n == 0)
14211 rettv->vval.v_number = -1;
14212 else
14213 {
14214 s = serverGetReply((HWND)n, FALSE, FALSE, FALSE);
14215 rettv->vval.v_number = (s != NULL);
14216 }
14217# else
Bram Moolenaar0d660222005-01-07 21:51:51 +000014218 if (check_connection() == FAIL)
14219 return;
14220
14221 rettv->vval.v_number = serverPeekReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014222 serverStrToWin(serverid), &s);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014223# endif
14224
14225 if (argvars[1].v_type != VAR_UNKNOWN && rettv->vval.v_number > 0)
14226 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014227 char_u *retvar;
14228
Bram Moolenaar33570922005-01-25 22:26:29 +000014229 v.di_tv.v_type = VAR_STRING;
14230 v.di_tv.vval.v_string = vim_strsave(s);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014231 retvar = get_tv_string_chk(&argvars[1]);
14232 if (retvar != NULL)
14233 set_var(retvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014234 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014235 }
14236#else
14237 rettv->vval.v_number = -1;
14238#endif
14239}
14240
Bram Moolenaar0d660222005-01-07 21:51:51 +000014241 static void
14242f_remote_read(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014243 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014244 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014245{
14246 char_u *r = NULL;
14247
14248#ifdef FEAT_CLIENTSERVER
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014249 char_u *serverid = get_tv_string_chk(&argvars[0]);
14250
14251 if (serverid != NULL && !check_restricted() && !check_secure())
Bram Moolenaar0d660222005-01-07 21:51:51 +000014252 {
14253# ifdef WIN32
14254 /* The server's HWND is encoded in the 'id' parameter */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014255 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014256
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014257 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014258 if (n != 0)
14259 r = serverGetReply((HWND)n, FALSE, TRUE, TRUE);
14260 if (r == NULL)
14261# else
14262 if (check_connection() == FAIL || serverReadReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014263 serverStrToWin(serverid), &r, FALSE) < 0)
Bram Moolenaar0d660222005-01-07 21:51:51 +000014264# endif
14265 EMSG(_("E277: Unable to read a server reply"));
14266 }
14267#endif
14268 rettv->v_type = VAR_STRING;
14269 rettv->vval.v_string = r;
14270}
14271
14272/*
14273 * "remote_send()" function
14274 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014275 static void
14276f_remote_send(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014277 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014278 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014279{
14280 rettv->v_type = VAR_STRING;
14281 rettv->vval.v_string = NULL;
14282#ifdef FEAT_CLIENTSERVER
14283 remote_common(argvars, rettv, FALSE);
14284#endif
14285}
14286
14287/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000014288 * "remove()" function
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014289 */
14290 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014291f_remove(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014292 typval_T *argvars;
14293 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014294{
Bram Moolenaar33570922005-01-25 22:26:29 +000014295 list_T *l;
14296 listitem_T *item, *item2;
14297 listitem_T *li;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014298 long idx;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014299 long end;
Bram Moolenaar8c711452005-01-14 21:53:12 +000014300 char_u *key;
Bram Moolenaar33570922005-01-25 22:26:29 +000014301 dict_T *d;
14302 dictitem_T *di;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014303
Bram Moolenaar8c711452005-01-14 21:53:12 +000014304 if (argvars[0].v_type == VAR_DICT)
14305 {
14306 if (argvars[2].v_type != VAR_UNKNOWN)
14307 EMSG2(_(e_toomanyarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014308 else if ((d = argvars[0].vval.v_dict) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014309 && !tv_check_lock(d->dv_lock, (char_u *)"remove() argument"))
Bram Moolenaar8c711452005-01-14 21:53:12 +000014310 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014311 key = get_tv_string_chk(&argvars[1]);
14312 if (key != NULL)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014313 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014314 di = dict_find(d, key, -1);
14315 if (di == NULL)
14316 EMSG2(_(e_dictkey), key);
14317 else
14318 {
14319 *rettv = di->di_tv;
14320 init_tv(&di->di_tv);
14321 dictitem_remove(d, di);
14322 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014323 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000014324 }
14325 }
14326 else if (argvars[0].v_type != VAR_LIST)
14327 EMSG2(_(e_listdictarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014328 else if ((l = argvars[0].vval.v_list) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014329 && !tv_check_lock(l->lv_lock, (char_u *)"remove() argument"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014330 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014331 int error = FALSE;
14332
14333 idx = get_tv_number_chk(&argvars[1], &error);
14334 if (error)
14335 ; /* type error: do nothing, errmsg already given */
14336 else if ((item = list_find(l, idx)) == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014337 EMSGN(_(e_listidx), idx);
14338 else
14339 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014340 if (argvars[2].v_type == VAR_UNKNOWN)
14341 {
14342 /* Remove one item, return its value. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014343 list_remove(l, item, item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014344 *rettv = item->li_tv;
14345 vim_free(item);
14346 }
14347 else
14348 {
14349 /* Remove range of items, return list with values. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014350 end = get_tv_number_chk(&argvars[2], &error);
14351 if (error)
14352 ; /* type error: do nothing */
14353 else if ((item2 = list_find(l, end)) == NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014354 EMSGN(_(e_listidx), end);
14355 else
14356 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000014357 int cnt = 0;
14358
14359 for (li = item; li != NULL; li = li->li_next)
14360 {
14361 ++cnt;
14362 if (li == item2)
14363 break;
14364 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014365 if (li == NULL) /* didn't find "item2" after "item" */
14366 EMSG(_(e_invrange));
14367 else
14368 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014369 list_remove(l, item, item2);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014370 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014371 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014372 l = rettv->vval.v_list;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014373 l->lv_first = item;
14374 l->lv_last = item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014375 item->li_prev = NULL;
14376 item2->li_next = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014377 l->lv_len = cnt;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014378 }
14379 }
14380 }
14381 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014382 }
14383 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014384}
14385
14386/*
14387 * "rename({from}, {to})" function
14388 */
14389 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014390f_rename(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014391 typval_T *argvars;
14392 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014393{
14394 char_u buf[NUMBUFLEN];
14395
14396 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014397 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014398 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014399 rettv->vval.v_number = vim_rename(get_tv_string(&argvars[0]),
14400 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000014401}
14402
14403/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014404 * "repeat()" function
14405 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014406 static void
14407f_repeat(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014408 typval_T *argvars;
14409 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014410{
14411 char_u *p;
14412 int n;
14413 int slen;
14414 int len;
14415 char_u *r;
14416 int i;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014417
14418 n = get_tv_number(&argvars[1]);
14419 if (argvars[0].v_type == VAR_LIST)
14420 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014421 if (rettv_list_alloc(rettv) == OK && argvars[0].vval.v_list != NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014422 while (n-- > 0)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014423 if (list_extend(rettv->vval.v_list,
14424 argvars[0].vval.v_list, NULL) == FAIL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014425 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014426 }
14427 else
14428 {
14429 p = get_tv_string(&argvars[0]);
14430 rettv->v_type = VAR_STRING;
14431 rettv->vval.v_string = NULL;
14432
14433 slen = (int)STRLEN(p);
14434 len = slen * n;
14435 if (len <= 0)
14436 return;
14437
14438 r = alloc(len + 1);
14439 if (r != NULL)
14440 {
14441 for (i = 0; i < n; i++)
14442 mch_memmove(r + i * slen, p, (size_t)slen);
14443 r[len] = NUL;
14444 }
14445
14446 rettv->vval.v_string = r;
14447 }
14448}
14449
14450/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000014451 * "resolve()" function
14452 */
14453 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014454f_resolve(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014455 typval_T *argvars;
14456 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014457{
14458 char_u *p;
14459
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014460 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014461#ifdef FEAT_SHORTCUT
14462 {
14463 char_u *v = NULL;
14464
14465 v = mch_resolve_shortcut(p);
14466 if (v != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014467 rettv->vval.v_string = v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014468 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014469 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014470 }
14471#else
14472# ifdef HAVE_READLINK
14473 {
14474 char_u buf[MAXPATHL + 1];
14475 char_u *cpy;
14476 int len;
14477 char_u *remain = NULL;
14478 char_u *q;
14479 int is_relative_to_current = FALSE;
14480 int has_trailing_pathsep = FALSE;
14481 int limit = 100;
14482
14483 p = vim_strsave(p);
14484
14485 if (p[0] == '.' && (vim_ispathsep(p[1])
14486 || (p[1] == '.' && (vim_ispathsep(p[2])))))
14487 is_relative_to_current = TRUE;
14488
14489 len = STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014490 if (len > 0 && after_pathsep(p, p + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +000014491 has_trailing_pathsep = TRUE;
14492
14493 q = getnextcomp(p);
14494 if (*q != NUL)
14495 {
14496 /* Separate the first path component in "p", and keep the
14497 * remainder (beginning with the path separator). */
14498 remain = vim_strsave(q - 1);
14499 q[-1] = NUL;
14500 }
14501
14502 for (;;)
14503 {
14504 for (;;)
14505 {
14506 len = readlink((char *)p, (char *)buf, MAXPATHL);
14507 if (len <= 0)
14508 break;
14509 buf[len] = NUL;
14510
14511 if (limit-- == 0)
14512 {
14513 vim_free(p);
14514 vim_free(remain);
14515 EMSG(_("E655: Too many symbolic links (cycle?)"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014516 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014517 goto fail;
14518 }
14519
14520 /* Ensure that the result will have a trailing path separator
14521 * if the argument has one. */
14522 if (remain == NULL && has_trailing_pathsep)
14523 add_pathsep(buf);
14524
14525 /* Separate the first path component in the link value and
14526 * concatenate the remainders. */
14527 q = getnextcomp(vim_ispathsep(*buf) ? buf + 1 : buf);
14528 if (*q != NUL)
14529 {
14530 if (remain == NULL)
14531 remain = vim_strsave(q - 1);
14532 else
14533 {
Bram Moolenaar900b4d72005-12-12 22:05:50 +000014534 cpy = concat_str(q - 1, remain);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014535 if (cpy != NULL)
14536 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014537 vim_free(remain);
14538 remain = cpy;
14539 }
14540 }
14541 q[-1] = NUL;
14542 }
14543
14544 q = gettail(p);
14545 if (q > p && *q == NUL)
14546 {
14547 /* Ignore trailing path separator. */
14548 q[-1] = NUL;
14549 q = gettail(p);
14550 }
14551 if (q > p && !mch_isFullName(buf))
14552 {
14553 /* symlink is relative to directory of argument */
14554 cpy = alloc((unsigned)(STRLEN(p) + STRLEN(buf) + 1));
14555 if (cpy != NULL)
14556 {
14557 STRCPY(cpy, p);
14558 STRCPY(gettail(cpy), buf);
14559 vim_free(p);
14560 p = cpy;
14561 }
14562 }
14563 else
14564 {
14565 vim_free(p);
14566 p = vim_strsave(buf);
14567 }
14568 }
14569
14570 if (remain == NULL)
14571 break;
14572
14573 /* Append the first path component of "remain" to "p". */
14574 q = getnextcomp(remain + 1);
14575 len = q - remain - (*q != NUL);
14576 cpy = vim_strnsave(p, STRLEN(p) + len);
14577 if (cpy != NULL)
14578 {
14579 STRNCAT(cpy, remain, len);
14580 vim_free(p);
14581 p = cpy;
14582 }
14583 /* Shorten "remain". */
14584 if (*q != NUL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014585 STRMOVE(remain, q - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014586 else
14587 {
14588 vim_free(remain);
14589 remain = NULL;
14590 }
14591 }
14592
14593 /* If the result is a relative path name, make it explicitly relative to
14594 * the current directory if and only if the argument had this form. */
14595 if (!vim_ispathsep(*p))
14596 {
14597 if (is_relative_to_current
14598 && *p != NUL
14599 && !(p[0] == '.'
14600 && (p[1] == NUL
14601 || vim_ispathsep(p[1])
14602 || (p[1] == '.'
14603 && (p[2] == NUL
14604 || vim_ispathsep(p[2]))))))
14605 {
14606 /* Prepend "./". */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000014607 cpy = concat_str((char_u *)"./", p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014608 if (cpy != NULL)
14609 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014610 vim_free(p);
14611 p = cpy;
14612 }
14613 }
14614 else if (!is_relative_to_current)
14615 {
14616 /* Strip leading "./". */
14617 q = p;
14618 while (q[0] == '.' && vim_ispathsep(q[1]))
14619 q += 2;
14620 if (q > p)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014621 STRMOVE(p, p + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014622 }
14623 }
14624
14625 /* Ensure that the result will have no trailing path separator
14626 * if the argument had none. But keep "/" or "//". */
14627 if (!has_trailing_pathsep)
14628 {
14629 q = p + STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014630 if (after_pathsep(p, q))
14631 *gettail_sep(p) = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014632 }
14633
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014634 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014635 }
14636# else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014637 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014638# endif
14639#endif
14640
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014641 simplify_filename(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014642
14643#ifdef HAVE_READLINK
14644fail:
14645#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014646 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014647}
14648
14649/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000014650 * "reverse({list})" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000014651 */
14652 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000014653f_reverse(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014654 typval_T *argvars;
14655 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014656{
Bram Moolenaar33570922005-01-25 22:26:29 +000014657 list_T *l;
14658 listitem_T *li, *ni;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014659
Bram Moolenaar0d660222005-01-07 21:51:51 +000014660 if (argvars[0].v_type != VAR_LIST)
14661 EMSG2(_(e_listarg), "reverse()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014662 else if ((l = argvars[0].vval.v_list) != NULL
14663 && !tv_check_lock(l->lv_lock, (char_u *)"reverse()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000014664 {
14665 li = l->lv_last;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000014666 l->lv_first = l->lv_last = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014667 l->lv_len = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014668 while (li != NULL)
14669 {
14670 ni = li->li_prev;
14671 list_append(l, li);
14672 li = ni;
14673 }
14674 rettv->vval.v_list = l;
14675 rettv->v_type = VAR_LIST;
14676 ++l->lv_refcount;
Bram Moolenaar52514562008-04-01 11:12:09 +000014677 l->lv_idx = l->lv_len - l->lv_idx - 1;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014678 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014679}
14680
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014681#define SP_NOMOVE 0x01 /* don't move cursor */
14682#define SP_REPEAT 0x02 /* repeat to find outer pair */
14683#define SP_RETCOUNT 0x04 /* return matchcount */
14684#define SP_SETPCMARK 0x08 /* set previous context mark */
14685#define SP_START 0x10 /* accept match at start position */
14686#define SP_SUBPAT 0x20 /* return nr of matching sub-pattern */
14687#define SP_END 0x40 /* leave cursor at end of match */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014688
Bram Moolenaar33570922005-01-25 22:26:29 +000014689static int get_search_arg __ARGS((typval_T *varp, int *flagsp));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014690
14691/*
14692 * Get flags for a search function.
14693 * Possibly sets "p_ws".
14694 * Returns BACKWARD, FORWARD or zero (for an error).
14695 */
14696 static int
14697get_search_arg(varp, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014698 typval_T *varp;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014699 int *flagsp;
14700{
14701 int dir = FORWARD;
14702 char_u *flags;
14703 char_u nbuf[NUMBUFLEN];
14704 int mask;
14705
14706 if (varp->v_type != VAR_UNKNOWN)
14707 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014708 flags = get_tv_string_buf_chk(varp, nbuf);
14709 if (flags == NULL)
14710 return 0; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014711 while (*flags != NUL)
14712 {
14713 switch (*flags)
14714 {
14715 case 'b': dir = BACKWARD; break;
14716 case 'w': p_ws = TRUE; break;
14717 case 'W': p_ws = FALSE; break;
14718 default: mask = 0;
14719 if (flagsp != NULL)
14720 switch (*flags)
14721 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014722 case 'c': mask = SP_START; break;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014723 case 'e': mask = SP_END; break;
14724 case 'm': mask = SP_RETCOUNT; break;
14725 case 'n': mask = SP_NOMOVE; break;
14726 case 'p': mask = SP_SUBPAT; break;
14727 case 'r': mask = SP_REPEAT; break;
14728 case 's': mask = SP_SETPCMARK; break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014729 }
14730 if (mask == 0)
14731 {
14732 EMSG2(_(e_invarg2), flags);
14733 dir = 0;
14734 }
14735 else
14736 *flagsp |= mask;
14737 }
14738 if (dir == 0)
14739 break;
14740 ++flags;
14741 }
14742 }
14743 return dir;
14744}
14745
Bram Moolenaar071d4272004-06-13 20:20:40 +000014746/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014747 * Shared by search() and searchpos() functions
Bram Moolenaar071d4272004-06-13 20:20:40 +000014748 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014749 static int
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014750search_cmn(argvars, match_pos, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014751 typval_T *argvars;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014752 pos_T *match_pos;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014753 int *flagsp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014754{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014755 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014756 char_u *pat;
14757 pos_T pos;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014758 pos_T save_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014759 int save_p_ws = p_ws;
14760 int dir;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014761 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014762 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014763 proftime_T tm;
14764#ifdef FEAT_RELTIME
14765 long time_limit = 0;
14766#endif
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014767 int options = SEARCH_KEEP;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014768 int subpatnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014769
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014770 pat = get_tv_string(&argvars[0]);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014771 dir = get_search_arg(&argvars[1], flagsp); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014772 if (dir == 0)
14773 goto theend;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014774 flags = *flagsp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014775 if (flags & SP_START)
14776 options |= SEARCH_START;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014777 if (flags & SP_END)
14778 options |= SEARCH_END;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014779
Bram Moolenaar76929292008-01-06 19:07:36 +000014780 /* Optional arguments: line number to stop searching and timeout. */
14781 if (argvars[1].v_type != VAR_UNKNOWN && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014782 {
14783 lnum_stop = get_tv_number_chk(&argvars[2], NULL);
14784 if (lnum_stop < 0)
14785 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014786#ifdef FEAT_RELTIME
14787 if (argvars[3].v_type != VAR_UNKNOWN)
14788 {
14789 time_limit = get_tv_number_chk(&argvars[3], NULL);
14790 if (time_limit < 0)
14791 goto theend;
14792 }
14793#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014794 }
14795
Bram Moolenaar76929292008-01-06 19:07:36 +000014796#ifdef FEAT_RELTIME
14797 /* Set the time limit, if there is one. */
14798 profile_setlimit(time_limit, &tm);
14799#endif
14800
Bram Moolenaar231334e2005-07-25 20:46:57 +000014801 /*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014802 * This function does not accept SP_REPEAT and SP_RETCOUNT flags.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014803 * Check to make sure only those flags are set.
14804 * Also, Only the SP_NOMOVE or the SP_SETPCMARK flag can be set. Both
14805 * flags cannot be set. Check for that condition also.
14806 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014807 if (((flags & (SP_REPEAT | SP_RETCOUNT)) != 0)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014808 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014809 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014810 EMSG2(_(e_invarg2), get_tv_string(&argvars[1]));
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014811 goto theend;
14812 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014813
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014814 pos = save_cursor = curwin->w_cursor;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014815 subpatnum = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000014816 options, RE_SEARCH, (linenr_T)lnum_stop, &tm);
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014817 if (subpatnum != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014818 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014819 if (flags & SP_SUBPAT)
14820 retval = subpatnum;
14821 else
14822 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000014823 if (flags & SP_SETPCMARK)
14824 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000014825 curwin->w_cursor = pos;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014826 if (match_pos != NULL)
14827 {
14828 /* Store the match cursor position */
14829 match_pos->lnum = pos.lnum;
14830 match_pos->col = pos.col + 1;
14831 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014832 /* "/$" will put the cursor after the end of the line, may need to
14833 * correct that here */
14834 check_cursor();
14835 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014836
14837 /* If 'n' flag is used: restore cursor position. */
14838 if (flags & SP_NOMOVE)
14839 curwin->w_cursor = save_cursor;
Bram Moolenaar7a42fa32007-07-10 11:28:55 +000014840 else
14841 curwin->w_set_curswant = TRUE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014842theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +000014843 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014844
14845 return retval;
14846}
14847
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014848#ifdef FEAT_FLOAT
14849/*
14850 * "round({float})" function
14851 */
14852 static void
14853f_round(argvars, rettv)
14854 typval_T *argvars;
14855 typval_T *rettv;
14856{
14857 float_T f;
14858
14859 rettv->v_type = VAR_FLOAT;
14860 if (get_float_arg(argvars, &f) == OK)
14861 /* round() is not in C90, use ceil() or floor() instead. */
14862 rettv->vval.v_float = f > 0 ? floor(f + 0.5) : ceil(f - 0.5);
14863 else
14864 rettv->vval.v_float = 0.0;
14865}
14866#endif
14867
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014868/*
14869 * "search()" function
14870 */
14871 static void
14872f_search(argvars, rettv)
14873 typval_T *argvars;
14874 typval_T *rettv;
14875{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014876 int flags = 0;
14877
14878 rettv->vval.v_number = search_cmn(argvars, NULL, &flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014879}
14880
Bram Moolenaar071d4272004-06-13 20:20:40 +000014881/*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014882 * "searchdecl()" function
14883 */
14884 static void
14885f_searchdecl(argvars, rettv)
14886 typval_T *argvars;
14887 typval_T *rettv;
14888{
14889 int locally = 1;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014890 int thisblock = 0;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014891 int error = FALSE;
14892 char_u *name;
14893
14894 rettv->vval.v_number = 1; /* default: FAIL */
14895
14896 name = get_tv_string_chk(&argvars[0]);
14897 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaare6facf92005-09-13 21:22:27 +000014898 {
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014899 locally = get_tv_number_chk(&argvars[1], &error) == 0;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014900 if (!error && argvars[2].v_type != VAR_UNKNOWN)
14901 thisblock = get_tv_number_chk(&argvars[2], &error) != 0;
14902 }
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014903 if (!error && name != NULL)
14904 rettv->vval.v_number = find_decl(name, (int)STRLEN(name),
Bram Moolenaare6facf92005-09-13 21:22:27 +000014905 locally, thisblock, SEARCH_KEEP) == FAIL;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014906}
14907
14908/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014909 * Used by searchpair() and searchpairpos()
Bram Moolenaar071d4272004-06-13 20:20:40 +000014910 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014911 static int
14912searchpair_cmn(argvars, match_pos)
Bram Moolenaar33570922005-01-25 22:26:29 +000014913 typval_T *argvars;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014914 pos_T *match_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014915{
14916 char_u *spat, *mpat, *epat;
14917 char_u *skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014918 int save_p_ws = p_ws;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014919 int dir;
14920 int flags = 0;
14921 char_u nbuf1[NUMBUFLEN];
14922 char_u nbuf2[NUMBUFLEN];
14923 char_u nbuf3[NUMBUFLEN];
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014924 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014925 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014926 long time_limit = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014927
Bram Moolenaar071d4272004-06-13 20:20:40 +000014928 /* Get the three pattern arguments: start, middle, end. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014929 spat = get_tv_string_chk(&argvars[0]);
14930 mpat = get_tv_string_buf_chk(&argvars[1], nbuf1);
14931 epat = get_tv_string_buf_chk(&argvars[2], nbuf2);
14932 if (spat == NULL || mpat == NULL || epat == NULL)
14933 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014934
Bram Moolenaar071d4272004-06-13 20:20:40 +000014935 /* Handle the optional fourth argument: flags */
14936 dir = get_search_arg(&argvars[3], &flags); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014937 if (dir == 0)
14938 goto theend;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014939
14940 /* Don't accept SP_END or SP_SUBPAT.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014941 * Only one of the SP_NOMOVE or SP_SETPCMARK flags can be set.
14942 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014943 if ((flags & (SP_END | SP_SUBPAT)) != 0
14944 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar231334e2005-07-25 20:46:57 +000014945 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014946 EMSG2(_(e_invarg2), get_tv_string(&argvars[3]));
Bram Moolenaar231334e2005-07-25 20:46:57 +000014947 goto theend;
14948 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014949
Bram Moolenaar92de73d2008-01-22 10:59:38 +000014950 /* Using 'r' implies 'W', otherwise it doesn't work. */
14951 if (flags & SP_REPEAT)
14952 p_ws = FALSE;
14953
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014954 /* Optional fifth argument: skip expression */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014955 if (argvars[3].v_type == VAR_UNKNOWN
14956 || argvars[4].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014957 skip = (char_u *)"";
14958 else
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014959 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014960 skip = get_tv_string_buf_chk(&argvars[4], nbuf3);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014961 if (argvars[5].v_type != VAR_UNKNOWN)
14962 {
14963 lnum_stop = get_tv_number_chk(&argvars[5], NULL);
14964 if (lnum_stop < 0)
14965 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014966#ifdef FEAT_RELTIME
14967 if (argvars[6].v_type != VAR_UNKNOWN)
14968 {
14969 time_limit = get_tv_number_chk(&argvars[6], NULL);
14970 if (time_limit < 0)
14971 goto theend;
14972 }
14973#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014974 }
14975 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014976 if (skip == NULL)
14977 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014978
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014979 retval = do_searchpair(spat, mpat, epat, dir, skip, flags,
Bram Moolenaar76929292008-01-06 19:07:36 +000014980 match_pos, lnum_stop, time_limit);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000014981
14982theend:
14983 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014984
14985 return retval;
14986}
14987
14988/*
14989 * "searchpair()" function
14990 */
14991 static void
14992f_searchpair(argvars, rettv)
14993 typval_T *argvars;
14994 typval_T *rettv;
14995{
14996 rettv->vval.v_number = searchpair_cmn(argvars, NULL);
14997}
14998
14999/*
15000 * "searchpairpos()" function
15001 */
15002 static void
15003f_searchpairpos(argvars, rettv)
15004 typval_T *argvars;
15005 typval_T *rettv;
15006{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015007 pos_T match_pos;
15008 int lnum = 0;
15009 int col = 0;
15010
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015011 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015012 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015013
15014 if (searchpair_cmn(argvars, &match_pos) > 0)
15015 {
15016 lnum = match_pos.lnum;
15017 col = match_pos.col;
15018 }
15019
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015020 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15021 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015022}
15023
15024/*
15025 * Search for a start/middle/end thing.
15026 * Used by searchpair(), see its documentation for the details.
15027 * Returns 0 or -1 for no match,
15028 */
15029 long
Bram Moolenaar76929292008-01-06 19:07:36 +000015030do_searchpair(spat, mpat, epat, dir, skip, flags, match_pos,
15031 lnum_stop, time_limit)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015032 char_u *spat; /* start pattern */
15033 char_u *mpat; /* middle pattern */
15034 char_u *epat; /* end pattern */
15035 int dir; /* BACKWARD or FORWARD */
15036 char_u *skip; /* skip expression */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000015037 int flags; /* SP_SETPCMARK and other SP_ values */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015038 pos_T *match_pos;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015039 linenr_T lnum_stop; /* stop at this line if not zero */
Bram Moolenaar76929292008-01-06 19:07:36 +000015040 long time_limit; /* stop after this many msec */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015041{
15042 char_u *save_cpo;
15043 char_u *pat, *pat2 = NULL, *pat3 = NULL;
15044 long retval = 0;
15045 pos_T pos;
15046 pos_T firstpos;
15047 pos_T foundpos;
15048 pos_T save_cursor;
15049 pos_T save_pos;
15050 int n;
15051 int r;
15052 int nest = 1;
15053 int err;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015054 int options = SEARCH_KEEP;
Bram Moolenaar76929292008-01-06 19:07:36 +000015055 proftime_T tm;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015056
15057 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
15058 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015059 p_cpo = empty_option;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015060
Bram Moolenaar76929292008-01-06 19:07:36 +000015061#ifdef FEAT_RELTIME
15062 /* Set the time limit, if there is one. */
15063 profile_setlimit(time_limit, &tm);
15064#endif
15065
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015066 /* Make two search patterns: start/end (pat2, for in nested pairs) and
15067 * start/middle/end (pat3, for the top pair). */
15068 pat2 = alloc((unsigned)(STRLEN(spat) + STRLEN(epat) + 15));
15069 pat3 = alloc((unsigned)(STRLEN(spat) + STRLEN(mpat) + STRLEN(epat) + 23));
15070 if (pat2 == NULL || pat3 == NULL)
15071 goto theend;
15072 sprintf((char *)pat2, "\\(%s\\m\\)\\|\\(%s\\m\\)", spat, epat);
15073 if (*mpat == NUL)
15074 STRCPY(pat3, pat2);
15075 else
15076 sprintf((char *)pat3, "\\(%s\\m\\)\\|\\(%s\\m\\)\\|\\(%s\\m\\)",
15077 spat, epat, mpat);
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015078 if (flags & SP_START)
15079 options |= SEARCH_START;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015080
Bram Moolenaar071d4272004-06-13 20:20:40 +000015081 save_cursor = curwin->w_cursor;
15082 pos = curwin->w_cursor;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000015083 clearpos(&firstpos);
15084 clearpos(&foundpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015085 pat = pat3;
15086 for (;;)
15087 {
15088 n = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000015089 options, RE_SEARCH, lnum_stop, &tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015090 if (n == FAIL || (firstpos.lnum != 0 && equalpos(pos, firstpos)))
15091 /* didn't find it or found the first match again: FAIL */
15092 break;
15093
15094 if (firstpos.lnum == 0)
15095 firstpos = pos;
Bram Moolenaarc9a2d2e2005-04-24 22:09:56 +000015096 if (equalpos(pos, foundpos))
15097 {
15098 /* Found the same position again. Can happen with a pattern that
15099 * has "\zs" at the end and searching backwards. Advance one
15100 * character and try again. */
15101 if (dir == BACKWARD)
15102 decl(&pos);
15103 else
15104 incl(&pos);
15105 }
15106 foundpos = pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015107
Bram Moolenaar92de73d2008-01-22 10:59:38 +000015108 /* clear the start flag to avoid getting stuck here */
15109 options &= ~SEARCH_START;
15110
Bram Moolenaar071d4272004-06-13 20:20:40 +000015111 /* If the skip pattern matches, ignore this match. */
15112 if (*skip != NUL)
15113 {
15114 save_pos = curwin->w_cursor;
15115 curwin->w_cursor = pos;
15116 r = eval_to_bool(skip, &err, NULL, FALSE);
15117 curwin->w_cursor = save_pos;
15118 if (err)
15119 {
15120 /* Evaluating {skip} caused an error, break here. */
15121 curwin->w_cursor = save_cursor;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015122 retval = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015123 break;
15124 }
15125 if (r)
15126 continue;
15127 }
15128
15129 if ((dir == BACKWARD && n == 3) || (dir == FORWARD && n == 2))
15130 {
15131 /* Found end when searching backwards or start when searching
15132 * forward: nested pair. */
15133 ++nest;
15134 pat = pat2; /* nested, don't search for middle */
15135 }
15136 else
15137 {
15138 /* Found end when searching forward or start when searching
15139 * backward: end of (nested) pair; or found middle in outer pair. */
15140 if (--nest == 1)
15141 pat = pat3; /* outer level, search for middle */
15142 }
15143
15144 if (nest == 0)
15145 {
15146 /* Found the match: return matchcount or line number. */
15147 if (flags & SP_RETCOUNT)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015148 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015149 else
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015150 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000015151 if (flags & SP_SETPCMARK)
15152 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000015153 curwin->w_cursor = pos;
15154 if (!(flags & SP_REPEAT))
15155 break;
15156 nest = 1; /* search for next unmatched */
15157 }
15158 }
15159
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015160 if (match_pos != NULL)
15161 {
15162 /* Store the match cursor position */
15163 match_pos->lnum = curwin->w_cursor.lnum;
15164 match_pos->col = curwin->w_cursor.col + 1;
15165 }
15166
Bram Moolenaar071d4272004-06-13 20:20:40 +000015167 /* If 'n' flag is used or search failed: restore cursor position. */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015168 if ((flags & SP_NOMOVE) || retval == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015169 curwin->w_cursor = save_cursor;
15170
15171theend:
15172 vim_free(pat2);
15173 vim_free(pat3);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015174 if (p_cpo == empty_option)
15175 p_cpo = save_cpo;
15176 else
15177 /* Darn, evaluating the {skip} expression changed the value. */
15178 free_string_option(save_cpo);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015179
15180 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015181}
15182
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015183/*
15184 * "searchpos()" function
15185 */
15186 static void
15187f_searchpos(argvars, rettv)
15188 typval_T *argvars;
15189 typval_T *rettv;
15190{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015191 pos_T match_pos;
15192 int lnum = 0;
15193 int col = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015194 int n;
15195 int flags = 0;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015196
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015197 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015198 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015199
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015200 n = search_cmn(argvars, &match_pos, &flags);
15201 if (n > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015202 {
15203 lnum = match_pos.lnum;
15204 col = match_pos.col;
15205 }
15206
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015207 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15208 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015209 if (flags & SP_SUBPAT)
15210 list_append_number(rettv->vval.v_list, (varnumber_T)n);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015211}
15212
15213
Bram Moolenaar0d660222005-01-07 21:51:51 +000015214 static void
15215f_server2client(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015216 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000015217 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015218{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015219#ifdef FEAT_CLIENTSERVER
15220 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015221 char_u *server = get_tv_string_chk(&argvars[0]);
15222 char_u *reply = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015223
Bram Moolenaar0d660222005-01-07 21:51:51 +000015224 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015225 if (server == NULL || reply == NULL)
15226 return;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015227 if (check_restricted() || check_secure())
15228 return;
15229# ifdef FEAT_X11
15230 if (check_connection() == FAIL)
15231 return;
15232# endif
15233
15234 if (serverSendReply(server, reply) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015235 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015236 EMSG(_("E258: Unable to send to client"));
15237 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015238 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015239 rettv->vval.v_number = 0;
15240#else
15241 rettv->vval.v_number = -1;
15242#endif
15243}
15244
Bram Moolenaar0d660222005-01-07 21:51:51 +000015245 static void
15246f_serverlist(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015247 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000015248 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015249{
15250 char_u *r = NULL;
15251
15252#ifdef FEAT_CLIENTSERVER
15253# ifdef WIN32
15254 r = serverGetVimNames();
15255# else
15256 make_connection();
15257 if (X_DISPLAY != NULL)
15258 r = serverGetVimNames(X_DISPLAY);
15259# endif
15260#endif
15261 rettv->v_type = VAR_STRING;
15262 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015263}
15264
15265/*
15266 * "setbufvar()" function
15267 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015268 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015269f_setbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015270 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015271 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015272{
15273 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015274 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015275 char_u *varname, *bufvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015276 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015277 char_u nbuf[NUMBUFLEN];
15278
15279 if (check_restricted() || check_secure())
15280 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015281 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
15282 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015283 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015284 varp = &argvars[2];
15285
15286 if (buf != NULL && varname != NULL && varp != NULL)
15287 {
15288 /* set curbuf to be our buf, temporarily */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015289 aucmd_prepbuf(&aco, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015290
15291 if (*varname == '&')
15292 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015293 long numval;
15294 char_u *strval;
15295 int error = FALSE;
15296
Bram Moolenaar071d4272004-06-13 20:20:40 +000015297 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015298 numval = get_tv_number_chk(varp, &error);
15299 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015300 if (!error && strval != NULL)
15301 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015302 }
15303 else
15304 {
15305 bufvarname = alloc((unsigned)STRLEN(varname) + 3);
15306 if (bufvarname != NULL)
15307 {
15308 STRCPY(bufvarname, "b:");
15309 STRCPY(bufvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015310 set_var(bufvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015311 vim_free(bufvarname);
15312 }
15313 }
15314
15315 /* reset notion of buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015316 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015317 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015318}
15319
15320/*
15321 * "setcmdpos()" function
15322 */
15323 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015324f_setcmdpos(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015325 typval_T *argvars;
15326 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015327{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015328 int pos = (int)get_tv_number(&argvars[0]) - 1;
15329
15330 if (pos >= 0)
15331 rettv->vval.v_number = set_cmdline_pos(pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015332}
15333
15334/*
15335 * "setline()" function
15336 */
15337 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015338f_setline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015339 typval_T *argvars;
15340 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015341{
15342 linenr_T lnum;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +000015343 char_u *line = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015344 list_T *l = NULL;
15345 listitem_T *li = NULL;
15346 long added = 0;
15347 linenr_T lcount = curbuf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015348
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015349 lnum = get_tv_lnum(&argvars[0]);
15350 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015351 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015352 l = argvars[1].vval.v_list;
15353 li = l->lv_first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015354 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015355 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015356 line = get_tv_string_chk(&argvars[1]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015357
Bram Moolenaar798b30b2009-04-22 10:56:16 +000015358 /* default result is zero == OK */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015359 for (;;)
15360 {
15361 if (l != NULL)
15362 {
15363 /* list argument, get next string */
15364 if (li == NULL)
15365 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015366 line = get_tv_string_chk(&li->li_tv);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015367 li = li->li_next;
15368 }
15369
15370 rettv->vval.v_number = 1; /* FAIL */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015371 if (line == NULL || lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015372 break;
15373 if (lnum <= curbuf->b_ml.ml_line_count)
15374 {
15375 /* existing line, replace it */
15376 if (u_savesub(lnum) == OK && ml_replace(lnum, line, TRUE) == OK)
15377 {
15378 changed_bytes(lnum, 0);
Bram Moolenaar87c19962007-04-26 08:54:21 +000015379 if (lnum == curwin->w_cursor.lnum)
15380 check_cursor_col();
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015381 rettv->vval.v_number = 0; /* OK */
15382 }
15383 }
15384 else if (added > 0 || u_save(lnum - 1, lnum) == OK)
15385 {
15386 /* lnum is one past the last line, append the line */
15387 ++added;
15388 if (ml_append(lnum - 1, line, (colnr_T)0, FALSE) == OK)
15389 rettv->vval.v_number = 0; /* OK */
15390 }
15391
15392 if (l == NULL) /* only one string argument */
15393 break;
15394 ++lnum;
15395 }
15396
15397 if (added > 0)
15398 appended_lines_mark(lcount, added);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015399}
15400
Bram Moolenaard9ff7d52008-03-20 12:23:49 +000015401static void set_qf_ll_list __ARGS((win_T *wp, typval_T *list_arg, typval_T *action_arg, typval_T *rettv));
15402
Bram Moolenaar071d4272004-06-13 20:20:40 +000015403/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015404 * Used by "setqflist()" and "setloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000015405 */
Bram Moolenaar2641f772005-03-25 21:58:17 +000015406 static void
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015407set_qf_ll_list(wp, list_arg, action_arg, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015408 win_T *wp UNUSED;
15409 typval_T *list_arg UNUSED;
15410 typval_T *action_arg UNUSED;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015411 typval_T *rettv;
15412{
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015413#ifdef FEAT_QUICKFIX
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015414 char_u *act;
15415 int action = ' ';
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015416#endif
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015417
Bram Moolenaar2641f772005-03-25 21:58:17 +000015418 rettv->vval.v_number = -1;
15419
15420#ifdef FEAT_QUICKFIX
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015421 if (list_arg->v_type != VAR_LIST)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015422 EMSG(_(e_listreq));
15423 else
15424 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015425 list_T *l = list_arg->vval.v_list;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015426
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015427 if (action_arg->v_type == VAR_STRING)
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015428 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015429 act = get_tv_string_chk(action_arg);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015430 if (act == NULL)
15431 return; /* type error; errmsg already given */
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015432 if (*act == 'a' || *act == 'r')
15433 action = *act;
15434 }
15435
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015436 if (l != NULL && set_errorlist(wp, l, action) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015437 rettv->vval.v_number = 0;
15438 }
15439#endif
15440}
15441
15442/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015443 * "setloclist()" function
15444 */
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015445 static void
15446f_setloclist(argvars, rettv)
15447 typval_T *argvars;
15448 typval_T *rettv;
15449{
15450 win_T *win;
15451
15452 rettv->vval.v_number = -1;
15453
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015454 win = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015455 if (win != NULL)
15456 set_qf_ll_list(win, &argvars[1], &argvars[2], rettv);
15457}
15458
15459/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000015460 * "setmatches()" function
15461 */
15462 static void
15463f_setmatches(argvars, rettv)
15464 typval_T *argvars;
15465 typval_T *rettv;
15466{
15467#ifdef FEAT_SEARCH_EXTRA
15468 list_T *l;
15469 listitem_T *li;
15470 dict_T *d;
15471
15472 rettv->vval.v_number = -1;
15473 if (argvars[0].v_type != VAR_LIST)
15474 {
15475 EMSG(_(e_listreq));
15476 return;
15477 }
15478 if ((l = argvars[0].vval.v_list) != NULL)
15479 {
15480
15481 /* To some extent make sure that we are dealing with a list from
15482 * "getmatches()". */
15483 li = l->lv_first;
15484 while (li != NULL)
15485 {
15486 if (li->li_tv.v_type != VAR_DICT
15487 || (d = li->li_tv.vval.v_dict) == NULL)
15488 {
15489 EMSG(_(e_invarg));
15490 return;
15491 }
15492 if (!(dict_find(d, (char_u *)"group", -1) != NULL
15493 && dict_find(d, (char_u *)"pattern", -1) != NULL
15494 && dict_find(d, (char_u *)"priority", -1) != NULL
15495 && dict_find(d, (char_u *)"id", -1) != NULL))
15496 {
15497 EMSG(_(e_invarg));
15498 return;
15499 }
15500 li = li->li_next;
15501 }
15502
15503 clear_matches(curwin);
15504 li = l->lv_first;
15505 while (li != NULL)
15506 {
15507 d = li->li_tv.vval.v_dict;
15508 match_add(curwin, get_dict_string(d, (char_u *)"group", FALSE),
15509 get_dict_string(d, (char_u *)"pattern", FALSE),
15510 (int)get_dict_number(d, (char_u *)"priority"),
15511 (int)get_dict_number(d, (char_u *)"id"));
15512 li = li->li_next;
15513 }
15514 rettv->vval.v_number = 0;
15515 }
15516#endif
15517}
15518
15519/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015520 * "setpos()" function
15521 */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015522 static void
15523f_setpos(argvars, rettv)
15524 typval_T *argvars;
15525 typval_T *rettv;
15526{
15527 pos_T pos;
15528 int fnum;
15529 char_u *name;
15530
Bram Moolenaar08250432008-02-13 11:42:46 +000015531 rettv->vval.v_number = -1;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015532 name = get_tv_string_chk(argvars);
15533 if (name != NULL)
15534 {
15535 if (list2fpos(&argvars[1], &pos, &fnum) == OK)
15536 {
15537 --pos.col;
Bram Moolenaar08250432008-02-13 11:42:46 +000015538 if (name[0] == '.' && name[1] == NUL)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015539 {
Bram Moolenaar08250432008-02-13 11:42:46 +000015540 /* set cursor */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015541 if (fnum == curbuf->b_fnum)
15542 {
15543 curwin->w_cursor = pos;
15544 check_cursor();
Bram Moolenaar08250432008-02-13 11:42:46 +000015545 rettv->vval.v_number = 0;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015546 }
15547 else
15548 EMSG(_(e_invarg));
15549 }
Bram Moolenaar08250432008-02-13 11:42:46 +000015550 else if (name[0] == '\'' && name[1] != NUL && name[2] == NUL)
15551 {
15552 /* set mark */
15553 if (setmark_pos(name[1], &pos, fnum) == OK)
15554 rettv->vval.v_number = 0;
15555 }
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015556 else
15557 EMSG(_(e_invarg));
15558 }
15559 }
15560}
15561
15562/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015563 * "setqflist()" function
15564 */
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015565 static void
15566f_setqflist(argvars, rettv)
15567 typval_T *argvars;
15568 typval_T *rettv;
15569{
15570 set_qf_ll_list(NULL, &argvars[0], &argvars[1], rettv);
15571}
15572
15573/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000015574 * "setreg()" function
15575 */
15576 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015577f_setreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015578 typval_T *argvars;
15579 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015580{
15581 int regname;
15582 char_u *strregname;
15583 char_u *stropt;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015584 char_u *strval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015585 int append;
15586 char_u yank_type;
15587 long block_len;
15588
15589 block_len = -1;
15590 yank_type = MAUTO;
15591 append = FALSE;
15592
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015593 strregname = get_tv_string_chk(argvars);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015594 rettv->vval.v_number = 1; /* FAIL is default */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015595
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015596 if (strregname == NULL)
15597 return; /* type error; errmsg already given */
15598 regname = *strregname;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015599 if (regname == 0 || regname == '@')
15600 regname = '"';
15601 else if (regname == '=')
15602 return;
15603
Bram Moolenaar49cd9572005-01-03 21:06:01 +000015604 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015605 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015606 stropt = get_tv_string_chk(&argvars[2]);
15607 if (stropt == NULL)
15608 return; /* type error */
15609 for (; *stropt != NUL; ++stropt)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015610 switch (*stropt)
15611 {
15612 case 'a': case 'A': /* append */
15613 append = TRUE;
15614 break;
15615 case 'v': case 'c': /* character-wise selection */
15616 yank_type = MCHAR;
15617 break;
15618 case 'V': case 'l': /* line-wise selection */
15619 yank_type = MLINE;
15620 break;
15621#ifdef FEAT_VISUAL
15622 case 'b': case Ctrl_V: /* block-wise selection */
15623 yank_type = MBLOCK;
15624 if (VIM_ISDIGIT(stropt[1]))
15625 {
15626 ++stropt;
15627 block_len = getdigits(&stropt) - 1;
15628 --stropt;
15629 }
15630 break;
15631#endif
15632 }
15633 }
15634
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015635 strval = get_tv_string_chk(&argvars[1]);
15636 if (strval != NULL)
15637 write_reg_contents_ex(regname, strval, -1,
Bram Moolenaar071d4272004-06-13 20:20:40 +000015638 append, yank_type, block_len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015639 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015640}
15641
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015642/*
15643 * "settabwinvar()" function
15644 */
15645 static void
15646f_settabwinvar(argvars, rettv)
15647 typval_T *argvars;
15648 typval_T *rettv;
15649{
15650 setwinvar(argvars, rettv, 1);
15651}
Bram Moolenaar071d4272004-06-13 20:20:40 +000015652
15653/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015654 * "setwinvar()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015655 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015656 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015657f_setwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015658 typval_T *argvars;
15659 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015660{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015661 setwinvar(argvars, rettv, 0);
15662}
15663
15664/*
15665 * "setwinvar()" and "settabwinvar()" functions
15666 */
15667 static void
15668setwinvar(argvars, rettv, off)
15669 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015670 typval_T *rettv UNUSED;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015671 int off;
15672{
Bram Moolenaar071d4272004-06-13 20:20:40 +000015673 win_T *win;
15674#ifdef FEAT_WINDOWS
15675 win_T *save_curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015676 tabpage_T *save_curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015677#endif
15678 char_u *varname, *winvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015679 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015680 char_u nbuf[NUMBUFLEN];
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015681 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015682
15683 if (check_restricted() || check_secure())
15684 return;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015685
15686#ifdef FEAT_WINDOWS
15687 if (off == 1)
15688 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
15689 else
15690 tp = curtab;
15691#endif
15692 win = find_win_by_nr(&argvars[off], tp);
15693 varname = get_tv_string_chk(&argvars[off + 1]);
15694 varp = &argvars[off + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015695
15696 if (win != NULL && varname != NULL && varp != NULL)
15697 {
15698#ifdef FEAT_WINDOWS
15699 /* set curwin to be our win, temporarily */
15700 save_curwin = curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015701 save_curtab = curtab;
15702 goto_tabpage_tp(tp);
15703 if (!win_valid(win))
15704 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015705 curwin = win;
15706 curbuf = curwin->w_buffer;
15707#endif
15708
15709 if (*varname == '&')
15710 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015711 long numval;
15712 char_u *strval;
15713 int error = FALSE;
15714
Bram Moolenaar071d4272004-06-13 20:20:40 +000015715 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015716 numval = get_tv_number_chk(varp, &error);
15717 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015718 if (!error && strval != NULL)
15719 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015720 }
15721 else
15722 {
15723 winvarname = alloc((unsigned)STRLEN(varname) + 3);
15724 if (winvarname != NULL)
15725 {
15726 STRCPY(winvarname, "w:");
15727 STRCPY(winvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015728 set_var(winvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015729 vim_free(winvarname);
15730 }
15731 }
15732
15733#ifdef FEAT_WINDOWS
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015734 /* Restore current tabpage and window, if still valid (autocomands can
15735 * make them invalid). */
15736 if (valid_tabpage(save_curtab))
15737 goto_tabpage_tp(save_curtab);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015738 if (win_valid(save_curwin))
15739 {
15740 curwin = save_curwin;
15741 curbuf = curwin->w_buffer;
15742 }
15743#endif
15744 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015745}
15746
15747/*
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015748 * "shellescape({string})" function
15749 */
15750 static void
15751f_shellescape(argvars, rettv)
15752 typval_T *argvars;
15753 typval_T *rettv;
15754{
Bram Moolenaar05bb9532008-07-04 09:44:11 +000015755 rettv->vval.v_string = vim_strsave_shellescape(
15756 get_tv_string(&argvars[0]), non_zero_arg(&argvars[1]));
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015757 rettv->v_type = VAR_STRING;
15758}
15759
15760/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015761 * "simplify()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015762 */
15763 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015764f_simplify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015765 typval_T *argvars;
15766 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015767{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015768 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015769
Bram Moolenaar0d660222005-01-07 21:51:51 +000015770 p = get_tv_string(&argvars[0]);
15771 rettv->vval.v_string = vim_strsave(p);
15772 simplify_filename(rettv->vval.v_string); /* simplify in place */
15773 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015774}
15775
Bram Moolenaar8c8de832008-06-24 22:58:06 +000015776#ifdef FEAT_FLOAT
15777/*
15778 * "sin()" function
15779 */
15780 static void
15781f_sin(argvars, rettv)
15782 typval_T *argvars;
15783 typval_T *rettv;
15784{
15785 float_T f;
15786
15787 rettv->v_type = VAR_FLOAT;
15788 if (get_float_arg(argvars, &f) == OK)
15789 rettv->vval.v_float = sin(f);
15790 else
15791 rettv->vval.v_float = 0.0;
15792}
15793#endif
15794
Bram Moolenaar0d660222005-01-07 21:51:51 +000015795static int
15796#ifdef __BORLANDC__
15797 _RTLENTRYF
15798#endif
15799 item_compare __ARGS((const void *s1, const void *s2));
15800static int
15801#ifdef __BORLANDC__
15802 _RTLENTRYF
15803#endif
15804 item_compare2 __ARGS((const void *s1, const void *s2));
15805
15806static int item_compare_ic;
15807static char_u *item_compare_func;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015808static int item_compare_func_err;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015809#define ITEM_COMPARE_FAIL 999
15810
Bram Moolenaar071d4272004-06-13 20:20:40 +000015811/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015812 * Compare functions for f_sort() below.
Bram Moolenaar071d4272004-06-13 20:20:40 +000015813 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015814 static int
15815#ifdef __BORLANDC__
15816_RTLENTRYF
15817#endif
15818item_compare(s1, s2)
15819 const void *s1;
15820 const void *s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015821{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015822 char_u *p1, *p2;
15823 char_u *tofree1, *tofree2;
15824 int res;
15825 char_u numbuf1[NUMBUFLEN];
15826 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015827
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000015828 p1 = tv2string(&(*(listitem_T **)s1)->li_tv, &tofree1, numbuf1, 0);
15829 p2 = tv2string(&(*(listitem_T **)s2)->li_tv, &tofree2, numbuf2, 0);
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000015830 if (p1 == NULL)
15831 p1 = (char_u *)"";
15832 if (p2 == NULL)
15833 p2 = (char_u *)"";
Bram Moolenaar0d660222005-01-07 21:51:51 +000015834 if (item_compare_ic)
15835 res = STRICMP(p1, p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015836 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015837 res = STRCMP(p1, p2);
15838 vim_free(tofree1);
15839 vim_free(tofree2);
15840 return res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015841}
15842
15843 static int
Bram Moolenaar0d660222005-01-07 21:51:51 +000015844#ifdef __BORLANDC__
15845_RTLENTRYF
Bram Moolenaar071d4272004-06-13 20:20:40 +000015846#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +000015847item_compare2(s1, s2)
15848 const void *s1;
15849 const void *s2;
15850{
15851 int res;
Bram Moolenaar33570922005-01-25 22:26:29 +000015852 typval_T rettv;
Bram Moolenaareb3593b2006-04-22 22:33:57 +000015853 typval_T argv[3];
Bram Moolenaar0d660222005-01-07 21:51:51 +000015854 int dummy;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015855
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015856 /* shortcut after failure in previous call; compare all items equal */
15857 if (item_compare_func_err)
15858 return 0;
15859
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015860 /* copy the values. This is needed to be able to set v_lock to VAR_FIXED
15861 * in the copy without changing the original list items. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015862 copy_tv(&(*(listitem_T **)s1)->li_tv, &argv[0]);
15863 copy_tv(&(*(listitem_T **)s2)->li_tv, &argv[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015864
15865 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000015866 res = call_func(item_compare_func, (int)STRLEN(item_compare_func),
Bram Moolenaare9a41262005-01-15 22:18:47 +000015867 &rettv, 2, argv, 0L, 0L, &dummy, TRUE, NULL);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015868 clear_tv(&argv[0]);
15869 clear_tv(&argv[1]);
15870
15871 if (res == FAIL)
15872 res = ITEM_COMPARE_FAIL;
15873 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015874 res = get_tv_number_chk(&rettv, &item_compare_func_err);
15875 if (item_compare_func_err)
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000015876 res = ITEM_COMPARE_FAIL; /* return value has wrong type */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015877 clear_tv(&rettv);
15878 return res;
15879}
15880
15881/*
15882 * "sort({list})" function
15883 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015884 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015885f_sort(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015886 typval_T *argvars;
15887 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015888{
Bram Moolenaar33570922005-01-25 22:26:29 +000015889 list_T *l;
15890 listitem_T *li;
15891 listitem_T **ptrs;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015892 long len;
15893 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015894
Bram Moolenaar0d660222005-01-07 21:51:51 +000015895 if (argvars[0].v_type != VAR_LIST)
15896 EMSG2(_(e_listarg), "sort()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000015897 else
15898 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015899 l = argvars[0].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015900 if (l == NULL || tv_check_lock(l->lv_lock, (char_u *)"sort()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000015901 return;
15902 rettv->vval.v_list = l;
15903 rettv->v_type = VAR_LIST;
15904 ++l->lv_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015905
Bram Moolenaar0d660222005-01-07 21:51:51 +000015906 len = list_len(l);
15907 if (len <= 1)
15908 return; /* short list sorts pretty quickly */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015909
Bram Moolenaar0d660222005-01-07 21:51:51 +000015910 item_compare_ic = FALSE;
15911 item_compare_func = NULL;
15912 if (argvars[1].v_type != VAR_UNKNOWN)
15913 {
15914 if (argvars[1].v_type == VAR_FUNC)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015915 item_compare_func = argvars[1].vval.v_string;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015916 else
15917 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015918 int error = FALSE;
15919
15920 i = get_tv_number_chk(&argvars[1], &error);
15921 if (error)
15922 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015923 if (i == 1)
15924 item_compare_ic = TRUE;
15925 else
15926 item_compare_func = get_tv_string(&argvars[1]);
15927 }
15928 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015929
Bram Moolenaar0d660222005-01-07 21:51:51 +000015930 /* Make an array with each entry pointing to an item in the List. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015931 ptrs = (listitem_T **)alloc((int)(len * sizeof(listitem_T *)));
Bram Moolenaar0d660222005-01-07 21:51:51 +000015932 if (ptrs == NULL)
15933 return;
15934 i = 0;
15935 for (li = l->lv_first; li != NULL; li = li->li_next)
15936 ptrs[i++] = li;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015937
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015938 item_compare_func_err = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015939 /* test the compare function */
15940 if (item_compare_func != NULL
15941 && item_compare2((void *)&ptrs[0], (void *)&ptrs[1])
15942 == ITEM_COMPARE_FAIL)
Bram Moolenaare49b69a2005-01-08 16:11:57 +000015943 EMSG(_("E702: Sort compare function failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000015944 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015945 {
15946 /* Sort the array with item pointers. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015947 qsort((void *)ptrs, (size_t)len, sizeof(listitem_T *),
Bram Moolenaar0d660222005-01-07 21:51:51 +000015948 item_compare_func == NULL ? item_compare : item_compare2);
15949
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015950 if (!item_compare_func_err)
15951 {
15952 /* Clear the List and append the items in the sorted order. */
Bram Moolenaar52514562008-04-01 11:12:09 +000015953 l->lv_first = l->lv_last = l->lv_idx_item = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015954 l->lv_len = 0;
15955 for (i = 0; i < len; ++i)
15956 list_append(l, ptrs[i]);
15957 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015958 }
15959
15960 vim_free(ptrs);
15961 }
15962}
15963
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015964/*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015965 * "soundfold({word})" function
15966 */
15967 static void
15968f_soundfold(argvars, rettv)
15969 typval_T *argvars;
15970 typval_T *rettv;
15971{
15972 char_u *s;
15973
15974 rettv->v_type = VAR_STRING;
15975 s = get_tv_string(&argvars[0]);
Bram Moolenaar3c56a962006-03-12 22:19:04 +000015976#ifdef FEAT_SPELL
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015977 rettv->vval.v_string = eval_soundfold(s);
15978#else
15979 rettv->vval.v_string = vim_strsave(s);
15980#endif
15981}
15982
15983/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015984 * "spellbadword()" function
15985 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015986 static void
15987f_spellbadword(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015988 typval_T *argvars UNUSED;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015989 typval_T *rettv;
15990{
Bram Moolenaar4463f292005-09-25 22:20:24 +000015991 char_u *word = (char_u *)"";
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000015992 hlf_T attr = HLF_COUNT;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015993 int len = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015994
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015995 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar4463f292005-09-25 22:20:24 +000015996 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015997
Bram Moolenaar3c56a962006-03-12 22:19:04 +000015998#ifdef FEAT_SPELL
Bram Moolenaar4463f292005-09-25 22:20:24 +000015999 if (argvars[0].v_type == VAR_UNKNOWN)
16000 {
16001 /* Find the start and length of the badly spelled word. */
16002 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, &attr);
16003 if (len != 0)
16004 word = ml_get_cursor();
16005 }
16006 else if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16007 {
16008 char_u *str = get_tv_string_chk(&argvars[0]);
16009 int capcol = -1;
16010
16011 if (str != NULL)
16012 {
16013 /* Check the argument for spelling. */
16014 while (*str != NUL)
16015 {
Bram Moolenaar4770d092006-01-12 23:22:24 +000016016 len = spell_check(curwin, str, &attr, &capcol, FALSE);
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016017 if (attr != HLF_COUNT)
Bram Moolenaar4463f292005-09-25 22:20:24 +000016018 {
16019 word = str;
16020 break;
16021 }
16022 str += len;
16023 }
16024 }
16025 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016026#endif
Bram Moolenaar4463f292005-09-25 22:20:24 +000016027
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016028 list_append_string(rettv->vval.v_list, word, len);
16029 list_append_string(rettv->vval.v_list, (char_u *)(
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016030 attr == HLF_SPB ? "bad" :
16031 attr == HLF_SPR ? "rare" :
16032 attr == HLF_SPL ? "local" :
16033 attr == HLF_SPC ? "caps" :
16034 ""), -1);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016035}
16036
16037/*
16038 * "spellsuggest()" function
16039 */
16040 static void
16041f_spellsuggest(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016042 typval_T *argvars UNUSED;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016043 typval_T *rettv;
16044{
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016045#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016046 char_u *str;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016047 int typeerr = FALSE;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016048 int maxcount;
16049 garray_T ga;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016050 int i;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016051 listitem_T *li;
16052 int need_capital = FALSE;
16053#endif
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016054
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016055 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016056 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016057
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016058#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016059 if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16060 {
16061 str = get_tv_string(&argvars[0]);
16062 if (argvars[1].v_type != VAR_UNKNOWN)
16063 {
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016064 maxcount = get_tv_number_chk(&argvars[1], &typeerr);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016065 if (maxcount <= 0)
16066 return;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016067 if (argvars[2].v_type != VAR_UNKNOWN)
16068 {
16069 need_capital = get_tv_number_chk(&argvars[2], &typeerr);
16070 if (typeerr)
16071 return;
16072 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016073 }
16074 else
16075 maxcount = 25;
16076
Bram Moolenaar4770d092006-01-12 23:22:24 +000016077 spell_suggest_list(&ga, str, maxcount, need_capital, FALSE);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016078
16079 for (i = 0; i < ga.ga_len; ++i)
16080 {
16081 str = ((char_u **)ga.ga_data)[i];
16082
16083 li = listitem_alloc();
16084 if (li == NULL)
16085 vim_free(str);
16086 else
16087 {
16088 li->li_tv.v_type = VAR_STRING;
16089 li->li_tv.v_lock = 0;
16090 li->li_tv.vval.v_string = str;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016091 list_append(rettv->vval.v_list, li);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016092 }
16093 }
16094 ga_clear(&ga);
16095 }
16096#endif
16097}
16098
Bram Moolenaar0d660222005-01-07 21:51:51 +000016099 static void
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000016100f_split(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016101 typval_T *argvars;
16102 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016103{
16104 char_u *str;
16105 char_u *end;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016106 char_u *pat = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016107 regmatch_T regmatch;
16108 char_u patbuf[NUMBUFLEN];
16109 char_u *save_cpo;
16110 int match;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016111 colnr_T col = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016112 int keepempty = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016113 int typeerr = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016114
16115 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
16116 save_cpo = p_cpo;
16117 p_cpo = (char_u *)"";
16118
16119 str = get_tv_string(&argvars[0]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016120 if (argvars[1].v_type != VAR_UNKNOWN)
16121 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016122 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16123 if (pat == NULL)
16124 typeerr = TRUE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016125 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016126 keepempty = get_tv_number_chk(&argvars[2], &typeerr);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016127 }
16128 if (pat == NULL || *pat == NUL)
16129 pat = (char_u *)"[\\x01- ]\\+";
Bram Moolenaar0d660222005-01-07 21:51:51 +000016130
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016131 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016132 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016133 if (typeerr)
16134 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016135
Bram Moolenaar0d660222005-01-07 21:51:51 +000016136 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
16137 if (regmatch.regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016138 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016139 regmatch.rm_ic = FALSE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016140 while (*str != NUL || keepempty)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016141 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016142 if (*str == NUL)
16143 match = FALSE; /* empty item at the end */
16144 else
16145 match = vim_regexec_nl(&regmatch, str, col);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016146 if (match)
16147 end = regmatch.startp[0];
16148 else
16149 end = str + STRLEN(str);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016150 if (keepempty || end > str || (rettv->vval.v_list->lv_len > 0
16151 && *str != NUL && match && end < regmatch.endp[0]))
Bram Moolenaar0d660222005-01-07 21:51:51 +000016152 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016153 if (list_append_string(rettv->vval.v_list, str,
16154 (int)(end - str)) == FAIL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016155 break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016156 }
16157 if (!match)
16158 break;
16159 /* Advance to just after the match. */
16160 if (regmatch.endp[0] > str)
16161 col = 0;
16162 else
16163 {
16164 /* Don't get stuck at the same match. */
16165#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000016166 col = (*mb_ptr2len)(regmatch.endp[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016167#else
16168 col = 1;
16169#endif
16170 }
16171 str = regmatch.endp[0];
16172 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016173
Bram Moolenaar0d660222005-01-07 21:51:51 +000016174 vim_free(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016175 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016176
Bram Moolenaar0d660222005-01-07 21:51:51 +000016177 p_cpo = save_cpo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016178}
16179
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016180#ifdef FEAT_FLOAT
16181/*
16182 * "sqrt()" function
16183 */
16184 static void
16185f_sqrt(argvars, rettv)
16186 typval_T *argvars;
16187 typval_T *rettv;
16188{
16189 float_T f;
16190
16191 rettv->v_type = VAR_FLOAT;
16192 if (get_float_arg(argvars, &f) == OK)
16193 rettv->vval.v_float = sqrt(f);
16194 else
16195 rettv->vval.v_float = 0.0;
16196}
16197
16198/*
16199 * "str2float()" function
16200 */
16201 static void
16202f_str2float(argvars, rettv)
16203 typval_T *argvars;
16204 typval_T *rettv;
16205{
16206 char_u *p = skipwhite(get_tv_string(&argvars[0]));
16207
16208 if (*p == '+')
16209 p = skipwhite(p + 1);
16210 (void)string2float(p, &rettv->vval.v_float);
16211 rettv->v_type = VAR_FLOAT;
16212}
16213#endif
16214
Bram Moolenaar2c932302006-03-18 21:42:09 +000016215/*
16216 * "str2nr()" function
16217 */
16218 static void
16219f_str2nr(argvars, rettv)
16220 typval_T *argvars;
16221 typval_T *rettv;
16222{
16223 int base = 10;
16224 char_u *p;
16225 long n;
16226
16227 if (argvars[1].v_type != VAR_UNKNOWN)
16228 {
16229 base = get_tv_number(&argvars[1]);
16230 if (base != 8 && base != 10 && base != 16)
16231 {
16232 EMSG(_(e_invarg));
16233 return;
16234 }
16235 }
16236
16237 p = skipwhite(get_tv_string(&argvars[0]));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016238 if (*p == '+')
16239 p = skipwhite(p + 1);
Bram Moolenaar2c932302006-03-18 21:42:09 +000016240 vim_str2nr(p, NULL, NULL, base == 8 ? 2 : 0, base == 16 ? 2 : 0, &n, NULL);
16241 rettv->vval.v_number = n;
16242}
16243
Bram Moolenaar071d4272004-06-13 20:20:40 +000016244#ifdef HAVE_STRFTIME
16245/*
16246 * "strftime({format}[, {time}])" function
16247 */
16248 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016249f_strftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016250 typval_T *argvars;
16251 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016252{
16253 char_u result_buf[256];
16254 struct tm *curtime;
16255 time_t seconds;
16256 char_u *p;
16257
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016258 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016259
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016260 p = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016261 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016262 seconds = time(NULL);
16263 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016264 seconds = (time_t)get_tv_number(&argvars[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016265 curtime = localtime(&seconds);
16266 /* MSVC returns NULL for an invalid value of seconds. */
16267 if (curtime == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016268 rettv->vval.v_string = vim_strsave((char_u *)_("(Invalid)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016269 else
16270 {
16271# ifdef FEAT_MBYTE
16272 vimconv_T conv;
16273 char_u *enc;
16274
16275 conv.vc_type = CONV_NONE;
16276 enc = enc_locale();
16277 convert_setup(&conv, p_enc, enc);
16278 if (conv.vc_type != CONV_NONE)
16279 p = string_convert(&conv, p, NULL);
16280# endif
16281 if (p != NULL)
16282 (void)strftime((char *)result_buf, sizeof(result_buf),
16283 (char *)p, curtime);
16284 else
16285 result_buf[0] = NUL;
16286
16287# ifdef FEAT_MBYTE
16288 if (conv.vc_type != CONV_NONE)
16289 vim_free(p);
16290 convert_setup(&conv, enc, p_enc);
16291 if (conv.vc_type != CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016292 rettv->vval.v_string = string_convert(&conv, result_buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016293 else
16294# endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016295 rettv->vval.v_string = vim_strsave(result_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016296
16297# ifdef FEAT_MBYTE
16298 /* Release conversion descriptors */
16299 convert_setup(&conv, NULL, NULL);
16300 vim_free(enc);
16301# endif
16302 }
16303}
16304#endif
16305
16306/*
16307 * "stridx()" function
16308 */
16309 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016310f_stridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016311 typval_T *argvars;
16312 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016313{
16314 char_u buf[NUMBUFLEN];
16315 char_u *needle;
16316 char_u *haystack;
Bram Moolenaar33570922005-01-25 22:26:29 +000016317 char_u *save_haystack;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016318 char_u *pos;
Bram Moolenaar33570922005-01-25 22:26:29 +000016319 int start_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016320
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016321 needle = get_tv_string_chk(&argvars[1]);
16322 save_haystack = haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar33570922005-01-25 22:26:29 +000016323 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016324 if (needle == NULL || haystack == NULL)
16325 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016326
Bram Moolenaar33570922005-01-25 22:26:29 +000016327 if (argvars[2].v_type != VAR_UNKNOWN)
16328 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016329 int error = FALSE;
16330
16331 start_idx = get_tv_number_chk(&argvars[2], &error);
16332 if (error || start_idx >= (int)STRLEN(haystack))
Bram Moolenaar33570922005-01-25 22:26:29 +000016333 return;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016334 if (start_idx >= 0)
16335 haystack += start_idx;
Bram Moolenaar33570922005-01-25 22:26:29 +000016336 }
16337
16338 pos = (char_u *)strstr((char *)haystack, (char *)needle);
16339 if (pos != NULL)
16340 rettv->vval.v_number = (varnumber_T)(pos - save_haystack);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016341}
16342
16343/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016344 * "string()" function
16345 */
16346 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016347f_string(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016348 typval_T *argvars;
16349 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016350{
16351 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000016352 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016353
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016354 rettv->v_type = VAR_STRING;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000016355 rettv->vval.v_string = tv2string(&argvars[0], &tofree, numbuf, 0);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016356 /* Make a copy if we have a value but it's not in allocated memory. */
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000016357 if (rettv->vval.v_string != NULL && tofree == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016358 rettv->vval.v_string = vim_strsave(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016359}
16360
16361/*
16362 * "strlen()" function
16363 */
16364 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016365f_strlen(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016366 typval_T *argvars;
16367 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016368{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016369 rettv->vval.v_number = (varnumber_T)(STRLEN(
16370 get_tv_string(&argvars[0])));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016371}
16372
16373/*
16374 * "strpart()" function
16375 */
16376 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016377f_strpart(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016378 typval_T *argvars;
16379 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016380{
16381 char_u *p;
16382 int n;
16383 int len;
16384 int slen;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016385 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016386
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016387 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016388 slen = (int)STRLEN(p);
16389
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016390 n = get_tv_number_chk(&argvars[1], &error);
16391 if (error)
16392 len = 0;
16393 else if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016394 len = get_tv_number(&argvars[2]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016395 else
16396 len = slen - n; /* default len: all bytes that are available. */
16397
16398 /*
16399 * Only return the overlap between the specified part and the actual
16400 * string.
16401 */
16402 if (n < 0)
16403 {
16404 len += n;
16405 n = 0;
16406 }
16407 else if (n > slen)
16408 n = slen;
16409 if (len < 0)
16410 len = 0;
16411 else if (n + len > slen)
16412 len = slen - n;
16413
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016414 rettv->v_type = VAR_STRING;
16415 rettv->vval.v_string = vim_strnsave(p + n, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016416}
16417
16418/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016419 * "strridx()" function
16420 */
16421 static void
16422f_strridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016423 typval_T *argvars;
16424 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016425{
16426 char_u buf[NUMBUFLEN];
16427 char_u *needle;
16428 char_u *haystack;
16429 char_u *rest;
16430 char_u *lastmatch = NULL;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016431 int haystack_len, end_idx;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016432
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016433 needle = get_tv_string_chk(&argvars[1]);
16434 haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016435
16436 rettv->vval.v_number = -1;
16437 if (needle == NULL || haystack == NULL)
16438 return; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016439
16440 haystack_len = (int)STRLEN(haystack);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016441 if (argvars[2].v_type != VAR_UNKNOWN)
16442 {
16443 /* Third argument: upper limit for index */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016444 end_idx = get_tv_number_chk(&argvars[2], NULL);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016445 if (end_idx < 0)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016446 return; /* can never find a match */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016447 }
16448 else
16449 end_idx = haystack_len;
16450
Bram Moolenaar0d660222005-01-07 21:51:51 +000016451 if (*needle == NUL)
Bram Moolenaar05159a02005-02-26 23:04:13 +000016452 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016453 /* Empty string matches past the end. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016454 lastmatch = haystack + end_idx;
16455 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016456 else
Bram Moolenaar532c7802005-01-27 14:44:31 +000016457 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016458 for (rest = haystack; *rest != '\0'; ++rest)
16459 {
16460 rest = (char_u *)strstr((char *)rest, (char *)needle);
Bram Moolenaar532c7802005-01-27 14:44:31 +000016461 if (rest == NULL || rest > haystack + end_idx)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016462 break;
16463 lastmatch = rest;
16464 }
Bram Moolenaar532c7802005-01-27 14:44:31 +000016465 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016466
16467 if (lastmatch == NULL)
16468 rettv->vval.v_number = -1;
16469 else
16470 rettv->vval.v_number = (varnumber_T)(lastmatch - haystack);
16471}
16472
16473/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016474 * "strtrans()" function
16475 */
16476 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016477f_strtrans(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016478 typval_T *argvars;
16479 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016480{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016481 rettv->v_type = VAR_STRING;
16482 rettv->vval.v_string = transstr(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016483}
16484
16485/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016486 * "submatch()" function
16487 */
16488 static void
16489f_submatch(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016490 typval_T *argvars;
16491 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016492{
16493 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016494 rettv->vval.v_string =
16495 reg_submatch((int)get_tv_number_chk(&argvars[0], NULL));
Bram Moolenaar0d660222005-01-07 21:51:51 +000016496}
16497
16498/*
16499 * "substitute()" function
16500 */
16501 static void
16502f_substitute(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016503 typval_T *argvars;
16504 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016505{
16506 char_u patbuf[NUMBUFLEN];
16507 char_u subbuf[NUMBUFLEN];
16508 char_u flagsbuf[NUMBUFLEN];
16509
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016510 char_u *str = get_tv_string_chk(&argvars[0]);
16511 char_u *pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16512 char_u *sub = get_tv_string_buf_chk(&argvars[2], subbuf);
16513 char_u *flg = get_tv_string_buf_chk(&argvars[3], flagsbuf);
16514
Bram Moolenaar0d660222005-01-07 21:51:51 +000016515 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016516 if (str == NULL || pat == NULL || sub == NULL || flg == NULL)
16517 rettv->vval.v_string = NULL;
16518 else
16519 rettv->vval.v_string = do_string_sub(str, pat, sub, flg);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016520}
16521
16522/*
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016523 * "synID(lnum, col, trans)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000016524 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016525 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016526f_synID(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016527 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016528 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016529{
16530 int id = 0;
16531#ifdef FEAT_SYN_HL
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016532 long lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016533 long col;
16534 int trans;
Bram Moolenaar92124a32005-06-17 22:03:40 +000016535 int transerr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016536
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016537 lnum = get_tv_lnum(argvars); /* -1 on type error */
16538 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16539 trans = get_tv_number_chk(&argvars[2], &transerr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016540
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016541 if (!transerr && lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016542 && col >= 0 && col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016543 id = syn_get_id(curwin, lnum, (colnr_T)col, trans, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016544#endif
16545
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016546 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016547}
16548
16549/*
16550 * "synIDattr(id, what [, mode])" function
16551 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016552 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016553f_synIDattr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016554 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016555 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016556{
16557 char_u *p = NULL;
16558#ifdef FEAT_SYN_HL
16559 int id;
16560 char_u *what;
16561 char_u *mode;
16562 char_u modebuf[NUMBUFLEN];
16563 int modec;
16564
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016565 id = get_tv_number(&argvars[0]);
16566 what = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016567 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016568 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016569 mode = get_tv_string_buf(&argvars[2], modebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016570 modec = TOLOWER_ASC(mode[0]);
16571 if (modec != 't' && modec != 'c'
16572#ifdef FEAT_GUI
16573 && modec != 'g'
16574#endif
16575 )
16576 modec = 0; /* replace invalid with current */
16577 }
16578 else
16579 {
16580#ifdef FEAT_GUI
16581 if (gui.in_use)
16582 modec = 'g';
16583 else
16584#endif
16585 if (t_colors > 1)
16586 modec = 'c';
16587 else
16588 modec = 't';
16589 }
16590
16591
16592 switch (TOLOWER_ASC(what[0]))
16593 {
16594 case 'b':
16595 if (TOLOWER_ASC(what[1]) == 'g') /* bg[#] */
16596 p = highlight_color(id, what, modec);
16597 else /* bold */
16598 p = highlight_has_attr(id, HL_BOLD, modec);
16599 break;
16600
16601 case 'f': /* fg[#] */
16602 p = highlight_color(id, what, modec);
16603 break;
16604
16605 case 'i':
16606 if (TOLOWER_ASC(what[1]) == 'n') /* inverse */
16607 p = highlight_has_attr(id, HL_INVERSE, modec);
16608 else /* italic */
16609 p = highlight_has_attr(id, HL_ITALIC, modec);
16610 break;
16611
16612 case 'n': /* name */
16613 p = get_highlight_name(NULL, id - 1);
16614 break;
16615
16616 case 'r': /* reverse */
16617 p = highlight_has_attr(id, HL_INVERSE, modec);
16618 break;
16619
Bram Moolenaar6f507d62008-11-28 10:16:05 +000016620 case 's':
16621 if (TOLOWER_ASC(what[1]) == 'p') /* sp[#] */
16622 p = highlight_color(id, what, modec);
16623 else /* standout */
16624 p = highlight_has_attr(id, HL_STANDOUT, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016625 break;
16626
Bram Moolenaar5b743bf2005-03-15 22:50:43 +000016627 case 'u':
16628 if (STRLEN(what) <= 5 || TOLOWER_ASC(what[5]) != 'c')
16629 /* underline */
16630 p = highlight_has_attr(id, HL_UNDERLINE, modec);
16631 else
16632 /* undercurl */
16633 p = highlight_has_attr(id, HL_UNDERCURL, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016634 break;
16635 }
16636
16637 if (p != NULL)
16638 p = vim_strsave(p);
16639#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016640 rettv->v_type = VAR_STRING;
16641 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016642}
16643
16644/*
16645 * "synIDtrans(id)" function
16646 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016647 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016648f_synIDtrans(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016649 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016650 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016651{
16652 int id;
16653
16654#ifdef FEAT_SYN_HL
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016655 id = get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016656
16657 if (id > 0)
16658 id = syn_get_final_id(id);
16659 else
16660#endif
16661 id = 0;
16662
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016663 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016664}
16665
16666/*
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016667 * "synstack(lnum, col)" function
16668 */
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016669 static void
16670f_synstack(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016671 typval_T *argvars UNUSED;
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016672 typval_T *rettv;
16673{
16674#ifdef FEAT_SYN_HL
16675 long lnum;
16676 long col;
16677 int i;
16678 int id;
16679#endif
16680
16681 rettv->v_type = VAR_LIST;
16682 rettv->vval.v_list = NULL;
16683
16684#ifdef FEAT_SYN_HL
16685 lnum = get_tv_lnum(argvars); /* -1 on type error */
16686 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16687
16688 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar6cad8bd2008-09-10 13:39:10 +000016689 && col >= 0 && (col == 0 || col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016690 && rettv_list_alloc(rettv) != FAIL)
16691 {
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016692 (void)syn_get_id(curwin, lnum, (colnr_T)col, FALSE, NULL, TRUE);
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016693 for (i = 0; ; ++i)
16694 {
16695 id = syn_get_stack_item(i);
16696 if (id < 0)
16697 break;
16698 if (list_append_number(rettv->vval.v_list, id) == FAIL)
16699 break;
16700 }
16701 }
16702#endif
16703}
16704
16705/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016706 * "system()" function
16707 */
16708 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016709f_system(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016710 typval_T *argvars;
16711 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016712{
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016713 char_u *res = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016714 char_u *p;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016715 char_u *infile = NULL;
16716 char_u buf[NUMBUFLEN];
16717 int err = FALSE;
16718 FILE *fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016719
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016720 if (check_restricted() || check_secure())
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016721 goto done;
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016722
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016723 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016724 {
16725 /*
16726 * Write the string to a temp file, to be used for input of the shell
16727 * command.
16728 */
16729 if ((infile = vim_tempname('i')) == NULL)
16730 {
16731 EMSG(_(e_notmp));
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016732 goto done;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016733 }
16734
16735 fd = mch_fopen((char *)infile, WRITEBIN);
16736 if (fd == NULL)
16737 {
16738 EMSG2(_(e_notopen), infile);
16739 goto done;
16740 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016741 p = get_tv_string_buf_chk(&argvars[1], buf);
16742 if (p == NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016743 {
16744 fclose(fd);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016745 goto done; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016746 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016747 if (fwrite(p, STRLEN(p), 1, fd) != 1)
16748 err = TRUE;
16749 if (fclose(fd) != 0)
16750 err = TRUE;
16751 if (err)
16752 {
16753 EMSG(_("E677: Error writing temp file"));
16754 goto done;
16755 }
16756 }
16757
Bram Moolenaare580b0c2006-03-21 21:33:03 +000016758 res = get_cmd_output(get_tv_string(&argvars[0]), infile,
16759 SHELL_SILENT | SHELL_COOKED);
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016760
Bram Moolenaar071d4272004-06-13 20:20:40 +000016761#ifdef USE_CR
16762 /* translate <CR> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016763 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016764 {
16765 char_u *s;
16766
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016767 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016768 {
16769 if (*s == CAR)
16770 *s = NL;
16771 }
16772 }
16773#else
16774# ifdef USE_CRNL
16775 /* translate <CR><NL> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016776 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016777 {
16778 char_u *s, *d;
16779
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016780 d = res;
16781 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016782 {
16783 if (s[0] == CAR && s[1] == NL)
16784 ++s;
16785 *d++ = *s;
16786 }
16787 *d = NUL;
16788 }
16789# endif
16790#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016791
16792done:
16793 if (infile != NULL)
16794 {
16795 mch_remove(infile);
16796 vim_free(infile);
16797 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016798 rettv->v_type = VAR_STRING;
16799 rettv->vval.v_string = res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016800}
16801
16802/*
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016803 * "tabpagebuflist()" function
16804 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016805 static void
16806f_tabpagebuflist(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016807 typval_T *argvars UNUSED;
16808 typval_T *rettv UNUSED;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016809{
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016810#ifdef FEAT_WINDOWS
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016811 tabpage_T *tp;
16812 win_T *wp = NULL;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016813
16814 if (argvars[0].v_type == VAR_UNKNOWN)
16815 wp = firstwin;
16816 else
16817 {
16818 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16819 if (tp != NULL)
Bram Moolenaar238a5642006-02-21 22:12:05 +000016820 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016821 }
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016822 if (wp != NULL && rettv_list_alloc(rettv) != FAIL)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016823 {
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016824 for (; wp != NULL; wp = wp->w_next)
16825 if (list_append_number(rettv->vval.v_list,
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016826 wp->w_buffer->b_fnum) == FAIL)
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016827 break;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016828 }
16829#endif
16830}
16831
16832
16833/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016834 * "tabpagenr()" function
16835 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016836 static void
16837f_tabpagenr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016838 typval_T *argvars UNUSED;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016839 typval_T *rettv;
16840{
16841 int nr = 1;
16842#ifdef FEAT_WINDOWS
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016843 char_u *arg;
16844
16845 if (argvars[0].v_type != VAR_UNKNOWN)
16846 {
16847 arg = get_tv_string_chk(&argvars[0]);
16848 nr = 0;
16849 if (arg != NULL)
16850 {
16851 if (STRCMP(arg, "$") == 0)
Bram Moolenaara5621492006-02-25 21:55:24 +000016852 nr = tabpage_index(NULL) - 1;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016853 else
16854 EMSG2(_(e_invexpr2), arg);
16855 }
16856 }
16857 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +000016858 nr = tabpage_index(curtab);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016859#endif
16860 rettv->vval.v_number = nr;
16861}
16862
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016863
16864#ifdef FEAT_WINDOWS
16865static int get_winnr __ARGS((tabpage_T *tp, typval_T *argvar));
16866
16867/*
16868 * Common code for tabpagewinnr() and winnr().
16869 */
16870 static int
16871get_winnr(tp, argvar)
16872 tabpage_T *tp;
16873 typval_T *argvar;
16874{
16875 win_T *twin;
16876 int nr = 1;
16877 win_T *wp;
16878 char_u *arg;
16879
16880 twin = (tp == curtab) ? curwin : tp->tp_curwin;
16881 if (argvar->v_type != VAR_UNKNOWN)
16882 {
16883 arg = get_tv_string_chk(argvar);
16884 if (arg == NULL)
16885 nr = 0; /* type error; errmsg already given */
16886 else if (STRCMP(arg, "$") == 0)
16887 twin = (tp == curtab) ? lastwin : tp->tp_lastwin;
16888 else if (STRCMP(arg, "#") == 0)
16889 {
16890 twin = (tp == curtab) ? prevwin : tp->tp_prevwin;
16891 if (twin == NULL)
16892 nr = 0;
16893 }
16894 else
16895 {
16896 EMSG2(_(e_invexpr2), arg);
16897 nr = 0;
16898 }
16899 }
16900
16901 if (nr > 0)
16902 for (wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
16903 wp != twin; wp = wp->w_next)
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016904 {
16905 if (wp == NULL)
16906 {
16907 /* didn't find it in this tabpage */
16908 nr = 0;
16909 break;
16910 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016911 ++nr;
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016912 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016913 return nr;
16914}
16915#endif
16916
16917/*
16918 * "tabpagewinnr()" function
16919 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016920 static void
16921f_tabpagewinnr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016922 typval_T *argvars UNUSED;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016923 typval_T *rettv;
16924{
16925 int nr = 1;
16926#ifdef FEAT_WINDOWS
16927 tabpage_T *tp;
16928
16929 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16930 if (tp == NULL)
16931 nr = 0;
16932 else
16933 nr = get_winnr(tp, &argvars[1]);
16934#endif
16935 rettv->vval.v_number = nr;
16936}
16937
16938
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016939/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016940 * "tagfiles()" function
16941 */
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016942 static void
16943f_tagfiles(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016944 typval_T *argvars UNUSED;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016945 typval_T *rettv;
16946{
16947 char_u fname[MAXPATHL + 1];
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016948 tagname_T tn;
16949 int first;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016950
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016951 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016952 return;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016953
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016954 for (first = TRUE; ; first = FALSE)
16955 if (get_tagfname(&tn, first, fname) == FAIL
16956 || list_append_string(rettv->vval.v_list, fname, -1) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016957 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016958 tagname_free(&tn);
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016959}
16960
16961/*
Bram Moolenaare2ac10d2005-03-07 23:26:06 +000016962 * "taglist()" function
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016963 */
16964 static void
16965f_taglist(argvars, rettv)
16966 typval_T *argvars;
16967 typval_T *rettv;
16968{
16969 char_u *tag_pattern;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016970
16971 tag_pattern = get_tv_string(&argvars[0]);
16972
16973 rettv->vval.v_number = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016974 if (*tag_pattern == NUL)
16975 return;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016976
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016977 if (rettv_list_alloc(rettv) == OK)
16978 (void)get_tags(rettv->vval.v_list, tag_pattern);
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016979}
16980
16981/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016982 * "tempname()" function
16983 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016984 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016985f_tempname(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016986 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016987 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016988{
16989 static int x = 'A';
16990
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016991 rettv->v_type = VAR_STRING;
16992 rettv->vval.v_string = vim_tempname(x);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016993
16994 /* Advance 'x' to use A-Z and 0-9, so that there are at least 34 different
16995 * names. Skip 'I' and 'O', they are used for shell redirection. */
16996 do
16997 {
16998 if (x == 'Z')
16999 x = '0';
17000 else if (x == '9')
17001 x = 'A';
17002 else
17003 {
17004#ifdef EBCDIC
17005 if (x == 'I')
17006 x = 'J';
17007 else if (x == 'R')
17008 x = 'S';
17009 else
17010#endif
17011 ++x;
17012 }
17013 } while (x == 'I' || x == 'O');
17014}
17015
17016/*
Bram Moolenaard52d9742005-08-21 22:20:28 +000017017 * "test(list)" function: Just checking the walls...
17018 */
Bram Moolenaard52d9742005-08-21 22:20:28 +000017019 static void
17020f_test(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017021 typval_T *argvars UNUSED;
17022 typval_T *rettv UNUSED;
Bram Moolenaard52d9742005-08-21 22:20:28 +000017023{
17024 /* Used for unit testing. Change the code below to your liking. */
17025#if 0
17026 listitem_T *li;
17027 list_T *l;
17028 char_u *bad, *good;
17029
17030 if (argvars[0].v_type != VAR_LIST)
17031 return;
17032 l = argvars[0].vval.v_list;
17033 if (l == NULL)
17034 return;
17035 li = l->lv_first;
17036 if (li == NULL)
17037 return;
17038 bad = get_tv_string(&li->li_tv);
17039 li = li->li_next;
17040 if (li == NULL)
17041 return;
17042 good = get_tv_string(&li->li_tv);
17043 rettv->vval.v_number = test_edit_score(bad, good);
17044#endif
17045}
17046
17047/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017048 * "tolower(string)" function
17049 */
17050 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017051f_tolower(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017052 typval_T *argvars;
17053 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017054{
17055 char_u *p;
17056
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017057 p = vim_strsave(get_tv_string(&argvars[0]));
17058 rettv->v_type = VAR_STRING;
17059 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017060
17061 if (p != NULL)
17062 while (*p != NUL)
17063 {
17064#ifdef FEAT_MBYTE
17065 int l;
17066
17067 if (enc_utf8)
17068 {
17069 int c, lc;
17070
17071 c = utf_ptr2char(p);
17072 lc = utf_tolower(c);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017073 l = utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017074 /* TODO: reallocate string when byte count changes. */
17075 if (utf_char2len(lc) == l)
17076 utf_char2bytes(lc, p);
17077 p += l;
17078 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017079 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017080 p += l; /* skip multi-byte character */
17081 else
17082#endif
17083 {
17084 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
17085 ++p;
17086 }
17087 }
17088}
17089
17090/*
17091 * "toupper(string)" function
17092 */
17093 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017094f_toupper(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017095 typval_T *argvars;
17096 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017097{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017098 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017099 rettv->vval.v_string = strup_save(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000017100}
17101
17102/*
Bram Moolenaar8299df92004-07-10 09:47:34 +000017103 * "tr(string, fromstr, tostr)" function
17104 */
17105 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017106f_tr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017107 typval_T *argvars;
17108 typval_T *rettv;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017109{
17110 char_u *instr;
17111 char_u *fromstr;
17112 char_u *tostr;
17113 char_u *p;
17114#ifdef FEAT_MBYTE
Bram Moolenaar342337a2005-07-21 21:11:17 +000017115 int inlen;
17116 int fromlen;
17117 int tolen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017118 int idx;
17119 char_u *cpstr;
17120 int cplen;
17121 int first = TRUE;
17122#endif
17123 char_u buf[NUMBUFLEN];
17124 char_u buf2[NUMBUFLEN];
17125 garray_T ga;
17126
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017127 instr = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017128 fromstr = get_tv_string_buf_chk(&argvars[1], buf);
17129 tostr = get_tv_string_buf_chk(&argvars[2], buf2);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017130
17131 /* Default return value: empty string. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017132 rettv->v_type = VAR_STRING;
17133 rettv->vval.v_string = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017134 if (fromstr == NULL || tostr == NULL)
17135 return; /* type error; errmsg already given */
Bram Moolenaar8299df92004-07-10 09:47:34 +000017136 ga_init2(&ga, (int)sizeof(char), 80);
17137
17138#ifdef FEAT_MBYTE
17139 if (!has_mbyte)
17140#endif
17141 /* not multi-byte: fromstr and tostr must be the same length */
17142 if (STRLEN(fromstr) != STRLEN(tostr))
17143 {
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017144#ifdef FEAT_MBYTE
Bram Moolenaar8299df92004-07-10 09:47:34 +000017145error:
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017146#endif
Bram Moolenaar8299df92004-07-10 09:47:34 +000017147 EMSG2(_(e_invarg2), fromstr);
17148 ga_clear(&ga);
17149 return;
17150 }
17151
17152 /* fromstr and tostr have to contain the same number of chars */
17153 while (*instr != NUL)
17154 {
17155#ifdef FEAT_MBYTE
17156 if (has_mbyte)
17157 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017158 inlen = (*mb_ptr2len)(instr);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017159 cpstr = instr;
17160 cplen = inlen;
17161 idx = 0;
17162 for (p = fromstr; *p != NUL; p += fromlen)
17163 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017164 fromlen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017165 if (fromlen == inlen && STRNCMP(instr, p, inlen) == 0)
17166 {
17167 for (p = tostr; *p != NUL; p += tolen)
17168 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017169 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017170 if (idx-- == 0)
17171 {
17172 cplen = tolen;
17173 cpstr = p;
17174 break;
17175 }
17176 }
17177 if (*p == NUL) /* tostr is shorter than fromstr */
17178 goto error;
17179 break;
17180 }
17181 ++idx;
17182 }
17183
17184 if (first && cpstr == instr)
17185 {
17186 /* Check that fromstr and tostr have the same number of
17187 * (multi-byte) characters. Done only once when a character
17188 * of instr doesn't appear in fromstr. */
17189 first = FALSE;
17190 for (p = tostr; *p != NUL; p += tolen)
17191 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017192 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017193 --idx;
17194 }
17195 if (idx != 0)
17196 goto error;
17197 }
17198
17199 ga_grow(&ga, cplen);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000017200 mch_memmove((char *)ga.ga_data + ga.ga_len, cpstr, (size_t)cplen);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017201 ga.ga_len += cplen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017202
17203 instr += inlen;
17204 }
17205 else
17206#endif
17207 {
17208 /* When not using multi-byte chars we can do it faster. */
17209 p = vim_strchr(fromstr, *instr);
17210 if (p != NULL)
17211 ga_append(&ga, tostr[p - fromstr]);
17212 else
17213 ga_append(&ga, *instr);
17214 ++instr;
17215 }
17216 }
17217
Bram Moolenaar61b974b2006-12-05 09:32:29 +000017218 /* add a terminating NUL */
17219 ga_grow(&ga, 1);
17220 ga_append(&ga, NUL);
17221
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017222 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017223}
17224
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017225#ifdef FEAT_FLOAT
17226/*
17227 * "trunc({float})" function
17228 */
17229 static void
17230f_trunc(argvars, rettv)
17231 typval_T *argvars;
17232 typval_T *rettv;
17233{
17234 float_T f;
17235
17236 rettv->v_type = VAR_FLOAT;
17237 if (get_float_arg(argvars, &f) == OK)
17238 /* trunc() is not in C90, use floor() or ceil() instead. */
17239 rettv->vval.v_float = f > 0 ? floor(f) : ceil(f);
17240 else
17241 rettv->vval.v_float = 0.0;
17242}
17243#endif
17244
Bram Moolenaar8299df92004-07-10 09:47:34 +000017245/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017246 * "type(expr)" function
17247 */
17248 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017249f_type(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017250 typval_T *argvars;
17251 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017252{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017253 int n;
17254
17255 switch (argvars[0].v_type)
17256 {
17257 case VAR_NUMBER: n = 0; break;
17258 case VAR_STRING: n = 1; break;
17259 case VAR_FUNC: n = 2; break;
17260 case VAR_LIST: n = 3; break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000017261 case VAR_DICT: n = 4; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017262#ifdef FEAT_FLOAT
17263 case VAR_FLOAT: n = 5; break;
17264#endif
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017265 default: EMSG2(_(e_intern2), "f_type()"); n = 0; break;
17266 }
17267 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017268}
17269
17270/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000017271 * "values(dict)" function
17272 */
17273 static void
17274f_values(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017275 typval_T *argvars;
17276 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000017277{
17278 dict_list(argvars, rettv, 1);
17279}
17280
17281/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017282 * "virtcol(string)" function
17283 */
17284 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017285f_virtcol(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017286 typval_T *argvars;
17287 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017288{
17289 colnr_T vcol = 0;
17290 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017291 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017292
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017293 fp = var2fpos(&argvars[0], FALSE, &fnum);
17294 if (fp != NULL && fp->lnum <= curbuf->b_ml.ml_line_count
17295 && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017296 {
17297 getvvcol(curwin, fp, NULL, NULL, &vcol);
17298 ++vcol;
17299 }
17300
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017301 rettv->vval.v_number = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017302}
17303
17304/*
17305 * "visualmode()" function
17306 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017307 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017308f_visualmode(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017309 typval_T *argvars UNUSED;
17310 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017311{
17312#ifdef FEAT_VISUAL
17313 char_u str[2];
17314
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017315 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017316 str[0] = curbuf->b_visual_mode_eval;
17317 str[1] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017318 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017319
17320 /* A non-zero number or non-empty string argument: reset mode. */
Bram Moolenaar05bb9532008-07-04 09:44:11 +000017321 if (non_zero_arg(&argvars[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +000017322 curbuf->b_visual_mode_eval = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017323#endif
17324}
17325
17326/*
17327 * "winbufnr(nr)" function
17328 */
17329 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017330f_winbufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017331 typval_T *argvars;
17332 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017333{
17334 win_T *wp;
17335
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017336 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017337 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017338 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017339 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017340 rettv->vval.v_number = wp->w_buffer->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017341}
17342
17343/*
17344 * "wincol()" function
17345 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017346 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017347f_wincol(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017348 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017349 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017350{
17351 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017352 rettv->vval.v_number = curwin->w_wcol + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017353}
17354
17355/*
17356 * "winheight(nr)" function
17357 */
17358 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017359f_winheight(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017360 typval_T *argvars;
17361 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017362{
17363 win_T *wp;
17364
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017365 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017366 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017367 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017368 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017369 rettv->vval.v_number = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017370}
17371
17372/*
17373 * "winline()" function
17374 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017375 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017376f_winline(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017377 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017378 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017379{
17380 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017381 rettv->vval.v_number = curwin->w_wrow + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017382}
17383
17384/*
17385 * "winnr()" function
17386 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017387 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017388f_winnr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017389 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017390 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017391{
17392 int nr = 1;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017393
Bram Moolenaar071d4272004-06-13 20:20:40 +000017394#ifdef FEAT_WINDOWS
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017395 nr = get_winnr(curtab, &argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017396#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017397 rettv->vval.v_number = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017398}
17399
17400/*
17401 * "winrestcmd()" function
17402 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017403 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017404f_winrestcmd(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017405 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017406 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017407{
17408#ifdef FEAT_WINDOWS
17409 win_T *wp;
17410 int winnr = 1;
17411 garray_T ga;
17412 char_u buf[50];
17413
17414 ga_init2(&ga, (int)sizeof(char), 70);
17415 for (wp = firstwin; wp != NULL; wp = wp->w_next)
17416 {
17417 sprintf((char *)buf, "%dresize %d|", winnr, wp->w_height);
17418 ga_concat(&ga, buf);
17419# ifdef FEAT_VERTSPLIT
17420 sprintf((char *)buf, "vert %dresize %d|", winnr, wp->w_width);
17421 ga_concat(&ga, buf);
17422# endif
17423 ++winnr;
17424 }
Bram Moolenaar269ec652004-07-29 08:43:53 +000017425 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017426
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017427 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017428#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017429 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017430#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017431 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017432}
17433
17434/*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017435 * "winrestview()" function
17436 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017437 static void
17438f_winrestview(argvars, rettv)
17439 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017440 typval_T *rettv UNUSED;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017441{
17442 dict_T *dict;
17443
17444 if (argvars[0].v_type != VAR_DICT
17445 || (dict = argvars[0].vval.v_dict) == NULL)
17446 EMSG(_(e_invarg));
17447 else
17448 {
17449 curwin->w_cursor.lnum = get_dict_number(dict, (char_u *)"lnum");
17450 curwin->w_cursor.col = get_dict_number(dict, (char_u *)"col");
17451#ifdef FEAT_VIRTUALEDIT
17452 curwin->w_cursor.coladd = get_dict_number(dict, (char_u *)"coladd");
17453#endif
17454 curwin->w_curswant = get_dict_number(dict, (char_u *)"curswant");
Bram Moolenaar362e1a32006-03-06 23:29:24 +000017455 curwin->w_set_curswant = FALSE;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017456
Bram Moolenaar6f11a412006-09-06 20:16:42 +000017457 set_topline(curwin, get_dict_number(dict, (char_u *)"topline"));
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017458#ifdef FEAT_DIFF
17459 curwin->w_topfill = get_dict_number(dict, (char_u *)"topfill");
17460#endif
17461 curwin->w_leftcol = get_dict_number(dict, (char_u *)"leftcol");
17462 curwin->w_skipcol = get_dict_number(dict, (char_u *)"skipcol");
17463
17464 check_cursor();
17465 changed_cline_bef_curs();
17466 invalidate_botline();
17467 redraw_later(VALID);
17468
17469 if (curwin->w_topline == 0)
17470 curwin->w_topline = 1;
17471 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
17472 curwin->w_topline = curbuf->b_ml.ml_line_count;
17473#ifdef FEAT_DIFF
17474 check_topfill(curwin, TRUE);
17475#endif
17476 }
17477}
17478
17479/*
17480 * "winsaveview()" function
17481 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017482 static void
17483f_winsaveview(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017484 typval_T *argvars UNUSED;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017485 typval_T *rettv;
17486{
17487 dict_T *dict;
17488
17489 dict = dict_alloc();
17490 if (dict == NULL)
17491 return;
17492 rettv->v_type = VAR_DICT;
17493 rettv->vval.v_dict = dict;
17494 ++dict->dv_refcount;
17495
17496 dict_add_nr_str(dict, "lnum", (long)curwin->w_cursor.lnum, NULL);
17497 dict_add_nr_str(dict, "col", (long)curwin->w_cursor.col, NULL);
17498#ifdef FEAT_VIRTUALEDIT
17499 dict_add_nr_str(dict, "coladd", (long)curwin->w_cursor.coladd, NULL);
17500#endif
Bram Moolenaar9af1ba92006-08-29 19:55:53 +000017501 update_curswant();
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017502 dict_add_nr_str(dict, "curswant", (long)curwin->w_curswant, NULL);
17503
17504 dict_add_nr_str(dict, "topline", (long)curwin->w_topline, NULL);
17505#ifdef FEAT_DIFF
17506 dict_add_nr_str(dict, "topfill", (long)curwin->w_topfill, NULL);
17507#endif
17508 dict_add_nr_str(dict, "leftcol", (long)curwin->w_leftcol, NULL);
17509 dict_add_nr_str(dict, "skipcol", (long)curwin->w_skipcol, NULL);
17510}
17511
17512/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017513 * "winwidth(nr)" function
17514 */
17515 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017516f_winwidth(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017517 typval_T *argvars;
17518 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017519{
17520 win_T *wp;
17521
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017522 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017523 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017524 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017525 else
17526#ifdef FEAT_VERTSPLIT
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017527 rettv->vval.v_number = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017528#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017529 rettv->vval.v_number = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017530#endif
17531}
17532
Bram Moolenaar071d4272004-06-13 20:20:40 +000017533/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017534 * "writefile()" function
17535 */
17536 static void
17537f_writefile(argvars, rettv)
17538 typval_T *argvars;
17539 typval_T *rettv;
17540{
17541 int binary = FALSE;
17542 char_u *fname;
17543 FILE *fd;
17544 listitem_T *li;
17545 char_u *s;
17546 int ret = 0;
17547 int c;
17548
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000017549 if (check_restricted() || check_secure())
17550 return;
17551
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017552 if (argvars[0].v_type != VAR_LIST)
17553 {
17554 EMSG2(_(e_listarg), "writefile()");
17555 return;
17556 }
17557 if (argvars[0].vval.v_list == NULL)
17558 return;
17559
17560 if (argvars[2].v_type != VAR_UNKNOWN
17561 && STRCMP(get_tv_string(&argvars[2]), "b") == 0)
17562 binary = TRUE;
17563
17564 /* Always open the file in binary mode, library functions have a mind of
17565 * their own about CR-LF conversion. */
17566 fname = get_tv_string(&argvars[1]);
17567 if (*fname == NUL || (fd = mch_fopen((char *)fname, WRITEBIN)) == NULL)
17568 {
17569 EMSG2(_(e_notcreate), *fname == NUL ? (char_u *)_("<empty>") : fname);
17570 ret = -1;
17571 }
17572 else
17573 {
17574 for (li = argvars[0].vval.v_list->lv_first; li != NULL;
17575 li = li->li_next)
17576 {
17577 for (s = get_tv_string(&li->li_tv); *s != NUL; ++s)
17578 {
17579 if (*s == '\n')
17580 c = putc(NUL, fd);
17581 else
17582 c = putc(*s, fd);
17583 if (c == EOF)
17584 {
17585 ret = -1;
17586 break;
17587 }
17588 }
17589 if (!binary || li->li_next != NULL)
17590 if (putc('\n', fd) == EOF)
17591 {
17592 ret = -1;
17593 break;
17594 }
17595 if (ret < 0)
17596 {
17597 EMSG(_(e_write));
17598 break;
17599 }
17600 }
17601 fclose(fd);
17602 }
17603
17604 rettv->vval.v_number = ret;
17605}
17606
17607/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017608 * Translate a String variable into a position.
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017609 * Returns NULL when there is an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017610 */
17611 static pos_T *
Bram Moolenaar477933c2007-07-17 14:32:23 +000017612var2fpos(varp, dollar_lnum, fnum)
Bram Moolenaar33570922005-01-25 22:26:29 +000017613 typval_T *varp;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017614 int dollar_lnum; /* TRUE when $ is last line */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017615 int *fnum; /* set to fnum for '0, 'A, etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017616{
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017617 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017618 static pos_T pos;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017619 pos_T *pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017620
Bram Moolenaara5525202006-03-02 22:52:09 +000017621 /* Argument can be [lnum, col, coladd]. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017622 if (varp->v_type == VAR_LIST)
17623 {
17624 list_T *l;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017625 int len;
Bram Moolenaara5525202006-03-02 22:52:09 +000017626 int error = FALSE;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017627 listitem_T *li;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017628
17629 l = varp->vval.v_list;
17630 if (l == NULL)
17631 return NULL;
17632
17633 /* Get the line number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017634 pos.lnum = list_find_nr(l, 0L, &error);
17635 if (error || pos.lnum <= 0 || pos.lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017636 return NULL; /* invalid line number */
17637
17638 /* Get the column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017639 pos.col = list_find_nr(l, 1L, &error);
17640 if (error)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017641 return NULL;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017642 len = (long)STRLEN(ml_get(pos.lnum));
Bram Moolenaar477933c2007-07-17 14:32:23 +000017643
17644 /* We accept "$" for the column number: last column. */
17645 li = list_find(l, 1L);
17646 if (li != NULL && li->li_tv.v_type == VAR_STRING
17647 && li->li_tv.vval.v_string != NULL
17648 && STRCMP(li->li_tv.vval.v_string, "$") == 0)
17649 pos.col = len + 1;
17650
Bram Moolenaara5525202006-03-02 22:52:09 +000017651 /* Accept a position up to the NUL after the line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000017652 if (pos.col == 0 || (int)pos.col > len + 1)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017653 return NULL; /* invalid column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017654 --pos.col;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017655
Bram Moolenaara5525202006-03-02 22:52:09 +000017656#ifdef FEAT_VIRTUALEDIT
17657 /* Get the virtual offset. Defaults to zero. */
17658 pos.coladd = list_find_nr(l, 2L, &error);
17659 if (error)
17660 pos.coladd = 0;
17661#endif
17662
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017663 return &pos;
17664 }
17665
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017666 name = get_tv_string_chk(varp);
17667 if (name == NULL)
17668 return NULL;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017669 if (name[0] == '.') /* cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017670 return &curwin->w_cursor;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017671#ifdef FEAT_VISUAL
17672 if (name[0] == 'v' && name[1] == NUL) /* Visual start */
17673 {
17674 if (VIsual_active)
17675 return &VIsual;
17676 return &curwin->w_cursor;
17677 }
17678#endif
17679 if (name[0] == '\'') /* mark */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017680 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017681 pp = getmark_fnum(name[1], FALSE, fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017682 if (pp == NULL || pp == (pos_T *)-1 || pp->lnum <= 0)
17683 return NULL;
17684 return pp;
17685 }
Bram Moolenaara5525202006-03-02 22:52:09 +000017686
17687#ifdef FEAT_VIRTUALEDIT
17688 pos.coladd = 0;
17689#endif
17690
Bram Moolenaar477933c2007-07-17 14:32:23 +000017691 if (name[0] == 'w' && dollar_lnum)
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017692 {
17693 pos.col = 0;
17694 if (name[1] == '0') /* "w0": first visible line */
17695 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017696 update_topline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017697 pos.lnum = curwin->w_topline;
17698 return &pos;
17699 }
17700 else if (name[1] == '$') /* "w$": last visible line */
17701 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017702 validate_botline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017703 pos.lnum = curwin->w_botline - 1;
17704 return &pos;
17705 }
17706 }
17707 else if (name[0] == '$') /* last column or line */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017708 {
Bram Moolenaar477933c2007-07-17 14:32:23 +000017709 if (dollar_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017710 {
17711 pos.lnum = curbuf->b_ml.ml_line_count;
17712 pos.col = 0;
17713 }
17714 else
17715 {
17716 pos.lnum = curwin->w_cursor.lnum;
17717 pos.col = (colnr_T)STRLEN(ml_get_curline());
17718 }
17719 return &pos;
17720 }
17721 return NULL;
17722}
17723
17724/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017725 * Convert list in "arg" into a position and optional file number.
17726 * When "fnump" is NULL there is no file number, only 3 items.
17727 * Note that the column is passed on as-is, the caller may want to decrement
17728 * it to use 1 for the first column.
17729 * Return FAIL when conversion is not possible, doesn't check the position for
17730 * validity.
17731 */
17732 static int
17733list2fpos(arg, posp, fnump)
17734 typval_T *arg;
17735 pos_T *posp;
17736 int *fnump;
17737{
17738 list_T *l = arg->vval.v_list;
17739 long i = 0;
17740 long n;
17741
Bram Moolenaarbde35262006-07-23 20:12:24 +000017742 /* List must be: [fnum, lnum, col, coladd], where "fnum" is only there
17743 * when "fnump" isn't NULL and "coladd" is optional. */
17744 if (arg->v_type != VAR_LIST
17745 || l == NULL
17746 || l->lv_len < (fnump == NULL ? 2 : 3)
17747 || l->lv_len > (fnump == NULL ? 3 : 4))
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017748 return FAIL;
17749
17750 if (fnump != NULL)
17751 {
17752 n = list_find_nr(l, i++, NULL); /* fnum */
17753 if (n < 0)
17754 return FAIL;
17755 if (n == 0)
17756 n = curbuf->b_fnum; /* current buffer */
17757 *fnump = n;
17758 }
17759
17760 n = list_find_nr(l, i++, NULL); /* lnum */
17761 if (n < 0)
17762 return FAIL;
17763 posp->lnum = n;
17764
17765 n = list_find_nr(l, i++, NULL); /* col */
17766 if (n < 0)
17767 return FAIL;
17768 posp->col = n;
17769
17770#ifdef FEAT_VIRTUALEDIT
17771 n = list_find_nr(l, i, NULL);
17772 if (n < 0)
Bram Moolenaarbde35262006-07-23 20:12:24 +000017773 posp->coladd = 0;
17774 else
17775 posp->coladd = n;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017776#endif
17777
17778 return OK;
17779}
17780
17781/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017782 * Get the length of an environment variable name.
17783 * Advance "arg" to the first character after the name.
17784 * Return 0 for error.
17785 */
17786 static int
17787get_env_len(arg)
17788 char_u **arg;
17789{
17790 char_u *p;
17791 int len;
17792
17793 for (p = *arg; vim_isIDc(*p); ++p)
17794 ;
17795 if (p == *arg) /* no name found */
17796 return 0;
17797
17798 len = (int)(p - *arg);
17799 *arg = p;
17800 return len;
17801}
17802
17803/*
17804 * Get the length of the name of a function or internal variable.
17805 * "arg" is advanced to the first non-white character after the name.
17806 * Return 0 if something is wrong.
17807 */
17808 static int
17809get_id_len(arg)
17810 char_u **arg;
17811{
17812 char_u *p;
17813 int len;
17814
17815 /* Find the end of the name. */
17816 for (p = *arg; eval_isnamec(*p); ++p)
17817 ;
17818 if (p == *arg) /* no name found */
17819 return 0;
17820
17821 len = (int)(p - *arg);
17822 *arg = skipwhite(p);
17823
17824 return len;
17825}
17826
17827/*
Bram Moolenaara7043832005-01-21 11:56:39 +000017828 * Get the length of the name of a variable or function.
17829 * Only the name is recognized, does not handle ".key" or "[idx]".
Bram Moolenaar071d4272004-06-13 20:20:40 +000017830 * "arg" is advanced to the first non-white character after the name.
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017831 * Return -1 if curly braces expansion failed.
17832 * Return 0 if something else is wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017833 * If the name contains 'magic' {}'s, expand them and return the
17834 * expanded name in an allocated string via 'alias' - caller must free.
17835 */
17836 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017837get_name_len(arg, alias, evaluate, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017838 char_u **arg;
17839 char_u **alias;
17840 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017841 int verbose;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017842{
17843 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017844 char_u *p;
17845 char_u *expr_start;
17846 char_u *expr_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017847
17848 *alias = NULL; /* default to no alias */
17849
17850 if ((*arg)[0] == K_SPECIAL && (*arg)[1] == KS_EXTRA
17851 && (*arg)[2] == (int)KE_SNR)
17852 {
17853 /* hard coded <SNR>, already translated */
17854 *arg += 3;
17855 return get_id_len(arg) + 3;
17856 }
17857 len = eval_fname_script(*arg);
17858 if (len > 0)
17859 {
17860 /* literal "<SID>", "s:" or "<SNR>" */
17861 *arg += len;
17862 }
17863
Bram Moolenaar071d4272004-06-13 20:20:40 +000017864 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017865 * Find the end of the name; check for {} construction.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017866 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017867 p = find_name_end(*arg, &expr_start, &expr_end,
17868 len > 0 ? 0 : FNE_CHECK_START);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017869 if (expr_start != NULL)
17870 {
17871 char_u *temp_string;
17872
17873 if (!evaluate)
17874 {
17875 len += (int)(p - *arg);
17876 *arg = skipwhite(p);
17877 return len;
17878 }
17879
17880 /*
17881 * Include any <SID> etc in the expanded string:
17882 * Thus the -len here.
17883 */
17884 temp_string = make_expanded_name(*arg - len, expr_start, expr_end, p);
17885 if (temp_string == NULL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017886 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017887 *alias = temp_string;
17888 *arg = skipwhite(p);
17889 return (int)STRLEN(temp_string);
17890 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017891
17892 len += get_id_len(arg);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017893 if (len == 0 && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017894 EMSG2(_(e_invexpr2), *arg);
17895
17896 return len;
17897}
17898
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017899/*
17900 * Find the end of a variable or function name, taking care of magic braces.
17901 * If "expr_start" is not NULL then "expr_start" and "expr_end" are set to the
17902 * start and end of the first magic braces item.
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017903 * "flags" can have FNE_INCL_BR and FNE_CHECK_START.
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017904 * Return a pointer to just after the name. Equal to "arg" if there is no
17905 * valid name.
17906 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017907 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017908find_name_end(arg, expr_start, expr_end, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017909 char_u *arg;
17910 char_u **expr_start;
17911 char_u **expr_end;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017912 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017913{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017914 int mb_nest = 0;
17915 int br_nest = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017916 char_u *p;
17917
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017918 if (expr_start != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017919 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017920 *expr_start = NULL;
17921 *expr_end = NULL;
17922 }
17923
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017924 /* Quick check for valid starting character. */
17925 if ((flags & FNE_CHECK_START) && !eval_isnamec1(*arg) && *arg != '{')
17926 return arg;
17927
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017928 for (p = arg; *p != NUL
17929 && (eval_isnamec(*p)
Bram Moolenaare9a41262005-01-15 22:18:47 +000017930 || *p == '{'
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017931 || ((flags & FNE_INCL_BR) && (*p == '[' || *p == '.'))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017932 || mb_nest != 0
Bram Moolenaar8af24422005-08-08 22:06:28 +000017933 || br_nest != 0); mb_ptr_adv(p))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017934 {
Bram Moolenaar8af24422005-08-08 22:06:28 +000017935 if (*p == '\'')
17936 {
17937 /* skip over 'string' to avoid counting [ and ] inside it. */
17938 for (p = p + 1; *p != NUL && *p != '\''; mb_ptr_adv(p))
17939 ;
17940 if (*p == NUL)
17941 break;
17942 }
17943 else if (*p == '"')
17944 {
17945 /* skip over "str\"ing" to avoid counting [ and ] inside it. */
17946 for (p = p + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
17947 if (*p == '\\' && p[1] != NUL)
17948 ++p;
17949 if (*p == NUL)
17950 break;
17951 }
17952
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017953 if (mb_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017954 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017955 if (*p == '[')
17956 ++br_nest;
17957 else if (*p == ']')
17958 --br_nest;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017959 }
Bram Moolenaar8af24422005-08-08 22:06:28 +000017960
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017961 if (br_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017962 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017963 if (*p == '{')
17964 {
17965 mb_nest++;
17966 if (expr_start != NULL && *expr_start == NULL)
17967 *expr_start = p;
17968 }
17969 else if (*p == '}')
17970 {
17971 mb_nest--;
17972 if (expr_start != NULL && mb_nest == 0 && *expr_end == NULL)
17973 *expr_end = p;
17974 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017975 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017976 }
17977
17978 return p;
17979}
17980
17981/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017982 * Expands out the 'magic' {}'s in a variable/function name.
17983 * Note that this can call itself recursively, to deal with
17984 * constructs like foo{bar}{baz}{bam}
17985 * The four pointer arguments point to "foo{expre}ss{ion}bar"
17986 * "in_start" ^
17987 * "expr_start" ^
17988 * "expr_end" ^
17989 * "in_end" ^
17990 *
17991 * Returns a new allocated string, which the caller must free.
17992 * Returns NULL for failure.
17993 */
17994 static char_u *
17995make_expanded_name(in_start, expr_start, expr_end, in_end)
17996 char_u *in_start;
17997 char_u *expr_start;
17998 char_u *expr_end;
17999 char_u *in_end;
18000{
18001 char_u c1;
18002 char_u *retval = NULL;
18003 char_u *temp_result;
18004 char_u *nextcmd = NULL;
18005
18006 if (expr_end == NULL || in_end == NULL)
18007 return NULL;
18008 *expr_start = NUL;
18009 *expr_end = NUL;
18010 c1 = *in_end;
18011 *in_end = NUL;
18012
Bram Moolenaar362e1a32006-03-06 23:29:24 +000018013 temp_result = eval_to_string(expr_start + 1, &nextcmd, FALSE);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018014 if (temp_result != NULL && nextcmd == NULL)
18015 {
18016 retval = alloc((unsigned)(STRLEN(temp_result) + (expr_start - in_start)
18017 + (in_end - expr_end) + 1));
18018 if (retval != NULL)
18019 {
18020 STRCPY(retval, in_start);
18021 STRCAT(retval, temp_result);
18022 STRCAT(retval, expr_end + 1);
18023 }
18024 }
18025 vim_free(temp_result);
18026
18027 *in_end = c1; /* put char back for error messages */
18028 *expr_start = '{';
18029 *expr_end = '}';
18030
18031 if (retval != NULL)
18032 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018033 temp_result = find_name_end(retval, &expr_start, &expr_end, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018034 if (expr_start != NULL)
18035 {
18036 /* Further expansion! */
18037 temp_result = make_expanded_name(retval, expr_start,
18038 expr_end, temp_result);
18039 vim_free(retval);
18040 retval = temp_result;
18041 }
18042 }
18043
18044 return retval;
18045}
18046
18047/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018048 * Return TRUE if character "c" can be used in a variable or function name.
Bram Moolenaare9a41262005-01-15 22:18:47 +000018049 * Does not include '{' or '}' for magic braces.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018050 */
18051 static int
18052eval_isnamec(c)
18053 int c;
18054{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018055 return (ASCII_ISALNUM(c) || c == '_' || c == ':' || c == AUTOLOAD_CHAR);
18056}
18057
18058/*
18059 * Return TRUE if character "c" can be used as the first character in a
18060 * variable or function name (excluding '{' and '}').
18061 */
18062 static int
18063eval_isnamec1(c)
18064 int c;
18065{
18066 return (ASCII_ISALPHA(c) || c == '_');
Bram Moolenaar071d4272004-06-13 20:20:40 +000018067}
18068
18069/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018070 * Set number v: variable to "val".
18071 */
18072 void
18073set_vim_var_nr(idx, val)
18074 int idx;
18075 long val;
18076{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018077 vimvars[idx].vv_nr = val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018078}
18079
18080/*
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018081 * Get number v: variable value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018082 */
18083 long
18084get_vim_var_nr(idx)
18085 int idx;
18086{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018087 return vimvars[idx].vv_nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018088}
18089
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018090/*
18091 * Get string v: variable value. Uses a static buffer, can only be used once.
18092 */
18093 char_u *
18094get_vim_var_str(idx)
18095 int idx;
18096{
18097 return get_tv_string(&vimvars[idx].vv_tv);
18098}
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018099
Bram Moolenaar071d4272004-06-13 20:20:40 +000018100/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018101 * Get List v: variable value. Caller must take care of reference count when
18102 * needed.
18103 */
18104 list_T *
18105get_vim_var_list(idx)
18106 int idx;
18107{
18108 return vimvars[idx].vv_list;
18109}
18110
18111/*
Bram Moolenaarda9591e2009-09-30 13:17:02 +000018112 * Set v:char to character "c".
18113 */
18114 void
18115set_vim_var_char(c)
18116 int c;
18117{
18118#ifdef FEAT_MBYTE
18119 char_u buf[MB_MAXBYTES];
18120#else
18121 char_u buf[2];
18122#endif
18123
18124#ifdef FEAT_MBYTE
18125 if (has_mbyte)
18126 buf[(*mb_char2bytes)(c, buf)] = NUL;
18127 else
18128#endif
18129 {
18130 buf[0] = c;
18131 buf[1] = NUL;
18132 }
18133 set_vim_var_string(VV_CHAR, buf, -1);
18134}
18135
18136/*
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018137 * Set v:count to "count" and v:count1 to "count1".
18138 * When "set_prevcount" is TRUE first set v:prevcount from v:count.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018139 */
18140 void
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018141set_vcount(count, count1, set_prevcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018142 long count;
18143 long count1;
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018144 int set_prevcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018145{
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018146 if (set_prevcount)
18147 vimvars[VV_PREVCOUNT].vv_nr = vimvars[VV_COUNT].vv_nr;
Bram Moolenaare9a41262005-01-15 22:18:47 +000018148 vimvars[VV_COUNT].vv_nr = count;
18149 vimvars[VV_COUNT1].vv_nr = count1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018150}
18151
18152/*
18153 * Set string v: variable to a copy of "val".
18154 */
18155 void
18156set_vim_var_string(idx, val, len)
18157 int idx;
18158 char_u *val;
18159 int len; /* length of "val" to use or -1 (whole string) */
18160{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018161 /* Need to do this (at least) once, since we can't initialize a union.
18162 * Will always be invoked when "v:progname" is set. */
18163 vimvars[VV_VERSION].vv_nr = VIM_VERSION_100;
18164
Bram Moolenaare9a41262005-01-15 22:18:47 +000018165 vim_free(vimvars[idx].vv_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018166 if (val == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018167 vimvars[idx].vv_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018168 else if (len == -1)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018169 vimvars[idx].vv_str = vim_strsave(val);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018170 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000018171 vimvars[idx].vv_str = vim_strnsave(val, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018172}
18173
18174/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018175 * Set List v: variable to "val".
18176 */
18177 void
18178set_vim_var_list(idx, val)
18179 int idx;
18180 list_T *val;
18181{
18182 list_unref(vimvars[idx].vv_list);
18183 vimvars[idx].vv_list = val;
18184 if (val != NULL)
18185 ++val->lv_refcount;
18186}
18187
18188/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018189 * Set v:register if needed.
18190 */
18191 void
18192set_reg_var(c)
18193 int c;
18194{
18195 char_u regname;
18196
18197 if (c == 0 || c == ' ')
18198 regname = '"';
18199 else
18200 regname = c;
18201 /* Avoid free/alloc when the value is already right. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000018202 if (vimvars[VV_REG].vv_str == NULL || vimvars[VV_REG].vv_str[0] != c)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018203 set_vim_var_string(VV_REG, &regname, 1);
18204}
18205
18206/*
18207 * Get or set v:exception. If "oldval" == NULL, return the current value.
18208 * Otherwise, restore the value to "oldval" and return NULL.
18209 * Must always be called in pairs to save and restore v:exception! Does not
18210 * take care of memory allocations.
18211 */
18212 char_u *
18213v_exception(oldval)
18214 char_u *oldval;
18215{
18216 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018217 return vimvars[VV_EXCEPTION].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018218
Bram Moolenaare9a41262005-01-15 22:18:47 +000018219 vimvars[VV_EXCEPTION].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018220 return NULL;
18221}
18222
18223/*
18224 * Get or set v:throwpoint. If "oldval" == NULL, return the current value.
18225 * Otherwise, restore the value to "oldval" and return NULL.
18226 * Must always be called in pairs to save and restore v:throwpoint! Does not
18227 * take care of memory allocations.
18228 */
18229 char_u *
18230v_throwpoint(oldval)
18231 char_u *oldval;
18232{
18233 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018234 return vimvars[VV_THROWPOINT].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018235
Bram Moolenaare9a41262005-01-15 22:18:47 +000018236 vimvars[VV_THROWPOINT].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018237 return NULL;
18238}
18239
18240#if defined(FEAT_AUTOCMD) || defined(PROTO)
18241/*
18242 * Set v:cmdarg.
18243 * If "eap" != NULL, use "eap" to generate the value and return the old value.
18244 * If "oldarg" != NULL, restore the value to "oldarg" and return NULL.
18245 * Must always be called in pairs!
18246 */
18247 char_u *
18248set_cmdarg(eap, oldarg)
18249 exarg_T *eap;
18250 char_u *oldarg;
18251{
18252 char_u *oldval;
18253 char_u *newval;
18254 unsigned len;
18255
Bram Moolenaare9a41262005-01-15 22:18:47 +000018256 oldval = vimvars[VV_CMDARG].vv_str;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018257 if (eap == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018258 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018259 vim_free(oldval);
Bram Moolenaare9a41262005-01-15 22:18:47 +000018260 vimvars[VV_CMDARG].vv_str = oldarg;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018261 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018262 }
18263
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018264 if (eap->force_bin == FORCE_BIN)
18265 len = 6;
18266 else if (eap->force_bin == FORCE_NOBIN)
18267 len = 8;
18268 else
18269 len = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018270
18271 if (eap->read_edit)
18272 len += 7;
18273
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018274 if (eap->force_ff != 0)
18275 len += (unsigned)STRLEN(eap->cmd + eap->force_ff) + 6;
18276# ifdef FEAT_MBYTE
18277 if (eap->force_enc != 0)
18278 len += (unsigned)STRLEN(eap->cmd + eap->force_enc) + 7;
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018279 if (eap->bad_char != 0)
18280 len += (unsigned)STRLEN(eap->cmd + eap->bad_char) + 7;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018281# endif
18282
18283 newval = alloc(len + 1);
18284 if (newval == NULL)
18285 return NULL;
18286
18287 if (eap->force_bin == FORCE_BIN)
18288 sprintf((char *)newval, " ++bin");
18289 else if (eap->force_bin == FORCE_NOBIN)
18290 sprintf((char *)newval, " ++nobin");
18291 else
18292 *newval = NUL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018293
18294 if (eap->read_edit)
18295 STRCAT(newval, " ++edit");
18296
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018297 if (eap->force_ff != 0)
18298 sprintf((char *)newval + STRLEN(newval), " ++ff=%s",
18299 eap->cmd + eap->force_ff);
18300# ifdef FEAT_MBYTE
18301 if (eap->force_enc != 0)
18302 sprintf((char *)newval + STRLEN(newval), " ++enc=%s",
18303 eap->cmd + eap->force_enc);
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018304 if (eap->bad_char != 0)
18305 sprintf((char *)newval + STRLEN(newval), " ++bad=%s",
18306 eap->cmd + eap->bad_char);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018307# endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000018308 vimvars[VV_CMDARG].vv_str = newval;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018309 return oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018310}
18311#endif
18312
18313/*
18314 * Get the value of internal variable "name".
18315 * Return OK or FAIL.
18316 */
18317 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018318get_var_tv(name, len, rettv, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018319 char_u *name;
18320 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +000018321 typval_T *rettv; /* NULL when only checking existence */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018322 int verbose; /* may give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018323{
18324 int ret = OK;
Bram Moolenaar33570922005-01-25 22:26:29 +000018325 typval_T *tv = NULL;
18326 typval_T atv;
18327 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018328 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018329
18330 /* truncate the name, so that we can use strcmp() */
18331 cc = name[len];
18332 name[len] = NUL;
18333
18334 /*
18335 * Check for "b:changedtick".
18336 */
18337 if (STRCMP(name, "b:changedtick") == 0)
18338 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000018339 atv.v_type = VAR_NUMBER;
18340 atv.vval.v_number = curbuf->b_changedtick;
18341 tv = &atv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018342 }
18343
18344 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018345 * Check for user-defined variables.
18346 */
18347 else
18348 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018349 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018350 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018351 tv = &v->di_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018352 }
18353
Bram Moolenaare9a41262005-01-15 22:18:47 +000018354 if (tv == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018355 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018356 if (rettv != NULL && verbose)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018357 EMSG2(_(e_undefvar), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018358 ret = FAIL;
18359 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018360 else if (rettv != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018361 copy_tv(tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018362
18363 name[len] = cc;
18364
18365 return ret;
18366}
18367
18368/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018369 * Handle expr[expr], expr[expr:expr] subscript and .name lookup.
18370 * Also handle function call with Funcref variable: func(expr)
18371 * Can all be combined: dict.func(expr)[idx]['func'](expr)
18372 */
18373 static int
18374handle_subscript(arg, rettv, evaluate, verbose)
18375 char_u **arg;
18376 typval_T *rettv;
18377 int evaluate; /* do more than finding the end */
18378 int verbose; /* give error messages */
18379{
18380 int ret = OK;
18381 dict_T *selfdict = NULL;
18382 char_u *s;
18383 int len;
Bram Moolenaard9fba312005-06-26 22:34:35 +000018384 typval_T functv;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018385
18386 while (ret == OK
18387 && (**arg == '['
18388 || (**arg == '.' && rettv->v_type == VAR_DICT)
18389 || (**arg == '(' && rettv->v_type == VAR_FUNC))
18390 && !vim_iswhite(*(*arg - 1)))
18391 {
18392 if (**arg == '(')
18393 {
Bram Moolenaard9fba312005-06-26 22:34:35 +000018394 /* need to copy the funcref so that we can clear rettv */
18395 functv = *rettv;
18396 rettv->v_type = VAR_UNKNOWN;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018397
18398 /* Invoke the function. Recursive! */
Bram Moolenaard9fba312005-06-26 22:34:35 +000018399 s = functv.vval.v_string;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018400 ret = get_func_tv(s, (int)STRLEN(s), rettv, arg,
Bram Moolenaard9fba312005-06-26 22:34:35 +000018401 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
18402 &len, evaluate, selfdict);
18403
18404 /* Clear the funcref afterwards, so that deleting it while
18405 * evaluating the arguments is possible (see test55). */
18406 clear_tv(&functv);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018407
18408 /* Stop the expression evaluation when immediately aborting on
18409 * error, or when an interrupt occurred or an exception was thrown
18410 * but not caught. */
18411 if (aborting())
18412 {
18413 if (ret == OK)
18414 clear_tv(rettv);
18415 ret = FAIL;
18416 }
18417 dict_unref(selfdict);
18418 selfdict = NULL;
18419 }
18420 else /* **arg == '[' || **arg == '.' */
18421 {
18422 dict_unref(selfdict);
18423 if (rettv->v_type == VAR_DICT)
18424 {
18425 selfdict = rettv->vval.v_dict;
18426 if (selfdict != NULL)
18427 ++selfdict->dv_refcount;
18428 }
18429 else
18430 selfdict = NULL;
18431 if (eval_index(arg, rettv, evaluate, verbose) == FAIL)
18432 {
18433 clear_tv(rettv);
18434 ret = FAIL;
18435 }
18436 }
18437 }
18438 dict_unref(selfdict);
18439 return ret;
18440}
18441
18442/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018443 * Allocate memory for a variable type-value, and make it empty (0 or NULL
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018444 * value).
18445 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018446 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018447alloc_tv()
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018448{
Bram Moolenaar33570922005-01-25 22:26:29 +000018449 return (typval_T *)alloc_clear((unsigned)sizeof(typval_T));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018450}
18451
18452/*
18453 * Allocate memory for a variable type-value, and assign a string to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018454 * The string "s" must have been allocated, it is consumed.
18455 * Return NULL for out of memory, the variable otherwise.
18456 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018457 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018458alloc_string_tv(s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018459 char_u *s;
18460{
Bram Moolenaar33570922005-01-25 22:26:29 +000018461 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018462
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018463 rettv = alloc_tv();
18464 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018465 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018466 rettv->v_type = VAR_STRING;
18467 rettv->vval.v_string = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018468 }
18469 else
18470 vim_free(s);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018471 return rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018472}
18473
18474/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018475 * Free the memory for a variable type-value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018476 */
Bram Moolenaar4770d092006-01-12 23:22:24 +000018477 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018478free_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018479 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018480{
18481 if (varp != NULL)
18482 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018483 switch (varp->v_type)
18484 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018485 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018486 func_unref(varp->vval.v_string);
18487 /*FALLTHROUGH*/
18488 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018489 vim_free(varp->vval.v_string);
18490 break;
18491 case VAR_LIST:
18492 list_unref(varp->vval.v_list);
18493 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018494 case VAR_DICT:
18495 dict_unref(varp->vval.v_dict);
18496 break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000018497 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018498#ifdef FEAT_FLOAT
18499 case VAR_FLOAT:
18500#endif
Bram Moolenaar758711c2005-02-02 23:11:38 +000018501 case VAR_UNKNOWN:
18502 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018503 default:
Bram Moolenaar758711c2005-02-02 23:11:38 +000018504 EMSG2(_(e_intern2), "free_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018505 break;
18506 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018507 vim_free(varp);
18508 }
18509}
18510
18511/*
18512 * Free the memory for a variable value and set the value to NULL or 0.
18513 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018514 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018515clear_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018516 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018517{
18518 if (varp != NULL)
18519 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018520 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018521 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018522 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018523 func_unref(varp->vval.v_string);
18524 /*FALLTHROUGH*/
18525 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018526 vim_free(varp->vval.v_string);
18527 varp->vval.v_string = NULL;
18528 break;
18529 case VAR_LIST:
18530 list_unref(varp->vval.v_list);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018531 varp->vval.v_list = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018532 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018533 case VAR_DICT:
18534 dict_unref(varp->vval.v_dict);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018535 varp->vval.v_dict = NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018536 break;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018537 case VAR_NUMBER:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018538 varp->vval.v_number = 0;
18539 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018540#ifdef FEAT_FLOAT
18541 case VAR_FLOAT:
18542 varp->vval.v_float = 0.0;
18543 break;
18544#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018545 case VAR_UNKNOWN:
18546 break;
18547 default:
18548 EMSG2(_(e_intern2), "clear_tv()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000018549 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018550 varp->v_lock = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018551 }
18552}
18553
18554/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018555 * Set the value of a variable to NULL without freeing items.
18556 */
18557 static void
18558init_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018559 typval_T *varp;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018560{
18561 if (varp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018562 vim_memset(varp, 0, sizeof(typval_T));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018563}
18564
18565/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018566 * Get the number value of a variable.
18567 * If it is a String variable, uses vim_str2nr().
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018568 * For incompatible types, return 0.
18569 * get_tv_number_chk() is similar to get_tv_number(), but informs the
18570 * caller of incompatible types: it sets *denote to TRUE if "denote"
18571 * is not NULL or returns -1 otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018572 */
18573 static long
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018574get_tv_number(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018575 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018576{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018577 int error = FALSE;
18578
18579 return get_tv_number_chk(varp, &error); /* return 0L on error */
18580}
18581
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018582 long
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018583get_tv_number_chk(varp, denote)
18584 typval_T *varp;
18585 int *denote;
18586{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018587 long n = 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018588
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018589 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018590 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018591 case VAR_NUMBER:
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018592 return (long)(varp->vval.v_number);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018593#ifdef FEAT_FLOAT
18594 case VAR_FLOAT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018595 EMSG(_("E805: Using a Float as a Number"));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018596 break;
18597#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018598 case VAR_FUNC:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018599 EMSG(_("E703: Using a Funcref as a Number"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018600 break;
18601 case VAR_STRING:
18602 if (varp->vval.v_string != NULL)
18603 vim_str2nr(varp->vval.v_string, NULL, NULL,
18604 TRUE, TRUE, &n, NULL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018605 return n;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018606 case VAR_LIST:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018607 EMSG(_("E745: Using a List as a Number"));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018608 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018609 case VAR_DICT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018610 EMSG(_("E728: Using a Dictionary as a Number"));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018611 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018612 default:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018613 EMSG2(_(e_intern2), "get_tv_number()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018614 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018615 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018616 if (denote == NULL) /* useful for values that must be unsigned */
18617 n = -1;
18618 else
18619 *denote = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018620 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018621}
18622
18623/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018624 * Get the lnum from the first argument.
18625 * Also accepts ".", "$", etc., but that only works for the current buffer.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018626 * Returns -1 on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018627 */
18628 static linenr_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018629get_tv_lnum(argvars)
Bram Moolenaar33570922005-01-25 22:26:29 +000018630 typval_T *argvars;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018631{
Bram Moolenaar33570922005-01-25 22:26:29 +000018632 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018633 linenr_T lnum;
18634
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018635 lnum = get_tv_number_chk(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018636 if (lnum == 0) /* no valid number, try using line() */
18637 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018638 rettv.v_type = VAR_NUMBER;
18639 f_line(argvars, &rettv);
18640 lnum = rettv.vval.v_number;
18641 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018642 }
18643 return lnum;
18644}
18645
18646/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018647 * Get the lnum from the first argument.
18648 * Also accepts "$", then "buf" is used.
18649 * Returns 0 on error.
18650 */
18651 static linenr_T
18652get_tv_lnum_buf(argvars, buf)
18653 typval_T *argvars;
18654 buf_T *buf;
18655{
18656 if (argvars[0].v_type == VAR_STRING
18657 && argvars[0].vval.v_string != NULL
18658 && argvars[0].vval.v_string[0] == '$'
18659 && buf != NULL)
18660 return buf->b_ml.ml_line_count;
18661 return get_tv_number_chk(&argvars[0], NULL);
18662}
18663
18664/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018665 * Get the string value of a variable.
18666 * If it is a Number variable, the number is converted into a string.
Bram Moolenaara7043832005-01-21 11:56:39 +000018667 * get_tv_string() uses a single, static buffer. YOU CAN ONLY USE IT ONCE!
18668 * get_tv_string_buf() uses a given buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018669 * If the String variable has never been set, return an empty string.
18670 * Never returns NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018671 * get_tv_string_chk() and get_tv_string_buf_chk() are similar, but return
18672 * NULL on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018673 */
18674 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018675get_tv_string(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018676 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018677{
18678 static char_u mybuf[NUMBUFLEN];
18679
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018680 return get_tv_string_buf(varp, mybuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018681}
18682
18683 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018684get_tv_string_buf(varp, buf)
Bram Moolenaar33570922005-01-25 22:26:29 +000018685 typval_T *varp;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018686 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018687{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018688 char_u *res = get_tv_string_buf_chk(varp, buf);
18689
18690 return res != NULL ? res : (char_u *)"";
18691}
18692
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018693 char_u *
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018694get_tv_string_chk(varp)
18695 typval_T *varp;
18696{
18697 static char_u mybuf[NUMBUFLEN];
18698
18699 return get_tv_string_buf_chk(varp, mybuf);
18700}
18701
18702 static char_u *
18703get_tv_string_buf_chk(varp, buf)
18704 typval_T *varp;
18705 char_u *buf;
18706{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018707 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018708 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018709 case VAR_NUMBER:
18710 sprintf((char *)buf, "%ld", (long)varp->vval.v_number);
18711 return buf;
18712 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018713 EMSG(_("E729: using Funcref as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018714 break;
18715 case VAR_LIST:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018716 EMSG(_("E730: using List as a String"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000018717 break;
18718 case VAR_DICT:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018719 EMSG(_("E731: using Dictionary as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018720 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018721#ifdef FEAT_FLOAT
18722 case VAR_FLOAT:
18723 EMSG(_("E806: using Float as a String"));
18724 break;
18725#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018726 case VAR_STRING:
18727 if (varp->vval.v_string != NULL)
18728 return varp->vval.v_string;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018729 return (char_u *)"";
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018730 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018731 EMSG2(_(e_intern2), "get_tv_string_buf()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018732 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018733 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018734 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018735}
18736
18737/*
18738 * Find variable "name" in the list of variables.
18739 * Return a pointer to it if found, NULL if not found.
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018740 * Careful: "a:0" variables don't have a name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018741 * When "htp" is not NULL we are writing to the variable, set "htp" to the
Bram Moolenaar33570922005-01-25 22:26:29 +000018742 * hashtab_T used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018743 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018744 static dictitem_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018745find_var(name, htp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018746 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000018747 hashtab_T **htp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018748{
Bram Moolenaar071d4272004-06-13 20:20:40 +000018749 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000018750 hashtab_T *ht;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018751
Bram Moolenaara7043832005-01-21 11:56:39 +000018752 ht = find_var_ht(name, &varname);
18753 if (htp != NULL)
18754 *htp = ht;
18755 if (ht == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018756 return NULL;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018757 return find_var_in_ht(ht, varname, htp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018758}
18759
18760/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018761 * Find variable "varname" in hashtab "ht".
Bram Moolenaara7043832005-01-21 11:56:39 +000018762 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018763 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018764 static dictitem_T *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018765find_var_in_ht(ht, varname, writing)
Bram Moolenaar33570922005-01-25 22:26:29 +000018766 hashtab_T *ht;
Bram Moolenaara7043832005-01-21 11:56:39 +000018767 char_u *varname;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018768 int writing;
Bram Moolenaara7043832005-01-21 11:56:39 +000018769{
Bram Moolenaar33570922005-01-25 22:26:29 +000018770 hashitem_T *hi;
18771
18772 if (*varname == NUL)
18773 {
18774 /* Must be something like "s:", otherwise "ht" would be NULL. */
18775 switch (varname[-2])
18776 {
18777 case 's': return &SCRIPT_SV(current_SID).sv_var;
18778 case 'g': return &globvars_var;
18779 case 'v': return &vimvars_var;
18780 case 'b': return &curbuf->b_bufvar;
18781 case 'w': return &curwin->w_winvar;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018782#ifdef FEAT_WINDOWS
18783 case 't': return &curtab->tp_winvar;
18784#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000018785 case 'l': return current_funccal == NULL
18786 ? NULL : &current_funccal->l_vars_var;
18787 case 'a': return current_funccal == NULL
18788 ? NULL : &current_funccal->l_avars_var;
Bram Moolenaar33570922005-01-25 22:26:29 +000018789 }
18790 return NULL;
18791 }
Bram Moolenaara7043832005-01-21 11:56:39 +000018792
18793 hi = hash_find(ht, varname);
18794 if (HASHITEM_EMPTY(hi))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018795 {
18796 /* For global variables we may try auto-loading the script. If it
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018797 * worked find the variable again. Don't auto-load a script if it was
18798 * loaded already, otherwise it would be loaded every time when
18799 * checking if a function name is a Funcref variable. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018800 if (ht == &globvarht && !writing
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018801 && script_autoload(varname, FALSE) && !aborting())
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018802 hi = hash_find(ht, varname);
18803 if (HASHITEM_EMPTY(hi))
18804 return NULL;
18805 }
Bram Moolenaar33570922005-01-25 22:26:29 +000018806 return HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000018807}
18808
18809/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018810 * Find the hashtab used for a variable name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018811 * Set "varname" to the start of name without ':'.
18812 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018813 static hashtab_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018814find_var_ht(name, varname)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018815 char_u *name;
18816 char_u **varname;
18817{
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018818 hashitem_T *hi;
18819
Bram Moolenaar071d4272004-06-13 20:20:40 +000018820 if (name[1] != ':')
18821 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018822 /* The name must not start with a colon or #. */
18823 if (name[0] == ':' || name[0] == AUTOLOAD_CHAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018824 return NULL;
18825 *varname = name;
Bram Moolenaar532c7802005-01-27 14:44:31 +000018826
18827 /* "version" is "v:version" in all scopes */
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018828 hi = hash_find(&compat_hashtab, name);
18829 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar532c7802005-01-27 14:44:31 +000018830 return &compat_hashtab;
18831
Bram Moolenaar071d4272004-06-13 20:20:40 +000018832 if (current_funccal == NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018833 return &globvarht; /* global variable */
18834 return &current_funccal->l_vars.dv_hashtab; /* l: variable */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018835 }
18836 *varname = name + 2;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018837 if (*name == 'g') /* global variable */
18838 return &globvarht;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018839 /* There must be no ':' or '#' in the rest of the name, unless g: is used
18840 */
18841 if (vim_strchr(name + 2, ':') != NULL
18842 || vim_strchr(name + 2, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018843 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018844 if (*name == 'b') /* buffer variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018845 return &curbuf->b_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018846 if (*name == 'w') /* window variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018847 return &curwin->w_vars.dv_hashtab;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018848#ifdef FEAT_WINDOWS
18849 if (*name == 't') /* tab page variable */
18850 return &curtab->tp_vars.dv_hashtab;
18851#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000018852 if (*name == 'v') /* v: variable */
18853 return &vimvarht;
18854 if (*name == 'a' && current_funccal != NULL) /* function argument */
18855 return &current_funccal->l_avars.dv_hashtab;
18856 if (*name == 'l' && current_funccal != NULL) /* local function variable */
18857 return &current_funccal->l_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018858 if (*name == 's' /* script variable */
18859 && current_SID > 0 && current_SID <= ga_scripts.ga_len)
18860 return &SCRIPT_VARS(current_SID);
18861 return NULL;
18862}
18863
18864/*
18865 * Get the string value of a (global/local) variable.
18866 * Returns NULL when it doesn't exist.
18867 */
18868 char_u *
18869get_var_value(name)
18870 char_u *name;
18871{
Bram Moolenaar33570922005-01-25 22:26:29 +000018872 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018873
Bram Moolenaara7043832005-01-21 11:56:39 +000018874 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018875 if (v == NULL)
18876 return NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000018877 return get_tv_string(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018878}
18879
18880/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018881 * Allocate a new hashtab for a sourced script. It will be used while
Bram Moolenaar071d4272004-06-13 20:20:40 +000018882 * sourcing this script and when executing functions defined in the script.
18883 */
18884 void
18885new_script_vars(id)
18886 scid_T id;
18887{
Bram Moolenaara7043832005-01-21 11:56:39 +000018888 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +000018889 hashtab_T *ht;
18890 scriptvar_T *sv;
Bram Moolenaara7043832005-01-21 11:56:39 +000018891
Bram Moolenaar071d4272004-06-13 20:20:40 +000018892 if (ga_grow(&ga_scripts, (int)(id - ga_scripts.ga_len)) == OK)
18893 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018894 /* Re-allocating ga_data means that an ht_array pointing to
18895 * ht_smallarray becomes invalid. We can recognize this: ht_mask is
Bram Moolenaar33570922005-01-25 22:26:29 +000018896 * at its init value. Also reset "v_dict", it's always the same. */
Bram Moolenaara7043832005-01-21 11:56:39 +000018897 for (i = 1; i <= ga_scripts.ga_len; ++i)
18898 {
18899 ht = &SCRIPT_VARS(i);
18900 if (ht->ht_mask == HT_INIT_SIZE - 1)
18901 ht->ht_array = ht->ht_smallarray;
Bram Moolenaar33570922005-01-25 22:26:29 +000018902 sv = &SCRIPT_SV(i);
18903 sv->sv_var.di_tv.vval.v_dict = &sv->sv_dict;
Bram Moolenaara7043832005-01-21 11:56:39 +000018904 }
18905
Bram Moolenaar071d4272004-06-13 20:20:40 +000018906 while (ga_scripts.ga_len < id)
18907 {
Bram Moolenaar33570922005-01-25 22:26:29 +000018908 sv = &SCRIPT_SV(ga_scripts.ga_len + 1);
18909 init_var_dict(&sv->sv_dict, &sv->sv_var);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018910 ++ga_scripts.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018911 }
18912 }
18913}
18914
18915/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018916 * Initialize dictionary "dict" as a scope and set variable "dict_var" to
18917 * point to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018918 */
18919 void
Bram Moolenaar33570922005-01-25 22:26:29 +000018920init_var_dict(dict, dict_var)
18921 dict_T *dict;
18922 dictitem_T *dict_var;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018923{
Bram Moolenaar33570922005-01-25 22:26:29 +000018924 hash_init(&dict->dv_hashtab);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000018925 dict->dv_refcount = DO_NOT_FREE_CNT;
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +000018926 dict->dv_copyID = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000018927 dict_var->di_tv.vval.v_dict = dict;
18928 dict_var->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018929 dict_var->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000018930 dict_var->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
18931 dict_var->di_key[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018932}
18933
18934/*
18935 * Clean up a list of internal variables.
Bram Moolenaar33570922005-01-25 22:26:29 +000018936 * Frees all allocated variables and the value they contain.
18937 * Clears hashtab "ht", does not free it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018938 */
18939 void
Bram Moolenaara7043832005-01-21 11:56:39 +000018940vars_clear(ht)
Bram Moolenaar33570922005-01-25 22:26:29 +000018941 hashtab_T *ht;
18942{
18943 vars_clear_ext(ht, TRUE);
18944}
18945
18946/*
18947 * Like vars_clear(), but only free the value if "free_val" is TRUE.
18948 */
18949 static void
18950vars_clear_ext(ht, free_val)
18951 hashtab_T *ht;
18952 int free_val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018953{
Bram Moolenaara7043832005-01-21 11:56:39 +000018954 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000018955 hashitem_T *hi;
18956 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018957
Bram Moolenaar33570922005-01-25 22:26:29 +000018958 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018959 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +000018960 for (hi = ht->ht_array; todo > 0; ++hi)
18961 {
18962 if (!HASHITEM_EMPTY(hi))
18963 {
18964 --todo;
18965
Bram Moolenaar33570922005-01-25 22:26:29 +000018966 /* Free the variable. Don't remove it from the hashtab,
Bram Moolenaara7043832005-01-21 11:56:39 +000018967 * ht_array might change then. hash_clear() takes care of it
18968 * later. */
Bram Moolenaar33570922005-01-25 22:26:29 +000018969 v = HI2DI(hi);
18970 if (free_val)
18971 clear_tv(&v->di_tv);
18972 if ((v->di_flags & DI_FLAGS_FIX) == 0)
18973 vim_free(v);
Bram Moolenaara7043832005-01-21 11:56:39 +000018974 }
18975 }
18976 hash_clear(ht);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000018977 ht->ht_used = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018978}
18979
Bram Moolenaara7043832005-01-21 11:56:39 +000018980/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018981 * Delete a variable from hashtab "ht" at item "hi".
18982 * Clear the variable value and free the dictitem.
Bram Moolenaara7043832005-01-21 11:56:39 +000018983 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018984 static void
Bram Moolenaara7043832005-01-21 11:56:39 +000018985delete_var(ht, hi)
Bram Moolenaar33570922005-01-25 22:26:29 +000018986 hashtab_T *ht;
18987 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018988{
Bram Moolenaar33570922005-01-25 22:26:29 +000018989 dictitem_T *di = HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000018990
18991 hash_remove(ht, hi);
Bram Moolenaar33570922005-01-25 22:26:29 +000018992 clear_tv(&di->di_tv);
18993 vim_free(di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018994}
18995
18996/*
18997 * List the value of one internal variable.
18998 */
18999 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019000list_one_var(v, prefix, first)
Bram Moolenaar33570922005-01-25 22:26:29 +000019001 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019002 char_u *prefix;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019003 int *first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019004{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019005 char_u *tofree;
19006 char_u *s;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019007 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019008
Bram Moolenaar2c2398c2009-06-03 11:22:45 +000019009 current_copyID += COPYID_INC;
19010 s = echo_string(&v->di_tv, &tofree, numbuf, current_copyID);
Bram Moolenaar33570922005-01-25 22:26:29 +000019011 list_one_var_a(prefix, v->di_key, v->di_tv.v_type,
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019012 s == NULL ? (char_u *)"" : s, first);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019013 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019014}
19015
Bram Moolenaar071d4272004-06-13 20:20:40 +000019016 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019017list_one_var_a(prefix, name, type, string, first)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019018 char_u *prefix;
19019 char_u *name;
19020 int type;
19021 char_u *string;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019022 int *first; /* when TRUE clear rest of screen and set to FALSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019023{
Bram Moolenaar31859182007-08-14 20:41:13 +000019024 /* don't use msg() or msg_attr() to avoid overwriting "v:statusmsg" */
19025 msg_start();
19026 msg_puts(prefix);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019027 if (name != NULL) /* "a:" vars don't have a name stored */
19028 msg_puts(name);
19029 msg_putchar(' ');
19030 msg_advance(22);
19031 if (type == VAR_NUMBER)
19032 msg_putchar('#');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019033 else if (type == VAR_FUNC)
19034 msg_putchar('*');
19035 else if (type == VAR_LIST)
19036 {
19037 msg_putchar('[');
19038 if (*string == '[')
19039 ++string;
19040 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000019041 else if (type == VAR_DICT)
19042 {
19043 msg_putchar('{');
19044 if (*string == '{')
19045 ++string;
19046 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019047 else
19048 msg_putchar(' ');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019049
Bram Moolenaar071d4272004-06-13 20:20:40 +000019050 msg_outtrans(string);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019051
19052 if (type == VAR_FUNC)
19053 msg_puts((char_u *)"()");
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019054 if (*first)
19055 {
19056 msg_clr_eos();
19057 *first = FALSE;
19058 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019059}
19060
19061/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019062 * Set variable "name" to value in "tv".
Bram Moolenaar071d4272004-06-13 20:20:40 +000019063 * If the variable already exists, the value is updated.
19064 * Otherwise the variable is created.
19065 */
19066 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019067set_var(name, tv, copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019068 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000019069 typval_T *tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019070 int copy; /* make copy of value in "tv" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019071{
Bram Moolenaar33570922005-01-25 22:26:29 +000019072 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019073 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000019074 hashtab_T *ht;
Bram Moolenaar92124a32005-06-17 22:03:40 +000019075 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019076
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019077 if (tv->v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019078 {
19079 if (!(vim_strchr((char_u *)"wbs", name[0]) != NULL && name[1] == ':')
19080 && !ASCII_ISUPPER((name[0] != NUL && name[1] == ':')
19081 ? name[2] : name[0]))
19082 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019083 EMSG2(_("E704: Funcref variable name must start with a capital: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019084 return;
19085 }
19086 if (function_exists(name))
19087 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000019088 EMSG2(_("E705: Variable name conflicts with existing function: %s"),
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019089 name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019090 return;
19091 }
19092 }
19093
Bram Moolenaara7043832005-01-21 11:56:39 +000019094 ht = find_var_ht(name, &varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019095 if (ht == NULL || *varname == NUL)
Bram Moolenaara7043832005-01-21 11:56:39 +000019096 {
Bram Moolenaar92124a32005-06-17 22:03:40 +000019097 EMSG2(_(e_illvar), name);
Bram Moolenaara7043832005-01-21 11:56:39 +000019098 return;
19099 }
19100
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019101 v = find_var_in_ht(ht, varname, TRUE);
Bram Moolenaar33570922005-01-25 22:26:29 +000019102 if (v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019103 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019104 /* existing variable, need to clear the value */
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019105 if (var_check_ro(v->di_flags, name)
19106 || tv_check_lock(v->di_tv.v_lock, name))
Bram Moolenaar33570922005-01-25 22:26:29 +000019107 return;
19108 if (v->di_tv.v_type != tv->v_type
19109 && !((v->di_tv.v_type == VAR_STRING
19110 || v->di_tv.v_type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019111 && (tv->v_type == VAR_STRING
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019112 || tv->v_type == VAR_NUMBER))
19113#ifdef FEAT_FLOAT
19114 && !((v->di_tv.v_type == VAR_NUMBER
19115 || v->di_tv.v_type == VAR_FLOAT)
19116 && (tv->v_type == VAR_NUMBER
19117 || tv->v_type == VAR_FLOAT))
19118#endif
19119 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019120 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019121 EMSG2(_("E706: Variable type mismatch for: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019122 return;
19123 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019124
19125 /*
Bram Moolenaar758711c2005-02-02 23:11:38 +000019126 * Handle setting internal v: variables separately: we don't change
19127 * the type.
Bram Moolenaar33570922005-01-25 22:26:29 +000019128 */
19129 if (ht == &vimvarht)
19130 {
19131 if (v->di_tv.v_type == VAR_STRING)
19132 {
19133 vim_free(v->di_tv.vval.v_string);
19134 if (copy || tv->v_type != VAR_STRING)
19135 v->di_tv.vval.v_string = vim_strsave(get_tv_string(tv));
19136 else
19137 {
19138 /* Take over the string to avoid an extra alloc/free. */
19139 v->di_tv.vval.v_string = tv->vval.v_string;
19140 tv->vval.v_string = NULL;
19141 }
19142 }
19143 else if (v->di_tv.v_type != VAR_NUMBER)
19144 EMSG2(_(e_intern2), "set_var()");
19145 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019146 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019147 v->di_tv.vval.v_number = get_tv_number(tv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019148 if (STRCMP(varname, "searchforward") == 0)
19149 set_search_direction(v->di_tv.vval.v_number ? '/' : '?');
19150 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019151 return;
19152 }
19153
19154 clear_tv(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019155 }
19156 else /* add a new variable */
19157 {
Bram Moolenaar5fcc3fe2006-06-22 15:35:14 +000019158 /* Can't add "v:" variable. */
19159 if (ht == &vimvarht)
19160 {
19161 EMSG2(_(e_illvar), name);
19162 return;
19163 }
19164
Bram Moolenaar92124a32005-06-17 22:03:40 +000019165 /* Make sure the variable name is valid. */
19166 for (p = varname; *p != NUL; ++p)
Bram Moolenaara5792f52005-11-23 21:25:05 +000019167 if (!eval_isnamec1(*p) && (p == varname || !VIM_ISDIGIT(*p))
19168 && *p != AUTOLOAD_CHAR)
Bram Moolenaar92124a32005-06-17 22:03:40 +000019169 {
19170 EMSG2(_(e_illvar), varname);
19171 return;
19172 }
19173
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019174 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
19175 + STRLEN(varname)));
Bram Moolenaara7043832005-01-21 11:56:39 +000019176 if (v == NULL)
19177 return;
Bram Moolenaar33570922005-01-25 22:26:29 +000019178 STRCPY(v->di_key, varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019179 if (hash_add(ht, DI2HIKEY(v)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019180 {
Bram Moolenaara7043832005-01-21 11:56:39 +000019181 vim_free(v);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019182 return;
19183 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019184 v->di_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019185 }
Bram Moolenaara7043832005-01-21 11:56:39 +000019186
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019187 if (copy || tv->v_type == VAR_NUMBER || tv->v_type == VAR_FLOAT)
Bram Moolenaar33570922005-01-25 22:26:29 +000019188 copy_tv(tv, &v->di_tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019189 else
19190 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019191 v->di_tv = *tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019192 v->di_tv.v_lock = 0;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019193 init_tv(tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019194 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019195}
19196
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019197/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019198 * Return TRUE if di_flags "flags" indicates variable "name" is read-only.
Bram Moolenaar33570922005-01-25 22:26:29 +000019199 * Also give an error message.
19200 */
19201 static int
19202var_check_ro(flags, name)
19203 int flags;
19204 char_u *name;
19205{
19206 if (flags & DI_FLAGS_RO)
19207 {
19208 EMSG2(_(e_readonlyvar), name);
19209 return TRUE;
19210 }
19211 if ((flags & DI_FLAGS_RO_SBX) && sandbox)
19212 {
19213 EMSG2(_(e_readonlysbx), name);
19214 return TRUE;
19215 }
19216 return FALSE;
19217}
19218
19219/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019220 * Return TRUE if di_flags "flags" indicates variable "name" is fixed.
19221 * Also give an error message.
19222 */
19223 static int
19224var_check_fixed(flags, name)
19225 int flags;
19226 char_u *name;
19227{
19228 if (flags & DI_FLAGS_FIX)
19229 {
19230 EMSG2(_("E795: Cannot delete variable %s"), name);
19231 return TRUE;
19232 }
19233 return FALSE;
19234}
19235
19236/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019237 * Return TRUE if typeval "tv" is set to be locked (immutable).
19238 * Also give an error message, using "name".
19239 */
19240 static int
19241tv_check_lock(lock, name)
19242 int lock;
19243 char_u *name;
19244{
19245 if (lock & VAR_LOCKED)
19246 {
19247 EMSG2(_("E741: Value is locked: %s"),
19248 name == NULL ? (char_u *)_("Unknown") : name);
19249 return TRUE;
19250 }
19251 if (lock & VAR_FIXED)
19252 {
19253 EMSG2(_("E742: Cannot change value of %s"),
19254 name == NULL ? (char_u *)_("Unknown") : name);
19255 return TRUE;
19256 }
19257 return FALSE;
19258}
19259
19260/*
Bram Moolenaar33570922005-01-25 22:26:29 +000019261 * Copy the values from typval_T "from" to typval_T "to".
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019262 * When needed allocates string or increases reference count.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019263 * Does not make a copy of a list or dict but copies the reference!
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000019264 * It is OK for "from" and "to" to point to the same item. This is used to
19265 * make a copy later.
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019266 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019267 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019268copy_tv(from, to)
Bram Moolenaar33570922005-01-25 22:26:29 +000019269 typval_T *from;
19270 typval_T *to;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019271{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019272 to->v_type = from->v_type;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019273 to->v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019274 switch (from->v_type)
19275 {
19276 case VAR_NUMBER:
19277 to->vval.v_number = from->vval.v_number;
19278 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019279#ifdef FEAT_FLOAT
19280 case VAR_FLOAT:
19281 to->vval.v_float = from->vval.v_float;
19282 break;
19283#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019284 case VAR_STRING:
19285 case VAR_FUNC:
19286 if (from->vval.v_string == NULL)
19287 to->vval.v_string = NULL;
19288 else
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019289 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019290 to->vval.v_string = vim_strsave(from->vval.v_string);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019291 if (from->v_type == VAR_FUNC)
19292 func_ref(to->vval.v_string);
19293 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019294 break;
19295 case VAR_LIST:
19296 if (from->vval.v_list == NULL)
19297 to->vval.v_list = NULL;
19298 else
19299 {
19300 to->vval.v_list = from->vval.v_list;
19301 ++to->vval.v_list->lv_refcount;
19302 }
19303 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000019304 case VAR_DICT:
19305 if (from->vval.v_dict == NULL)
19306 to->vval.v_dict = NULL;
19307 else
19308 {
19309 to->vval.v_dict = from->vval.v_dict;
19310 ++to->vval.v_dict->dv_refcount;
19311 }
19312 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019313 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019314 EMSG2(_(e_intern2), "copy_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019315 break;
19316 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019317}
19318
19319/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000019320 * Make a copy of an item.
19321 * Lists and Dictionaries are also copied. A deep copy if "deep" is set.
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019322 * For deepcopy() "copyID" is zero for a full copy or the ID for when a
19323 * reference to an already copied list/dict can be used.
19324 * Returns FAIL or OK.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019325 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019326 static int
19327item_copy(from, to, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +000019328 typval_T *from;
19329 typval_T *to;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019330 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019331 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019332{
19333 static int recurse = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019334 int ret = OK;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019335
Bram Moolenaar33570922005-01-25 22:26:29 +000019336 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +000019337 {
19338 EMSG(_("E698: variable nested too deep for making a copy"));
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019339 return FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019340 }
19341 ++recurse;
19342
19343 switch (from->v_type)
19344 {
19345 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019346#ifdef FEAT_FLOAT
19347 case VAR_FLOAT:
19348#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000019349 case VAR_STRING:
19350 case VAR_FUNC:
19351 copy_tv(from, to);
19352 break;
19353 case VAR_LIST:
19354 to->v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019355 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019356 if (from->vval.v_list == NULL)
19357 to->vval.v_list = NULL;
19358 else if (copyID != 0 && from->vval.v_list->lv_copyID == copyID)
19359 {
19360 /* use the copy made earlier */
19361 to->vval.v_list = from->vval.v_list->lv_copylist;
19362 ++to->vval.v_list->lv_refcount;
19363 }
19364 else
19365 to->vval.v_list = list_copy(from->vval.v_list, deep, copyID);
19366 if (to->vval.v_list == NULL)
19367 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019368 break;
19369 case VAR_DICT:
19370 to->v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019371 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019372 if (from->vval.v_dict == NULL)
19373 to->vval.v_dict = NULL;
19374 else if (copyID != 0 && from->vval.v_dict->dv_copyID == copyID)
19375 {
19376 /* use the copy made earlier */
19377 to->vval.v_dict = from->vval.v_dict->dv_copydict;
19378 ++to->vval.v_dict->dv_refcount;
19379 }
19380 else
19381 to->vval.v_dict = dict_copy(from->vval.v_dict, deep, copyID);
19382 if (to->vval.v_dict == NULL)
19383 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019384 break;
19385 default:
19386 EMSG2(_(e_intern2), "item_copy()");
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019387 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019388 }
19389 --recurse;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019390 return ret;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019391}
19392
19393/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000019394 * ":echo expr1 ..." print each argument separated with a space, add a
19395 * newline at the end.
19396 * ":echon expr1 ..." print each argument plain.
19397 */
19398 void
19399ex_echo(eap)
19400 exarg_T *eap;
19401{
19402 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019403 typval_T rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019404 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019405 char_u *p;
19406 int needclr = TRUE;
19407 int atstart = TRUE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019408 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000019409
19410 if (eap->skip)
19411 ++emsg_skip;
19412 while (*arg != NUL && *arg != '|' && *arg != '\n' && !got_int)
19413 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019414 /* If eval1() causes an error message the text from the command may
19415 * still need to be cleared. E.g., "echo 22,44". */
19416 need_clr_eos = needclr;
19417
Bram Moolenaar071d4272004-06-13 20:20:40 +000019418 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019419 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019420 {
19421 /*
19422 * Report the invalid expression unless the expression evaluation
19423 * has been cancelled due to an aborting error, an interrupt, or an
19424 * exception.
19425 */
19426 if (!aborting())
19427 EMSG2(_(e_invexpr2), p);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019428 need_clr_eos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019429 break;
19430 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019431 need_clr_eos = FALSE;
19432
Bram Moolenaar071d4272004-06-13 20:20:40 +000019433 if (!eap->skip)
19434 {
19435 if (atstart)
19436 {
19437 atstart = FALSE;
19438 /* Call msg_start() after eval1(), evaluating the expression
19439 * may cause a message to appear. */
19440 if (eap->cmdidx == CMD_echo)
19441 msg_start();
19442 }
19443 else if (eap->cmdidx == CMD_echo)
19444 msg_puts_attr((char_u *)" ", echo_attr);
Bram Moolenaar2c2398c2009-06-03 11:22:45 +000019445 current_copyID += COPYID_INC;
19446 p = echo_string(&rettv, &tofree, numbuf, current_copyID);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019447 if (p != NULL)
19448 for ( ; *p != NUL && !got_int; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019449 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019450 if (*p == '\n' || *p == '\r' || *p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019451 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019452 if (*p != TAB && needclr)
19453 {
19454 /* remove any text still there from the command */
19455 msg_clr_eos();
19456 needclr = FALSE;
19457 }
19458 msg_putchar_attr(*p, echo_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019459 }
19460 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019461 {
19462#ifdef FEAT_MBYTE
19463 if (has_mbyte)
19464 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000019465 int i = (*mb_ptr2len)(p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019466
19467 (void)msg_outtrans_len_attr(p, i, echo_attr);
19468 p += i - 1;
19469 }
19470 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000019471#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019472 (void)msg_outtrans_len_attr(p, 1, echo_attr);
19473 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019474 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019475 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019476 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019477 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019478 arg = skipwhite(arg);
19479 }
19480 eap->nextcmd = check_nextcmd(arg);
19481
19482 if (eap->skip)
19483 --emsg_skip;
19484 else
19485 {
19486 /* remove text that may still be there from the command */
19487 if (needclr)
19488 msg_clr_eos();
19489 if (eap->cmdidx == CMD_echo)
19490 msg_end();
19491 }
19492}
19493
19494/*
19495 * ":echohl {name}".
19496 */
19497 void
19498ex_echohl(eap)
19499 exarg_T *eap;
19500{
19501 int id;
19502
19503 id = syn_name2id(eap->arg);
19504 if (id == 0)
19505 echo_attr = 0;
19506 else
19507 echo_attr = syn_id2attr(id);
19508}
19509
19510/*
19511 * ":execute expr1 ..." execute the result of an expression.
19512 * ":echomsg expr1 ..." Print a message
19513 * ":echoerr expr1 ..." Print an error
19514 * Each gets spaces around each argument and a newline at the end for
19515 * echo commands
19516 */
19517 void
19518ex_execute(eap)
19519 exarg_T *eap;
19520{
19521 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019522 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019523 int ret = OK;
19524 char_u *p;
19525 garray_T ga;
19526 int len;
19527 int save_did_emsg;
19528
19529 ga_init2(&ga, 1, 80);
19530
19531 if (eap->skip)
19532 ++emsg_skip;
19533 while (*arg != NUL && *arg != '|' && *arg != '\n')
19534 {
19535 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019536 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019537 {
19538 /*
19539 * Report the invalid expression unless the expression evaluation
19540 * has been cancelled due to an aborting error, an interrupt, or an
19541 * exception.
19542 */
19543 if (!aborting())
19544 EMSG2(_(e_invexpr2), p);
19545 ret = FAIL;
19546 break;
19547 }
19548
19549 if (!eap->skip)
19550 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019551 p = get_tv_string(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019552 len = (int)STRLEN(p);
19553 if (ga_grow(&ga, len + 2) == FAIL)
19554 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019555 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019556 ret = FAIL;
19557 break;
19558 }
19559 if (ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019560 ((char_u *)(ga.ga_data))[ga.ga_len++] = ' ';
Bram Moolenaar071d4272004-06-13 20:20:40 +000019561 STRCPY((char_u *)(ga.ga_data) + ga.ga_len, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019562 ga.ga_len += len;
19563 }
19564
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019565 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019566 arg = skipwhite(arg);
19567 }
19568
19569 if (ret != FAIL && ga.ga_data != NULL)
19570 {
19571 if (eap->cmdidx == CMD_echomsg)
Bram Moolenaar4770d092006-01-12 23:22:24 +000019572 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000019573 MSG_ATTR(ga.ga_data, echo_attr);
Bram Moolenaar4770d092006-01-12 23:22:24 +000019574 out_flush();
19575 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019576 else if (eap->cmdidx == CMD_echoerr)
19577 {
19578 /* We don't want to abort following commands, restore did_emsg. */
19579 save_did_emsg = did_emsg;
19580 EMSG((char_u *)ga.ga_data);
19581 if (!force_abort)
19582 did_emsg = save_did_emsg;
19583 }
19584 else if (eap->cmdidx == CMD_execute)
19585 do_cmdline((char_u *)ga.ga_data,
19586 eap->getline, eap->cookie, DOCMD_NOWAIT|DOCMD_VERBOSE);
19587 }
19588
19589 ga_clear(&ga);
19590
19591 if (eap->skip)
19592 --emsg_skip;
19593
19594 eap->nextcmd = check_nextcmd(arg);
19595}
19596
19597/*
19598 * Skip over the name of an option: "&option", "&g:option" or "&l:option".
19599 * "arg" points to the "&" or '+' when called, to "option" when returning.
19600 * Returns NULL when no option name found. Otherwise pointer to the char
19601 * after the option name.
19602 */
19603 static char_u *
19604find_option_end(arg, opt_flags)
19605 char_u **arg;
19606 int *opt_flags;
19607{
19608 char_u *p = *arg;
19609
19610 ++p;
19611 if (*p == 'g' && p[1] == ':')
19612 {
19613 *opt_flags = OPT_GLOBAL;
19614 p += 2;
19615 }
19616 else if (*p == 'l' && p[1] == ':')
19617 {
19618 *opt_flags = OPT_LOCAL;
19619 p += 2;
19620 }
19621 else
19622 *opt_flags = 0;
19623
19624 if (!ASCII_ISALPHA(*p))
19625 return NULL;
19626 *arg = p;
19627
19628 if (p[0] == 't' && p[1] == '_' && p[2] != NUL && p[3] != NUL)
19629 p += 4; /* termcap option */
19630 else
19631 while (ASCII_ISALPHA(*p))
19632 ++p;
19633 return p;
19634}
19635
19636/*
19637 * ":function"
19638 */
19639 void
19640ex_function(eap)
19641 exarg_T *eap;
19642{
19643 char_u *theline;
19644 int j;
19645 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019646 int saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019647 char_u *name = NULL;
19648 char_u *p;
19649 char_u *arg;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019650 char_u *line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019651 garray_T newargs;
19652 garray_T newlines;
19653 int varargs = FALSE;
19654 int mustend = FALSE;
19655 int flags = 0;
19656 ufunc_T *fp;
19657 int indent;
19658 int nesting;
19659 char_u *skip_until = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000019660 dictitem_T *v;
19661 funcdict_T fudi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019662 static int func_nr = 0; /* number for nameless function */
19663 int paren;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019664 hashtab_T *ht;
19665 int todo;
19666 hashitem_T *hi;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019667 int sourcing_lnum_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019668
19669 /*
19670 * ":function" without argument: list functions.
19671 */
19672 if (ends_excmd(*eap->arg))
19673 {
19674 if (!eap->skip)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019675 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019676 todo = (int)func_hashtab.ht_used;
Bram Moolenaar038eb0e2005-02-27 22:43:26 +000019677 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019678 {
19679 if (!HASHITEM_EMPTY(hi))
19680 {
19681 --todo;
19682 fp = HI2UF(hi);
19683 if (!isdigit(*fp->uf_name))
19684 list_func_head(fp, FALSE);
19685 }
19686 }
19687 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019688 eap->nextcmd = check_nextcmd(eap->arg);
19689 return;
19690 }
19691
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019692 /*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019693 * ":function /pat": list functions matching pattern.
19694 */
19695 if (*eap->arg == '/')
19696 {
19697 p = skip_regexp(eap->arg + 1, '/', TRUE, NULL);
19698 if (!eap->skip)
19699 {
19700 regmatch_T regmatch;
19701
19702 c = *p;
19703 *p = NUL;
19704 regmatch.regprog = vim_regcomp(eap->arg + 1, RE_MAGIC);
19705 *p = c;
19706 if (regmatch.regprog != NULL)
19707 {
19708 regmatch.rm_ic = p_ic;
19709
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019710 todo = (int)func_hashtab.ht_used;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019711 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
19712 {
19713 if (!HASHITEM_EMPTY(hi))
19714 {
19715 --todo;
19716 fp = HI2UF(hi);
19717 if (!isdigit(*fp->uf_name)
19718 && vim_regexec(&regmatch, fp->uf_name, 0))
19719 list_func_head(fp, FALSE);
19720 }
19721 }
Bram Moolenaar69f2d5a2009-04-22 14:10:39 +000019722 vim_free(regmatch.regprog);
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019723 }
19724 }
19725 if (*p == '/')
19726 ++p;
19727 eap->nextcmd = check_nextcmd(p);
19728 return;
19729 }
19730
19731 /*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019732 * Get the function name. There are these situations:
19733 * func normal function name
19734 * "name" == func, "fudi.fd_dict" == NULL
19735 * dict.func new dictionary entry
19736 * "name" == NULL, "fudi.fd_dict" set,
19737 * "fudi.fd_di" == NULL, "fudi.fd_newkey" == func
19738 * dict.func existing dict entry with a Funcref
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019739 * "name" == func, "fudi.fd_dict" set,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019740 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19741 * dict.func existing dict entry that's not a Funcref
19742 * "name" == NULL, "fudi.fd_dict" set,
19743 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19744 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019745 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019746 name = trans_function_name(&p, eap->skip, 0, &fudi);
19747 paren = (vim_strchr(p, '(') != NULL);
19748 if (name == NULL && (fudi.fd_dict == NULL || !paren) && !eap->skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019749 {
19750 /*
19751 * Return on an invalid expression in braces, unless the expression
19752 * evaluation has been cancelled due to an aborting error, an
19753 * interrupt, or an exception.
19754 */
19755 if (!aborting())
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019756 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000019757 if (!eap->skip && fudi.fd_newkey != NULL)
19758 EMSG2(_(e_dictkey), fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019759 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019760 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019761 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019762 else
19763 eap->skip = TRUE;
19764 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000019765
Bram Moolenaar071d4272004-06-13 20:20:40 +000019766 /* An error in a function call during evaluation of an expression in magic
19767 * braces should not cause the function not to be defined. */
19768 saved_did_emsg = did_emsg;
19769 did_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019770
19771 /*
19772 * ":function func" with only function name: list function.
19773 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019774 if (!paren)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019775 {
19776 if (!ends_excmd(*skipwhite(p)))
19777 {
19778 EMSG(_(e_trailing));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019779 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019780 }
19781 eap->nextcmd = check_nextcmd(p);
19782 if (eap->nextcmd != NULL)
19783 *p = NUL;
19784 if (!eap->skip && !got_int)
19785 {
19786 fp = find_func(name);
19787 if (fp != NULL)
19788 {
19789 list_func_head(fp, TRUE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019790 for (j = 0; j < fp->uf_lines.ga_len && !got_int; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019791 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019792 if (FUNCLINE(fp, j) == NULL)
19793 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019794 msg_putchar('\n');
19795 msg_outnum((long)(j + 1));
19796 if (j < 9)
19797 msg_putchar(' ');
19798 if (j < 99)
19799 msg_putchar(' ');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019800 msg_prt_line(FUNCLINE(fp, j), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019801 out_flush(); /* show a line at a time */
19802 ui_breakcheck();
19803 }
19804 if (!got_int)
19805 {
19806 msg_putchar('\n');
19807 msg_puts((char_u *)" endfunction");
19808 }
19809 }
19810 else
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +000019811 emsg_funcname(N_("E123: Undefined function: %s"), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019812 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019813 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019814 }
19815
19816 /*
19817 * ":function name(arg1, arg2)" Define function.
19818 */
19819 p = skipwhite(p);
19820 if (*p != '(')
19821 {
19822 if (!eap->skip)
19823 {
19824 EMSG2(_("E124: Missing '(': %s"), eap->arg);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019825 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019826 }
19827 /* attempt to continue by skipping some text */
19828 if (vim_strchr(p, '(') != NULL)
19829 p = vim_strchr(p, '(');
19830 }
19831 p = skipwhite(p + 1);
19832
19833 ga_init2(&newargs, (int)sizeof(char_u *), 3);
19834 ga_init2(&newlines, (int)sizeof(char_u *), 3);
19835
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019836 if (!eap->skip)
19837 {
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019838 /* Check the name of the function. Unless it's a dictionary function
19839 * (that we are overwriting). */
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019840 if (name != NULL)
19841 arg = name;
19842 else
19843 arg = fudi.fd_newkey;
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019844 if (arg != NULL && (fudi.fd_di == NULL
19845 || fudi.fd_di->di_tv.v_type != VAR_FUNC))
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019846 {
19847 if (*arg == K_SPECIAL)
19848 j = 3;
19849 else
19850 j = 0;
19851 while (arg[j] != NUL && (j == 0 ? eval_isnamec1(arg[j])
19852 : eval_isnamec(arg[j])))
19853 ++j;
19854 if (arg[j] != NUL)
Bram Moolenaarb67cc162009-02-04 15:27:06 +000019855 emsg_funcname((char *)e_invarg2, arg);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019856 }
19857 }
19858
Bram Moolenaar071d4272004-06-13 20:20:40 +000019859 /*
19860 * Isolate the arguments: "arg1, arg2, ...)"
19861 */
19862 while (*p != ')')
19863 {
19864 if (p[0] == '.' && p[1] == '.' && p[2] == '.')
19865 {
19866 varargs = TRUE;
19867 p += 3;
19868 mustend = TRUE;
19869 }
19870 else
19871 {
19872 arg = p;
19873 while (ASCII_ISALNUM(*p) || *p == '_')
19874 ++p;
19875 if (arg == p || isdigit(*arg)
19876 || (p - arg == 9 && STRNCMP(arg, "firstline", 9) == 0)
19877 || (p - arg == 8 && STRNCMP(arg, "lastline", 8) == 0))
19878 {
19879 if (!eap->skip)
19880 EMSG2(_("E125: Illegal argument: %s"), arg);
19881 break;
19882 }
19883 if (ga_grow(&newargs, 1) == FAIL)
19884 goto erret;
19885 c = *p;
19886 *p = NUL;
19887 arg = vim_strsave(arg);
19888 if (arg == NULL)
19889 goto erret;
19890 ((char_u **)(newargs.ga_data))[newargs.ga_len] = arg;
19891 *p = c;
19892 newargs.ga_len++;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019893 if (*p == ',')
19894 ++p;
19895 else
19896 mustend = TRUE;
19897 }
19898 p = skipwhite(p);
19899 if (mustend && *p != ')')
19900 {
19901 if (!eap->skip)
19902 EMSG2(_(e_invarg2), eap->arg);
19903 break;
19904 }
19905 }
19906 ++p; /* skip the ')' */
19907
Bram Moolenaare9a41262005-01-15 22:18:47 +000019908 /* find extra arguments "range", "dict" and "abort" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019909 for (;;)
19910 {
19911 p = skipwhite(p);
19912 if (STRNCMP(p, "range", 5) == 0)
19913 {
19914 flags |= FC_RANGE;
19915 p += 5;
19916 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000019917 else if (STRNCMP(p, "dict", 4) == 0)
19918 {
19919 flags |= FC_DICT;
19920 p += 4;
19921 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019922 else if (STRNCMP(p, "abort", 5) == 0)
19923 {
19924 flags |= FC_ABORT;
19925 p += 5;
19926 }
19927 else
19928 break;
19929 }
19930
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019931 /* When there is a line break use what follows for the function body.
19932 * Makes 'exe "func Test()\n...\nendfunc"' work. */
19933 if (*p == '\n')
19934 line_arg = p + 1;
19935 else if (*p != NUL && *p != '"' && !eap->skip && !did_emsg)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019936 EMSG(_(e_trailing));
19937
19938 /*
19939 * Read the body of the function, until ":endfunction" is found.
19940 */
19941 if (KeyTyped)
19942 {
19943 /* Check if the function already exists, don't let the user type the
19944 * whole function before telling him it doesn't work! For a script we
19945 * need to skip the body to be able to find what follows. */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019946 if (!eap->skip && !eap->forceit)
19947 {
19948 if (fudi.fd_dict != NULL && fudi.fd_newkey == NULL)
19949 EMSG(_(e_funcdict));
19950 else if (name != NULL && find_func(name) != NULL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019951 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019952 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019953
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019954 if (!eap->skip && did_emsg)
19955 goto erret;
19956
Bram Moolenaar071d4272004-06-13 20:20:40 +000019957 msg_putchar('\n'); /* don't overwrite the function name */
19958 cmdline_row = msg_row;
19959 }
19960
19961 indent = 2;
19962 nesting = 0;
19963 for (;;)
19964 {
19965 msg_scroll = TRUE;
19966 need_wait_return = FALSE;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019967 sourcing_lnum_off = sourcing_lnum;
19968
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019969 if (line_arg != NULL)
19970 {
19971 /* Use eap->arg, split up in parts by line breaks. */
19972 theline = line_arg;
19973 p = vim_strchr(theline, '\n');
19974 if (p == NULL)
19975 line_arg += STRLEN(line_arg);
19976 else
19977 {
19978 *p = NUL;
19979 line_arg = p + 1;
19980 }
19981 }
19982 else if (eap->getline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019983 theline = getcmdline(':', 0L, indent);
19984 else
19985 theline = eap->getline(':', eap->cookie, indent);
19986 if (KeyTyped)
19987 lines_left = Rows - 1;
19988 if (theline == NULL)
19989 {
19990 EMSG(_("E126: Missing :endfunction"));
19991 goto erret;
19992 }
19993
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019994 /* Detect line continuation: sourcing_lnum increased more than one. */
19995 if (sourcing_lnum > sourcing_lnum_off + 1)
19996 sourcing_lnum_off = sourcing_lnum - sourcing_lnum_off - 1;
19997 else
19998 sourcing_lnum_off = 0;
19999
Bram Moolenaar071d4272004-06-13 20:20:40 +000020000 if (skip_until != NULL)
20001 {
20002 /* between ":append" and "." and between ":python <<EOF" and "EOF"
20003 * don't check for ":endfunc". */
20004 if (STRCMP(theline, skip_until) == 0)
20005 {
20006 vim_free(skip_until);
20007 skip_until = NULL;
20008 }
20009 }
20010 else
20011 {
20012 /* skip ':' and blanks*/
20013 for (p = theline; vim_iswhite(*p) || *p == ':'; ++p)
20014 ;
20015
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020016 /* Check for "endfunction". */
20017 if (checkforcmd(&p, "endfunction", 4) && nesting-- == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020018 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020019 if (line_arg == NULL)
20020 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020021 break;
20022 }
20023
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020024 /* Increase indent inside "if", "while", "for" and "try", decrease
Bram Moolenaar071d4272004-06-13 20:20:40 +000020025 * at "end". */
20026 if (indent > 2 && STRNCMP(p, "end", 3) == 0)
20027 indent -= 2;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020028 else if (STRNCMP(p, "if", 2) == 0
20029 || STRNCMP(p, "wh", 2) == 0
20030 || STRNCMP(p, "for", 3) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000020031 || STRNCMP(p, "try", 3) == 0)
20032 indent += 2;
20033
20034 /* Check for defining a function inside this function. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020035 if (checkforcmd(&p, "function", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020036 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020037 if (*p == '!')
20038 p = skipwhite(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020039 p += eval_fname_script(p);
20040 if (ASCII_ISALPHA(*p))
20041 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020042 vim_free(trans_function_name(&p, TRUE, 0, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020043 if (*skipwhite(p) == '(')
20044 {
20045 ++nesting;
20046 indent += 2;
20047 }
20048 }
20049 }
20050
20051 /* Check for ":append" or ":insert". */
20052 p = skip_range(p, NULL);
20053 if ((p[0] == 'a' && (!ASCII_ISALPHA(p[1]) || p[1] == 'p'))
20054 || (p[0] == 'i'
20055 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'n'
20056 && (!ASCII_ISALPHA(p[2]) || (p[2] == 's'))))))
20057 skip_until = vim_strsave((char_u *)".");
20058
20059 /* Check for ":python <<EOF", ":tcl <<EOF", etc. */
20060 arg = skipwhite(skiptowhite(p));
20061 if (arg[0] == '<' && arg[1] =='<'
20062 && ((p[0] == 'p' && p[1] == 'y'
20063 && (!ASCII_ISALPHA(p[2]) || p[2] == 't'))
20064 || (p[0] == 'p' && p[1] == 'e'
20065 && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
20066 || (p[0] == 't' && p[1] == 'c'
20067 && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
20068 || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
20069 && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
Bram Moolenaar325b7a22004-07-05 15:58:32 +000020070 || (p[0] == 'm' && p[1] == 'z'
20071 && (!ASCII_ISALPHA(p[2]) || p[2] == 's'))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020072 ))
20073 {
20074 /* ":python <<" continues until a dot, like ":append" */
20075 p = skipwhite(arg + 2);
20076 if (*p == NUL)
20077 skip_until = vim_strsave((char_u *)".");
20078 else
20079 skip_until = vim_strsave(p);
20080 }
20081 }
20082
20083 /* Add the line to the function. */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020084 if (ga_grow(&newlines, 1 + sourcing_lnum_off) == FAIL)
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020085 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020086 if (line_arg == NULL)
20087 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020088 goto erret;
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020089 }
20090
20091 /* Copy the line to newly allocated memory. get_one_sourceline()
20092 * allocates 250 bytes per line, this saves 80% on average. The cost
20093 * is an extra alloc/free. */
20094 p = vim_strsave(theline);
20095 if (p != NULL)
20096 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020097 if (line_arg == NULL)
20098 vim_free(theline);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020099 theline = p;
20100 }
20101
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020102 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = theline;
20103
20104 /* Add NULL lines for continuation lines, so that the line count is
20105 * equal to the index in the growarray. */
20106 while (sourcing_lnum_off-- > 0)
20107 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = NULL;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020108
20109 /* Check for end of eap->arg. */
20110 if (line_arg != NULL && *line_arg == NUL)
20111 line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020112 }
20113
20114 /* Don't define the function when skipping commands or when an error was
20115 * detected. */
20116 if (eap->skip || did_emsg)
20117 goto erret;
20118
20119 /*
20120 * If there are no errors, add the function
20121 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020122 if (fudi.fd_dict == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020123 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020124 v = find_var(name, &ht);
Bram Moolenaar33570922005-01-25 22:26:29 +000020125 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020126 {
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +000020127 emsg_funcname(N_("E707: Function name conflicts with variable: %s"),
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020128 name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020129 goto erret;
20130 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020131
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020132 fp = find_func(name);
20133 if (fp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020134 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020135 if (!eap->forceit)
20136 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020137 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020138 goto erret;
20139 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020140 if (fp->uf_calls > 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020141 {
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +000020142 emsg_funcname(N_("E127: Cannot redefine function %s: It is in use"),
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020143 name);
20144 goto erret;
20145 }
20146 /* redefine existing function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020147 ga_clear_strings(&(fp->uf_args));
20148 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020149 vim_free(name);
20150 name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020151 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020152 }
20153 else
20154 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020155 char numbuf[20];
20156
20157 fp = NULL;
20158 if (fudi.fd_newkey == NULL && !eap->forceit)
20159 {
20160 EMSG(_(e_funcdict));
20161 goto erret;
20162 }
Bram Moolenaar758711c2005-02-02 23:11:38 +000020163 if (fudi.fd_di == NULL)
20164 {
20165 /* Can't add a function to a locked dictionary */
20166 if (tv_check_lock(fudi.fd_dict->dv_lock, eap->arg))
20167 goto erret;
20168 }
20169 /* Can't change an existing function if it is locked */
20170 else if (tv_check_lock(fudi.fd_di->di_tv.v_lock, eap->arg))
20171 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020172
20173 /* Give the function a sequential number. Can only be used with a
20174 * Funcref! */
20175 vim_free(name);
20176 sprintf(numbuf, "%d", ++func_nr);
20177 name = vim_strsave((char_u *)numbuf);
20178 if (name == NULL)
20179 goto erret;
20180 }
20181
20182 if (fp == NULL)
20183 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020184 if (fudi.fd_dict == NULL && vim_strchr(name, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020185 {
20186 int slen, plen;
20187 char_u *scriptname;
20188
20189 /* Check that the autoload name matches the script name. */
20190 j = FAIL;
20191 if (sourcing_name != NULL)
20192 {
20193 scriptname = autoload_name(name);
20194 if (scriptname != NULL)
20195 {
20196 p = vim_strchr(scriptname, '/');
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020197 plen = (int)STRLEN(p);
20198 slen = (int)STRLEN(sourcing_name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020199 if (slen > plen && fnamecmp(p,
20200 sourcing_name + slen - plen) == 0)
20201 j = OK;
20202 vim_free(scriptname);
20203 }
20204 }
20205 if (j == FAIL)
20206 {
20207 EMSG2(_("E746: Function name does not match script file name: %s"), name);
20208 goto erret;
20209 }
20210 }
20211
20212 fp = (ufunc_T *)alloc((unsigned)(sizeof(ufunc_T) + STRLEN(name)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020213 if (fp == NULL)
20214 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020215
20216 if (fudi.fd_dict != NULL)
20217 {
20218 if (fudi.fd_di == NULL)
20219 {
20220 /* add new dict entry */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020221 fudi.fd_di = dictitem_alloc(fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020222 if (fudi.fd_di == NULL)
20223 {
20224 vim_free(fp);
20225 goto erret;
20226 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020227 if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
20228 {
20229 vim_free(fudi.fd_di);
Bram Moolenaar0a5fd8b2006-08-16 20:02:22 +000020230 vim_free(fp);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020231 goto erret;
20232 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020233 }
20234 else
20235 /* overwrite existing dict entry */
20236 clear_tv(&fudi.fd_di->di_tv);
20237 fudi.fd_di->di_tv.v_type = VAR_FUNC;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000020238 fudi.fd_di->di_tv.v_lock = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020239 fudi.fd_di->di_tv.vval.v_string = vim_strsave(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020240 fp->uf_refcount = 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000020241
20242 /* behave like "dict" was used */
20243 flags |= FC_DICT;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020244 }
20245
Bram Moolenaar071d4272004-06-13 20:20:40 +000020246 /* insert the new function in the function list */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020247 STRCPY(fp->uf_name, name);
20248 hash_add(&func_hashtab, UF2HIKEY(fp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020249 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020250 fp->uf_args = newargs;
20251 fp->uf_lines = newlines;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020252#ifdef FEAT_PROFILE
20253 fp->uf_tml_count = NULL;
20254 fp->uf_tml_total = NULL;
20255 fp->uf_tml_self = NULL;
20256 fp->uf_profiling = FALSE;
20257 if (prof_def_func())
20258 func_do_profile(fp);
20259#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020260 fp->uf_varargs = varargs;
20261 fp->uf_flags = flags;
20262 fp->uf_calls = 0;
20263 fp->uf_script_ID = current_SID;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020264 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020265
20266erret:
Bram Moolenaar071d4272004-06-13 20:20:40 +000020267 ga_clear_strings(&newargs);
20268 ga_clear_strings(&newlines);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020269ret_free:
20270 vim_free(skip_until);
20271 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020272 vim_free(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020273 did_emsg |= saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020274}
20275
20276/*
20277 * Get a function name, translating "<SID>" and "<SNR>".
Bram Moolenaara7043832005-01-21 11:56:39 +000020278 * Also handles a Funcref in a List or Dictionary.
Bram Moolenaar071d4272004-06-13 20:20:40 +000020279 * Returns the function name in allocated memory, or NULL for failure.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020280 * flags:
20281 * TFN_INT: internal function name OK
20282 * TFN_QUIET: be quiet
Bram Moolenaar071d4272004-06-13 20:20:40 +000020283 * Advances "pp" to just after the function name (if no error).
20284 */
20285 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020286trans_function_name(pp, skip, flags, fdp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020287 char_u **pp;
20288 int skip; /* only find the end, don't evaluate */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020289 int flags;
Bram Moolenaar33570922005-01-25 22:26:29 +000020290 funcdict_T *fdp; /* return: info about dictionary used */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020291{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020292 char_u *name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020293 char_u *start;
20294 char_u *end;
20295 int lead;
20296 char_u sid_buf[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +000020297 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +000020298 lval_T lv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020299
20300 if (fdp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000020301 vim_memset(fdp, 0, sizeof(funcdict_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020302 start = *pp;
Bram Moolenaara7043832005-01-21 11:56:39 +000020303
20304 /* Check for hard coded <SNR>: already translated function ID (from a user
20305 * command). */
20306 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA
20307 && (*pp)[2] == (int)KE_SNR)
20308 {
20309 *pp += 3;
20310 len = get_id_len(pp) + 3;
20311 return vim_strnsave(start, len);
20312 }
20313
20314 /* A name starting with "<SID>" or "<SNR>" is local to a script. But
20315 * don't skip over "s:", get_lval() needs it for "s:dict.func". */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020316 lead = eval_fname_script(start);
Bram Moolenaara7043832005-01-21 11:56:39 +000020317 if (lead > 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020318 start += lead;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020319
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020320 end = get_lval(start, NULL, &lv, FALSE, skip, flags & TFN_QUIET,
20321 lead > 2 ? 0 : FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020322 if (end == start)
20323 {
20324 if (!skip)
20325 EMSG(_("E129: Function name required"));
20326 goto theend;
20327 }
Bram Moolenaara7043832005-01-21 11:56:39 +000020328 if (end == NULL || (lv.ll_tv != NULL && (lead > 2 || lv.ll_range)))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020329 {
20330 /*
20331 * Report an invalid expression in braces, unless the expression
20332 * evaluation has been cancelled due to an aborting error, an
20333 * interrupt, or an exception.
20334 */
20335 if (!aborting())
20336 {
20337 if (end != NULL)
20338 EMSG2(_(e_invarg2), start);
20339 }
20340 else
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020341 *pp = find_name_end(start, NULL, NULL, FNE_INCL_BR);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020342 goto theend;
20343 }
20344
20345 if (lv.ll_tv != NULL)
20346 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020347 if (fdp != NULL)
20348 {
20349 fdp->fd_dict = lv.ll_dict;
20350 fdp->fd_newkey = lv.ll_newkey;
20351 lv.ll_newkey = NULL;
20352 fdp->fd_di = lv.ll_di;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020353 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020354 if (lv.ll_tv->v_type == VAR_FUNC && lv.ll_tv->vval.v_string != NULL)
20355 {
20356 name = vim_strsave(lv.ll_tv->vval.v_string);
20357 *pp = end;
20358 }
20359 else
20360 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020361 if (!skip && !(flags & TFN_QUIET) && (fdp == NULL
20362 || lv.ll_dict == NULL || fdp->fd_newkey == NULL))
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020363 EMSG(_(e_funcref));
20364 else
20365 *pp = end;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020366 name = NULL;
20367 }
20368 goto theend;
20369 }
20370
20371 if (lv.ll_name == NULL)
20372 {
20373 /* Error found, but continue after the function name. */
20374 *pp = end;
20375 goto theend;
20376 }
20377
Bram Moolenaar33e1a802007-09-06 12:26:44 +000020378 /* Check if the name is a Funcref. If so, use the value. */
20379 if (lv.ll_exp_name != NULL)
20380 {
20381 len = (int)STRLEN(lv.ll_exp_name);
20382 name = deref_func_name(lv.ll_exp_name, &len);
20383 if (name == lv.ll_exp_name)
20384 name = NULL;
20385 }
20386 else
20387 {
20388 len = (int)(end - *pp);
20389 name = deref_func_name(*pp, &len);
20390 if (name == *pp)
20391 name = NULL;
20392 }
20393 if (name != NULL)
20394 {
20395 name = vim_strsave(name);
20396 *pp = end;
20397 goto theend;
20398 }
20399
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020400 if (lv.ll_exp_name != NULL)
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020401 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020402 len = (int)STRLEN(lv.ll_exp_name);
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020403 if (lead <= 2 && lv.ll_name == lv.ll_exp_name
20404 && STRNCMP(lv.ll_name, "s:", 2) == 0)
20405 {
20406 /* When there was "s:" already or the name expanded to get a
20407 * leading "s:" then remove it. */
20408 lv.ll_name += 2;
20409 len -= 2;
20410 lead = 2;
20411 }
20412 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020413 else
Bram Moolenaara7043832005-01-21 11:56:39 +000020414 {
20415 if (lead == 2) /* skip over "s:" */
20416 lv.ll_name += 2;
20417 len = (int)(end - lv.ll_name);
20418 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020419
20420 /*
20421 * Copy the function name to allocated memory.
20422 * Accept <SID>name() inside a script, translate into <SNR>123_name().
20423 * Accept <SNR>123_name() outside a script.
20424 */
20425 if (skip)
20426 lead = 0; /* do nothing */
20427 else if (lead > 0)
20428 {
20429 lead = 3;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000020430 if ((lv.ll_exp_name != NULL && eval_fname_sid(lv.ll_exp_name))
20431 || eval_fname_sid(*pp))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020432 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +000020433 /* It's "s:" or "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020434 if (current_SID <= 0)
20435 {
20436 EMSG(_(e_usingsid));
20437 goto theend;
20438 }
20439 sprintf((char *)sid_buf, "%ld_", (long)current_SID);
20440 lead += (int)STRLEN(sid_buf);
20441 }
20442 }
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020443 else if (!(flags & TFN_INT) && builtin_function(lv.ll_name))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020444 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020445 EMSG2(_("E128: Function name must start with a capital or contain a colon: %s"), lv.ll_name);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020446 goto theend;
20447 }
20448 name = alloc((unsigned)(len + lead + 1));
20449 if (name != NULL)
20450 {
20451 if (lead > 0)
20452 {
20453 name[0] = K_SPECIAL;
20454 name[1] = KS_EXTRA;
20455 name[2] = (int)KE_SNR;
Bram Moolenaara7043832005-01-21 11:56:39 +000020456 if (lead > 3) /* If it's "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020457 STRCPY(name + 3, sid_buf);
20458 }
20459 mch_memmove(name + lead, lv.ll_name, (size_t)len);
20460 name[len + lead] = NUL;
20461 }
20462 *pp = end;
20463
20464theend:
20465 clear_lval(&lv);
20466 return name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020467}
20468
20469/*
20470 * Return 5 if "p" starts with "<SID>" or "<SNR>" (ignoring case).
20471 * Return 2 if "p" starts with "s:".
20472 * Return 0 otherwise.
20473 */
20474 static int
20475eval_fname_script(p)
20476 char_u *p;
20477{
20478 if (p[0] == '<' && (STRNICMP(p + 1, "SID>", 4) == 0
20479 || STRNICMP(p + 1, "SNR>", 4) == 0))
20480 return 5;
20481 if (p[0] == 's' && p[1] == ':')
20482 return 2;
20483 return 0;
20484}
20485
20486/*
20487 * Return TRUE if "p" starts with "<SID>" or "s:".
20488 * Only works if eval_fname_script() returned non-zero for "p"!
20489 */
20490 static int
20491eval_fname_sid(p)
20492 char_u *p;
20493{
20494 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I');
20495}
20496
20497/*
20498 * List the head of the function: "name(arg1, arg2)".
20499 */
20500 static void
20501list_func_head(fp, indent)
20502 ufunc_T *fp;
20503 int indent;
20504{
20505 int j;
20506
20507 msg_start();
20508 if (indent)
20509 MSG_PUTS(" ");
20510 MSG_PUTS("function ");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020511 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020512 {
20513 MSG_PUTS_ATTR("<SNR>", hl_attr(HLF_8));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020514 msg_puts(fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020515 }
20516 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020517 msg_puts(fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020518 msg_putchar('(');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020519 for (j = 0; j < fp->uf_args.ga_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020520 {
20521 if (j)
20522 MSG_PUTS(", ");
20523 msg_puts(FUNCARG(fp, j));
20524 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020525 if (fp->uf_varargs)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020526 {
20527 if (j)
20528 MSG_PUTS(", ");
20529 MSG_PUTS("...");
20530 }
20531 msg_putchar(')');
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000020532 msg_clr_eos();
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000020533 if (p_verbose > 0)
20534 last_set_msg(fp->uf_script_ID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020535}
20536
20537/*
20538 * Find a function by name, return pointer to it in ufuncs.
20539 * Return NULL for unknown function.
20540 */
20541 static ufunc_T *
20542find_func(name)
20543 char_u *name;
20544{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020545 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020546
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020547 hi = hash_find(&func_hashtab, name);
20548 if (!HASHITEM_EMPTY(hi))
20549 return HI2UF(hi);
20550 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020551}
20552
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020553#if defined(EXITFREE) || defined(PROTO)
20554 void
20555free_all_functions()
20556{
20557 hashitem_T *hi;
20558
20559 /* Need to start all over every time, because func_free() may change the
20560 * hash table. */
20561 while (func_hashtab.ht_used > 0)
20562 for (hi = func_hashtab.ht_array; ; ++hi)
20563 if (!HASHITEM_EMPTY(hi))
20564 {
20565 func_free(HI2UF(hi));
20566 break;
20567 }
20568}
20569#endif
20570
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020571/*
20572 * Return TRUE if a function "name" exists.
20573 */
20574 static int
20575function_exists(name)
20576 char_u *name;
20577{
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020578 char_u *nm = name;
20579 char_u *p;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020580 int n = FALSE;
20581
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020582 p = trans_function_name(&nm, FALSE, TFN_INT|TFN_QUIET, NULL);
Bram Moolenaar79783442006-05-05 21:18:03 +000020583 nm = skipwhite(nm);
20584
20585 /* Only accept "funcname", "funcname ", "funcname (..." and
20586 * "funcname(...", not "funcname!...". */
20587 if (p != NULL && (*nm == NUL || *nm == '('))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020588 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020589 if (builtin_function(p))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020590 n = (find_internal_func(p) >= 0);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020591 else
20592 n = (find_func(p) != NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020593 }
Bram Moolenaar79783442006-05-05 21:18:03 +000020594 vim_free(p);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020595 return n;
20596}
20597
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020598/*
20599 * Return TRUE if "name" looks like a builtin function name: starts with a
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020600 * lower case letter and doesn't contain a ':' or AUTOLOAD_CHAR.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020601 */
20602 static int
20603builtin_function(name)
20604 char_u *name;
20605{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020606 return ASCII_ISLOWER(name[0]) && vim_strchr(name, ':') == NULL
20607 && vim_strchr(name, AUTOLOAD_CHAR) == NULL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020608}
20609
Bram Moolenaar05159a02005-02-26 23:04:13 +000020610#if defined(FEAT_PROFILE) || defined(PROTO)
20611/*
20612 * Start profiling function "fp".
20613 */
20614 static void
20615func_do_profile(fp)
20616 ufunc_T *fp;
20617{
20618 fp->uf_tm_count = 0;
20619 profile_zero(&fp->uf_tm_self);
20620 profile_zero(&fp->uf_tm_total);
20621 if (fp->uf_tml_count == NULL)
20622 fp->uf_tml_count = (int *)alloc_clear((unsigned)
20623 (sizeof(int) * fp->uf_lines.ga_len));
20624 if (fp->uf_tml_total == NULL)
20625 fp->uf_tml_total = (proftime_T *)alloc_clear((unsigned)
20626 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20627 if (fp->uf_tml_self == NULL)
20628 fp->uf_tml_self = (proftime_T *)alloc_clear((unsigned)
20629 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20630 fp->uf_tml_idx = -1;
20631 if (fp->uf_tml_count == NULL || fp->uf_tml_total == NULL
20632 || fp->uf_tml_self == NULL)
20633 return; /* out of memory */
20634
20635 fp->uf_profiling = TRUE;
20636}
20637
20638/*
20639 * Dump the profiling results for all functions in file "fd".
20640 */
20641 void
20642func_dump_profile(fd)
20643 FILE *fd;
20644{
20645 hashitem_T *hi;
20646 int todo;
20647 ufunc_T *fp;
20648 int i;
Bram Moolenaar73830342005-02-28 22:48:19 +000020649 ufunc_T **sorttab;
20650 int st_len = 0;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020651
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020652 todo = (int)func_hashtab.ht_used;
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020653 if (todo == 0)
20654 return; /* nothing to dump */
20655
Bram Moolenaar73830342005-02-28 22:48:19 +000020656 sorttab = (ufunc_T **)alloc((unsigned)(sizeof(ufunc_T) * todo));
20657
Bram Moolenaar05159a02005-02-26 23:04:13 +000020658 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
20659 {
20660 if (!HASHITEM_EMPTY(hi))
20661 {
20662 --todo;
20663 fp = HI2UF(hi);
20664 if (fp->uf_profiling)
20665 {
Bram Moolenaar73830342005-02-28 22:48:19 +000020666 if (sorttab != NULL)
20667 sorttab[st_len++] = fp;
20668
Bram Moolenaar05159a02005-02-26 23:04:13 +000020669 if (fp->uf_name[0] == K_SPECIAL)
20670 fprintf(fd, "FUNCTION <SNR>%s()\n", fp->uf_name + 3);
20671 else
20672 fprintf(fd, "FUNCTION %s()\n", fp->uf_name);
20673 if (fp->uf_tm_count == 1)
20674 fprintf(fd, "Called 1 time\n");
20675 else
20676 fprintf(fd, "Called %d times\n", fp->uf_tm_count);
20677 fprintf(fd, "Total time: %s\n", profile_msg(&fp->uf_tm_total));
20678 fprintf(fd, " Self time: %s\n", profile_msg(&fp->uf_tm_self));
20679 fprintf(fd, "\n");
20680 fprintf(fd, "count total (s) self (s)\n");
20681
20682 for (i = 0; i < fp->uf_lines.ga_len; ++i)
20683 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020684 if (FUNCLINE(fp, i) == NULL)
20685 continue;
Bram Moolenaar73830342005-02-28 22:48:19 +000020686 prof_func_line(fd, fp->uf_tml_count[i],
20687 &fp->uf_tml_total[i], &fp->uf_tml_self[i], TRUE);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020688 fprintf(fd, "%s\n", FUNCLINE(fp, i));
20689 }
20690 fprintf(fd, "\n");
20691 }
20692 }
20693 }
Bram Moolenaar73830342005-02-28 22:48:19 +000020694
20695 if (sorttab != NULL && st_len > 0)
20696 {
20697 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20698 prof_total_cmp);
20699 prof_sort_list(fd, sorttab, st_len, "TOTAL", FALSE);
20700 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20701 prof_self_cmp);
20702 prof_sort_list(fd, sorttab, st_len, "SELF", TRUE);
20703 }
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020704
20705 vim_free(sorttab);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020706}
Bram Moolenaar73830342005-02-28 22:48:19 +000020707
20708 static void
20709prof_sort_list(fd, sorttab, st_len, title, prefer_self)
20710 FILE *fd;
20711 ufunc_T **sorttab;
20712 int st_len;
20713 char *title;
20714 int prefer_self; /* when equal print only self time */
20715{
20716 int i;
20717 ufunc_T *fp;
20718
20719 fprintf(fd, "FUNCTIONS SORTED ON %s TIME\n", title);
20720 fprintf(fd, "count total (s) self (s) function\n");
20721 for (i = 0; i < 20 && i < st_len; ++i)
20722 {
20723 fp = sorttab[i];
20724 prof_func_line(fd, fp->uf_tm_count, &fp->uf_tm_total, &fp->uf_tm_self,
20725 prefer_self);
20726 if (fp->uf_name[0] == K_SPECIAL)
20727 fprintf(fd, " <SNR>%s()\n", fp->uf_name + 3);
20728 else
20729 fprintf(fd, " %s()\n", fp->uf_name);
20730 }
20731 fprintf(fd, "\n");
20732}
20733
20734/*
20735 * Print the count and times for one function or function line.
20736 */
20737 static void
20738prof_func_line(fd, count, total, self, prefer_self)
20739 FILE *fd;
20740 int count;
20741 proftime_T *total;
20742 proftime_T *self;
20743 int prefer_self; /* when equal print only self time */
20744{
20745 if (count > 0)
20746 {
20747 fprintf(fd, "%5d ", count);
20748 if (prefer_self && profile_equal(total, self))
20749 fprintf(fd, " ");
20750 else
20751 fprintf(fd, "%s ", profile_msg(total));
20752 if (!prefer_self && profile_equal(total, self))
20753 fprintf(fd, " ");
20754 else
20755 fprintf(fd, "%s ", profile_msg(self));
20756 }
20757 else
20758 fprintf(fd, " ");
20759}
20760
20761/*
20762 * Compare function for total time sorting.
20763 */
20764 static int
20765#ifdef __BORLANDC__
20766_RTLENTRYF
20767#endif
20768prof_total_cmp(s1, s2)
20769 const void *s1;
20770 const void *s2;
20771{
20772 ufunc_T *p1, *p2;
20773
20774 p1 = *(ufunc_T **)s1;
20775 p2 = *(ufunc_T **)s2;
20776 return profile_cmp(&p1->uf_tm_total, &p2->uf_tm_total);
20777}
20778
20779/*
20780 * Compare function for self time sorting.
20781 */
20782 static int
20783#ifdef __BORLANDC__
20784_RTLENTRYF
20785#endif
20786prof_self_cmp(s1, s2)
20787 const void *s1;
20788 const void *s2;
20789{
20790 ufunc_T *p1, *p2;
20791
20792 p1 = *(ufunc_T **)s1;
20793 p2 = *(ufunc_T **)s2;
20794 return profile_cmp(&p1->uf_tm_self, &p2->uf_tm_self);
20795}
20796
Bram Moolenaar05159a02005-02-26 23:04:13 +000020797#endif
20798
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020799/*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020800 * If "name" has a package name try autoloading the script for it.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020801 * Return TRUE if a package was loaded.
20802 */
20803 static int
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020804script_autoload(name, reload)
20805 char_u *name;
20806 int reload; /* load script again when already loaded */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020807{
20808 char_u *p;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020809 char_u *scriptname, *tofree;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020810 int ret = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020811 int i;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020812
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020813 /* If there is no '#' after name[0] there is no package name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020814 p = vim_strchr(name, AUTOLOAD_CHAR);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020815 if (p == NULL || p == name)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020816 return FALSE;
20817
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020818 tofree = scriptname = autoload_name(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020819
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020820 /* Find the name in the list of previously loaded package names. Skip
20821 * "autoload/", it's always the same. */
20822 for (i = 0; i < ga_loaded.ga_len; ++i)
20823 if (STRCMP(((char_u **)ga_loaded.ga_data)[i] + 9, scriptname + 9) == 0)
20824 break;
20825 if (!reload && i < ga_loaded.ga_len)
20826 ret = FALSE; /* was loaded already */
20827 else
20828 {
20829 /* Remember the name if it wasn't loaded already. */
20830 if (i == ga_loaded.ga_len && ga_grow(&ga_loaded, 1) == OK)
20831 {
20832 ((char_u **)ga_loaded.ga_data)[ga_loaded.ga_len++] = scriptname;
20833 tofree = NULL;
20834 }
20835
20836 /* Try loading the package from $VIMRUNTIME/autoload/<name>.vim */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +000020837 if (source_runtime(scriptname, FALSE) == OK)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020838 ret = TRUE;
20839 }
20840
20841 vim_free(tofree);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020842 return ret;
20843}
20844
20845/*
20846 * Return the autoload script name for a function or variable name.
20847 * Returns NULL when out of memory.
20848 */
20849 static char_u *
20850autoload_name(name)
20851 char_u *name;
20852{
20853 char_u *p;
20854 char_u *scriptname;
20855
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020856 /* Get the script file name: replace '#' with '/', append ".vim". */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020857 scriptname = alloc((unsigned)(STRLEN(name) + 14));
20858 if (scriptname == NULL)
20859 return FALSE;
20860 STRCPY(scriptname, "autoload/");
20861 STRCAT(scriptname, name);
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020862 *vim_strrchr(scriptname, AUTOLOAD_CHAR) = NUL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020863 STRCAT(scriptname, ".vim");
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020864 while ((p = vim_strchr(scriptname, AUTOLOAD_CHAR)) != NULL)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020865 *p = '/';
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020866 return scriptname;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020867}
20868
Bram Moolenaar071d4272004-06-13 20:20:40 +000020869#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
20870
20871/*
20872 * Function given to ExpandGeneric() to obtain the list of user defined
20873 * function names.
20874 */
20875 char_u *
20876get_user_func_name(xp, idx)
20877 expand_T *xp;
20878 int idx;
20879{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020880 static long_u done;
20881 static hashitem_T *hi;
20882 ufunc_T *fp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020883
20884 if (idx == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020885 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020886 done = 0;
20887 hi = func_hashtab.ht_array;
20888 }
20889 if (done < func_hashtab.ht_used)
20890 {
20891 if (done++ > 0)
20892 ++hi;
20893 while (HASHITEM_EMPTY(hi))
20894 ++hi;
20895 fp = HI2UF(hi);
20896
20897 if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
20898 return fp->uf_name; /* prevents overflow */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020899
20900 cat_func_name(IObuff, fp);
20901 if (xp->xp_context != EXPAND_USER_FUNC)
20902 {
20903 STRCAT(IObuff, "(");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020904 if (!fp->uf_varargs && fp->uf_args.ga_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020905 STRCAT(IObuff, ")");
20906 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020907 return IObuff;
20908 }
20909 return NULL;
20910}
20911
20912#endif /* FEAT_CMDL_COMPL */
20913
20914/*
20915 * Copy the function name of "fp" to buffer "buf".
20916 * "buf" must be able to hold the function name plus three bytes.
20917 * Takes care of script-local function names.
20918 */
20919 static void
20920cat_func_name(buf, fp)
20921 char_u *buf;
20922 ufunc_T *fp;
20923{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020924 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020925 {
20926 STRCPY(buf, "<SNR>");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020927 STRCAT(buf, fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020928 }
20929 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020930 STRCPY(buf, fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020931}
20932
20933/*
20934 * ":delfunction {name}"
20935 */
20936 void
20937ex_delfunction(eap)
20938 exarg_T *eap;
20939{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020940 ufunc_T *fp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020941 char_u *p;
20942 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000020943 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020944
20945 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020946 name = trans_function_name(&p, eap->skip, 0, &fudi);
20947 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020948 if (name == NULL)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020949 {
20950 if (fudi.fd_dict != NULL && !eap->skip)
20951 EMSG(_(e_funcref));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020952 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020953 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020954 if (!ends_excmd(*skipwhite(p)))
20955 {
20956 vim_free(name);
20957 EMSG(_(e_trailing));
20958 return;
20959 }
20960 eap->nextcmd = check_nextcmd(p);
20961 if (eap->nextcmd != NULL)
20962 *p = NUL;
20963
20964 if (!eap->skip)
20965 fp = find_func(name);
20966 vim_free(name);
20967
20968 if (!eap->skip)
20969 {
20970 if (fp == NULL)
20971 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000020972 EMSG2(_(e_nofunc), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020973 return;
20974 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020975 if (fp->uf_calls > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020976 {
20977 EMSG2(_("E131: Cannot delete function %s: It is in use"), eap->arg);
20978 return;
20979 }
20980
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020981 if (fudi.fd_dict != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020982 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020983 /* Delete the dict item that refers to the function, it will
20984 * invoke func_unref() and possibly delete the function. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020985 dictitem_remove(fudi.fd_dict, fudi.fd_di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020986 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020987 else
20988 func_free(fp);
20989 }
20990}
20991
20992/*
20993 * Free a function and remove it from the list of functions.
20994 */
20995 static void
20996func_free(fp)
20997 ufunc_T *fp;
20998{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020999 hashitem_T *hi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021000
21001 /* clear this function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021002 ga_clear_strings(&(fp->uf_args));
21003 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar05159a02005-02-26 23:04:13 +000021004#ifdef FEAT_PROFILE
21005 vim_free(fp->uf_tml_count);
21006 vim_free(fp->uf_tml_total);
21007 vim_free(fp->uf_tml_self);
21008#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021009
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021010 /* remove the function from the function hashtable */
21011 hi = hash_find(&func_hashtab, UF2HIKEY(fp));
21012 if (HASHITEM_EMPTY(hi))
21013 EMSG2(_(e_intern2), "func_free()");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021014 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021015 hash_remove(&func_hashtab, hi);
21016
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021017 vim_free(fp);
21018}
21019
21020/*
21021 * Unreference a Function: decrement the reference count and free it when it
21022 * becomes zero. Only for numbered functions.
21023 */
21024 static void
21025func_unref(name)
21026 char_u *name;
21027{
21028 ufunc_T *fp;
21029
21030 if (name != NULL && isdigit(*name))
21031 {
21032 fp = find_func(name);
21033 if (fp == NULL)
21034 EMSG2(_(e_intern2), "func_unref()");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021035 else if (--fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021036 {
21037 /* Only delete it when it's not being used. Otherwise it's done
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021038 * when "uf_calls" becomes zero. */
21039 if (fp->uf_calls == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021040 func_free(fp);
21041 }
21042 }
21043}
21044
21045/*
21046 * Count a reference to a Function.
21047 */
21048 static void
21049func_ref(name)
21050 char_u *name;
21051{
21052 ufunc_T *fp;
21053
21054 if (name != NULL && isdigit(*name))
21055 {
21056 fp = find_func(name);
21057 if (fp == NULL)
21058 EMSG2(_(e_intern2), "func_ref()");
21059 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021060 ++fp->uf_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021061 }
21062}
21063
21064/*
21065 * Call a user function.
21066 */
21067 static void
Bram Moolenaare9a41262005-01-15 22:18:47 +000021068call_user_func(fp, argcount, argvars, rettv, firstline, lastline, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021069 ufunc_T *fp; /* pointer to function */
21070 int argcount; /* nr of args */
Bram Moolenaar33570922005-01-25 22:26:29 +000021071 typval_T *argvars; /* arguments */
21072 typval_T *rettv; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021073 linenr_T firstline; /* first line of range */
21074 linenr_T lastline; /* last line of range */
Bram Moolenaar33570922005-01-25 22:26:29 +000021075 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021076{
Bram Moolenaar33570922005-01-25 22:26:29 +000021077 char_u *save_sourcing_name;
21078 linenr_T save_sourcing_lnum;
21079 scid_T save_current_SID;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021080 funccall_T *fc;
Bram Moolenaar33570922005-01-25 22:26:29 +000021081 int save_did_emsg;
21082 static int depth = 0;
21083 dictitem_T *v;
21084 int fixvar_idx = 0; /* index in fixvar[] */
21085 int i;
21086 int ai;
21087 char_u numbuf[NUMBUFLEN];
21088 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021089#ifdef FEAT_PROFILE
21090 proftime_T wait_start;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021091 proftime_T call_start;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021092#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021093
21094 /* If depth of calling is getting too high, don't execute the function */
21095 if (depth >= p_mfd)
21096 {
21097 EMSG(_("E132: Function call depth is higher than 'maxfuncdepth'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021098 rettv->v_type = VAR_NUMBER;
21099 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021100 return;
21101 }
21102 ++depth;
21103
21104 line_breakcheck(); /* check for CTRL-C hit */
21105
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021106 fc = (funccall_T *)alloc(sizeof(funccall_T));
21107 fc->caller = current_funccal;
21108 current_funccal = fc;
21109 fc->func = fp;
21110 fc->rettv = rettv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021111 rettv->vval.v_number = 0;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021112 fc->linenr = 0;
21113 fc->returned = FALSE;
21114 fc->level = ex_nesting_level;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021115 /* Check if this function has a breakpoint. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021116 fc->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0);
21117 fc->dbg_tick = debug_tick;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021118
Bram Moolenaar33570922005-01-25 22:26:29 +000021119 /*
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021120 * Note about using fc->fixvar[]: This is an array of FIXVAR_CNT variables
Bram Moolenaar33570922005-01-25 22:26:29 +000021121 * with names up to VAR_SHORT_LEN long. This avoids having to alloc/free
21122 * each argument variable and saves a lot of time.
21123 */
21124 /*
21125 * Init l: variables.
21126 */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021127 init_var_dict(&fc->l_vars, &fc->l_vars_var);
Bram Moolenaara7043832005-01-21 11:56:39 +000021128 if (selfdict != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000021129 {
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021130 /* Set l:self to "selfdict". Use "name" to avoid a warning from
21131 * some compiler that checks the destination size. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021132 v = &fc->fixvar[fixvar_idx++].var;
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021133 name = v->di_key;
21134 STRCPY(name, "self");
Bram Moolenaar33570922005-01-25 22:26:29 +000021135 v->di_flags = DI_FLAGS_RO + DI_FLAGS_FIX;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021136 hash_add(&fc->l_vars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaar33570922005-01-25 22:26:29 +000021137 v->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021138 v->di_tv.v_lock = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000021139 v->di_tv.vval.v_dict = selfdict;
21140 ++selfdict->dv_refcount;
21141 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000021142
Bram Moolenaar33570922005-01-25 22:26:29 +000021143 /*
21144 * Init a: variables.
21145 * Set a:0 to "argcount".
21146 * Set a:000 to a list with room for the "..." arguments.
21147 */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021148 init_var_dict(&fc->l_avars, &fc->l_avars_var);
21149 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "0",
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021150 (varnumber_T)(argcount - fp->uf_args.ga_len));
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021151 /* Use "name" to avoid a warning from some compiler that checks the
21152 * destination size. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021153 v = &fc->fixvar[fixvar_idx++].var;
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021154 name = v->di_key;
21155 STRCPY(name, "000");
Bram Moolenaar33570922005-01-25 22:26:29 +000021156 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021157 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaar33570922005-01-25 22:26:29 +000021158 v->di_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021159 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021160 v->di_tv.vval.v_list = &fc->l_varlist;
21161 vim_memset(&fc->l_varlist, 0, sizeof(list_T));
21162 fc->l_varlist.lv_refcount = DO_NOT_FREE_CNT;
21163 fc->l_varlist.lv_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021164
21165 /*
21166 * Set a:firstline to "firstline" and a:lastline to "lastline".
21167 * Set a:name to named arguments.
21168 * Set a:N to the "..." arguments.
21169 */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021170 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "firstline",
Bram Moolenaar33570922005-01-25 22:26:29 +000021171 (varnumber_T)firstline);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021172 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "lastline",
Bram Moolenaar33570922005-01-25 22:26:29 +000021173 (varnumber_T)lastline);
21174 for (i = 0; i < argcount; ++i)
21175 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021176 ai = i - fp->uf_args.ga_len;
Bram Moolenaar33570922005-01-25 22:26:29 +000021177 if (ai < 0)
21178 /* named argument a:name */
21179 name = FUNCARG(fp, i);
21180 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000021181 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021182 /* "..." argument a:1, a:2, etc. */
21183 sprintf((char *)numbuf, "%d", ai + 1);
21184 name = numbuf;
21185 }
21186 if (fixvar_idx < FIXVAR_CNT && STRLEN(name) <= VAR_SHORT_LEN)
21187 {
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021188 v = &fc->fixvar[fixvar_idx++].var;
Bram Moolenaar33570922005-01-25 22:26:29 +000021189 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21190 }
21191 else
21192 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021193 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
21194 + STRLEN(name)));
Bram Moolenaar33570922005-01-25 22:26:29 +000021195 if (v == NULL)
21196 break;
21197 v->di_flags = DI_FLAGS_RO;
21198 }
21199 STRCPY(v->di_key, name);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021200 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaar33570922005-01-25 22:26:29 +000021201
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021202 /* Note: the values are copied directly to avoid alloc/free.
21203 * "argvars" must have VAR_FIXED for v_lock. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021204 v->di_tv = argvars[i];
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021205 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021206
21207 if (ai >= 0 && ai < MAX_FUNC_ARGS)
21208 {
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021209 list_append(&fc->l_varlist, &fc->l_listitems[ai]);
21210 fc->l_listitems[ai].li_tv = argvars[i];
21211 fc->l_listitems[ai].li_tv.v_lock = VAR_FIXED;
Bram Moolenaare9a41262005-01-15 22:18:47 +000021212 }
21213 }
21214
Bram Moolenaar071d4272004-06-13 20:20:40 +000021215 /* Don't redraw while executing the function. */
21216 ++RedrawingDisabled;
21217 save_sourcing_name = sourcing_name;
21218 save_sourcing_lnum = sourcing_lnum;
21219 sourcing_lnum = 1;
21220 sourcing_name = alloc((unsigned)((save_sourcing_name == NULL ? 0
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021221 : STRLEN(save_sourcing_name)) + STRLEN(fp->uf_name) + 13));
Bram Moolenaar071d4272004-06-13 20:20:40 +000021222 if (sourcing_name != NULL)
21223 {
21224 if (save_sourcing_name != NULL
21225 && STRNCMP(save_sourcing_name, "function ", 9) == 0)
21226 sprintf((char *)sourcing_name, "%s..", save_sourcing_name);
21227 else
21228 STRCPY(sourcing_name, "function ");
21229 cat_func_name(sourcing_name + STRLEN(sourcing_name), fp);
21230
21231 if (p_verbose >= 12)
21232 {
21233 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021234 verbose_enter_scroll();
21235
Bram Moolenaar555b2802005-05-19 21:08:39 +000021236 smsg((char_u *)_("calling %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021237 if (p_verbose >= 14)
21238 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021239 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021240 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021241 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021242 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021243
21244 msg_puts((char_u *)"(");
21245 for (i = 0; i < argcount; ++i)
21246 {
21247 if (i > 0)
21248 msg_puts((char_u *)", ");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000021249 if (argvars[i].v_type == VAR_NUMBER)
21250 msg_outnum((long)argvars[i].vval.v_number);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021251 else
21252 {
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021253 s = tv2string(&argvars[i], &tofree, numbuf2, 0);
21254 if (s != NULL)
21255 {
21256 trunc_string(s, buf, MSG_BUF_CLEN);
21257 msg_puts(buf);
21258 vim_free(tofree);
21259 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021260 }
21261 }
21262 msg_puts((char_u *)")");
21263 }
21264 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021265
21266 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021267 --no_wait_return;
21268 }
21269 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021270#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021271 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021272 {
21273 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
21274 func_do_profile(fp);
21275 if (fp->uf_profiling
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021276 || (fc->caller != NULL && fc->caller->func->uf_profiling))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021277 {
21278 ++fp->uf_tm_count;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021279 profile_start(&call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021280 profile_zero(&fp->uf_tm_children);
21281 }
21282 script_prof_save(&wait_start);
21283 }
21284#endif
21285
Bram Moolenaar071d4272004-06-13 20:20:40 +000021286 save_current_SID = current_SID;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021287 current_SID = fp->uf_script_ID;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021288 save_did_emsg = did_emsg;
21289 did_emsg = FALSE;
21290
21291 /* call do_cmdline() to execute the lines */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021292 do_cmdline(NULL, get_func_line, (void *)fc,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021293 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
21294
21295 --RedrawingDisabled;
21296
21297 /* when the function was aborted because of an error, return -1 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021298 if ((did_emsg && (fp->uf_flags & FC_ABORT)) || rettv->v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021299 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021300 clear_tv(rettv);
21301 rettv->v_type = VAR_NUMBER;
21302 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021303 }
21304
Bram Moolenaar05159a02005-02-26 23:04:13 +000021305#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021306 if (do_profiling == PROF_YES && (fp->uf_profiling
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021307 || (fc->caller != NULL && fc->caller->func->uf_profiling)))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021308 {
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021309 profile_end(&call_start);
21310 profile_sub_wait(&wait_start, &call_start);
21311 profile_add(&fp->uf_tm_total, &call_start);
21312 profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021313 if (fc->caller != NULL && fc->caller->func->uf_profiling)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021314 {
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021315 profile_add(&fc->caller->func->uf_tm_children, &call_start);
21316 profile_add(&fc->caller->func->uf_tml_children, &call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021317 }
21318 }
21319#endif
21320
Bram Moolenaar071d4272004-06-13 20:20:40 +000021321 /* when being verbose, mention the return value */
21322 if (p_verbose >= 12)
21323 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021324 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021325 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021326
Bram Moolenaar071d4272004-06-13 20:20:40 +000021327 if (aborting())
Bram Moolenaar555b2802005-05-19 21:08:39 +000021328 smsg((char_u *)_("%s aborted"), sourcing_name);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021329 else if (fc->rettv->v_type == VAR_NUMBER)
Bram Moolenaar555b2802005-05-19 21:08:39 +000021330 smsg((char_u *)_("%s returning #%ld"), sourcing_name,
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021331 (long)fc->rettv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +000021332 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000021333 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000021334 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021335 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021336 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021337 char_u *s;
Bram Moolenaar758711c2005-02-02 23:11:38 +000021338
Bram Moolenaar555b2802005-05-19 21:08:39 +000021339 /* The value may be very long. Skip the middle part, so that we
21340 * have some idea how it starts and ends. smsg() would always
21341 * truncate it at the end. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021342 s = tv2string(fc->rettv, &tofree, numbuf2, 0);
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021343 if (s != NULL)
21344 {
21345 trunc_string(s, buf, MSG_BUF_CLEN);
21346 smsg((char_u *)_("%s returning %s"), sourcing_name, buf);
21347 vim_free(tofree);
21348 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021349 }
21350 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021351
21352 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021353 --no_wait_return;
21354 }
21355
21356 vim_free(sourcing_name);
21357 sourcing_name = save_sourcing_name;
21358 sourcing_lnum = save_sourcing_lnum;
21359 current_SID = save_current_SID;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021360#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021361 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021362 script_prof_restore(&wait_start);
21363#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021364
21365 if (p_verbose >= 12 && sourcing_name != NULL)
21366 {
21367 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021368 verbose_enter_scroll();
21369
Bram Moolenaar555b2802005-05-19 21:08:39 +000021370 smsg((char_u *)_("continuing in %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021371 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021372
21373 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021374 --no_wait_return;
21375 }
21376
21377 did_emsg |= save_did_emsg;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021378 current_funccal = fc->caller;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021379 --depth;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021380
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +000021381 /* If the a:000 list and the l: and a: dicts are not referenced we can
21382 * free the funccall_T and what's in it. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021383 if (fc->l_varlist.lv_refcount == DO_NOT_FREE_CNT
21384 && fc->l_vars.dv_refcount == DO_NOT_FREE_CNT
21385 && fc->l_avars.dv_refcount == DO_NOT_FREE_CNT)
21386 {
21387 free_funccal(fc, FALSE);
21388 }
21389 else
21390 {
21391 hashitem_T *hi;
21392 listitem_T *li;
21393 int todo;
21394
21395 /* "fc" is still in use. This can happen when returning "a:000" or
21396 * assigning "l:" to a global variable.
21397 * Link "fc" in the list for garbage collection later. */
21398 fc->caller = previous_funccal;
21399 previous_funccal = fc;
21400
21401 /* Make a copy of the a: variables, since we didn't do that above. */
21402 todo = (int)fc->l_avars.dv_hashtab.ht_used;
21403 for (hi = fc->l_avars.dv_hashtab.ht_array; todo > 0; ++hi)
21404 {
21405 if (!HASHITEM_EMPTY(hi))
21406 {
21407 --todo;
21408 v = HI2DI(hi);
21409 copy_tv(&v->di_tv, &v->di_tv);
21410 }
21411 }
21412
21413 /* Make a copy of the a:000 items, since we didn't do that above. */
21414 for (li = fc->l_varlist.lv_first; li != NULL; li = li->li_next)
21415 copy_tv(&li->li_tv, &li->li_tv);
21416 }
21417}
21418
21419/*
21420 * Return TRUE if items in "fc" do not have "copyID". That means they are not
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +000021421 * referenced from anywhere that is in use.
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021422 */
21423 static int
21424can_free_funccal(fc, copyID)
21425 funccall_T *fc;
21426 int copyID;
21427{
21428 return (fc->l_varlist.lv_copyID != copyID
21429 && fc->l_vars.dv_copyID != copyID
21430 && fc->l_avars.dv_copyID != copyID);
21431}
21432
21433/*
21434 * Free "fc" and what it contains.
21435 */
21436 static void
21437free_funccal(fc, free_val)
21438 funccall_T *fc;
21439 int free_val; /* a: vars were allocated */
21440{
21441 listitem_T *li;
21442
21443 /* The a: variables typevals may not have been allocated, only free the
21444 * allocated variables. */
21445 vars_clear_ext(&fc->l_avars.dv_hashtab, free_val);
21446
21447 /* free all l: variables */
21448 vars_clear(&fc->l_vars.dv_hashtab);
21449
21450 /* Free the a:000 variables if they were allocated. */
21451 if (free_val)
21452 for (li = fc->l_varlist.lv_first; li != NULL; li = li->li_next)
21453 clear_tv(&li->li_tv);
21454
21455 vim_free(fc);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021456}
21457
21458/*
Bram Moolenaar33570922005-01-25 22:26:29 +000021459 * Add a number variable "name" to dict "dp" with value "nr".
21460 */
21461 static void
21462add_nr_var(dp, v, name, nr)
21463 dict_T *dp;
21464 dictitem_T *v;
21465 char *name;
21466 varnumber_T nr;
21467{
21468 STRCPY(v->di_key, name);
21469 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21470 hash_add(&dp->dv_hashtab, DI2HIKEY(v));
21471 v->di_tv.v_type = VAR_NUMBER;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021472 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021473 v->di_tv.vval.v_number = nr;
21474}
21475
21476/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000021477 * ":return [expr]"
21478 */
21479 void
21480ex_return(eap)
21481 exarg_T *eap;
21482{
21483 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000021484 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021485 int returning = FALSE;
21486
21487 if (current_funccal == NULL)
21488 {
21489 EMSG(_("E133: :return not inside a function"));
21490 return;
21491 }
21492
21493 if (eap->skip)
21494 ++emsg_skip;
21495
21496 eap->nextcmd = NULL;
21497 if ((*arg != NUL && *arg != '|' && *arg != '\n')
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021498 && eval0(arg, &rettv, &eap->nextcmd, !eap->skip) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021499 {
21500 if (!eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021501 returning = do_return(eap, FALSE, TRUE, &rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021502 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021503 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021504 }
21505 /* It's safer to return also on error. */
21506 else if (!eap->skip)
21507 {
21508 /*
21509 * Return unless the expression evaluation has been cancelled due to an
21510 * aborting error, an interrupt, or an exception.
21511 */
21512 if (!aborting())
21513 returning = do_return(eap, FALSE, TRUE, NULL);
21514 }
21515
21516 /* When skipping or the return gets pending, advance to the next command
21517 * in this line (!returning). Otherwise, ignore the rest of the line.
21518 * Following lines will be ignored by get_func_line(). */
21519 if (returning)
21520 eap->nextcmd = NULL;
21521 else if (eap->nextcmd == NULL) /* no argument */
21522 eap->nextcmd = check_nextcmd(arg);
21523
21524 if (eap->skip)
21525 --emsg_skip;
21526}
21527
21528/*
21529 * Return from a function. Possibly makes the return pending. Also called
21530 * for a pending return at the ":endtry" or after returning from an extra
21531 * do_cmdline(). "reanimate" is used in the latter case. "is_cmd" is set
Bram Moolenaar33570922005-01-25 22:26:29 +000021532 * when called due to a ":return" command. "rettv" may point to a typval_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021533 * with the return rettv. Returns TRUE when the return can be carried out,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021534 * FALSE when the return gets pending.
21535 */
21536 int
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021537do_return(eap, reanimate, is_cmd, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021538 exarg_T *eap;
21539 int reanimate;
21540 int is_cmd;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021541 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021542{
21543 int idx;
21544 struct condstack *cstack = eap->cstack;
21545
21546 if (reanimate)
21547 /* Undo the return. */
21548 current_funccal->returned = FALSE;
21549
21550 /*
21551 * Cleanup (and inactivate) conditionals, but stop when a try conditional
21552 * not in its finally clause (which then is to be executed next) is found.
21553 * In this case, make the ":return" pending for execution at the ":endtry".
21554 * Otherwise, return normally.
21555 */
21556 idx = cleanup_conditionals(eap->cstack, 0, TRUE);
21557 if (idx >= 0)
21558 {
21559 cstack->cs_pending[idx] = CSTP_RETURN;
21560
21561 if (!is_cmd && !reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021562 /* A pending return again gets pending. "rettv" points to an
21563 * allocated variable with the rettv of the original ":return"'s
Bram Moolenaar071d4272004-06-13 20:20:40 +000021564 * argument if present or is NULL else. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021565 cstack->cs_rettv[idx] = rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021566 else
21567 {
21568 /* When undoing a return in order to make it pending, get the stored
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021569 * return rettv. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021570 if (reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021571 rettv = current_funccal->rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021572
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021573 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021574 {
21575 /* Store the value of the pending return. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021576 if ((cstack->cs_rettv[idx] = alloc_tv()) != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000021577 *(typval_T *)cstack->cs_rettv[idx] = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021578 else
21579 EMSG(_(e_outofmem));
21580 }
21581 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021582 cstack->cs_rettv[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021583
21584 if (reanimate)
21585 {
21586 /* The pending return value could be overwritten by a ":return"
21587 * without argument in a finally clause; reset the default
21588 * return value. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021589 current_funccal->rettv->v_type = VAR_NUMBER;
21590 current_funccal->rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021591 }
21592 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021593 report_make_pending(CSTP_RETURN, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021594 }
21595 else
21596 {
21597 current_funccal->returned = TRUE;
21598
21599 /* If the return is carried out now, store the return value. For
21600 * a return immediately after reanimation, the value is already
21601 * there. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021602 if (!reanimate && rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021603 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021604 clear_tv(current_funccal->rettv);
Bram Moolenaar33570922005-01-25 22:26:29 +000021605 *current_funccal->rettv = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021606 if (!is_cmd)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021607 vim_free(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021608 }
21609 }
21610
21611 return idx < 0;
21612}
21613
21614/*
21615 * Free the variable with a pending return value.
21616 */
21617 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021618discard_pending_return(rettv)
21619 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021620{
Bram Moolenaar33570922005-01-25 22:26:29 +000021621 free_tv((typval_T *)rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021622}
21623
21624/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021625 * Generate a return command for producing the value of "rettv". The result
Bram Moolenaar071d4272004-06-13 20:20:40 +000021626 * is an allocated string. Used by report_pending() for verbose messages.
21627 */
21628 char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021629get_return_cmd(rettv)
21630 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021631{
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021632 char_u *s = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021633 char_u *tofree = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021634 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021635
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021636 if (rettv != NULL)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021637 s = echo_string((typval_T *)rettv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021638 if (s == NULL)
21639 s = (char_u *)"";
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021640
21641 STRCPY(IObuff, ":return ");
21642 STRNCPY(IObuff + 8, s, IOSIZE - 8);
21643 if (STRLEN(s) + 8 >= IOSIZE)
21644 STRCPY(IObuff + IOSIZE - 4, "...");
21645 vim_free(tofree);
21646 return vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021647}
21648
21649/*
21650 * Get next function line.
21651 * Called by do_cmdline() to get the next line.
21652 * Returns allocated string, or NULL for end of function.
21653 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021654 char_u *
21655get_func_line(c, cookie, indent)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000021656 int c UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021657 void *cookie;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000021658 int indent UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021659{
Bram Moolenaar33570922005-01-25 22:26:29 +000021660 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021661 ufunc_T *fp = fcp->func;
21662 char_u *retval;
21663 garray_T *gap; /* growarray with function lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021664
21665 /* If breakpoints have been added/deleted need to check for it. */
21666 if (fcp->dbg_tick != debug_tick)
21667 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021668 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021669 sourcing_lnum);
21670 fcp->dbg_tick = debug_tick;
21671 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021672#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021673 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021674 func_line_end(cookie);
21675#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021676
Bram Moolenaar05159a02005-02-26 23:04:13 +000021677 gap = &fp->uf_lines;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021678 if (((fp->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
21679 || fcp->returned)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021680 retval = NULL;
21681 else
21682 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021683 /* Skip NULL lines (continuation lines). */
21684 while (fcp->linenr < gap->ga_len
21685 && ((char_u **)(gap->ga_data))[fcp->linenr] == NULL)
21686 ++fcp->linenr;
21687 if (fcp->linenr >= gap->ga_len)
21688 retval = NULL;
21689 else
21690 {
21691 retval = vim_strsave(((char_u **)(gap->ga_data))[fcp->linenr++]);
21692 sourcing_lnum = fcp->linenr;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021693#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021694 if (do_profiling == PROF_YES)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021695 func_line_start(cookie);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021696#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021697 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021698 }
21699
21700 /* Did we encounter a breakpoint? */
21701 if (fcp->breakpoint != 0 && fcp->breakpoint <= sourcing_lnum)
21702 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021703 dbg_breakpoint(fp->uf_name, sourcing_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021704 /* Find next breakpoint. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000021705 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021706 sourcing_lnum);
21707 fcp->dbg_tick = debug_tick;
21708 }
21709
21710 return retval;
21711}
21712
Bram Moolenaar05159a02005-02-26 23:04:13 +000021713#if defined(FEAT_PROFILE) || defined(PROTO)
21714/*
21715 * Called when starting to read a function line.
21716 * "sourcing_lnum" must be correct!
21717 * When skipping lines it may not actually be executed, but we won't find out
21718 * until later and we need to store the time now.
21719 */
21720 void
21721func_line_start(cookie)
21722 void *cookie;
21723{
21724 funccall_T *fcp = (funccall_T *)cookie;
21725 ufunc_T *fp = fcp->func;
21726
21727 if (fp->uf_profiling && sourcing_lnum >= 1
21728 && sourcing_lnum <= fp->uf_lines.ga_len)
21729 {
21730 fp->uf_tml_idx = sourcing_lnum - 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021731 /* Skip continuation lines. */
21732 while (fp->uf_tml_idx > 0 && FUNCLINE(fp, fp->uf_tml_idx) == NULL)
21733 --fp->uf_tml_idx;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021734 fp->uf_tml_execed = FALSE;
21735 profile_start(&fp->uf_tml_start);
21736 profile_zero(&fp->uf_tml_children);
21737 profile_get_wait(&fp->uf_tml_wait);
21738 }
21739}
21740
21741/*
21742 * Called when actually executing a function line.
21743 */
21744 void
21745func_line_exec(cookie)
21746 void *cookie;
21747{
21748 funccall_T *fcp = (funccall_T *)cookie;
21749 ufunc_T *fp = fcp->func;
21750
21751 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21752 fp->uf_tml_execed = TRUE;
21753}
21754
21755/*
21756 * Called when done with a function line.
21757 */
21758 void
21759func_line_end(cookie)
21760 void *cookie;
21761{
21762 funccall_T *fcp = (funccall_T *)cookie;
21763 ufunc_T *fp = fcp->func;
21764
21765 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21766 {
21767 if (fp->uf_tml_execed)
21768 {
21769 ++fp->uf_tml_count[fp->uf_tml_idx];
21770 profile_end(&fp->uf_tml_start);
21771 profile_sub_wait(&fp->uf_tml_wait, &fp->uf_tml_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021772 profile_add(&fp->uf_tml_total[fp->uf_tml_idx], &fp->uf_tml_start);
Bram Moolenaar1056d982006-03-09 22:37:52 +000021773 profile_self(&fp->uf_tml_self[fp->uf_tml_idx], &fp->uf_tml_start,
21774 &fp->uf_tml_children);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021775 }
21776 fp->uf_tml_idx = -1;
21777 }
21778}
21779#endif
21780
Bram Moolenaar071d4272004-06-13 20:20:40 +000021781/*
21782 * Return TRUE if the currently active function should be ended, because a
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021783 * return was encountered or an error occurred. Used inside a ":while".
Bram Moolenaar071d4272004-06-13 20:20:40 +000021784 */
21785 int
21786func_has_ended(cookie)
21787 void *cookie;
21788{
Bram Moolenaar33570922005-01-25 22:26:29 +000021789 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021790
21791 /* Ignore the "abort" flag if the abortion behavior has been changed due to
21792 * an error inside a try conditional. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021793 return (((fcp->func->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
Bram Moolenaar071d4272004-06-13 20:20:40 +000021794 || fcp->returned);
21795}
21796
21797/*
21798 * return TRUE if cookie indicates a function which "abort"s on errors.
21799 */
21800 int
21801func_has_abort(cookie)
21802 void *cookie;
21803{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021804 return ((funccall_T *)cookie)->func->uf_flags & FC_ABORT;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021805}
21806
21807#if defined(FEAT_VIMINFO) || defined(FEAT_SESSION)
21808typedef enum
21809{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021810 VAR_FLAVOUR_DEFAULT, /* doesn't start with uppercase */
21811 VAR_FLAVOUR_SESSION, /* starts with uppercase, some lower */
21812 VAR_FLAVOUR_VIMINFO /* all uppercase */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021813} var_flavour_T;
21814
21815static var_flavour_T var_flavour __ARGS((char_u *varname));
21816
21817 static var_flavour_T
21818var_flavour(varname)
21819 char_u *varname;
21820{
21821 char_u *p = varname;
21822
21823 if (ASCII_ISUPPER(*p))
21824 {
21825 while (*(++p))
21826 if (ASCII_ISLOWER(*p))
21827 return VAR_FLAVOUR_SESSION;
21828 return VAR_FLAVOUR_VIMINFO;
21829 }
21830 else
21831 return VAR_FLAVOUR_DEFAULT;
21832}
21833#endif
21834
21835#if defined(FEAT_VIMINFO) || defined(PROTO)
21836/*
21837 * Restore global vars that start with a capital from the viminfo file
21838 */
21839 int
21840read_viminfo_varlist(virp, writing)
21841 vir_T *virp;
21842 int writing;
21843{
21844 char_u *tab;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021845 int type = VAR_NUMBER;
Bram Moolenaar33570922005-01-25 22:26:29 +000021846 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021847
21848 if (!writing && (find_viminfo_parameter('!') != NULL))
21849 {
21850 tab = vim_strchr(virp->vir_line + 1, '\t');
21851 if (tab != NULL)
21852 {
21853 *tab++ = '\0'; /* isolate the variable name */
21854 if (*tab == 'S') /* string var */
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021855 type = VAR_STRING;
21856#ifdef FEAT_FLOAT
21857 else if (*tab == 'F')
21858 type = VAR_FLOAT;
21859#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021860
21861 tab = vim_strchr(tab, '\t');
21862 if (tab != NULL)
21863 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021864 tv.v_type = type;
21865 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021866 tv.vval.v_string = viminfo_readstring(virp,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021867 (int)(tab - virp->vir_line + 1), TRUE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021868#ifdef FEAT_FLOAT
21869 else if (type == VAR_FLOAT)
21870 (void)string2float(tab + 1, &tv.vval.v_float);
21871#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021872 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021873 tv.vval.v_number = atol((char *)tab + 1);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021874 set_var(virp->vir_line + 1, &tv, FALSE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021875 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021876 vim_free(tv.vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021877 }
21878 }
21879 }
21880
21881 return viminfo_readline(virp);
21882}
21883
21884/*
21885 * Write global vars that start with a capital to the viminfo file
21886 */
21887 void
21888write_viminfo_varlist(fp)
21889 FILE *fp;
21890{
Bram Moolenaar33570922005-01-25 22:26:29 +000021891 hashitem_T *hi;
21892 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021893 int todo;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021894 char *s;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021895 char_u *p;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021896 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021897 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021898
21899 if (find_viminfo_parameter('!') == NULL)
21900 return;
21901
21902 fprintf(fp, _("\n# global variables:\n"));
Bram Moolenaara7043832005-01-21 11:56:39 +000021903
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021904 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021905 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021906 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021907 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021908 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021909 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021910 this_var = HI2DI(hi);
21911 if (var_flavour(this_var->di_key) == VAR_FLAVOUR_VIMINFO)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021912 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021913 switch (this_var->di_tv.v_type)
Bram Moolenaara7043832005-01-21 11:56:39 +000021914 {
21915 case VAR_STRING: s = "STR"; break;
21916 case VAR_NUMBER: s = "NUM"; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021917#ifdef FEAT_FLOAT
21918 case VAR_FLOAT: s = "FLO"; break;
21919#endif
Bram Moolenaara7043832005-01-21 11:56:39 +000021920 default: continue;
21921 }
Bram Moolenaar33570922005-01-25 22:26:29 +000021922 fprintf(fp, "!%s\t%s\t", this_var->di_key, s);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021923 p = echo_string(&this_var->di_tv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021924 if (p != NULL)
21925 viminfo_writestring(fp, p);
Bram Moolenaara7043832005-01-21 11:56:39 +000021926 vim_free(tofree);
21927 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021928 }
21929 }
21930}
21931#endif
21932
21933#if defined(FEAT_SESSION) || defined(PROTO)
21934 int
21935store_session_globals(fd)
21936 FILE *fd;
21937{
Bram Moolenaar33570922005-01-25 22:26:29 +000021938 hashitem_T *hi;
21939 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021940 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021941 char_u *p, *t;
21942
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021943 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021944 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021945 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021946 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021947 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021948 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021949 this_var = HI2DI(hi);
21950 if ((this_var->di_tv.v_type == VAR_NUMBER
21951 || this_var->di_tv.v_type == VAR_STRING)
21952 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021953 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021954 /* Escape special characters with a backslash. Turn a LF and
21955 * CR into \n and \r. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021956 p = vim_strsave_escaped(get_tv_string(&this_var->di_tv),
Bram Moolenaara7043832005-01-21 11:56:39 +000021957 (char_u *)"\\\"\n\r");
21958 if (p == NULL) /* out of memory */
21959 break;
21960 for (t = p; *t != NUL; ++t)
21961 if (*t == '\n')
21962 *t = 'n';
21963 else if (*t == '\r')
21964 *t = 'r';
21965 if ((fprintf(fd, "let %s = %c%s%c",
Bram Moolenaar33570922005-01-25 22:26:29 +000021966 this_var->di_key,
21967 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21968 : ' ',
21969 p,
21970 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21971 : ' ') < 0)
Bram Moolenaara7043832005-01-21 11:56:39 +000021972 || put_eol(fd) == FAIL)
21973 {
21974 vim_free(p);
21975 return FAIL;
21976 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021977 vim_free(p);
21978 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021979#ifdef FEAT_FLOAT
21980 else if (this_var->di_tv.v_type == VAR_FLOAT
21981 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
21982 {
21983 float_T f = this_var->di_tv.vval.v_float;
21984 int sign = ' ';
21985
21986 if (f < 0)
21987 {
21988 f = -f;
21989 sign = '-';
21990 }
21991 if ((fprintf(fd, "let %s = %c&%f",
21992 this_var->di_key, sign, f) < 0)
21993 || put_eol(fd) == FAIL)
21994 return FAIL;
21995 }
21996#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021997 }
21998 }
21999 return OK;
22000}
22001#endif
22002
Bram Moolenaar661b1822005-07-28 22:36:45 +000022003/*
22004 * Display script name where an item was last set.
22005 * Should only be invoked when 'verbose' is non-zero.
22006 */
22007 void
22008last_set_msg(scriptID)
22009 scid_T scriptID;
22010{
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000022011 char_u *p;
22012
Bram Moolenaar661b1822005-07-28 22:36:45 +000022013 if (scriptID != 0)
22014 {
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000022015 p = home_replace_save(NULL, get_scriptname(scriptID));
22016 if (p != NULL)
22017 {
22018 verbose_enter();
22019 MSG_PUTS(_("\n\tLast set from "));
22020 MSG_PUTS(p);
22021 vim_free(p);
22022 verbose_leave();
22023 }
Bram Moolenaar661b1822005-07-28 22:36:45 +000022024 }
22025}
22026
Bram Moolenaard812df62008-11-09 12:46:09 +000022027/*
22028 * List v:oldfiles in a nice way.
22029 */
Bram Moolenaard812df62008-11-09 12:46:09 +000022030 void
22031ex_oldfiles(eap)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000022032 exarg_T *eap UNUSED;
Bram Moolenaard812df62008-11-09 12:46:09 +000022033{
22034 list_T *l = vimvars[VV_OLDFILES].vv_list;
22035 listitem_T *li;
22036 int nr = 0;
22037
22038 if (l == NULL)
22039 msg((char_u *)_("No old files"));
22040 else
22041 {
22042 msg_start();
22043 msg_scroll = TRUE;
22044 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
22045 {
22046 msg_outnum((long)++nr);
22047 MSG_PUTS(": ");
22048 msg_outtrans(get_tv_string(&li->li_tv));
22049 msg_putchar('\n');
22050 out_flush(); /* output one line at a time */
22051 ui_breakcheck();
22052 }
22053 /* Assume "got_int" was set to truncate the listing. */
22054 got_int = FALSE;
22055
22056#ifdef FEAT_BROWSE_CMD
22057 if (cmdmod.browse)
22058 {
22059 quit_more = FALSE;
22060 nr = prompt_for_number(FALSE);
22061 msg_starthere();
22062 if (nr > 0)
22063 {
22064 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
22065 (long)nr);
22066
22067 if (p != NULL)
22068 {
22069 p = expand_env_save(p);
22070 eap->arg = p;
22071 eap->cmdidx = CMD_edit;
22072 cmdmod.browse = FALSE;
22073 do_exedit(eap, NULL);
22074 vim_free(p);
22075 }
22076 }
22077 }
22078#endif
22079 }
22080}
22081
Bram Moolenaar071d4272004-06-13 20:20:40 +000022082#endif /* FEAT_EVAL */
22083
Bram Moolenaar071d4272004-06-13 20:20:40 +000022084
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022085#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022086
22087#ifdef WIN3264
22088/*
22089 * Functions for ":8" filename modifier: get 8.3 version of a filename.
22090 */
22091static int get_short_pathname __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22092static int shortpath_for_invalid_fname __ARGS((char_u **fname, char_u **bufp, int *fnamelen));
22093static int shortpath_for_partial __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22094
22095/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022096 * Get the short path (8.3) for the filename in "fnamep".
22097 * Only works for a valid file name.
22098 * When the path gets longer "fnamep" is changed and the allocated buffer
22099 * is put in "bufp".
22100 * *fnamelen is the length of "fnamep" and set to 0 for a nonexistent path.
22101 * Returns OK on success, FAIL on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022102 */
22103 static int
22104get_short_pathname(fnamep, bufp, fnamelen)
22105 char_u **fnamep;
22106 char_u **bufp;
22107 int *fnamelen;
22108{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022109 int l, len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022110 char_u *newbuf;
22111
22112 len = *fnamelen;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022113 l = GetShortPathName(*fnamep, *fnamep, len);
22114 if (l > len - 1)
22115 {
22116 /* If that doesn't work (not enough space), then save the string
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022117 * and try again with a new buffer big enough. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022118 newbuf = vim_strnsave(*fnamep, l);
22119 if (newbuf == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022120 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022121
22122 vim_free(*bufp);
22123 *fnamep = *bufp = newbuf;
22124
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022125 /* Really should always succeed, as the buffer is big enough. */
22126 l = GetShortPathName(*fnamep, *fnamep, l+1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022127 }
22128
22129 *fnamelen = l;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022130 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022131}
22132
22133/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022134 * Get the short path (8.3) for the filename in "fname". The converted
22135 * path is returned in "bufp".
22136 *
22137 * Some of the directories specified in "fname" may not exist. This function
22138 * will shorten the existing directories at the beginning of the path and then
22139 * append the remaining non-existing path.
22140 *
22141 * fname - Pointer to the filename to shorten. On return, contains the
22142 * pointer to the shortened pathname
22143 * bufp - Pointer to an allocated buffer for the filename.
22144 * fnamelen - Length of the filename pointed to by fname
22145 *
22146 * Returns OK on success (or nothing done) and FAIL on failure (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +000022147 */
22148 static int
22149shortpath_for_invalid_fname(fname, bufp, fnamelen)
22150 char_u **fname;
22151 char_u **bufp;
22152 int *fnamelen;
22153{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022154 char_u *short_fname, *save_fname, *pbuf_unused;
22155 char_u *endp, *save_endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022156 char_u ch;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022157 int old_len, len;
22158 int new_len, sfx_len;
22159 int retval = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022160
22161 /* Make a copy */
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022162 old_len = *fnamelen;
22163 save_fname = vim_strnsave(*fname, old_len);
22164 pbuf_unused = NULL;
22165 short_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022166
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022167 endp = save_fname + old_len - 1; /* Find the end of the copy */
22168 save_endp = endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022169
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022170 /*
22171 * Try shortening the supplied path till it succeeds by removing one
22172 * directory at a time from the tail of the path.
22173 */
22174 len = 0;
22175 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022176 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022177 /* go back one path-separator */
22178 while (endp > save_fname && !after_pathsep(save_fname, endp + 1))
22179 --endp;
22180 if (endp <= save_fname)
22181 break; /* processed the complete path */
22182
22183 /*
22184 * Replace the path separator with a NUL and try to shorten the
22185 * resulting path.
22186 */
22187 ch = *endp;
22188 *endp = 0;
22189 short_fname = save_fname;
Bram Moolenaarc236c162008-07-13 17:41:49 +000022190 len = (int)STRLEN(short_fname) + 1;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022191 if (get_short_pathname(&short_fname, &pbuf_unused, &len) == FAIL)
22192 {
22193 retval = FAIL;
22194 goto theend;
22195 }
22196 *endp = ch; /* preserve the string */
22197
22198 if (len > 0)
22199 break; /* successfully shortened the path */
22200
22201 /* failed to shorten the path. Skip the path separator */
22202 --endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022203 }
22204
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022205 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022206 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022207 /*
22208 * Succeeded in shortening the path. Now concatenate the shortened
22209 * path with the remaining path at the tail.
22210 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022211
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022212 /* Compute the length of the new path. */
22213 sfx_len = (int)(save_endp - endp) + 1;
22214 new_len = len + sfx_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022215
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022216 *fnamelen = new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022217 vim_free(*bufp);
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022218 if (new_len > old_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022219 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022220 /* There is not enough space in the currently allocated string,
22221 * copy it to a buffer big enough. */
22222 *fname = *bufp = vim_strnsave(short_fname, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022223 if (*fname == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022224 {
22225 retval = FAIL;
22226 goto theend;
22227 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022228 }
22229 else
22230 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022231 /* Transfer short_fname to the main buffer (it's big enough),
22232 * unless get_short_pathname() did its work in-place. */
22233 *fname = *bufp = save_fname;
22234 if (short_fname != save_fname)
22235 vim_strncpy(save_fname, short_fname, len);
22236 save_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022237 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022238
22239 /* concat the not-shortened part of the path */
22240 vim_strncpy(*fname + len, endp, sfx_len);
22241 (*fname)[new_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022242 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022243
22244theend:
22245 vim_free(pbuf_unused);
22246 vim_free(save_fname);
22247
22248 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022249}
22250
22251/*
22252 * Get a pathname for a partial path.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022253 * Returns OK for success, FAIL for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022254 */
22255 static int
22256shortpath_for_partial(fnamep, bufp, fnamelen)
22257 char_u **fnamep;
22258 char_u **bufp;
22259 int *fnamelen;
22260{
22261 int sepcount, len, tflen;
22262 char_u *p;
22263 char_u *pbuf, *tfname;
22264 int hasTilde;
22265
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022266 /* Count up the path separators from the RHS.. so we know which part
22267 * of the path to return. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022268 sepcount = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022269 for (p = *fnamep; p < *fnamep + *fnamelen; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022270 if (vim_ispathsep(*p))
22271 ++sepcount;
22272
22273 /* Need full path first (use expand_env() to remove a "~/") */
22274 hasTilde = (**fnamep == '~');
22275 if (hasTilde)
22276 pbuf = tfname = expand_env_save(*fnamep);
22277 else
22278 pbuf = tfname = FullName_save(*fnamep, FALSE);
22279
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000022280 len = tflen = (int)STRLEN(tfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022281
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022282 if (get_short_pathname(&tfname, &pbuf, &len) == FAIL)
22283 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022284
22285 if (len == 0)
22286 {
22287 /* Don't have a valid filename, so shorten the rest of the
22288 * path if we can. This CAN give us invalid 8.3 filenames, but
22289 * there's not a lot of point in guessing what it might be.
22290 */
22291 len = tflen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022292 if (shortpath_for_invalid_fname(&tfname, &pbuf, &len) == FAIL)
22293 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022294 }
22295
22296 /* Count the paths backward to find the beginning of the desired string. */
22297 for (p = tfname + len - 1; p >= tfname; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022298 {
22299#ifdef FEAT_MBYTE
22300 if (has_mbyte)
22301 p -= mb_head_off(tfname, p);
22302#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000022303 if (vim_ispathsep(*p))
22304 {
22305 if (sepcount == 0 || (hasTilde && sepcount == 1))
22306 break;
22307 else
22308 sepcount --;
22309 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022310 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022311 if (hasTilde)
22312 {
22313 --p;
22314 if (p >= tfname)
22315 *p = '~';
22316 else
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022317 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022318 }
22319 else
22320 ++p;
22321
22322 /* Copy in the string - p indexes into tfname - allocated at pbuf */
22323 vim_free(*bufp);
22324 *fnamelen = (int)STRLEN(p);
22325 *bufp = pbuf;
22326 *fnamep = p;
22327
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022328 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022329}
22330#endif /* WIN3264 */
22331
22332/*
22333 * Adjust a filename, according to a string of modifiers.
22334 * *fnamep must be NUL terminated when called. When returning, the length is
22335 * determined by *fnamelen.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022336 * Returns VALID_ flags or -1 for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022337 * When there is an error, *fnamep is set to NULL.
22338 */
22339 int
22340modify_fname(src, usedlen, fnamep, bufp, fnamelen)
22341 char_u *src; /* string with modifiers */
22342 int *usedlen; /* characters after src that are used */
22343 char_u **fnamep; /* file name so far */
22344 char_u **bufp; /* buffer for allocated file name or NULL */
22345 int *fnamelen; /* length of fnamep */
22346{
22347 int valid = 0;
22348 char_u *tail;
22349 char_u *s, *p, *pbuf;
22350 char_u dirname[MAXPATHL];
22351 int c;
22352 int has_fullname = 0;
22353#ifdef WIN3264
22354 int has_shortname = 0;
22355#endif
22356
22357repeat:
22358 /* ":p" - full path/file_name */
22359 if (src[*usedlen] == ':' && src[*usedlen + 1] == 'p')
22360 {
22361 has_fullname = 1;
22362
22363 valid |= VALID_PATH;
22364 *usedlen += 2;
22365
22366 /* Expand "~/path" for all systems and "~user/path" for Unix and VMS */
22367 if ((*fnamep)[0] == '~'
22368#if !defined(UNIX) && !(defined(VMS) && defined(USER_HOME))
22369 && ((*fnamep)[1] == '/'
22370# ifdef BACKSLASH_IN_FILENAME
22371 || (*fnamep)[1] == '\\'
22372# endif
22373 || (*fnamep)[1] == NUL)
22374
22375#endif
22376 )
22377 {
22378 *fnamep = expand_env_save(*fnamep);
22379 vim_free(*bufp); /* free any allocated file name */
22380 *bufp = *fnamep;
22381 if (*fnamep == NULL)
22382 return -1;
22383 }
22384
22385 /* When "/." or "/.." is used: force expansion to get rid of it. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022386 for (p = *fnamep; *p != NUL; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022387 {
22388 if (vim_ispathsep(*p)
22389 && p[1] == '.'
22390 && (p[2] == NUL
22391 || vim_ispathsep(p[2])
22392 || (p[2] == '.'
22393 && (p[3] == NUL || vim_ispathsep(p[3])))))
22394 break;
22395 }
22396
22397 /* FullName_save() is slow, don't use it when not needed. */
22398 if (*p != NUL || !vim_isAbsName(*fnamep))
22399 {
22400 *fnamep = FullName_save(*fnamep, *p != NUL);
22401 vim_free(*bufp); /* free any allocated file name */
22402 *bufp = *fnamep;
22403 if (*fnamep == NULL)
22404 return -1;
22405 }
22406
22407 /* Append a path separator to a directory. */
22408 if (mch_isdir(*fnamep))
22409 {
22410 /* Make room for one or two extra characters. */
22411 *fnamep = vim_strnsave(*fnamep, (int)STRLEN(*fnamep) + 2);
22412 vim_free(*bufp); /* free any allocated file name */
22413 *bufp = *fnamep;
22414 if (*fnamep == NULL)
22415 return -1;
22416 add_pathsep(*fnamep);
22417 }
22418 }
22419
22420 /* ":." - path relative to the current directory */
22421 /* ":~" - path relative to the home directory */
22422 /* ":8" - shortname path - postponed till after */
22423 while (src[*usedlen] == ':'
22424 && ((c = src[*usedlen + 1]) == '.' || c == '~' || c == '8'))
22425 {
22426 *usedlen += 2;
22427 if (c == '8')
22428 {
22429#ifdef WIN3264
22430 has_shortname = 1; /* Postpone this. */
22431#endif
22432 continue;
22433 }
22434 pbuf = NULL;
22435 /* Need full path first (use expand_env() to remove a "~/") */
22436 if (!has_fullname)
22437 {
22438 if (c == '.' && **fnamep == '~')
22439 p = pbuf = expand_env_save(*fnamep);
22440 else
22441 p = pbuf = FullName_save(*fnamep, FALSE);
22442 }
22443 else
22444 p = *fnamep;
22445
22446 has_fullname = 0;
22447
22448 if (p != NULL)
22449 {
22450 if (c == '.')
22451 {
22452 mch_dirname(dirname, MAXPATHL);
22453 s = shorten_fname(p, dirname);
22454 if (s != NULL)
22455 {
22456 *fnamep = s;
22457 if (pbuf != NULL)
22458 {
22459 vim_free(*bufp); /* free any allocated file name */
22460 *bufp = pbuf;
22461 pbuf = NULL;
22462 }
22463 }
22464 }
22465 else
22466 {
22467 home_replace(NULL, p, dirname, MAXPATHL, TRUE);
22468 /* Only replace it when it starts with '~' */
22469 if (*dirname == '~')
22470 {
22471 s = vim_strsave(dirname);
22472 if (s != NULL)
22473 {
22474 *fnamep = s;
22475 vim_free(*bufp);
22476 *bufp = s;
22477 }
22478 }
22479 }
22480 vim_free(pbuf);
22481 }
22482 }
22483
22484 tail = gettail(*fnamep);
22485 *fnamelen = (int)STRLEN(*fnamep);
22486
22487 /* ":h" - head, remove "/file_name", can be repeated */
22488 /* Don't remove the first "/" or "c:\" */
22489 while (src[*usedlen] == ':' && src[*usedlen + 1] == 'h')
22490 {
22491 valid |= VALID_HEAD;
22492 *usedlen += 2;
22493 s = get_past_head(*fnamep);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022494 while (tail > s && after_pathsep(s, tail))
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022495 mb_ptr_back(*fnamep, tail);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022496 *fnamelen = (int)(tail - *fnamep);
22497#ifdef VMS
22498 if (*fnamelen > 0)
22499 *fnamelen += 1; /* the path separator is part of the path */
22500#endif
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022501 if (*fnamelen == 0)
22502 {
22503 /* Result is empty. Turn it into "." to make ":cd %:h" work. */
22504 p = vim_strsave((char_u *)".");
22505 if (p == NULL)
22506 return -1;
22507 vim_free(*bufp);
22508 *bufp = *fnamep = tail = p;
22509 *fnamelen = 1;
22510 }
22511 else
22512 {
22513 while (tail > s && !after_pathsep(s, tail))
22514 mb_ptr_back(*fnamep, tail);
22515 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022516 }
22517
22518 /* ":8" - shortname */
22519 if (src[*usedlen] == ':' && src[*usedlen + 1] == '8')
22520 {
22521 *usedlen += 2;
22522#ifdef WIN3264
22523 has_shortname = 1;
22524#endif
22525 }
22526
22527#ifdef WIN3264
22528 /* Check shortname after we have done 'heads' and before we do 'tails'
22529 */
22530 if (has_shortname)
22531 {
22532 pbuf = NULL;
22533 /* Copy the string if it is shortened by :h */
22534 if (*fnamelen < (int)STRLEN(*fnamep))
22535 {
22536 p = vim_strnsave(*fnamep, *fnamelen);
22537 if (p == 0)
22538 return -1;
22539 vim_free(*bufp);
22540 *bufp = *fnamep = p;
22541 }
22542
22543 /* Split into two implementations - makes it easier. First is where
22544 * there isn't a full name already, second is where there is.
22545 */
22546 if (!has_fullname && !vim_isAbsName(*fnamep))
22547 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022548 if (shortpath_for_partial(fnamep, bufp, fnamelen) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022549 return -1;
22550 }
22551 else
22552 {
22553 int l;
22554
22555 /* Simple case, already have the full-name
22556 * Nearly always shorter, so try first time. */
22557 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022558 if (get_short_pathname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022559 return -1;
22560
22561 if (l == 0)
22562 {
22563 /* Couldn't find the filename.. search the paths.
22564 */
22565 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022566 if (shortpath_for_invalid_fname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022567 return -1;
22568 }
22569 *fnamelen = l;
22570 }
22571 }
22572#endif /* WIN3264 */
22573
22574 /* ":t" - tail, just the basename */
22575 if (src[*usedlen] == ':' && src[*usedlen + 1] == 't')
22576 {
22577 *usedlen += 2;
22578 *fnamelen -= (int)(tail - *fnamep);
22579 *fnamep = tail;
22580 }
22581
22582 /* ":e" - extension, can be repeated */
22583 /* ":r" - root, without extension, can be repeated */
22584 while (src[*usedlen] == ':'
22585 && (src[*usedlen + 1] == 'e' || src[*usedlen + 1] == 'r'))
22586 {
22587 /* find a '.' in the tail:
22588 * - for second :e: before the current fname
22589 * - otherwise: The last '.'
22590 */
22591 if (src[*usedlen + 1] == 'e' && *fnamep > tail)
22592 s = *fnamep - 2;
22593 else
22594 s = *fnamep + *fnamelen - 1;
22595 for ( ; s > tail; --s)
22596 if (s[0] == '.')
22597 break;
22598 if (src[*usedlen + 1] == 'e') /* :e */
22599 {
22600 if (s > tail)
22601 {
22602 *fnamelen += (int)(*fnamep - (s + 1));
22603 *fnamep = s + 1;
22604#ifdef VMS
22605 /* cut version from the extension */
22606 s = *fnamep + *fnamelen - 1;
22607 for ( ; s > *fnamep; --s)
22608 if (s[0] == ';')
22609 break;
22610 if (s > *fnamep)
22611 *fnamelen = s - *fnamep;
22612#endif
22613 }
22614 else if (*fnamep <= tail)
22615 *fnamelen = 0;
22616 }
22617 else /* :r */
22618 {
22619 if (s > tail) /* remove one extension */
22620 *fnamelen = (int)(s - *fnamep);
22621 }
22622 *usedlen += 2;
22623 }
22624
22625 /* ":s?pat?foo?" - substitute */
22626 /* ":gs?pat?foo?" - global substitute */
22627 if (src[*usedlen] == ':'
22628 && (src[*usedlen + 1] == 's'
22629 || (src[*usedlen + 1] == 'g' && src[*usedlen + 2] == 's')))
22630 {
22631 char_u *str;
22632 char_u *pat;
22633 char_u *sub;
22634 int sep;
22635 char_u *flags;
22636 int didit = FALSE;
22637
22638 flags = (char_u *)"";
22639 s = src + *usedlen + 2;
22640 if (src[*usedlen + 1] == 'g')
22641 {
22642 flags = (char_u *)"g";
22643 ++s;
22644 }
22645
22646 sep = *s++;
22647 if (sep)
22648 {
22649 /* find end of pattern */
22650 p = vim_strchr(s, sep);
22651 if (p != NULL)
22652 {
22653 pat = vim_strnsave(s, (int)(p - s));
22654 if (pat != NULL)
22655 {
22656 s = p + 1;
22657 /* find end of substitution */
22658 p = vim_strchr(s, sep);
22659 if (p != NULL)
22660 {
22661 sub = vim_strnsave(s, (int)(p - s));
22662 str = vim_strnsave(*fnamep, *fnamelen);
22663 if (sub != NULL && str != NULL)
22664 {
22665 *usedlen = (int)(p + 1 - src);
22666 s = do_string_sub(str, pat, sub, flags);
22667 if (s != NULL)
22668 {
22669 *fnamep = s;
22670 *fnamelen = (int)STRLEN(s);
22671 vim_free(*bufp);
22672 *bufp = s;
22673 didit = TRUE;
22674 }
22675 }
22676 vim_free(sub);
22677 vim_free(str);
22678 }
22679 vim_free(pat);
22680 }
22681 }
22682 /* after using ":s", repeat all the modifiers */
22683 if (didit)
22684 goto repeat;
22685 }
22686 }
22687
22688 return valid;
22689}
22690
22691/*
22692 * Perform a substitution on "str" with pattern "pat" and substitute "sub".
22693 * "flags" can be "g" to do a global substitute.
22694 * Returns an allocated string, NULL for error.
22695 */
22696 char_u *
22697do_string_sub(str, pat, sub, flags)
22698 char_u *str;
22699 char_u *pat;
22700 char_u *sub;
22701 char_u *flags;
22702{
22703 int sublen;
22704 regmatch_T regmatch;
22705 int i;
22706 int do_all;
22707 char_u *tail;
22708 garray_T ga;
22709 char_u *ret;
22710 char_u *save_cpo;
22711
22712 /* Make 'cpoptions' empty, so that the 'l' flag doesn't work here */
22713 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022714 p_cpo = empty_option;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022715
22716 ga_init2(&ga, 1, 200);
22717
22718 do_all = (flags[0] == 'g');
22719
22720 regmatch.rm_ic = p_ic;
22721 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
22722 if (regmatch.regprog != NULL)
22723 {
22724 tail = str;
22725 while (vim_regexec_nl(&regmatch, str, (colnr_T)(tail - str)))
22726 {
22727 /*
22728 * Get some space for a temporary buffer to do the substitution
22729 * into. It will contain:
22730 * - The text up to where the match is.
22731 * - The substituted text.
22732 * - The text after the match.
22733 */
22734 sublen = vim_regsub(&regmatch, sub, tail, FALSE, TRUE, FALSE);
22735 if (ga_grow(&ga, (int)(STRLEN(tail) + sublen -
22736 (regmatch.endp[0] - regmatch.startp[0]))) == FAIL)
22737 {
22738 ga_clear(&ga);
22739 break;
22740 }
22741
22742 /* copy the text up to where the match is */
22743 i = (int)(regmatch.startp[0] - tail);
22744 mch_memmove((char_u *)ga.ga_data + ga.ga_len, tail, (size_t)i);
22745 /* add the substituted text */
22746 (void)vim_regsub(&regmatch, sub, (char_u *)ga.ga_data
22747 + ga.ga_len + i, TRUE, TRUE, FALSE);
22748 ga.ga_len += i + sublen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022749 /* avoid getting stuck on a match with an empty string */
22750 if (tail == regmatch.endp[0])
22751 {
22752 if (*tail == NUL)
22753 break;
22754 *((char_u *)ga.ga_data + ga.ga_len) = *tail++;
22755 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022756 }
22757 else
22758 {
22759 tail = regmatch.endp[0];
22760 if (*tail == NUL)
22761 break;
22762 }
22763 if (!do_all)
22764 break;
22765 }
22766
22767 if (ga.ga_data != NULL)
22768 STRCPY((char *)ga.ga_data + ga.ga_len, tail);
22769
22770 vim_free(regmatch.regprog);
22771 }
22772
22773 ret = vim_strsave(ga.ga_data == NULL ? str : (char_u *)ga.ga_data);
22774 ga_clear(&ga);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022775 if (p_cpo == empty_option)
22776 p_cpo = save_cpo;
22777 else
22778 /* Darn, evaluating {sub} expression changed the value. */
22779 free_string_option(save_cpo);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022780
22781 return ret;
22782}
22783
22784#endif /* defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) */