blob: 40fcfefbf6001f6197e69060b946fc015c8e98d7 [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
Bram Moolenaaref94eec2009-11-11 13:22:11 +000011739#ifdef STARTUPTIME
11740 "startuptime",
11741#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011742#ifdef FEAT_STL_OPT
11743 "statusline",
11744#endif
11745#ifdef FEAT_SUN_WORKSHOP
11746 "sun_workshop",
11747#endif
11748#ifdef FEAT_NETBEANS_INTG
11749 "netbeans_intg",
11750#endif
Bram Moolenaar3c56a962006-03-12 22:19:04 +000011751#ifdef FEAT_SPELL
Bram Moolenaar0e4d8772005-06-07 21:12:49 +000011752 "spell",
11753#endif
11754#ifdef FEAT_SYN_HL
Bram Moolenaar071d4272004-06-13 20:20:40 +000011755 "syntax",
11756#endif
11757#if defined(USE_SYSTEM) || !defined(UNIX)
11758 "system",
11759#endif
11760#ifdef FEAT_TAG_BINS
11761 "tag_binary",
11762#endif
11763#ifdef FEAT_TAG_OLDSTATIC
11764 "tag_old_static",
11765#endif
11766#ifdef FEAT_TAG_ANYWHITE
11767 "tag_any_white",
11768#endif
11769#ifdef FEAT_TCL
11770# ifndef DYNAMIC_TCL
11771 "tcl",
11772# endif
11773#endif
11774#ifdef TERMINFO
11775 "terminfo",
11776#endif
11777#ifdef FEAT_TERMRESPONSE
11778 "termresponse",
11779#endif
11780#ifdef FEAT_TEXTOBJ
11781 "textobjects",
11782#endif
11783#ifdef HAVE_TGETENT
11784 "tgetent",
11785#endif
11786#ifdef FEAT_TITLE
11787 "title",
11788#endif
11789#ifdef FEAT_TOOLBAR
11790 "toolbar",
11791#endif
11792#ifdef FEAT_USR_CMDS
11793 "user-commands", /* was accidentally included in 5.4 */
11794 "user_commands",
11795#endif
11796#ifdef FEAT_VIMINFO
11797 "viminfo",
11798#endif
11799#ifdef FEAT_VERTSPLIT
11800 "vertsplit",
11801#endif
11802#ifdef FEAT_VIRTUALEDIT
11803 "virtualedit",
11804#endif
11805#ifdef FEAT_VISUAL
11806 "visual",
11807#endif
11808#ifdef FEAT_VISUALEXTRA
11809 "visualextra",
11810#endif
11811#ifdef FEAT_VREPLACE
11812 "vreplace",
11813#endif
11814#ifdef FEAT_WILDIGN
11815 "wildignore",
11816#endif
11817#ifdef FEAT_WILDMENU
11818 "wildmenu",
11819#endif
11820#ifdef FEAT_WINDOWS
11821 "windows",
11822#endif
11823#ifdef FEAT_WAK
11824 "winaltkeys",
11825#endif
11826#ifdef FEAT_WRITEBACKUP
11827 "writebackup",
11828#endif
11829#ifdef FEAT_XIM
11830 "xim",
11831#endif
11832#ifdef FEAT_XFONTSET
11833 "xfontset",
11834#endif
11835#ifdef USE_XSMP
11836 "xsmp",
11837#endif
11838#ifdef USE_XSMP_INTERACT
11839 "xsmp_interact",
11840#endif
11841#ifdef FEAT_XCLIPBOARD
11842 "xterm_clipboard",
11843#endif
11844#ifdef FEAT_XTERM_SAVE
11845 "xterm_save",
11846#endif
11847#if defined(UNIX) && defined(FEAT_X11)
11848 "X11",
11849#endif
11850 NULL
11851 };
11852
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011853 name = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011854 for (i = 0; has_list[i] != NULL; ++i)
11855 if (STRICMP(name, has_list[i]) == 0)
11856 {
11857 n = TRUE;
11858 break;
11859 }
11860
11861 if (n == FALSE)
11862 {
11863 if (STRNICMP(name, "patch", 5) == 0)
11864 n = has_patch(atoi((char *)name + 5));
11865 else if (STRICMP(name, "vim_starting") == 0)
11866 n = (starting != 0);
Bram Moolenaar42022d52008-12-09 09:57:49 +000011867#ifdef FEAT_MBYTE
11868 else if (STRICMP(name, "multi_byte_encoding") == 0)
11869 n = has_mbyte;
11870#endif
Bram Moolenaar342337a2005-07-21 21:11:17 +000011871#if defined(FEAT_BEVAL) && defined(FEAT_GUI_W32)
11872 else if (STRICMP(name, "balloon_multiline") == 0)
11873 n = multiline_balloon_available();
11874#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011875#ifdef DYNAMIC_TCL
11876 else if (STRICMP(name, "tcl") == 0)
11877 n = tcl_enabled(FALSE);
11878#endif
11879#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
11880 else if (STRICMP(name, "iconv") == 0)
11881 n = iconv_enabled(FALSE);
11882#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011883#ifdef DYNAMIC_MZSCHEME
11884 else if (STRICMP(name, "mzscheme") == 0)
11885 n = mzscheme_enabled(FALSE);
11886#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011887#ifdef DYNAMIC_RUBY
11888 else if (STRICMP(name, "ruby") == 0)
11889 n = ruby_enabled(FALSE);
11890#endif
11891#ifdef DYNAMIC_PYTHON
11892 else if (STRICMP(name, "python") == 0)
11893 n = python_enabled(FALSE);
11894#endif
11895#ifdef DYNAMIC_PERL
11896 else if (STRICMP(name, "perl") == 0)
11897 n = perl_enabled(FALSE);
11898#endif
11899#ifdef FEAT_GUI
11900 else if (STRICMP(name, "gui_running") == 0)
11901 n = (gui.in_use || gui.starting);
11902# ifdef FEAT_GUI_W32
11903 else if (STRICMP(name, "gui_win32s") == 0)
11904 n = gui_is_win32s();
11905# endif
11906# ifdef FEAT_BROWSE
11907 else if (STRICMP(name, "browse") == 0)
11908 n = gui.in_use; /* gui_mch_browse() works when GUI is running */
11909# endif
11910#endif
11911#ifdef FEAT_SYN_HL
11912 else if (STRICMP(name, "syntax_items") == 0)
11913 n = syntax_present(curbuf);
11914#endif
11915#if defined(WIN3264)
11916 else if (STRICMP(name, "win95") == 0)
11917 n = mch_windows95();
11918#endif
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +000011919#ifdef FEAT_NETBEANS_INTG
11920 else if (STRICMP(name, "netbeans_enabled") == 0)
11921 n = usingNetbeans;
11922#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011923 }
11924
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011925 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011926}
11927
11928/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000011929 * "has_key()" function
11930 */
11931 static void
11932f_has_key(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011933 typval_T *argvars;
11934 typval_T *rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011935{
Bram Moolenaare9a41262005-01-15 22:18:47 +000011936 if (argvars[0].v_type != VAR_DICT)
11937 {
11938 EMSG(_(e_dictreq));
11939 return;
11940 }
11941 if (argvars[0].vval.v_dict == NULL)
11942 return;
11943
11944 rettv->vval.v_number = dict_find(argvars[0].vval.v_dict,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000011945 get_tv_string(&argvars[1]), -1) != NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011946}
11947
11948/*
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011949 * "haslocaldir()" function
11950 */
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011951 static void
11952f_haslocaldir(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011953 typval_T *argvars UNUSED;
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011954 typval_T *rettv;
11955{
11956 rettv->vval.v_number = (curwin->w_localdir != NULL);
11957}
11958
11959/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011960 * "hasmapto()" function
11961 */
11962 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011963f_hasmapto(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011964 typval_T *argvars;
11965 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011966{
11967 char_u *name;
11968 char_u *mode;
11969 char_u buf[NUMBUFLEN];
Bram Moolenaar2c932302006-03-18 21:42:09 +000011970 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011971
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011972 name = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011973 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011974 mode = (char_u *)"nvo";
11975 else
Bram Moolenaar2c932302006-03-18 21:42:09 +000011976 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011977 mode = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000011978 if (argvars[2].v_type != VAR_UNKNOWN)
11979 abbr = get_tv_number(&argvars[2]);
11980 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011981
Bram Moolenaar2c932302006-03-18 21:42:09 +000011982 if (map_to_exists(name, mode, abbr))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011983 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011984 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011985 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011986}
11987
11988/*
11989 * "histadd()" function
11990 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011991 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011992f_histadd(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011993 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000011994 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011995{
11996#ifdef FEAT_CMDHIST
11997 int histype;
11998 char_u *str;
11999 char_u buf[NUMBUFLEN];
12000#endif
12001
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012002 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012003 if (check_restricted() || check_secure())
12004 return;
12005#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012006 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12007 histype = str != NULL ? get_histtype(str) : -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012008 if (histype >= 0)
12009 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012010 str = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012011 if (*str != NUL)
12012 {
12013 add_to_history(histype, str, FALSE, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012014 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012015 return;
12016 }
12017 }
12018#endif
12019}
12020
12021/*
12022 * "histdel()" function
12023 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012024 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012025f_histdel(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012026 typval_T *argvars UNUSED;
12027 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012028{
12029#ifdef FEAT_CMDHIST
12030 int n;
12031 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012032 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012033
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012034 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12035 if (str == NULL)
12036 n = 0;
12037 else if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000012038 /* only one argument: clear entire history */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012039 n = clr_history(get_histtype(str));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012040 else if (argvars[1].v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +000012041 /* index given: remove that entry */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012042 n = del_history_idx(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012043 (int)get_tv_number(&argvars[1]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012044 else
12045 /* string given: remove all matching entries */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012046 n = del_history_entry(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012047 get_tv_string_buf(&argvars[1], buf));
12048 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012049#endif
12050}
12051
12052/*
12053 * "histget()" function
12054 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012055 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012056f_histget(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012057 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012058 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012059{
12060#ifdef FEAT_CMDHIST
12061 int type;
12062 int idx;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012063 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012064
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012065 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12066 if (str == NULL)
12067 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012068 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012069 {
12070 type = get_histtype(str);
12071 if (argvars[1].v_type == VAR_UNKNOWN)
12072 idx = get_history_idx(type);
12073 else
12074 idx = (int)get_tv_number_chk(&argvars[1], NULL);
12075 /* -1 on type error */
12076 rettv->vval.v_string = vim_strsave(get_history_entry(type, idx));
12077 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012078#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012079 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012080#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012081 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012082}
12083
12084/*
12085 * "histnr()" function
12086 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012087 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012088f_histnr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012089 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012090 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012091{
12092 int i;
12093
12094#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012095 char_u *history = get_tv_string_chk(&argvars[0]);
12096
12097 i = history == NULL ? HIST_CMD - 1 : get_histtype(history);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012098 if (i >= HIST_CMD && i < HIST_COUNT)
12099 i = get_history_idx(i);
12100 else
12101#endif
12102 i = -1;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012103 rettv->vval.v_number = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012104}
12105
12106/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012107 * "highlightID(name)" function
12108 */
12109 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012110f_hlID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012111 typval_T *argvars;
12112 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012113{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012114 rettv->vval.v_number = syn_name2id(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012115}
12116
12117/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012118 * "highlight_exists()" function
12119 */
12120 static void
12121f_hlexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012122 typval_T *argvars;
12123 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012124{
12125 rettv->vval.v_number = highlight_exists(get_tv_string(&argvars[0]));
12126}
12127
12128/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012129 * "hostname()" function
12130 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012131 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012132f_hostname(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012133 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012134 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012135{
12136 char_u hostname[256];
12137
12138 mch_get_host_name(hostname, 256);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012139 rettv->v_type = VAR_STRING;
12140 rettv->vval.v_string = vim_strsave(hostname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012141}
12142
12143/*
12144 * iconv() function
12145 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012146 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012147f_iconv(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012148 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012149 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012150{
12151#ifdef FEAT_MBYTE
12152 char_u buf1[NUMBUFLEN];
12153 char_u buf2[NUMBUFLEN];
12154 char_u *from, *to, *str;
12155 vimconv_T vimconv;
12156#endif
12157
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012158 rettv->v_type = VAR_STRING;
12159 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012160
12161#ifdef FEAT_MBYTE
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012162 str = get_tv_string(&argvars[0]);
12163 from = enc_canonize(enc_skip(get_tv_string_buf(&argvars[1], buf1)));
12164 to = enc_canonize(enc_skip(get_tv_string_buf(&argvars[2], buf2)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012165 vimconv.vc_type = CONV_NONE;
12166 convert_setup(&vimconv, from, to);
12167
12168 /* If the encodings are equal, no conversion needed. */
12169 if (vimconv.vc_type == CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012170 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012171 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012172 rettv->vval.v_string = string_convert(&vimconv, str, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012173
12174 convert_setup(&vimconv, NULL, NULL);
12175 vim_free(from);
12176 vim_free(to);
12177#endif
12178}
12179
12180/*
12181 * "indent()" function
12182 */
12183 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012184f_indent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012185 typval_T *argvars;
12186 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012187{
12188 linenr_T lnum;
12189
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012190 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012191 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012192 rettv->vval.v_number = get_indent_lnum(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012193 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012194 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012195}
12196
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012197/*
12198 * "index()" function
12199 */
12200 static void
12201f_index(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012202 typval_T *argvars;
12203 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012204{
Bram Moolenaar33570922005-01-25 22:26:29 +000012205 list_T *l;
12206 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012207 long idx = 0;
12208 int ic = FALSE;
12209
12210 rettv->vval.v_number = -1;
12211 if (argvars[0].v_type != VAR_LIST)
12212 {
12213 EMSG(_(e_listreq));
12214 return;
12215 }
12216 l = argvars[0].vval.v_list;
12217 if (l != NULL)
12218 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012219 item = l->lv_first;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012220 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012221 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012222 int error = FALSE;
12223
Bram Moolenaar758711c2005-02-02 23:11:38 +000012224 /* Start at specified item. Use the cached index that list_find()
12225 * sets, so that a negative number also works. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012226 item = list_find(l, get_tv_number_chk(&argvars[2], &error));
Bram Moolenaar758711c2005-02-02 23:11:38 +000012227 idx = l->lv_idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012228 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012229 ic = get_tv_number_chk(&argvars[3], &error);
12230 if (error)
12231 item = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012232 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012233
Bram Moolenaar758711c2005-02-02 23:11:38 +000012234 for ( ; item != NULL; item = item->li_next, ++idx)
12235 if (tv_equal(&item->li_tv, &argvars[1], ic))
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012236 {
12237 rettv->vval.v_number = idx;
12238 break;
12239 }
12240 }
12241}
12242
Bram Moolenaar071d4272004-06-13 20:20:40 +000012243static int inputsecret_flag = 0;
12244
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012245static void get_user_input __ARGS((typval_T *argvars, typval_T *rettv, int inputdialog));
12246
Bram Moolenaar071d4272004-06-13 20:20:40 +000012247/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012248 * This function is used by f_input() and f_inputdialog() functions. The third
12249 * argument to f_input() specifies the type of completion to use at the
12250 * prompt. The third argument to f_inputdialog() specifies the value to return
12251 * when the user cancels the prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +000012252 */
12253 static void
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012254get_user_input(argvars, rettv, inputdialog)
Bram Moolenaar33570922005-01-25 22:26:29 +000012255 typval_T *argvars;
12256 typval_T *rettv;
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012257 int inputdialog;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012258{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012259 char_u *prompt = get_tv_string_chk(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012260 char_u *p = NULL;
12261 int c;
12262 char_u buf[NUMBUFLEN];
12263 int cmd_silent_save = cmd_silent;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012264 char_u *defstr = (char_u *)"";
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012265 int xp_type = EXPAND_NOTHING;
12266 char_u *xp_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012267
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012268 rettv->v_type = VAR_STRING;
Bram Moolenaarce85c562007-09-16 12:21:16 +000012269 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012270
12271#ifdef NO_CONSOLE_INPUT
12272 /* While starting up, there is no place to enter text. */
12273 if (no_console_input())
Bram Moolenaar071d4272004-06-13 20:20:40 +000012274 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012275#endif
12276
12277 cmd_silent = FALSE; /* Want to see the prompt. */
12278 if (prompt != NULL)
12279 {
12280 /* Only the part of the message after the last NL is considered as
12281 * prompt for the command line */
12282 p = vim_strrchr(prompt, '\n');
12283 if (p == NULL)
12284 p = prompt;
12285 else
12286 {
12287 ++p;
12288 c = *p;
12289 *p = NUL;
12290 msg_start();
12291 msg_clr_eos();
12292 msg_puts_attr(prompt, echo_attr);
12293 msg_didout = FALSE;
12294 msg_starthere();
12295 *p = c;
12296 }
12297 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012298
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012299 if (argvars[1].v_type != VAR_UNKNOWN)
12300 {
12301 defstr = get_tv_string_buf_chk(&argvars[1], buf);
12302 if (defstr != NULL)
12303 stuffReadbuffSpec(defstr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012304
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012305 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar4463f292005-09-25 22:20:24 +000012306 {
12307 char_u *xp_name;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000012308 int xp_namelen;
Bram Moolenaar4463f292005-09-25 22:20:24 +000012309 long argt;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012310
Bram Moolenaar4463f292005-09-25 22:20:24 +000012311 rettv->vval.v_string = NULL;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012312
Bram Moolenaar4463f292005-09-25 22:20:24 +000012313 xp_name = get_tv_string_buf_chk(&argvars[2], buf);
12314 if (xp_name == NULL)
12315 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012316
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012317 xp_namelen = (int)STRLEN(xp_name);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012318
Bram Moolenaar4463f292005-09-25 22:20:24 +000012319 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt,
12320 &xp_arg) == FAIL)
12321 return;
12322 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012323 }
12324
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012325 if (defstr != NULL)
12326 rettv->vval.v_string =
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012327 getcmdline_prompt(inputsecret_flag ? NUL : '@', p, echo_attr,
12328 xp_type, xp_arg);
12329
12330 vim_free(xp_arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012331
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012332 /* since the user typed this, no need to wait for return */
12333 need_wait_return = FALSE;
12334 msg_didout = FALSE;
12335 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012336 cmd_silent = cmd_silent_save;
12337}
12338
12339/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012340 * "input()" function
12341 * Also handles inputsecret() when inputsecret is set.
12342 */
12343 static void
12344f_input(argvars, rettv)
12345 typval_T *argvars;
12346 typval_T *rettv;
12347{
12348 get_user_input(argvars, rettv, FALSE);
12349}
12350
12351/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012352 * "inputdialog()" function
12353 */
12354 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012355f_inputdialog(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012356 typval_T *argvars;
12357 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012358{
12359#if defined(FEAT_GUI_TEXTDIALOG)
12360 /* Use a GUI dialog if the GUI is running and 'c' is not in 'guioptions' */
12361 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
12362 {
12363 char_u *message;
12364 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012365 char_u *defstr = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +000012366
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012367 message = get_tv_string_chk(&argvars[0]);
12368 if (argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaarc05f93f2006-05-02 22:09:31 +000012369 && (defstr = get_tv_string_buf_chk(&argvars[1], buf)) != NULL)
Bram Moolenaarce0842a2005-07-18 21:58:11 +000012370 vim_strncpy(IObuff, defstr, IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012371 else
12372 IObuff[0] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012373 if (message != NULL && defstr != NULL
12374 && do_dialog(VIM_QUESTION, NULL, message,
12375 (char_u *)_("&OK\n&Cancel"), 1, IObuff) == 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012376 rettv->vval.v_string = vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012377 else
12378 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012379 if (message != NULL && defstr != NULL
12380 && argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012381 && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012382 rettv->vval.v_string = vim_strsave(
12383 get_tv_string_buf(&argvars[2], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012384 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012385 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012386 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012387 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012388 }
12389 else
12390#endif
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012391 get_user_input(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012392}
12393
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012394/*
12395 * "inputlist()" function
12396 */
12397 static void
12398f_inputlist(argvars, rettv)
12399 typval_T *argvars;
12400 typval_T *rettv;
12401{
12402 listitem_T *li;
12403 int selected;
12404 int mouse_used;
12405
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012406#ifdef NO_CONSOLE_INPUT
12407 /* While starting up, there is no place to enter text. */
12408 if (no_console_input())
12409 return;
12410#endif
12411 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
12412 {
12413 EMSG2(_(e_listarg), "inputlist()");
12414 return;
12415 }
12416
12417 msg_start();
Bram Moolenaar412f7442006-07-23 19:51:57 +000012418 msg_row = Rows - 1; /* for when 'cmdheight' > 1 */
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012419 lines_left = Rows; /* avoid more prompt */
12420 msg_scroll = TRUE;
12421 msg_clr_eos();
12422
12423 for (li = argvars[0].vval.v_list->lv_first; li != NULL; li = li->li_next)
12424 {
12425 msg_puts(get_tv_string(&li->li_tv));
12426 msg_putchar('\n');
12427 }
12428
12429 /* Ask for choice. */
12430 selected = prompt_for_number(&mouse_used);
12431 if (mouse_used)
12432 selected -= lines_left;
12433
12434 rettv->vval.v_number = selected;
12435}
12436
12437
Bram Moolenaar071d4272004-06-13 20:20:40 +000012438static garray_T ga_userinput = {0, 0, sizeof(tasave_T), 4, NULL};
12439
12440/*
12441 * "inputrestore()" function
12442 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012443 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012444f_inputrestore(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012445 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012446 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012447{
12448 if (ga_userinput.ga_len > 0)
12449 {
12450 --ga_userinput.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012451 restore_typeahead((tasave_T *)(ga_userinput.ga_data)
12452 + ga_userinput.ga_len);
Bram Moolenaar798b30b2009-04-22 10:56:16 +000012453 /* default return is zero == OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012454 }
12455 else if (p_verbose > 1)
12456 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +000012457 verb_msg((char_u *)_("called inputrestore() more often than inputsave()"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012458 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012459 }
12460}
12461
12462/*
12463 * "inputsave()" function
12464 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012465 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012466f_inputsave(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012467 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012468 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012469{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012470 /* Add an entry to the stack of typeahead storage. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012471 if (ga_grow(&ga_userinput, 1) == OK)
12472 {
12473 save_typeahead((tasave_T *)(ga_userinput.ga_data)
12474 + ga_userinput.ga_len);
12475 ++ga_userinput.ga_len;
Bram Moolenaar798b30b2009-04-22 10:56:16 +000012476 /* default return is zero == OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012477 }
12478 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012479 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012480}
12481
12482/*
12483 * "inputsecret()" function
12484 */
12485 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012486f_inputsecret(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012487 typval_T *argvars;
12488 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012489{
12490 ++cmdline_star;
12491 ++inputsecret_flag;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012492 f_input(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012493 --cmdline_star;
12494 --inputsecret_flag;
12495}
12496
12497/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012498 * "insert()" function
12499 */
12500 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012501f_insert(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012502 typval_T *argvars;
12503 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012504{
12505 long before = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000012506 listitem_T *item;
12507 list_T *l;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012508 int error = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012509
12510 if (argvars[0].v_type != VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000012511 EMSG2(_(e_listarg), "insert()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012512 else if ((l = argvars[0].vval.v_list) != NULL
12513 && !tv_check_lock(l->lv_lock, (char_u *)"insert()"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012514 {
12515 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012516 before = get_tv_number_chk(&argvars[2], &error);
12517 if (error)
12518 return; /* type error; errmsg already given */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012519
Bram Moolenaar758711c2005-02-02 23:11:38 +000012520 if (before == l->lv_len)
12521 item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012522 else
12523 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012524 item = list_find(l, before);
12525 if (item == NULL)
12526 {
12527 EMSGN(_(e_listidx), before);
12528 l = NULL;
12529 }
12530 }
12531 if (l != NULL)
12532 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012533 list_insert_tv(l, &argvars[1], item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012534 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012535 }
12536 }
12537}
12538
12539/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012540 * "isdirectory()" function
12541 */
12542 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012543f_isdirectory(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012544 typval_T *argvars;
12545 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012546{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012547 rettv->vval.v_number = mch_isdir(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012548}
12549
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012550/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012551 * "islocked()" function
12552 */
12553 static void
12554f_islocked(argvars, rettv)
12555 typval_T *argvars;
12556 typval_T *rettv;
12557{
12558 lval_T lv;
12559 char_u *end;
12560 dictitem_T *di;
12561
12562 rettv->vval.v_number = -1;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000012563 end = get_lval(get_tv_string(&argvars[0]), NULL, &lv, FALSE, FALSE, FALSE,
12564 FNE_CHECK_START);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012565 if (end != NULL && lv.ll_name != NULL)
12566 {
12567 if (*end != NUL)
12568 EMSG(_(e_trailing));
12569 else
12570 {
12571 if (lv.ll_tv == NULL)
12572 {
12573 if (check_changedtick(lv.ll_name))
12574 rettv->vval.v_number = 1; /* always locked */
12575 else
12576 {
12577 di = find_var(lv.ll_name, NULL);
12578 if (di != NULL)
12579 {
12580 /* Consider a variable locked when:
12581 * 1. the variable itself is locked
12582 * 2. the value of the variable is locked.
12583 * 3. the List or Dict value is locked.
12584 */
12585 rettv->vval.v_number = ((di->di_flags & DI_FLAGS_LOCK)
12586 || tv_islocked(&di->di_tv));
12587 }
12588 }
12589 }
12590 else if (lv.ll_range)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000012591 EMSG(_("E786: Range not allowed"));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012592 else if (lv.ll_newkey != NULL)
12593 EMSG2(_(e_dictkey), lv.ll_newkey);
12594 else if (lv.ll_list != NULL)
12595 /* List item. */
12596 rettv->vval.v_number = tv_islocked(&lv.ll_li->li_tv);
12597 else
12598 /* Dictionary item. */
12599 rettv->vval.v_number = tv_islocked(&lv.ll_di->di_tv);
12600 }
12601 }
12602
12603 clear_lval(&lv);
12604}
12605
Bram Moolenaar33570922005-01-25 22:26:29 +000012606static void dict_list __ARGS((typval_T *argvars, typval_T *rettv, int what));
Bram Moolenaar8c711452005-01-14 21:53:12 +000012607
12608/*
12609 * Turn a dict into a list:
12610 * "what" == 0: list of keys
12611 * "what" == 1: list of values
12612 * "what" == 2: list of items
12613 */
12614 static void
12615dict_list(argvars, rettv, what)
Bram Moolenaar33570922005-01-25 22:26:29 +000012616 typval_T *argvars;
12617 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012618 int what;
12619{
Bram Moolenaar33570922005-01-25 22:26:29 +000012620 list_T *l2;
12621 dictitem_T *di;
12622 hashitem_T *hi;
12623 listitem_T *li;
12624 listitem_T *li2;
12625 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012626 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012627
Bram Moolenaar8c711452005-01-14 21:53:12 +000012628 if (argvars[0].v_type != VAR_DICT)
12629 {
12630 EMSG(_(e_dictreq));
12631 return;
12632 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012633 if ((d = argvars[0].vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012634 return;
12635
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012636 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012637 return;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012638
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012639 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000012640 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012641 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012642 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +000012643 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012644 --todo;
12645 di = HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012646
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012647 li = listitem_alloc();
12648 if (li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012649 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012650 list_append(rettv->vval.v_list, li);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012651
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012652 if (what == 0)
12653 {
12654 /* keys() */
12655 li->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012656 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012657 li->li_tv.vval.v_string = vim_strsave(di->di_key);
12658 }
12659 else if (what == 1)
12660 {
12661 /* values() */
12662 copy_tv(&di->di_tv, &li->li_tv);
12663 }
12664 else
12665 {
12666 /* items() */
12667 l2 = list_alloc();
12668 li->li_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012669 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012670 li->li_tv.vval.v_list = l2;
12671 if (l2 == NULL)
12672 break;
12673 ++l2->lv_refcount;
12674
12675 li2 = listitem_alloc();
12676 if (li2 == NULL)
12677 break;
12678 list_append(l2, li2);
12679 li2->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012680 li2->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012681 li2->li_tv.vval.v_string = vim_strsave(di->di_key);
12682
12683 li2 = listitem_alloc();
12684 if (li2 == NULL)
12685 break;
12686 list_append(l2, li2);
12687 copy_tv(&di->di_tv, &li2->li_tv);
12688 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000012689 }
12690 }
12691}
12692
12693/*
12694 * "items(dict)" function
12695 */
12696 static void
12697f_items(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012698 typval_T *argvars;
12699 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012700{
12701 dict_list(argvars, rettv, 2);
12702}
12703
Bram Moolenaar071d4272004-06-13 20:20:40 +000012704/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012705 * "join()" function
12706 */
12707 static void
12708f_join(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012709 typval_T *argvars;
12710 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012711{
12712 garray_T ga;
12713 char_u *sep;
12714
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012715 if (argvars[0].v_type != VAR_LIST)
12716 {
12717 EMSG(_(e_listreq));
12718 return;
12719 }
12720 if (argvars[0].vval.v_list == NULL)
12721 return;
12722 if (argvars[1].v_type == VAR_UNKNOWN)
12723 sep = (char_u *)" ";
12724 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012725 sep = get_tv_string_chk(&argvars[1]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012726
12727 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012728
12729 if (sep != NULL)
12730 {
12731 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000012732 list_join(&ga, argvars[0].vval.v_list, sep, TRUE, 0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012733 ga_append(&ga, NUL);
12734 rettv->vval.v_string = (char_u *)ga.ga_data;
12735 }
12736 else
12737 rettv->vval.v_string = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012738}
12739
12740/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000012741 * "keys()" function
12742 */
12743 static void
12744f_keys(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012745 typval_T *argvars;
12746 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012747{
12748 dict_list(argvars, rettv, 0);
12749}
12750
12751/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012752 * "last_buffer_nr()" function.
12753 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012754 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012755f_last_buffer_nr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012756 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012757 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012758{
12759 int n = 0;
12760 buf_T *buf;
12761
12762 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
12763 if (n < buf->b_fnum)
12764 n = buf->b_fnum;
12765
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012766 rettv->vval.v_number = n;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012767}
12768
12769/*
12770 * "len()" function
12771 */
12772 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012773f_len(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012774 typval_T *argvars;
12775 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012776{
12777 switch (argvars[0].v_type)
12778 {
12779 case VAR_STRING:
12780 case VAR_NUMBER:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012781 rettv->vval.v_number = (varnumber_T)STRLEN(
12782 get_tv_string(&argvars[0]));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012783 break;
12784 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012785 rettv->vval.v_number = list_len(argvars[0].vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012786 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +000012787 case VAR_DICT:
12788 rettv->vval.v_number = dict_len(argvars[0].vval.v_dict);
12789 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012790 default:
Bram Moolenaare49b69a2005-01-08 16:11:57 +000012791 EMSG(_("E701: Invalid type for len()"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012792 break;
12793 }
12794}
12795
Bram Moolenaar33570922005-01-25 22:26:29 +000012796static void libcall_common __ARGS((typval_T *argvars, typval_T *rettv, int type));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012797
12798 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012799libcall_common(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000012800 typval_T *argvars;
12801 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012802 int type;
12803{
12804#ifdef FEAT_LIBCALL
12805 char_u *string_in;
12806 char_u **string_result;
12807 int nr_result;
12808#endif
12809
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012810 rettv->v_type = type;
Bram Moolenaar798b30b2009-04-22 10:56:16 +000012811 if (type != VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012812 rettv->vval.v_string = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012813
12814 if (check_restricted() || check_secure())
12815 return;
12816
12817#ifdef FEAT_LIBCALL
12818 /* The first two args must be strings, otherwise its meaningless */
12819 if (argvars[0].v_type == VAR_STRING && argvars[1].v_type == VAR_STRING)
12820 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012821 string_in = NULL;
12822 if (argvars[2].v_type == VAR_STRING)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012823 string_in = argvars[2].vval.v_string;
12824 if (type == VAR_NUMBER)
12825 string_result = NULL;
12826 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012827 string_result = &rettv->vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012828 if (mch_libcall(argvars[0].vval.v_string,
12829 argvars[1].vval.v_string,
12830 string_in,
12831 argvars[2].vval.v_number,
12832 string_result,
12833 &nr_result) == OK
12834 && type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012835 rettv->vval.v_number = nr_result;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012836 }
12837#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000012838}
12839
12840/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012841 * "libcall()" function
12842 */
12843 static void
12844f_libcall(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012845 typval_T *argvars;
12846 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012847{
12848 libcall_common(argvars, rettv, VAR_STRING);
12849}
12850
12851/*
12852 * "libcallnr()" function
12853 */
12854 static void
12855f_libcallnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012856 typval_T *argvars;
12857 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012858{
12859 libcall_common(argvars, rettv, VAR_NUMBER);
12860}
12861
12862/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012863 * "line(string)" function
12864 */
12865 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012866f_line(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012867 typval_T *argvars;
12868 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012869{
12870 linenr_T lnum = 0;
12871 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012872 int fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012873
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012874 fp = var2fpos(&argvars[0], TRUE, &fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012875 if (fp != NULL)
12876 lnum = fp->lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012877 rettv->vval.v_number = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012878}
12879
12880/*
12881 * "line2byte(lnum)" function
12882 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012883 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012884f_line2byte(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012885 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012886 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012887{
12888#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012889 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012890#else
12891 linenr_T lnum;
12892
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012893 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012894 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012895 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012896 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012897 rettv->vval.v_number = ml_find_line_or_offset(curbuf, lnum, NULL);
12898 if (rettv->vval.v_number >= 0)
12899 ++rettv->vval.v_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012900#endif
12901}
12902
12903/*
12904 * "lispindent(lnum)" function
12905 */
12906 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012907f_lispindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012908 typval_T *argvars;
12909 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012910{
12911#ifdef FEAT_LISP
12912 pos_T pos;
12913 linenr_T lnum;
12914
12915 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012916 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012917 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
12918 {
12919 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012920 rettv->vval.v_number = get_lisp_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +000012921 curwin->w_cursor = pos;
12922 }
12923 else
12924#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012925 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012926}
12927
12928/*
12929 * "localtime()" function
12930 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012931 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012932f_localtime(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012933 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012934 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012935{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012936 rettv->vval.v_number = (varnumber_T)time(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012937}
12938
Bram Moolenaar33570922005-01-25 22:26:29 +000012939static void get_maparg __ARGS((typval_T *argvars, typval_T *rettv, int exact));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012940
12941 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012942get_maparg(argvars, rettv, exact)
Bram Moolenaar33570922005-01-25 22:26:29 +000012943 typval_T *argvars;
12944 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012945 int exact;
12946{
12947 char_u *keys;
12948 char_u *which;
12949 char_u buf[NUMBUFLEN];
12950 char_u *keys_buf = NULL;
12951 char_u *rhs;
12952 int mode;
12953 garray_T ga;
Bram Moolenaar2c932302006-03-18 21:42:09 +000012954 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012955
12956 /* return empty string for failure */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012957 rettv->v_type = VAR_STRING;
12958 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012959
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012960 keys = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012961 if (*keys == NUL)
12962 return;
12963
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012964 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar2c932302006-03-18 21:42:09 +000012965 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012966 which = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012967 if (argvars[2].v_type != VAR_UNKNOWN)
12968 abbr = get_tv_number(&argvars[2]);
12969 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012970 else
12971 which = (char_u *)"";
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012972 if (which == NULL)
12973 return;
12974
Bram Moolenaar071d4272004-06-13 20:20:40 +000012975 mode = get_map_mode(&which, 0);
12976
Bram Moolenaar3fb9eda2006-05-03 21:29:58 +000012977 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE, FALSE);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012978 rhs = check_map(keys, mode, exact, FALSE, abbr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012979 vim_free(keys_buf);
12980 if (rhs != NULL)
12981 {
12982 ga_init(&ga);
12983 ga.ga_itemsize = 1;
12984 ga.ga_growsize = 40;
12985
12986 while (*rhs != NUL)
12987 ga_concat(&ga, str2special(&rhs, FALSE));
12988
12989 ga_append(&ga, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012990 rettv->vval.v_string = (char_u *)ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012991 }
12992}
12993
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012994#ifdef FEAT_FLOAT
12995/*
12996 * "log10()" function
12997 */
12998 static void
12999f_log10(argvars, rettv)
13000 typval_T *argvars;
13001 typval_T *rettv;
13002{
13003 float_T f;
13004
13005 rettv->v_type = VAR_FLOAT;
13006 if (get_float_arg(argvars, &f) == OK)
13007 rettv->vval.v_float = log10(f);
13008 else
13009 rettv->vval.v_float = 0.0;
13010}
13011#endif
13012
Bram Moolenaar071d4272004-06-13 20:20:40 +000013013/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013014 * "map()" function
13015 */
13016 static void
13017f_map(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013018 typval_T *argvars;
13019 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013020{
13021 filter_map(argvars, rettv, TRUE);
13022}
13023
13024/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013025 * "maparg()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013026 */
13027 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013028f_maparg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013029 typval_T *argvars;
13030 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013031{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013032 get_maparg(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013033}
13034
13035/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013036 * "mapcheck()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013037 */
13038 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013039f_mapcheck(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013040 typval_T *argvars;
13041 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013042{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013043 get_maparg(argvars, rettv, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013044}
13045
Bram Moolenaar33570922005-01-25 22:26:29 +000013046static void find_some_match __ARGS((typval_T *argvars, typval_T *rettv, int start));
Bram Moolenaar071d4272004-06-13 20:20:40 +000013047
13048 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013049find_some_match(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000013050 typval_T *argvars;
13051 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013052 int type;
13053{
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013054 char_u *str = NULL;
13055 char_u *expr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013056 char_u *pat;
13057 regmatch_T regmatch;
13058 char_u patbuf[NUMBUFLEN];
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013059 char_u strbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000013060 char_u *save_cpo;
13061 long start = 0;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013062 long nth = 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013063 colnr_T startcol = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013064 int match = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000013065 list_T *l = NULL;
13066 listitem_T *li = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013067 long idx = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013068 char_u *tofree = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013069
13070 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
13071 save_cpo = p_cpo;
13072 p_cpo = (char_u *)"";
13073
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013074 rettv->vval.v_number = -1;
13075 if (type == 3)
13076 {
13077 /* return empty list when there are no matches */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013078 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013079 goto theend;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013080 }
13081 else if (type == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013082 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013083 rettv->v_type = VAR_STRING;
13084 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013085 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013086
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013087 if (argvars[0].v_type == VAR_LIST)
13088 {
13089 if ((l = argvars[0].vval.v_list) == NULL)
13090 goto theend;
13091 li = l->lv_first;
13092 }
13093 else
13094 expr = str = get_tv_string(&argvars[0]);
13095
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013096 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
13097 if (pat == NULL)
13098 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013099
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013100 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013101 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013102 int error = FALSE;
13103
13104 start = get_tv_number_chk(&argvars[2], &error);
13105 if (error)
13106 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013107 if (l != NULL)
13108 {
13109 li = list_find(l, start);
13110 if (li == NULL)
13111 goto theend;
Bram Moolenaar758711c2005-02-02 23:11:38 +000013112 idx = l->lv_idx; /* use the cached index */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013113 }
13114 else
13115 {
13116 if (start < 0)
13117 start = 0;
13118 if (start > (long)STRLEN(str))
13119 goto theend;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000013120 /* When "count" argument is there ignore matches before "start",
13121 * otherwise skip part of the string. Differs when pattern is "^"
13122 * or "\<". */
13123 if (argvars[3].v_type != VAR_UNKNOWN)
13124 startcol = start;
13125 else
13126 str += start;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013127 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013128
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013129 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013130 nth = get_tv_number_chk(&argvars[3], &error);
13131 if (error)
13132 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013133 }
13134
13135 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
13136 if (regmatch.regprog != NULL)
13137 {
13138 regmatch.rm_ic = p_ic;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013139
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013140 for (;;)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013141 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013142 if (l != NULL)
13143 {
13144 if (li == NULL)
13145 {
13146 match = FALSE;
13147 break;
13148 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013149 vim_free(tofree);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013150 str = echo_string(&li->li_tv, &tofree, strbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013151 if (str == NULL)
13152 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013153 }
13154
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013155 match = vim_regexec_nl(&regmatch, str, (colnr_T)startcol);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013156
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013157 if (match && --nth <= 0)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013158 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013159 if (l == NULL && !match)
13160 break;
13161
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013162 /* Advance to just after the match. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013163 if (l != NULL)
13164 {
13165 li = li->li_next;
13166 ++idx;
13167 }
13168 else
13169 {
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013170#ifdef FEAT_MBYTE
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013171 startcol = (colnr_T)(regmatch.startp[0]
13172 + (*mb_ptr2len)(regmatch.startp[0]) - str);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013173#else
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013174 startcol = regmatch.startp[0] + 1 - str;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013175#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013176 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013177 }
13178
13179 if (match)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013180 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013181 if (type == 3)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013182 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013183 int i;
13184
13185 /* return list with matched string and submatches */
13186 for (i = 0; i < NSUBEXP; ++i)
13187 {
13188 if (regmatch.endp[i] == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000013189 {
13190 if (list_append_string(rettv->vval.v_list,
13191 (char_u *)"", 0) == FAIL)
13192 break;
13193 }
13194 else if (list_append_string(rettv->vval.v_list,
Bram Moolenaar4463f292005-09-25 22:20:24 +000013195 regmatch.startp[i],
13196 (int)(regmatch.endp[i] - regmatch.startp[i]))
13197 == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013198 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013199 }
13200 }
13201 else if (type == 2)
13202 {
13203 /* return matched string */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013204 if (l != NULL)
13205 copy_tv(&li->li_tv, rettv);
13206 else
13207 rettv->vval.v_string = vim_strnsave(regmatch.startp[0],
Bram Moolenaar071d4272004-06-13 20:20:40 +000013208 (int)(regmatch.endp[0] - regmatch.startp[0]));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013209 }
13210 else if (l != NULL)
13211 rettv->vval.v_number = idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013212 else
13213 {
13214 if (type != 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013215 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013216 (varnumber_T)(regmatch.startp[0] - str);
13217 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013218 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013219 (varnumber_T)(regmatch.endp[0] - str);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013220 rettv->vval.v_number += (varnumber_T)(str - expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013221 }
13222 }
13223 vim_free(regmatch.regprog);
13224 }
13225
13226theend:
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013227 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013228 p_cpo = save_cpo;
13229}
13230
13231/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013232 * "match()" function
13233 */
13234 static void
13235f_match(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013236 typval_T *argvars;
13237 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013238{
13239 find_some_match(argvars, rettv, 1);
13240}
13241
13242/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013243 * "matchadd()" function
13244 */
13245 static void
13246f_matchadd(argvars, rettv)
13247 typval_T *argvars;
13248 typval_T *rettv;
13249{
13250#ifdef FEAT_SEARCH_EXTRA
13251 char_u buf[NUMBUFLEN];
13252 char_u *grp = get_tv_string_buf_chk(&argvars[0], buf); /* group */
13253 char_u *pat = get_tv_string_buf_chk(&argvars[1], buf); /* pattern */
13254 int prio = 10; /* default priority */
13255 int id = -1;
13256 int error = FALSE;
13257
13258 rettv->vval.v_number = -1;
13259
13260 if (grp == NULL || pat == NULL)
13261 return;
13262 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013263 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013264 prio = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013265 if (argvars[3].v_type != VAR_UNKNOWN)
13266 id = get_tv_number_chk(&argvars[3], &error);
13267 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013268 if (error == TRUE)
13269 return;
13270 if (id >= 1 && id <= 3)
13271 {
13272 EMSGN("E798: ID is reserved for \":match\": %ld", id);
13273 return;
13274 }
13275
13276 rettv->vval.v_number = match_add(curwin, grp, pat, prio, id);
13277#endif
13278}
13279
13280/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013281 * "matcharg()" function
13282 */
13283 static void
13284f_matcharg(argvars, rettv)
13285 typval_T *argvars;
13286 typval_T *rettv;
13287{
13288 if (rettv_list_alloc(rettv) == OK)
13289 {
13290#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013291 int id = get_tv_number(&argvars[0]);
13292 matchitem_T *m;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013293
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013294 if (id >= 1 && id <= 3)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013295 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013296 if ((m = (matchitem_T *)get_match(curwin, id)) != NULL)
13297 {
13298 list_append_string(rettv->vval.v_list,
13299 syn_id2name(m->hlg_id), -1);
13300 list_append_string(rettv->vval.v_list, m->pattern, -1);
13301 }
13302 else
13303 {
13304 list_append_string(rettv->vval.v_list, NUL, -1);
13305 list_append_string(rettv->vval.v_list, NUL, -1);
13306 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013307 }
13308#endif
13309 }
13310}
13311
13312/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013313 * "matchdelete()" function
13314 */
13315 static void
13316f_matchdelete(argvars, rettv)
13317 typval_T *argvars;
13318 typval_T *rettv;
13319{
13320#ifdef FEAT_SEARCH_EXTRA
13321 rettv->vval.v_number = match_delete(curwin,
13322 (int)get_tv_number(&argvars[0]), TRUE);
13323#endif
13324}
13325
13326/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013327 * "matchend()" function
13328 */
13329 static void
13330f_matchend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013331 typval_T *argvars;
13332 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013333{
13334 find_some_match(argvars, rettv, 0);
13335}
13336
13337/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013338 * "matchlist()" function
13339 */
13340 static void
13341f_matchlist(argvars, rettv)
13342 typval_T *argvars;
13343 typval_T *rettv;
13344{
13345 find_some_match(argvars, rettv, 3);
13346}
13347
13348/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013349 * "matchstr()" function
13350 */
13351 static void
13352f_matchstr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013353 typval_T *argvars;
13354 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013355{
13356 find_some_match(argvars, rettv, 2);
13357}
13358
Bram Moolenaar33570922005-01-25 22:26:29 +000013359static void max_min __ARGS((typval_T *argvars, typval_T *rettv, int domax));
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013360
13361 static void
13362max_min(argvars, rettv, domax)
Bram Moolenaar33570922005-01-25 22:26:29 +000013363 typval_T *argvars;
13364 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013365 int domax;
13366{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013367 long n = 0;
13368 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013369 int error = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013370
13371 if (argvars[0].v_type == VAR_LIST)
13372 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013373 list_T *l;
13374 listitem_T *li;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013375
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013376 l = argvars[0].vval.v_list;
13377 if (l != NULL)
13378 {
13379 li = l->lv_first;
13380 if (li != NULL)
13381 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013382 n = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013383 for (;;)
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013384 {
13385 li = li->li_next;
13386 if (li == NULL)
13387 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013388 i = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013389 if (domax ? i > n : i < n)
13390 n = i;
13391 }
13392 }
13393 }
13394 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000013395 else if (argvars[0].v_type == VAR_DICT)
13396 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013397 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013398 int first = TRUE;
Bram Moolenaar33570922005-01-25 22:26:29 +000013399 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013400 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013401
13402 d = argvars[0].vval.v_dict;
13403 if (d != NULL)
13404 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013405 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000013406 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013407 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013408 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +000013409 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013410 --todo;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013411 i = get_tv_number_chk(&HI2DI(hi)->di_tv, &error);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013412 if (first)
13413 {
13414 n = i;
13415 first = FALSE;
13416 }
13417 else if (domax ? i > n : i < n)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013418 n = i;
13419 }
13420 }
13421 }
13422 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013423 else
Bram Moolenaar758711c2005-02-02 23:11:38 +000013424 EMSG(_(e_listdictarg));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013425 rettv->vval.v_number = error ? 0 : n;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013426}
13427
13428/*
13429 * "max()" function
13430 */
13431 static void
13432f_max(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013433 typval_T *argvars;
13434 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013435{
13436 max_min(argvars, rettv, TRUE);
13437}
13438
13439/*
13440 * "min()" function
13441 */
13442 static void
13443f_min(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013444 typval_T *argvars;
13445 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013446{
13447 max_min(argvars, rettv, FALSE);
13448}
13449
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013450static int mkdir_recurse __ARGS((char_u *dir, int prot));
13451
13452/*
13453 * Create the directory in which "dir" is located, and higher levels when
13454 * needed.
13455 */
13456 static int
13457mkdir_recurse(dir, prot)
13458 char_u *dir;
13459 int prot;
13460{
13461 char_u *p;
13462 char_u *updir;
13463 int r = FAIL;
13464
13465 /* Get end of directory name in "dir".
13466 * We're done when it's "/" or "c:/". */
13467 p = gettail_sep(dir);
13468 if (p <= get_past_head(dir))
13469 return OK;
13470
13471 /* If the directory exists we're done. Otherwise: create it.*/
13472 updir = vim_strnsave(dir, (int)(p - dir));
13473 if (updir == NULL)
13474 return FAIL;
13475 if (mch_isdir(updir))
13476 r = OK;
13477 else if (mkdir_recurse(updir, prot) == OK)
13478 r = vim_mkdir_emsg(updir, prot);
13479 vim_free(updir);
13480 return r;
13481}
13482
13483#ifdef vim_mkdir
13484/*
13485 * "mkdir()" function
13486 */
13487 static void
13488f_mkdir(argvars, rettv)
13489 typval_T *argvars;
13490 typval_T *rettv;
13491{
13492 char_u *dir;
13493 char_u buf[NUMBUFLEN];
13494 int prot = 0755;
13495
13496 rettv->vval.v_number = FAIL;
13497 if (check_restricted() || check_secure())
13498 return;
13499
13500 dir = get_tv_string_buf(&argvars[0], buf);
13501 if (argvars[1].v_type != VAR_UNKNOWN)
13502 {
13503 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013504 prot = get_tv_number_chk(&argvars[2], NULL);
13505 if (prot != -1 && STRCMP(get_tv_string(&argvars[1]), "p") == 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013506 mkdir_recurse(dir, prot);
13507 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013508 rettv->vval.v_number = prot != -1 ? vim_mkdir_emsg(dir, prot) : 0;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013509}
13510#endif
13511
Bram Moolenaar0d660222005-01-07 21:51:51 +000013512/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013513 * "mode()" function
13514 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000013515 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013516f_mode(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013517 typval_T *argvars;
13518 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013519{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013520 char_u buf[3];
13521
13522 buf[1] = NUL;
13523 buf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013524
13525#ifdef FEAT_VISUAL
13526 if (VIsual_active)
13527 {
13528 if (VIsual_select)
13529 buf[0] = VIsual_mode + 's' - 'v';
13530 else
13531 buf[0] = VIsual_mode;
13532 }
13533 else
13534#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013535 if (State == HITRETURN || State == ASKMORE || State == SETWSIZE
13536 || State == CONFIRM)
13537 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013538 buf[0] = 'r';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013539 if (State == ASKMORE)
13540 buf[1] = 'm';
13541 else if (State == CONFIRM)
13542 buf[1] = '?';
13543 }
13544 else if (State == EXTERNCMD)
13545 buf[0] = '!';
Bram Moolenaar071d4272004-06-13 20:20:40 +000013546 else if (State & INSERT)
13547 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013548#ifdef FEAT_VREPLACE
13549 if (State & VREPLACE_FLAG)
13550 {
13551 buf[0] = 'R';
13552 buf[1] = 'v';
13553 }
13554 else
13555#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000013556 if (State & REPLACE_FLAG)
13557 buf[0] = 'R';
13558 else
13559 buf[0] = 'i';
13560 }
13561 else if (State & CMDLINE)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013562 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013563 buf[0] = 'c';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013564 if (exmode_active)
13565 buf[1] = 'v';
13566 }
13567 else if (exmode_active)
13568 {
13569 buf[0] = 'c';
13570 buf[1] = 'e';
13571 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013572 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013573 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013574 buf[0] = 'n';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013575 if (finish_op)
13576 buf[1] = 'o';
13577 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013578
Bram Moolenaar05bb9532008-07-04 09:44:11 +000013579 /* Clear out the minor mode when the argument is not a non-zero number or
13580 * non-empty string. */
13581 if (!non_zero_arg(&argvars[0]))
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013582 buf[1] = NUL;
13583
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013584 rettv->vval.v_string = vim_strsave(buf);
13585 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013586}
13587
13588/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013589 * "nextnonblank()" function
13590 */
13591 static void
13592f_nextnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013593 typval_T *argvars;
13594 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013595{
13596 linenr_T lnum;
13597
13598 for (lnum = get_tv_lnum(argvars); ; ++lnum)
13599 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013600 if (lnum < 0 || lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar0d660222005-01-07 21:51:51 +000013601 {
13602 lnum = 0;
13603 break;
13604 }
13605 if (*skipwhite(ml_get(lnum)) != NUL)
13606 break;
13607 }
13608 rettv->vval.v_number = lnum;
13609}
13610
13611/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013612 * "nr2char()" function
13613 */
13614 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013615f_nr2char(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013616 typval_T *argvars;
13617 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013618{
13619 char_u buf[NUMBUFLEN];
13620
13621#ifdef FEAT_MBYTE
13622 if (has_mbyte)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013623 buf[(*mb_char2bytes)((int)get_tv_number(&argvars[0]), buf)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013624 else
13625#endif
13626 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013627 buf[0] = (char_u)get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013628 buf[1] = NUL;
13629 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013630 rettv->v_type = VAR_STRING;
13631 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013632}
13633
13634/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013635 * "pathshorten()" function
13636 */
13637 static void
13638f_pathshorten(argvars, rettv)
13639 typval_T *argvars;
13640 typval_T *rettv;
13641{
13642 char_u *p;
13643
13644 rettv->v_type = VAR_STRING;
13645 p = get_tv_string_chk(&argvars[0]);
13646 if (p == NULL)
13647 rettv->vval.v_string = NULL;
13648 else
13649 {
13650 p = vim_strsave(p);
13651 rettv->vval.v_string = p;
13652 if (p != NULL)
13653 shorten_dir(p);
13654 }
13655}
13656
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013657#ifdef FEAT_FLOAT
13658/*
13659 * "pow()" function
13660 */
13661 static void
13662f_pow(argvars, rettv)
13663 typval_T *argvars;
13664 typval_T *rettv;
13665{
13666 float_T fx, fy;
13667
13668 rettv->v_type = VAR_FLOAT;
13669 if (get_float_arg(argvars, &fx) == OK
13670 && get_float_arg(&argvars[1], &fy) == OK)
13671 rettv->vval.v_float = pow(fx, fy);
13672 else
13673 rettv->vval.v_float = 0.0;
13674}
13675#endif
13676
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013677/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013678 * "prevnonblank()" function
13679 */
13680 static void
13681f_prevnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013682 typval_T *argvars;
13683 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013684{
13685 linenr_T lnum;
13686
13687 lnum = get_tv_lnum(argvars);
13688 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
13689 lnum = 0;
13690 else
13691 while (lnum >= 1 && *skipwhite(ml_get(lnum)) == NUL)
13692 --lnum;
13693 rettv->vval.v_number = lnum;
13694}
13695
Bram Moolenaara6c840d2005-08-22 22:59:46 +000013696#ifdef HAVE_STDARG_H
13697/* This dummy va_list is here because:
13698 * - passing a NULL pointer doesn't work when va_list isn't a pointer
13699 * - locally in the function results in a "used before set" warning
13700 * - using va_start() to initialize it gives "function with fixed args" error */
13701static va_list ap;
13702#endif
13703
Bram Moolenaar8c711452005-01-14 21:53:12 +000013704/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013705 * "printf()" function
13706 */
13707 static void
13708f_printf(argvars, rettv)
13709 typval_T *argvars;
13710 typval_T *rettv;
13711{
13712 rettv->v_type = VAR_STRING;
13713 rettv->vval.v_string = NULL;
Bram Moolenaard52d9742005-08-21 22:20:28 +000013714#ifdef HAVE_STDARG_H /* only very old compilers can't do this */
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013715 {
13716 char_u buf[NUMBUFLEN];
13717 int len;
13718 char_u *s;
13719 int saved_did_emsg = did_emsg;
13720 char *fmt;
13721
13722 /* Get the required length, allocate the buffer and do it for real. */
13723 did_emsg = FALSE;
13724 fmt = (char *)get_tv_string_buf(&argvars[0], buf);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013725 len = vim_vsnprintf(NULL, 0, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013726 if (!did_emsg)
13727 {
13728 s = alloc(len + 1);
13729 if (s != NULL)
13730 {
13731 rettv->vval.v_string = s;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013732 (void)vim_vsnprintf((char *)s, len + 1, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013733 }
13734 }
13735 did_emsg |= saved_did_emsg;
13736 }
13737#endif
13738}
13739
13740/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013741 * "pumvisible()" function
13742 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013743 static void
13744f_pumvisible(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000013745 typval_T *argvars UNUSED;
13746 typval_T *rettv UNUSED;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013747{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013748#ifdef FEAT_INS_EXPAND
13749 if (pum_visible())
13750 rettv->vval.v_number = 1;
13751#endif
13752}
13753
13754/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000013755 * "range()" function
13756 */
13757 static void
13758f_range(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013759 typval_T *argvars;
13760 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013761{
13762 long start;
13763 long end;
13764 long stride = 1;
13765 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013766 int error = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013767
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013768 start = get_tv_number_chk(&argvars[0], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013769 if (argvars[1].v_type == VAR_UNKNOWN)
13770 {
13771 end = start - 1;
13772 start = 0;
13773 }
13774 else
13775 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013776 end = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013777 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013778 stride = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013779 }
13780
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013781 if (error)
13782 return; /* type error; errmsg already given */
Bram Moolenaar8c711452005-01-14 21:53:12 +000013783 if (stride == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013784 EMSG(_("E726: Stride is zero"));
Bram Moolenaar92124a32005-06-17 22:03:40 +000013785 else if (stride > 0 ? end + 1 < start : end - 1 > start)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013786 EMSG(_("E727: Start past end"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000013787 else
13788 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013789 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013790 for (i = start; stride > 0 ? i <= end : i >= end; i += stride)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013791 if (list_append_number(rettv->vval.v_list,
13792 (varnumber_T)i) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013793 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013794 }
13795}
13796
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013797/*
13798 * "readfile()" function
13799 */
13800 static void
13801f_readfile(argvars, rettv)
13802 typval_T *argvars;
13803 typval_T *rettv;
13804{
13805 int binary = FALSE;
13806 char_u *fname;
13807 FILE *fd;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013808 listitem_T *li;
13809#define FREAD_SIZE 200 /* optimized for text lines */
13810 char_u buf[FREAD_SIZE];
13811 int readlen; /* size of last fread() */
13812 int buflen; /* nr of valid chars in buf[] */
13813 int filtd; /* how much in buf[] was NUL -> '\n' filtered */
13814 int tolist; /* first byte in buf[] still to be put in list */
13815 int chop; /* how many CR to chop off */
13816 char_u *prev = NULL; /* previously read bytes, if any */
13817 int prevlen = 0; /* length of "prev" if not NULL */
13818 char_u *s;
13819 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013820 long maxline = MAXLNUM;
13821 long cnt = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013822
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013823 if (argvars[1].v_type != VAR_UNKNOWN)
13824 {
13825 if (STRCMP(get_tv_string(&argvars[1]), "b") == 0)
13826 binary = TRUE;
13827 if (argvars[2].v_type != VAR_UNKNOWN)
13828 maxline = get_tv_number(&argvars[2]);
13829 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013830
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013831 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013832 return;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013833
13834 /* Always open the file in binary mode, library functions have a mind of
13835 * their own about CR-LF conversion. */
13836 fname = get_tv_string(&argvars[0]);
13837 if (*fname == NUL || (fd = mch_fopen((char *)fname, READBIN)) == NULL)
13838 {
13839 EMSG2(_(e_notopen), *fname == NUL ? (char_u *)_("<empty>") : fname);
13840 return;
13841 }
13842
13843 filtd = 0;
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013844 while (cnt < maxline || maxline < 0)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013845 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013846 readlen = (int)fread(buf + filtd, 1, FREAD_SIZE - filtd, fd);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013847 buflen = filtd + readlen;
13848 tolist = 0;
13849 for ( ; filtd < buflen || readlen <= 0; ++filtd)
13850 {
13851 if (buf[filtd] == '\n' || readlen <= 0)
13852 {
13853 /* Only when in binary mode add an empty list item when the
13854 * last line ends in a '\n'. */
13855 if (!binary && readlen == 0 && filtd == 0)
13856 break;
13857
13858 /* Found end-of-line or end-of-file: add a text line to the
13859 * list. */
13860 chop = 0;
13861 if (!binary)
13862 while (filtd - chop - 1 >= tolist
13863 && buf[filtd - chop - 1] == '\r')
13864 ++chop;
13865 len = filtd - tolist - chop;
13866 if (prev == NULL)
13867 s = vim_strnsave(buf + tolist, len);
13868 else
13869 {
13870 s = alloc((unsigned)(prevlen + len + 1));
13871 if (s != NULL)
13872 {
13873 mch_memmove(s, prev, prevlen);
13874 vim_free(prev);
13875 prev = NULL;
13876 mch_memmove(s + prevlen, buf + tolist, len);
13877 s[prevlen + len] = NUL;
13878 }
13879 }
13880 tolist = filtd + 1;
13881
13882 li = listitem_alloc();
13883 if (li == NULL)
13884 {
13885 vim_free(s);
13886 break;
13887 }
13888 li->li_tv.v_type = VAR_STRING;
13889 li->li_tv.v_lock = 0;
13890 li->li_tv.vval.v_string = s;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013891 list_append(rettv->vval.v_list, li);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013892
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013893 if (++cnt >= maxline && maxline >= 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013894 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013895 if (readlen <= 0)
13896 break;
13897 }
13898 else if (buf[filtd] == NUL)
13899 buf[filtd] = '\n';
13900 }
13901 if (readlen <= 0)
13902 break;
13903
13904 if (tolist == 0)
13905 {
13906 /* "buf" is full, need to move text to an allocated buffer */
13907 if (prev == NULL)
13908 {
13909 prev = vim_strnsave(buf, buflen);
13910 prevlen = buflen;
13911 }
13912 else
13913 {
13914 s = alloc((unsigned)(prevlen + buflen));
13915 if (s != NULL)
13916 {
13917 mch_memmove(s, prev, prevlen);
13918 mch_memmove(s + prevlen, buf, buflen);
13919 vim_free(prev);
13920 prev = s;
13921 prevlen += buflen;
13922 }
13923 }
13924 filtd = 0;
13925 }
13926 else
13927 {
13928 mch_memmove(buf, buf + tolist, buflen - tolist);
13929 filtd -= tolist;
13930 }
13931 }
13932
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013933 /*
13934 * For a negative line count use only the lines at the end of the file,
13935 * free the rest.
13936 */
13937 if (maxline < 0)
13938 while (cnt > -maxline)
13939 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013940 listitem_remove(rettv->vval.v_list, rettv->vval.v_list->lv_first);
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013941 --cnt;
13942 }
13943
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013944 vim_free(prev);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013945 fclose(fd);
13946}
13947
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013948#if defined(FEAT_RELTIME)
13949static int list2proftime __ARGS((typval_T *arg, proftime_T *tm));
13950
13951/*
13952 * Convert a List to proftime_T.
13953 * Return FAIL when there is something wrong.
13954 */
13955 static int
13956list2proftime(arg, tm)
13957 typval_T *arg;
13958 proftime_T *tm;
13959{
13960 long n1, n2;
13961 int error = FALSE;
13962
13963 if (arg->v_type != VAR_LIST || arg->vval.v_list == NULL
13964 || arg->vval.v_list->lv_len != 2)
13965 return FAIL;
13966 n1 = list_find_nr(arg->vval.v_list, 0L, &error);
13967 n2 = list_find_nr(arg->vval.v_list, 1L, &error);
13968# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000013969 tm->HighPart = n1;
13970 tm->LowPart = n2;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013971# else
13972 tm->tv_sec = n1;
13973 tm->tv_usec = n2;
13974# endif
13975 return error ? FAIL : OK;
13976}
13977#endif /* FEAT_RELTIME */
13978
13979/*
13980 * "reltime()" function
13981 */
13982 static void
13983f_reltime(argvars, rettv)
13984 typval_T *argvars;
13985 typval_T *rettv;
13986{
13987#ifdef FEAT_RELTIME
13988 proftime_T res;
13989 proftime_T start;
13990
13991 if (argvars[0].v_type == VAR_UNKNOWN)
13992 {
13993 /* No arguments: get current time. */
13994 profile_start(&res);
13995 }
13996 else if (argvars[1].v_type == VAR_UNKNOWN)
13997 {
13998 if (list2proftime(&argvars[0], &res) == FAIL)
13999 return;
14000 profile_end(&res);
14001 }
14002 else
14003 {
14004 /* Two arguments: compute the difference. */
14005 if (list2proftime(&argvars[0], &start) == FAIL
14006 || list2proftime(&argvars[1], &res) == FAIL)
14007 return;
14008 profile_sub(&res, &start);
14009 }
14010
14011 if (rettv_list_alloc(rettv) == OK)
14012 {
14013 long n1, n2;
14014
14015# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000014016 n1 = res.HighPart;
14017 n2 = res.LowPart;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000014018# else
14019 n1 = res.tv_sec;
14020 n2 = res.tv_usec;
14021# endif
14022 list_append_number(rettv->vval.v_list, (varnumber_T)n1);
14023 list_append_number(rettv->vval.v_list, (varnumber_T)n2);
14024 }
14025#endif
14026}
14027
14028/*
14029 * "reltimestr()" function
14030 */
14031 static void
14032f_reltimestr(argvars, rettv)
14033 typval_T *argvars;
14034 typval_T *rettv;
14035{
14036#ifdef FEAT_RELTIME
14037 proftime_T tm;
14038#endif
14039
14040 rettv->v_type = VAR_STRING;
14041 rettv->vval.v_string = NULL;
14042#ifdef FEAT_RELTIME
14043 if (list2proftime(&argvars[0], &tm) == OK)
14044 rettv->vval.v_string = vim_strsave((char_u *)profile_msg(&tm));
14045#endif
14046}
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000014047
Bram Moolenaar0d660222005-01-07 21:51:51 +000014048#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
14049static void make_connection __ARGS((void));
14050static int check_connection __ARGS((void));
14051
14052 static void
14053make_connection()
14054{
14055 if (X_DISPLAY == NULL
14056# ifdef FEAT_GUI
14057 && !gui.in_use
14058# endif
14059 )
14060 {
14061 x_force_connect = TRUE;
14062 setup_term_clip();
14063 x_force_connect = FALSE;
14064 }
14065}
14066
14067 static int
14068check_connection()
14069{
14070 make_connection();
14071 if (X_DISPLAY == NULL)
14072 {
14073 EMSG(_("E240: No connection to Vim server"));
14074 return FAIL;
14075 }
14076 return OK;
14077}
14078#endif
14079
14080#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014081static void remote_common __ARGS((typval_T *argvars, typval_T *rettv, int expr));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014082
14083 static void
14084remote_common(argvars, rettv, expr)
Bram Moolenaar33570922005-01-25 22:26:29 +000014085 typval_T *argvars;
14086 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014087 int expr;
14088{
14089 char_u *server_name;
14090 char_u *keys;
14091 char_u *r = NULL;
14092 char_u buf[NUMBUFLEN];
14093# ifdef WIN32
14094 HWND w;
14095# else
14096 Window w;
14097# endif
14098
14099 if (check_restricted() || check_secure())
14100 return;
14101
14102# ifdef FEAT_X11
14103 if (check_connection() == FAIL)
14104 return;
14105# endif
14106
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014107 server_name = get_tv_string_chk(&argvars[0]);
14108 if (server_name == NULL)
14109 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014110 keys = get_tv_string_buf(&argvars[1], buf);
14111# ifdef WIN32
14112 if (serverSendToVim(server_name, keys, &r, &w, expr, TRUE) < 0)
14113# else
14114 if (serverSendToVim(X_DISPLAY, server_name, keys, &r, &w, expr, 0, TRUE)
14115 < 0)
14116# endif
14117 {
14118 if (r != NULL)
14119 EMSG(r); /* sending worked but evaluation failed */
14120 else
14121 EMSG2(_("E241: Unable to send to %s"), server_name);
14122 return;
14123 }
14124
14125 rettv->vval.v_string = r;
14126
14127 if (argvars[2].v_type != VAR_UNKNOWN)
14128 {
Bram Moolenaar33570922005-01-25 22:26:29 +000014129 dictitem_T v;
Bram Moolenaar555b2802005-05-19 21:08:39 +000014130 char_u str[30];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014131 char_u *idvar;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014132
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014133 sprintf((char *)str, PRINTF_HEX_LONG_U, (long_u)w);
Bram Moolenaar33570922005-01-25 22:26:29 +000014134 v.di_tv.v_type = VAR_STRING;
14135 v.di_tv.vval.v_string = vim_strsave(str);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014136 idvar = get_tv_string_chk(&argvars[2]);
14137 if (idvar != NULL)
14138 set_var(idvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014139 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014140 }
14141}
14142#endif
14143
14144/*
14145 * "remote_expr()" function
14146 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014147 static void
14148f_remote_expr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014149 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014150 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014151{
14152 rettv->v_type = VAR_STRING;
14153 rettv->vval.v_string = NULL;
14154#ifdef FEAT_CLIENTSERVER
14155 remote_common(argvars, rettv, TRUE);
14156#endif
14157}
14158
14159/*
14160 * "remote_foreground()" function
14161 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014162 static void
14163f_remote_foreground(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014164 typval_T *argvars UNUSED;
14165 typval_T *rettv UNUSED;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014166{
Bram Moolenaar0d660222005-01-07 21:51:51 +000014167#ifdef FEAT_CLIENTSERVER
14168# ifdef WIN32
14169 /* On Win32 it's done in this application. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014170 {
14171 char_u *server_name = get_tv_string_chk(&argvars[0]);
14172
14173 if (server_name != NULL)
14174 serverForeground(server_name);
14175 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014176# else
14177 /* Send a foreground() expression to the server. */
14178 argvars[1].v_type = VAR_STRING;
14179 argvars[1].vval.v_string = vim_strsave((char_u *)"foreground()");
14180 argvars[2].v_type = VAR_UNKNOWN;
14181 remote_common(argvars, rettv, TRUE);
14182 vim_free(argvars[1].vval.v_string);
14183# endif
14184#endif
14185}
14186
Bram Moolenaar0d660222005-01-07 21:51:51 +000014187 static void
14188f_remote_peek(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014189 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014190 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014191{
14192#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014193 dictitem_T v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014194 char_u *s = NULL;
14195# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014196 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014197# endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014198 char_u *serverid;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014199
14200 if (check_restricted() || check_secure())
14201 {
14202 rettv->vval.v_number = -1;
14203 return;
14204 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014205 serverid = get_tv_string_chk(&argvars[0]);
14206 if (serverid == NULL)
14207 {
14208 rettv->vval.v_number = -1;
14209 return; /* type error; errmsg already given */
14210 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014211# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014212 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014213 if (n == 0)
14214 rettv->vval.v_number = -1;
14215 else
14216 {
14217 s = serverGetReply((HWND)n, FALSE, FALSE, FALSE);
14218 rettv->vval.v_number = (s != NULL);
14219 }
14220# else
Bram Moolenaar0d660222005-01-07 21:51:51 +000014221 if (check_connection() == FAIL)
14222 return;
14223
14224 rettv->vval.v_number = serverPeekReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014225 serverStrToWin(serverid), &s);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014226# endif
14227
14228 if (argvars[1].v_type != VAR_UNKNOWN && rettv->vval.v_number > 0)
14229 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014230 char_u *retvar;
14231
Bram Moolenaar33570922005-01-25 22:26:29 +000014232 v.di_tv.v_type = VAR_STRING;
14233 v.di_tv.vval.v_string = vim_strsave(s);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014234 retvar = get_tv_string_chk(&argvars[1]);
14235 if (retvar != NULL)
14236 set_var(retvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014237 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014238 }
14239#else
14240 rettv->vval.v_number = -1;
14241#endif
14242}
14243
Bram Moolenaar0d660222005-01-07 21:51:51 +000014244 static void
14245f_remote_read(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014246 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014247 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014248{
14249 char_u *r = NULL;
14250
14251#ifdef FEAT_CLIENTSERVER
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014252 char_u *serverid = get_tv_string_chk(&argvars[0]);
14253
14254 if (serverid != NULL && !check_restricted() && !check_secure())
Bram Moolenaar0d660222005-01-07 21:51:51 +000014255 {
14256# ifdef WIN32
14257 /* The server's HWND is encoded in the 'id' parameter */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014258 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014259
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014260 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014261 if (n != 0)
14262 r = serverGetReply((HWND)n, FALSE, TRUE, TRUE);
14263 if (r == NULL)
14264# else
14265 if (check_connection() == FAIL || serverReadReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014266 serverStrToWin(serverid), &r, FALSE) < 0)
Bram Moolenaar0d660222005-01-07 21:51:51 +000014267# endif
14268 EMSG(_("E277: Unable to read a server reply"));
14269 }
14270#endif
14271 rettv->v_type = VAR_STRING;
14272 rettv->vval.v_string = r;
14273}
14274
14275/*
14276 * "remote_send()" function
14277 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014278 static void
14279f_remote_send(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014280 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014281 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014282{
14283 rettv->v_type = VAR_STRING;
14284 rettv->vval.v_string = NULL;
14285#ifdef FEAT_CLIENTSERVER
14286 remote_common(argvars, rettv, FALSE);
14287#endif
14288}
14289
14290/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000014291 * "remove()" function
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014292 */
14293 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014294f_remove(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014295 typval_T *argvars;
14296 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014297{
Bram Moolenaar33570922005-01-25 22:26:29 +000014298 list_T *l;
14299 listitem_T *item, *item2;
14300 listitem_T *li;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014301 long idx;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014302 long end;
Bram Moolenaar8c711452005-01-14 21:53:12 +000014303 char_u *key;
Bram Moolenaar33570922005-01-25 22:26:29 +000014304 dict_T *d;
14305 dictitem_T *di;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014306
Bram Moolenaar8c711452005-01-14 21:53:12 +000014307 if (argvars[0].v_type == VAR_DICT)
14308 {
14309 if (argvars[2].v_type != VAR_UNKNOWN)
14310 EMSG2(_(e_toomanyarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014311 else if ((d = argvars[0].vval.v_dict) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014312 && !tv_check_lock(d->dv_lock, (char_u *)"remove() argument"))
Bram Moolenaar8c711452005-01-14 21:53:12 +000014313 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014314 key = get_tv_string_chk(&argvars[1]);
14315 if (key != NULL)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014316 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014317 di = dict_find(d, key, -1);
14318 if (di == NULL)
14319 EMSG2(_(e_dictkey), key);
14320 else
14321 {
14322 *rettv = di->di_tv;
14323 init_tv(&di->di_tv);
14324 dictitem_remove(d, di);
14325 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014326 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000014327 }
14328 }
14329 else if (argvars[0].v_type != VAR_LIST)
14330 EMSG2(_(e_listdictarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014331 else if ((l = argvars[0].vval.v_list) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014332 && !tv_check_lock(l->lv_lock, (char_u *)"remove() argument"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014333 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014334 int error = FALSE;
14335
14336 idx = get_tv_number_chk(&argvars[1], &error);
14337 if (error)
14338 ; /* type error: do nothing, errmsg already given */
14339 else if ((item = list_find(l, idx)) == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014340 EMSGN(_(e_listidx), idx);
14341 else
14342 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014343 if (argvars[2].v_type == VAR_UNKNOWN)
14344 {
14345 /* Remove one item, return its value. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014346 list_remove(l, item, item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014347 *rettv = item->li_tv;
14348 vim_free(item);
14349 }
14350 else
14351 {
14352 /* Remove range of items, return list with values. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014353 end = get_tv_number_chk(&argvars[2], &error);
14354 if (error)
14355 ; /* type error: do nothing */
14356 else if ((item2 = list_find(l, end)) == NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014357 EMSGN(_(e_listidx), end);
14358 else
14359 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000014360 int cnt = 0;
14361
14362 for (li = item; li != NULL; li = li->li_next)
14363 {
14364 ++cnt;
14365 if (li == item2)
14366 break;
14367 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014368 if (li == NULL) /* didn't find "item2" after "item" */
14369 EMSG(_(e_invrange));
14370 else
14371 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014372 list_remove(l, item, item2);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014373 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014374 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014375 l = rettv->vval.v_list;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014376 l->lv_first = item;
14377 l->lv_last = item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014378 item->li_prev = NULL;
14379 item2->li_next = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014380 l->lv_len = cnt;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014381 }
14382 }
14383 }
14384 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014385 }
14386 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014387}
14388
14389/*
14390 * "rename({from}, {to})" function
14391 */
14392 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014393f_rename(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014394 typval_T *argvars;
14395 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014396{
14397 char_u buf[NUMBUFLEN];
14398
14399 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014400 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014401 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014402 rettv->vval.v_number = vim_rename(get_tv_string(&argvars[0]),
14403 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000014404}
14405
14406/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014407 * "repeat()" function
14408 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014409 static void
14410f_repeat(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014411 typval_T *argvars;
14412 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014413{
14414 char_u *p;
14415 int n;
14416 int slen;
14417 int len;
14418 char_u *r;
14419 int i;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014420
14421 n = get_tv_number(&argvars[1]);
14422 if (argvars[0].v_type == VAR_LIST)
14423 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014424 if (rettv_list_alloc(rettv) == OK && argvars[0].vval.v_list != NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014425 while (n-- > 0)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014426 if (list_extend(rettv->vval.v_list,
14427 argvars[0].vval.v_list, NULL) == FAIL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014428 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014429 }
14430 else
14431 {
14432 p = get_tv_string(&argvars[0]);
14433 rettv->v_type = VAR_STRING;
14434 rettv->vval.v_string = NULL;
14435
14436 slen = (int)STRLEN(p);
14437 len = slen * n;
14438 if (len <= 0)
14439 return;
14440
14441 r = alloc(len + 1);
14442 if (r != NULL)
14443 {
14444 for (i = 0; i < n; i++)
14445 mch_memmove(r + i * slen, p, (size_t)slen);
14446 r[len] = NUL;
14447 }
14448
14449 rettv->vval.v_string = r;
14450 }
14451}
14452
14453/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000014454 * "resolve()" function
14455 */
14456 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014457f_resolve(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014458 typval_T *argvars;
14459 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014460{
14461 char_u *p;
14462
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014463 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014464#ifdef FEAT_SHORTCUT
14465 {
14466 char_u *v = NULL;
14467
14468 v = mch_resolve_shortcut(p);
14469 if (v != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014470 rettv->vval.v_string = v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014471 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014472 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014473 }
14474#else
14475# ifdef HAVE_READLINK
14476 {
14477 char_u buf[MAXPATHL + 1];
14478 char_u *cpy;
14479 int len;
14480 char_u *remain = NULL;
14481 char_u *q;
14482 int is_relative_to_current = FALSE;
14483 int has_trailing_pathsep = FALSE;
14484 int limit = 100;
14485
14486 p = vim_strsave(p);
14487
14488 if (p[0] == '.' && (vim_ispathsep(p[1])
14489 || (p[1] == '.' && (vim_ispathsep(p[2])))))
14490 is_relative_to_current = TRUE;
14491
14492 len = STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014493 if (len > 0 && after_pathsep(p, p + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +000014494 has_trailing_pathsep = TRUE;
14495
14496 q = getnextcomp(p);
14497 if (*q != NUL)
14498 {
14499 /* Separate the first path component in "p", and keep the
14500 * remainder (beginning with the path separator). */
14501 remain = vim_strsave(q - 1);
14502 q[-1] = NUL;
14503 }
14504
14505 for (;;)
14506 {
14507 for (;;)
14508 {
14509 len = readlink((char *)p, (char *)buf, MAXPATHL);
14510 if (len <= 0)
14511 break;
14512 buf[len] = NUL;
14513
14514 if (limit-- == 0)
14515 {
14516 vim_free(p);
14517 vim_free(remain);
14518 EMSG(_("E655: Too many symbolic links (cycle?)"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014519 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014520 goto fail;
14521 }
14522
14523 /* Ensure that the result will have a trailing path separator
14524 * if the argument has one. */
14525 if (remain == NULL && has_trailing_pathsep)
14526 add_pathsep(buf);
14527
14528 /* Separate the first path component in the link value and
14529 * concatenate the remainders. */
14530 q = getnextcomp(vim_ispathsep(*buf) ? buf + 1 : buf);
14531 if (*q != NUL)
14532 {
14533 if (remain == NULL)
14534 remain = vim_strsave(q - 1);
14535 else
14536 {
Bram Moolenaar900b4d72005-12-12 22:05:50 +000014537 cpy = concat_str(q - 1, remain);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014538 if (cpy != NULL)
14539 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014540 vim_free(remain);
14541 remain = cpy;
14542 }
14543 }
14544 q[-1] = NUL;
14545 }
14546
14547 q = gettail(p);
14548 if (q > p && *q == NUL)
14549 {
14550 /* Ignore trailing path separator. */
14551 q[-1] = NUL;
14552 q = gettail(p);
14553 }
14554 if (q > p && !mch_isFullName(buf))
14555 {
14556 /* symlink is relative to directory of argument */
14557 cpy = alloc((unsigned)(STRLEN(p) + STRLEN(buf) + 1));
14558 if (cpy != NULL)
14559 {
14560 STRCPY(cpy, p);
14561 STRCPY(gettail(cpy), buf);
14562 vim_free(p);
14563 p = cpy;
14564 }
14565 }
14566 else
14567 {
14568 vim_free(p);
14569 p = vim_strsave(buf);
14570 }
14571 }
14572
14573 if (remain == NULL)
14574 break;
14575
14576 /* Append the first path component of "remain" to "p". */
14577 q = getnextcomp(remain + 1);
14578 len = q - remain - (*q != NUL);
14579 cpy = vim_strnsave(p, STRLEN(p) + len);
14580 if (cpy != NULL)
14581 {
14582 STRNCAT(cpy, remain, len);
14583 vim_free(p);
14584 p = cpy;
14585 }
14586 /* Shorten "remain". */
14587 if (*q != NUL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014588 STRMOVE(remain, q - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014589 else
14590 {
14591 vim_free(remain);
14592 remain = NULL;
14593 }
14594 }
14595
14596 /* If the result is a relative path name, make it explicitly relative to
14597 * the current directory if and only if the argument had this form. */
14598 if (!vim_ispathsep(*p))
14599 {
14600 if (is_relative_to_current
14601 && *p != NUL
14602 && !(p[0] == '.'
14603 && (p[1] == NUL
14604 || vim_ispathsep(p[1])
14605 || (p[1] == '.'
14606 && (p[2] == NUL
14607 || vim_ispathsep(p[2]))))))
14608 {
14609 /* Prepend "./". */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000014610 cpy = concat_str((char_u *)"./", p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014611 if (cpy != NULL)
14612 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014613 vim_free(p);
14614 p = cpy;
14615 }
14616 }
14617 else if (!is_relative_to_current)
14618 {
14619 /* Strip leading "./". */
14620 q = p;
14621 while (q[0] == '.' && vim_ispathsep(q[1]))
14622 q += 2;
14623 if (q > p)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014624 STRMOVE(p, p + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014625 }
14626 }
14627
14628 /* Ensure that the result will have no trailing path separator
14629 * if the argument had none. But keep "/" or "//". */
14630 if (!has_trailing_pathsep)
14631 {
14632 q = p + STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014633 if (after_pathsep(p, q))
14634 *gettail_sep(p) = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014635 }
14636
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014637 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014638 }
14639# else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014640 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014641# endif
14642#endif
14643
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014644 simplify_filename(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014645
14646#ifdef HAVE_READLINK
14647fail:
14648#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014649 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014650}
14651
14652/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000014653 * "reverse({list})" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000014654 */
14655 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000014656f_reverse(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014657 typval_T *argvars;
14658 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014659{
Bram Moolenaar33570922005-01-25 22:26:29 +000014660 list_T *l;
14661 listitem_T *li, *ni;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014662
Bram Moolenaar0d660222005-01-07 21:51:51 +000014663 if (argvars[0].v_type != VAR_LIST)
14664 EMSG2(_(e_listarg), "reverse()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014665 else if ((l = argvars[0].vval.v_list) != NULL
14666 && !tv_check_lock(l->lv_lock, (char_u *)"reverse()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000014667 {
14668 li = l->lv_last;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000014669 l->lv_first = l->lv_last = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014670 l->lv_len = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014671 while (li != NULL)
14672 {
14673 ni = li->li_prev;
14674 list_append(l, li);
14675 li = ni;
14676 }
14677 rettv->vval.v_list = l;
14678 rettv->v_type = VAR_LIST;
14679 ++l->lv_refcount;
Bram Moolenaar52514562008-04-01 11:12:09 +000014680 l->lv_idx = l->lv_len - l->lv_idx - 1;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014681 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014682}
14683
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014684#define SP_NOMOVE 0x01 /* don't move cursor */
14685#define SP_REPEAT 0x02 /* repeat to find outer pair */
14686#define SP_RETCOUNT 0x04 /* return matchcount */
14687#define SP_SETPCMARK 0x08 /* set previous context mark */
14688#define SP_START 0x10 /* accept match at start position */
14689#define SP_SUBPAT 0x20 /* return nr of matching sub-pattern */
14690#define SP_END 0x40 /* leave cursor at end of match */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014691
Bram Moolenaar33570922005-01-25 22:26:29 +000014692static int get_search_arg __ARGS((typval_T *varp, int *flagsp));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014693
14694/*
14695 * Get flags for a search function.
14696 * Possibly sets "p_ws".
14697 * Returns BACKWARD, FORWARD or zero (for an error).
14698 */
14699 static int
14700get_search_arg(varp, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014701 typval_T *varp;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014702 int *flagsp;
14703{
14704 int dir = FORWARD;
14705 char_u *flags;
14706 char_u nbuf[NUMBUFLEN];
14707 int mask;
14708
14709 if (varp->v_type != VAR_UNKNOWN)
14710 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014711 flags = get_tv_string_buf_chk(varp, nbuf);
14712 if (flags == NULL)
14713 return 0; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014714 while (*flags != NUL)
14715 {
14716 switch (*flags)
14717 {
14718 case 'b': dir = BACKWARD; break;
14719 case 'w': p_ws = TRUE; break;
14720 case 'W': p_ws = FALSE; break;
14721 default: mask = 0;
14722 if (flagsp != NULL)
14723 switch (*flags)
14724 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014725 case 'c': mask = SP_START; break;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014726 case 'e': mask = SP_END; break;
14727 case 'm': mask = SP_RETCOUNT; break;
14728 case 'n': mask = SP_NOMOVE; break;
14729 case 'p': mask = SP_SUBPAT; break;
14730 case 'r': mask = SP_REPEAT; break;
14731 case 's': mask = SP_SETPCMARK; break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014732 }
14733 if (mask == 0)
14734 {
14735 EMSG2(_(e_invarg2), flags);
14736 dir = 0;
14737 }
14738 else
14739 *flagsp |= mask;
14740 }
14741 if (dir == 0)
14742 break;
14743 ++flags;
14744 }
14745 }
14746 return dir;
14747}
14748
Bram Moolenaar071d4272004-06-13 20:20:40 +000014749/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014750 * Shared by search() and searchpos() functions
Bram Moolenaar071d4272004-06-13 20:20:40 +000014751 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014752 static int
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014753search_cmn(argvars, match_pos, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014754 typval_T *argvars;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014755 pos_T *match_pos;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014756 int *flagsp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014757{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014758 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014759 char_u *pat;
14760 pos_T pos;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014761 pos_T save_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014762 int save_p_ws = p_ws;
14763 int dir;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014764 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014765 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014766 proftime_T tm;
14767#ifdef FEAT_RELTIME
14768 long time_limit = 0;
14769#endif
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014770 int options = SEARCH_KEEP;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014771 int subpatnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014772
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014773 pat = get_tv_string(&argvars[0]);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014774 dir = get_search_arg(&argvars[1], flagsp); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014775 if (dir == 0)
14776 goto theend;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014777 flags = *flagsp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014778 if (flags & SP_START)
14779 options |= SEARCH_START;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014780 if (flags & SP_END)
14781 options |= SEARCH_END;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014782
Bram Moolenaar76929292008-01-06 19:07:36 +000014783 /* Optional arguments: line number to stop searching and timeout. */
14784 if (argvars[1].v_type != VAR_UNKNOWN && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014785 {
14786 lnum_stop = get_tv_number_chk(&argvars[2], NULL);
14787 if (lnum_stop < 0)
14788 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014789#ifdef FEAT_RELTIME
14790 if (argvars[3].v_type != VAR_UNKNOWN)
14791 {
14792 time_limit = get_tv_number_chk(&argvars[3], NULL);
14793 if (time_limit < 0)
14794 goto theend;
14795 }
14796#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014797 }
14798
Bram Moolenaar76929292008-01-06 19:07:36 +000014799#ifdef FEAT_RELTIME
14800 /* Set the time limit, if there is one. */
14801 profile_setlimit(time_limit, &tm);
14802#endif
14803
Bram Moolenaar231334e2005-07-25 20:46:57 +000014804 /*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014805 * This function does not accept SP_REPEAT and SP_RETCOUNT flags.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014806 * Check to make sure only those flags are set.
14807 * Also, Only the SP_NOMOVE or the SP_SETPCMARK flag can be set. Both
14808 * flags cannot be set. Check for that condition also.
14809 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014810 if (((flags & (SP_REPEAT | SP_RETCOUNT)) != 0)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014811 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014812 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014813 EMSG2(_(e_invarg2), get_tv_string(&argvars[1]));
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014814 goto theend;
14815 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014816
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014817 pos = save_cursor = curwin->w_cursor;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014818 subpatnum = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000014819 options, RE_SEARCH, (linenr_T)lnum_stop, &tm);
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014820 if (subpatnum != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014821 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014822 if (flags & SP_SUBPAT)
14823 retval = subpatnum;
14824 else
14825 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000014826 if (flags & SP_SETPCMARK)
14827 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000014828 curwin->w_cursor = pos;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014829 if (match_pos != NULL)
14830 {
14831 /* Store the match cursor position */
14832 match_pos->lnum = pos.lnum;
14833 match_pos->col = pos.col + 1;
14834 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014835 /* "/$" will put the cursor after the end of the line, may need to
14836 * correct that here */
14837 check_cursor();
14838 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014839
14840 /* If 'n' flag is used: restore cursor position. */
14841 if (flags & SP_NOMOVE)
14842 curwin->w_cursor = save_cursor;
Bram Moolenaar7a42fa32007-07-10 11:28:55 +000014843 else
14844 curwin->w_set_curswant = TRUE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014845theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +000014846 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014847
14848 return retval;
14849}
14850
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014851#ifdef FEAT_FLOAT
14852/*
14853 * "round({float})" function
14854 */
14855 static void
14856f_round(argvars, rettv)
14857 typval_T *argvars;
14858 typval_T *rettv;
14859{
14860 float_T f;
14861
14862 rettv->v_type = VAR_FLOAT;
14863 if (get_float_arg(argvars, &f) == OK)
14864 /* round() is not in C90, use ceil() or floor() instead. */
14865 rettv->vval.v_float = f > 0 ? floor(f + 0.5) : ceil(f - 0.5);
14866 else
14867 rettv->vval.v_float = 0.0;
14868}
14869#endif
14870
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014871/*
14872 * "search()" function
14873 */
14874 static void
14875f_search(argvars, rettv)
14876 typval_T *argvars;
14877 typval_T *rettv;
14878{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014879 int flags = 0;
14880
14881 rettv->vval.v_number = search_cmn(argvars, NULL, &flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014882}
14883
Bram Moolenaar071d4272004-06-13 20:20:40 +000014884/*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014885 * "searchdecl()" function
14886 */
14887 static void
14888f_searchdecl(argvars, rettv)
14889 typval_T *argvars;
14890 typval_T *rettv;
14891{
14892 int locally = 1;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014893 int thisblock = 0;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014894 int error = FALSE;
14895 char_u *name;
14896
14897 rettv->vval.v_number = 1; /* default: FAIL */
14898
14899 name = get_tv_string_chk(&argvars[0]);
14900 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaare6facf92005-09-13 21:22:27 +000014901 {
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014902 locally = get_tv_number_chk(&argvars[1], &error) == 0;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014903 if (!error && argvars[2].v_type != VAR_UNKNOWN)
14904 thisblock = get_tv_number_chk(&argvars[2], &error) != 0;
14905 }
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014906 if (!error && name != NULL)
14907 rettv->vval.v_number = find_decl(name, (int)STRLEN(name),
Bram Moolenaare6facf92005-09-13 21:22:27 +000014908 locally, thisblock, SEARCH_KEEP) == FAIL;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014909}
14910
14911/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014912 * Used by searchpair() and searchpairpos()
Bram Moolenaar071d4272004-06-13 20:20:40 +000014913 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014914 static int
14915searchpair_cmn(argvars, match_pos)
Bram Moolenaar33570922005-01-25 22:26:29 +000014916 typval_T *argvars;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014917 pos_T *match_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014918{
14919 char_u *spat, *mpat, *epat;
14920 char_u *skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014921 int save_p_ws = p_ws;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014922 int dir;
14923 int flags = 0;
14924 char_u nbuf1[NUMBUFLEN];
14925 char_u nbuf2[NUMBUFLEN];
14926 char_u nbuf3[NUMBUFLEN];
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014927 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014928 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014929 long time_limit = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014930
Bram Moolenaar071d4272004-06-13 20:20:40 +000014931 /* Get the three pattern arguments: start, middle, end. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014932 spat = get_tv_string_chk(&argvars[0]);
14933 mpat = get_tv_string_buf_chk(&argvars[1], nbuf1);
14934 epat = get_tv_string_buf_chk(&argvars[2], nbuf2);
14935 if (spat == NULL || mpat == NULL || epat == NULL)
14936 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014937
Bram Moolenaar071d4272004-06-13 20:20:40 +000014938 /* Handle the optional fourth argument: flags */
14939 dir = get_search_arg(&argvars[3], &flags); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014940 if (dir == 0)
14941 goto theend;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014942
14943 /* Don't accept SP_END or SP_SUBPAT.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014944 * Only one of the SP_NOMOVE or SP_SETPCMARK flags can be set.
14945 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014946 if ((flags & (SP_END | SP_SUBPAT)) != 0
14947 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar231334e2005-07-25 20:46:57 +000014948 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014949 EMSG2(_(e_invarg2), get_tv_string(&argvars[3]));
Bram Moolenaar231334e2005-07-25 20:46:57 +000014950 goto theend;
14951 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014952
Bram Moolenaar92de73d2008-01-22 10:59:38 +000014953 /* Using 'r' implies 'W', otherwise it doesn't work. */
14954 if (flags & SP_REPEAT)
14955 p_ws = FALSE;
14956
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014957 /* Optional fifth argument: skip expression */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014958 if (argvars[3].v_type == VAR_UNKNOWN
14959 || argvars[4].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014960 skip = (char_u *)"";
14961 else
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014962 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014963 skip = get_tv_string_buf_chk(&argvars[4], nbuf3);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014964 if (argvars[5].v_type != VAR_UNKNOWN)
14965 {
14966 lnum_stop = get_tv_number_chk(&argvars[5], NULL);
14967 if (lnum_stop < 0)
14968 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014969#ifdef FEAT_RELTIME
14970 if (argvars[6].v_type != VAR_UNKNOWN)
14971 {
14972 time_limit = get_tv_number_chk(&argvars[6], NULL);
14973 if (time_limit < 0)
14974 goto theend;
14975 }
14976#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014977 }
14978 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014979 if (skip == NULL)
14980 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014981
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014982 retval = do_searchpair(spat, mpat, epat, dir, skip, flags,
Bram Moolenaar76929292008-01-06 19:07:36 +000014983 match_pos, lnum_stop, time_limit);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000014984
14985theend:
14986 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014987
14988 return retval;
14989}
14990
14991/*
14992 * "searchpair()" function
14993 */
14994 static void
14995f_searchpair(argvars, rettv)
14996 typval_T *argvars;
14997 typval_T *rettv;
14998{
14999 rettv->vval.v_number = searchpair_cmn(argvars, NULL);
15000}
15001
15002/*
15003 * "searchpairpos()" function
15004 */
15005 static void
15006f_searchpairpos(argvars, rettv)
15007 typval_T *argvars;
15008 typval_T *rettv;
15009{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015010 pos_T match_pos;
15011 int lnum = 0;
15012 int col = 0;
15013
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015014 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015015 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015016
15017 if (searchpair_cmn(argvars, &match_pos) > 0)
15018 {
15019 lnum = match_pos.lnum;
15020 col = match_pos.col;
15021 }
15022
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015023 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15024 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015025}
15026
15027/*
15028 * Search for a start/middle/end thing.
15029 * Used by searchpair(), see its documentation for the details.
15030 * Returns 0 or -1 for no match,
15031 */
15032 long
Bram Moolenaar76929292008-01-06 19:07:36 +000015033do_searchpair(spat, mpat, epat, dir, skip, flags, match_pos,
15034 lnum_stop, time_limit)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015035 char_u *spat; /* start pattern */
15036 char_u *mpat; /* middle pattern */
15037 char_u *epat; /* end pattern */
15038 int dir; /* BACKWARD or FORWARD */
15039 char_u *skip; /* skip expression */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000015040 int flags; /* SP_SETPCMARK and other SP_ values */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015041 pos_T *match_pos;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015042 linenr_T lnum_stop; /* stop at this line if not zero */
Bram Moolenaar76929292008-01-06 19:07:36 +000015043 long time_limit; /* stop after this many msec */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015044{
15045 char_u *save_cpo;
15046 char_u *pat, *pat2 = NULL, *pat3 = NULL;
15047 long retval = 0;
15048 pos_T pos;
15049 pos_T firstpos;
15050 pos_T foundpos;
15051 pos_T save_cursor;
15052 pos_T save_pos;
15053 int n;
15054 int r;
15055 int nest = 1;
15056 int err;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015057 int options = SEARCH_KEEP;
Bram Moolenaar76929292008-01-06 19:07:36 +000015058 proftime_T tm;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015059
15060 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
15061 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015062 p_cpo = empty_option;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015063
Bram Moolenaar76929292008-01-06 19:07:36 +000015064#ifdef FEAT_RELTIME
15065 /* Set the time limit, if there is one. */
15066 profile_setlimit(time_limit, &tm);
15067#endif
15068
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015069 /* Make two search patterns: start/end (pat2, for in nested pairs) and
15070 * start/middle/end (pat3, for the top pair). */
15071 pat2 = alloc((unsigned)(STRLEN(spat) + STRLEN(epat) + 15));
15072 pat3 = alloc((unsigned)(STRLEN(spat) + STRLEN(mpat) + STRLEN(epat) + 23));
15073 if (pat2 == NULL || pat3 == NULL)
15074 goto theend;
15075 sprintf((char *)pat2, "\\(%s\\m\\)\\|\\(%s\\m\\)", spat, epat);
15076 if (*mpat == NUL)
15077 STRCPY(pat3, pat2);
15078 else
15079 sprintf((char *)pat3, "\\(%s\\m\\)\\|\\(%s\\m\\)\\|\\(%s\\m\\)",
15080 spat, epat, mpat);
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015081 if (flags & SP_START)
15082 options |= SEARCH_START;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015083
Bram Moolenaar071d4272004-06-13 20:20:40 +000015084 save_cursor = curwin->w_cursor;
15085 pos = curwin->w_cursor;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000015086 clearpos(&firstpos);
15087 clearpos(&foundpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015088 pat = pat3;
15089 for (;;)
15090 {
15091 n = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000015092 options, RE_SEARCH, lnum_stop, &tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015093 if (n == FAIL || (firstpos.lnum != 0 && equalpos(pos, firstpos)))
15094 /* didn't find it or found the first match again: FAIL */
15095 break;
15096
15097 if (firstpos.lnum == 0)
15098 firstpos = pos;
Bram Moolenaarc9a2d2e2005-04-24 22:09:56 +000015099 if (equalpos(pos, foundpos))
15100 {
15101 /* Found the same position again. Can happen with a pattern that
15102 * has "\zs" at the end and searching backwards. Advance one
15103 * character and try again. */
15104 if (dir == BACKWARD)
15105 decl(&pos);
15106 else
15107 incl(&pos);
15108 }
15109 foundpos = pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015110
Bram Moolenaar92de73d2008-01-22 10:59:38 +000015111 /* clear the start flag to avoid getting stuck here */
15112 options &= ~SEARCH_START;
15113
Bram Moolenaar071d4272004-06-13 20:20:40 +000015114 /* If the skip pattern matches, ignore this match. */
15115 if (*skip != NUL)
15116 {
15117 save_pos = curwin->w_cursor;
15118 curwin->w_cursor = pos;
15119 r = eval_to_bool(skip, &err, NULL, FALSE);
15120 curwin->w_cursor = save_pos;
15121 if (err)
15122 {
15123 /* Evaluating {skip} caused an error, break here. */
15124 curwin->w_cursor = save_cursor;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015125 retval = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015126 break;
15127 }
15128 if (r)
15129 continue;
15130 }
15131
15132 if ((dir == BACKWARD && n == 3) || (dir == FORWARD && n == 2))
15133 {
15134 /* Found end when searching backwards or start when searching
15135 * forward: nested pair. */
15136 ++nest;
15137 pat = pat2; /* nested, don't search for middle */
15138 }
15139 else
15140 {
15141 /* Found end when searching forward or start when searching
15142 * backward: end of (nested) pair; or found middle in outer pair. */
15143 if (--nest == 1)
15144 pat = pat3; /* outer level, search for middle */
15145 }
15146
15147 if (nest == 0)
15148 {
15149 /* Found the match: return matchcount or line number. */
15150 if (flags & SP_RETCOUNT)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015151 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015152 else
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015153 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000015154 if (flags & SP_SETPCMARK)
15155 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000015156 curwin->w_cursor = pos;
15157 if (!(flags & SP_REPEAT))
15158 break;
15159 nest = 1; /* search for next unmatched */
15160 }
15161 }
15162
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015163 if (match_pos != NULL)
15164 {
15165 /* Store the match cursor position */
15166 match_pos->lnum = curwin->w_cursor.lnum;
15167 match_pos->col = curwin->w_cursor.col + 1;
15168 }
15169
Bram Moolenaar071d4272004-06-13 20:20:40 +000015170 /* If 'n' flag is used or search failed: restore cursor position. */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015171 if ((flags & SP_NOMOVE) || retval == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015172 curwin->w_cursor = save_cursor;
15173
15174theend:
15175 vim_free(pat2);
15176 vim_free(pat3);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015177 if (p_cpo == empty_option)
15178 p_cpo = save_cpo;
15179 else
15180 /* Darn, evaluating the {skip} expression changed the value. */
15181 free_string_option(save_cpo);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015182
15183 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015184}
15185
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015186/*
15187 * "searchpos()" function
15188 */
15189 static void
15190f_searchpos(argvars, rettv)
15191 typval_T *argvars;
15192 typval_T *rettv;
15193{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015194 pos_T match_pos;
15195 int lnum = 0;
15196 int col = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015197 int n;
15198 int flags = 0;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015199
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015200 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015201 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015202
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015203 n = search_cmn(argvars, &match_pos, &flags);
15204 if (n > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015205 {
15206 lnum = match_pos.lnum;
15207 col = match_pos.col;
15208 }
15209
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015210 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15211 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015212 if (flags & SP_SUBPAT)
15213 list_append_number(rettv->vval.v_list, (varnumber_T)n);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015214}
15215
15216
Bram Moolenaar0d660222005-01-07 21:51:51 +000015217 static void
15218f_server2client(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015219 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000015220 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015221{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015222#ifdef FEAT_CLIENTSERVER
15223 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015224 char_u *server = get_tv_string_chk(&argvars[0]);
15225 char_u *reply = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015226
Bram Moolenaar0d660222005-01-07 21:51:51 +000015227 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015228 if (server == NULL || reply == NULL)
15229 return;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015230 if (check_restricted() || check_secure())
15231 return;
15232# ifdef FEAT_X11
15233 if (check_connection() == FAIL)
15234 return;
15235# endif
15236
15237 if (serverSendReply(server, reply) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015238 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015239 EMSG(_("E258: Unable to send to client"));
15240 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015241 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015242 rettv->vval.v_number = 0;
15243#else
15244 rettv->vval.v_number = -1;
15245#endif
15246}
15247
Bram Moolenaar0d660222005-01-07 21:51:51 +000015248 static void
15249f_serverlist(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015250 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000015251 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015252{
15253 char_u *r = NULL;
15254
15255#ifdef FEAT_CLIENTSERVER
15256# ifdef WIN32
15257 r = serverGetVimNames();
15258# else
15259 make_connection();
15260 if (X_DISPLAY != NULL)
15261 r = serverGetVimNames(X_DISPLAY);
15262# endif
15263#endif
15264 rettv->v_type = VAR_STRING;
15265 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015266}
15267
15268/*
15269 * "setbufvar()" function
15270 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015271 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015272f_setbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015273 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015274 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015275{
15276 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015277 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015278 char_u *varname, *bufvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015279 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015280 char_u nbuf[NUMBUFLEN];
15281
15282 if (check_restricted() || check_secure())
15283 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015284 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
15285 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015286 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015287 varp = &argvars[2];
15288
15289 if (buf != NULL && varname != NULL && varp != NULL)
15290 {
15291 /* set curbuf to be our buf, temporarily */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015292 aucmd_prepbuf(&aco, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015293
15294 if (*varname == '&')
15295 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015296 long numval;
15297 char_u *strval;
15298 int error = FALSE;
15299
Bram Moolenaar071d4272004-06-13 20:20:40 +000015300 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015301 numval = get_tv_number_chk(varp, &error);
15302 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015303 if (!error && strval != NULL)
15304 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015305 }
15306 else
15307 {
15308 bufvarname = alloc((unsigned)STRLEN(varname) + 3);
15309 if (bufvarname != NULL)
15310 {
15311 STRCPY(bufvarname, "b:");
15312 STRCPY(bufvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015313 set_var(bufvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015314 vim_free(bufvarname);
15315 }
15316 }
15317
15318 /* reset notion of buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015319 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015320 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015321}
15322
15323/*
15324 * "setcmdpos()" function
15325 */
15326 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015327f_setcmdpos(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015328 typval_T *argvars;
15329 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015330{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015331 int pos = (int)get_tv_number(&argvars[0]) - 1;
15332
15333 if (pos >= 0)
15334 rettv->vval.v_number = set_cmdline_pos(pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015335}
15336
15337/*
15338 * "setline()" function
15339 */
15340 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015341f_setline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015342 typval_T *argvars;
15343 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015344{
15345 linenr_T lnum;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +000015346 char_u *line = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015347 list_T *l = NULL;
15348 listitem_T *li = NULL;
15349 long added = 0;
15350 linenr_T lcount = curbuf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015351
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015352 lnum = get_tv_lnum(&argvars[0]);
15353 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015354 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015355 l = argvars[1].vval.v_list;
15356 li = l->lv_first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015357 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015358 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015359 line = get_tv_string_chk(&argvars[1]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015360
Bram Moolenaar798b30b2009-04-22 10:56:16 +000015361 /* default result is zero == OK */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015362 for (;;)
15363 {
15364 if (l != NULL)
15365 {
15366 /* list argument, get next string */
15367 if (li == NULL)
15368 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015369 line = get_tv_string_chk(&li->li_tv);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015370 li = li->li_next;
15371 }
15372
15373 rettv->vval.v_number = 1; /* FAIL */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015374 if (line == NULL || lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015375 break;
15376 if (lnum <= curbuf->b_ml.ml_line_count)
15377 {
15378 /* existing line, replace it */
15379 if (u_savesub(lnum) == OK && ml_replace(lnum, line, TRUE) == OK)
15380 {
15381 changed_bytes(lnum, 0);
Bram Moolenaar87c19962007-04-26 08:54:21 +000015382 if (lnum == curwin->w_cursor.lnum)
15383 check_cursor_col();
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015384 rettv->vval.v_number = 0; /* OK */
15385 }
15386 }
15387 else if (added > 0 || u_save(lnum - 1, lnum) == OK)
15388 {
15389 /* lnum is one past the last line, append the line */
15390 ++added;
15391 if (ml_append(lnum - 1, line, (colnr_T)0, FALSE) == OK)
15392 rettv->vval.v_number = 0; /* OK */
15393 }
15394
15395 if (l == NULL) /* only one string argument */
15396 break;
15397 ++lnum;
15398 }
15399
15400 if (added > 0)
15401 appended_lines_mark(lcount, added);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015402}
15403
Bram Moolenaard9ff7d52008-03-20 12:23:49 +000015404static void set_qf_ll_list __ARGS((win_T *wp, typval_T *list_arg, typval_T *action_arg, typval_T *rettv));
15405
Bram Moolenaar071d4272004-06-13 20:20:40 +000015406/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015407 * Used by "setqflist()" and "setloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000015408 */
Bram Moolenaar2641f772005-03-25 21:58:17 +000015409 static void
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015410set_qf_ll_list(wp, list_arg, action_arg, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015411 win_T *wp UNUSED;
15412 typval_T *list_arg UNUSED;
15413 typval_T *action_arg UNUSED;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015414 typval_T *rettv;
15415{
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015416#ifdef FEAT_QUICKFIX
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015417 char_u *act;
15418 int action = ' ';
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015419#endif
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015420
Bram Moolenaar2641f772005-03-25 21:58:17 +000015421 rettv->vval.v_number = -1;
15422
15423#ifdef FEAT_QUICKFIX
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015424 if (list_arg->v_type != VAR_LIST)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015425 EMSG(_(e_listreq));
15426 else
15427 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015428 list_T *l = list_arg->vval.v_list;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015429
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015430 if (action_arg->v_type == VAR_STRING)
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015431 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015432 act = get_tv_string_chk(action_arg);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015433 if (act == NULL)
15434 return; /* type error; errmsg already given */
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015435 if (*act == 'a' || *act == 'r')
15436 action = *act;
15437 }
15438
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015439 if (l != NULL && set_errorlist(wp, l, action) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015440 rettv->vval.v_number = 0;
15441 }
15442#endif
15443}
15444
15445/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015446 * "setloclist()" function
15447 */
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015448 static void
15449f_setloclist(argvars, rettv)
15450 typval_T *argvars;
15451 typval_T *rettv;
15452{
15453 win_T *win;
15454
15455 rettv->vval.v_number = -1;
15456
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015457 win = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015458 if (win != NULL)
15459 set_qf_ll_list(win, &argvars[1], &argvars[2], rettv);
15460}
15461
15462/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000015463 * "setmatches()" function
15464 */
15465 static void
15466f_setmatches(argvars, rettv)
15467 typval_T *argvars;
15468 typval_T *rettv;
15469{
15470#ifdef FEAT_SEARCH_EXTRA
15471 list_T *l;
15472 listitem_T *li;
15473 dict_T *d;
15474
15475 rettv->vval.v_number = -1;
15476 if (argvars[0].v_type != VAR_LIST)
15477 {
15478 EMSG(_(e_listreq));
15479 return;
15480 }
15481 if ((l = argvars[0].vval.v_list) != NULL)
15482 {
15483
15484 /* To some extent make sure that we are dealing with a list from
15485 * "getmatches()". */
15486 li = l->lv_first;
15487 while (li != NULL)
15488 {
15489 if (li->li_tv.v_type != VAR_DICT
15490 || (d = li->li_tv.vval.v_dict) == NULL)
15491 {
15492 EMSG(_(e_invarg));
15493 return;
15494 }
15495 if (!(dict_find(d, (char_u *)"group", -1) != NULL
15496 && dict_find(d, (char_u *)"pattern", -1) != NULL
15497 && dict_find(d, (char_u *)"priority", -1) != NULL
15498 && dict_find(d, (char_u *)"id", -1) != NULL))
15499 {
15500 EMSG(_(e_invarg));
15501 return;
15502 }
15503 li = li->li_next;
15504 }
15505
15506 clear_matches(curwin);
15507 li = l->lv_first;
15508 while (li != NULL)
15509 {
15510 d = li->li_tv.vval.v_dict;
15511 match_add(curwin, get_dict_string(d, (char_u *)"group", FALSE),
15512 get_dict_string(d, (char_u *)"pattern", FALSE),
15513 (int)get_dict_number(d, (char_u *)"priority"),
15514 (int)get_dict_number(d, (char_u *)"id"));
15515 li = li->li_next;
15516 }
15517 rettv->vval.v_number = 0;
15518 }
15519#endif
15520}
15521
15522/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015523 * "setpos()" function
15524 */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015525 static void
15526f_setpos(argvars, rettv)
15527 typval_T *argvars;
15528 typval_T *rettv;
15529{
15530 pos_T pos;
15531 int fnum;
15532 char_u *name;
15533
Bram Moolenaar08250432008-02-13 11:42:46 +000015534 rettv->vval.v_number = -1;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015535 name = get_tv_string_chk(argvars);
15536 if (name != NULL)
15537 {
15538 if (list2fpos(&argvars[1], &pos, &fnum) == OK)
15539 {
15540 --pos.col;
Bram Moolenaar08250432008-02-13 11:42:46 +000015541 if (name[0] == '.' && name[1] == NUL)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015542 {
Bram Moolenaar08250432008-02-13 11:42:46 +000015543 /* set cursor */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015544 if (fnum == curbuf->b_fnum)
15545 {
15546 curwin->w_cursor = pos;
15547 check_cursor();
Bram Moolenaar08250432008-02-13 11:42:46 +000015548 rettv->vval.v_number = 0;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015549 }
15550 else
15551 EMSG(_(e_invarg));
15552 }
Bram Moolenaar08250432008-02-13 11:42:46 +000015553 else if (name[0] == '\'' && name[1] != NUL && name[2] == NUL)
15554 {
15555 /* set mark */
15556 if (setmark_pos(name[1], &pos, fnum) == OK)
15557 rettv->vval.v_number = 0;
15558 }
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015559 else
15560 EMSG(_(e_invarg));
15561 }
15562 }
15563}
15564
15565/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015566 * "setqflist()" function
15567 */
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015568 static void
15569f_setqflist(argvars, rettv)
15570 typval_T *argvars;
15571 typval_T *rettv;
15572{
15573 set_qf_ll_list(NULL, &argvars[0], &argvars[1], rettv);
15574}
15575
15576/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000015577 * "setreg()" function
15578 */
15579 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015580f_setreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015581 typval_T *argvars;
15582 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015583{
15584 int regname;
15585 char_u *strregname;
15586 char_u *stropt;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015587 char_u *strval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015588 int append;
15589 char_u yank_type;
15590 long block_len;
15591
15592 block_len = -1;
15593 yank_type = MAUTO;
15594 append = FALSE;
15595
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015596 strregname = get_tv_string_chk(argvars);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015597 rettv->vval.v_number = 1; /* FAIL is default */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015598
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015599 if (strregname == NULL)
15600 return; /* type error; errmsg already given */
15601 regname = *strregname;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015602 if (regname == 0 || regname == '@')
15603 regname = '"';
15604 else if (regname == '=')
15605 return;
15606
Bram Moolenaar49cd9572005-01-03 21:06:01 +000015607 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015608 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015609 stropt = get_tv_string_chk(&argvars[2]);
15610 if (stropt == NULL)
15611 return; /* type error */
15612 for (; *stropt != NUL; ++stropt)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015613 switch (*stropt)
15614 {
15615 case 'a': case 'A': /* append */
15616 append = TRUE;
15617 break;
15618 case 'v': case 'c': /* character-wise selection */
15619 yank_type = MCHAR;
15620 break;
15621 case 'V': case 'l': /* line-wise selection */
15622 yank_type = MLINE;
15623 break;
15624#ifdef FEAT_VISUAL
15625 case 'b': case Ctrl_V: /* block-wise selection */
15626 yank_type = MBLOCK;
15627 if (VIM_ISDIGIT(stropt[1]))
15628 {
15629 ++stropt;
15630 block_len = getdigits(&stropt) - 1;
15631 --stropt;
15632 }
15633 break;
15634#endif
15635 }
15636 }
15637
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015638 strval = get_tv_string_chk(&argvars[1]);
15639 if (strval != NULL)
15640 write_reg_contents_ex(regname, strval, -1,
Bram Moolenaar071d4272004-06-13 20:20:40 +000015641 append, yank_type, block_len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015642 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015643}
15644
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015645/*
15646 * "settabwinvar()" function
15647 */
15648 static void
15649f_settabwinvar(argvars, rettv)
15650 typval_T *argvars;
15651 typval_T *rettv;
15652{
15653 setwinvar(argvars, rettv, 1);
15654}
Bram Moolenaar071d4272004-06-13 20:20:40 +000015655
15656/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015657 * "setwinvar()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015658 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015659 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015660f_setwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015661 typval_T *argvars;
15662 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015663{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015664 setwinvar(argvars, rettv, 0);
15665}
15666
15667/*
15668 * "setwinvar()" and "settabwinvar()" functions
15669 */
15670 static void
15671setwinvar(argvars, rettv, off)
15672 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015673 typval_T *rettv UNUSED;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015674 int off;
15675{
Bram Moolenaar071d4272004-06-13 20:20:40 +000015676 win_T *win;
15677#ifdef FEAT_WINDOWS
15678 win_T *save_curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015679 tabpage_T *save_curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015680#endif
15681 char_u *varname, *winvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015682 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015683 char_u nbuf[NUMBUFLEN];
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015684 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015685
15686 if (check_restricted() || check_secure())
15687 return;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015688
15689#ifdef FEAT_WINDOWS
15690 if (off == 1)
15691 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
15692 else
15693 tp = curtab;
15694#endif
15695 win = find_win_by_nr(&argvars[off], tp);
15696 varname = get_tv_string_chk(&argvars[off + 1]);
15697 varp = &argvars[off + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015698
15699 if (win != NULL && varname != NULL && varp != NULL)
15700 {
15701#ifdef FEAT_WINDOWS
15702 /* set curwin to be our win, temporarily */
15703 save_curwin = curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015704 save_curtab = curtab;
15705 goto_tabpage_tp(tp);
15706 if (!win_valid(win))
15707 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015708 curwin = win;
15709 curbuf = curwin->w_buffer;
15710#endif
15711
15712 if (*varname == '&')
15713 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015714 long numval;
15715 char_u *strval;
15716 int error = FALSE;
15717
Bram Moolenaar071d4272004-06-13 20:20:40 +000015718 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015719 numval = get_tv_number_chk(varp, &error);
15720 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015721 if (!error && strval != NULL)
15722 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015723 }
15724 else
15725 {
15726 winvarname = alloc((unsigned)STRLEN(varname) + 3);
15727 if (winvarname != NULL)
15728 {
15729 STRCPY(winvarname, "w:");
15730 STRCPY(winvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015731 set_var(winvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015732 vim_free(winvarname);
15733 }
15734 }
15735
15736#ifdef FEAT_WINDOWS
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015737 /* Restore current tabpage and window, if still valid (autocomands can
15738 * make them invalid). */
15739 if (valid_tabpage(save_curtab))
15740 goto_tabpage_tp(save_curtab);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015741 if (win_valid(save_curwin))
15742 {
15743 curwin = save_curwin;
15744 curbuf = curwin->w_buffer;
15745 }
15746#endif
15747 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015748}
15749
15750/*
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015751 * "shellescape({string})" function
15752 */
15753 static void
15754f_shellescape(argvars, rettv)
15755 typval_T *argvars;
15756 typval_T *rettv;
15757{
Bram Moolenaar05bb9532008-07-04 09:44:11 +000015758 rettv->vval.v_string = vim_strsave_shellescape(
15759 get_tv_string(&argvars[0]), non_zero_arg(&argvars[1]));
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015760 rettv->v_type = VAR_STRING;
15761}
15762
15763/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015764 * "simplify()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015765 */
15766 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015767f_simplify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015768 typval_T *argvars;
15769 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015770{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015771 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015772
Bram Moolenaar0d660222005-01-07 21:51:51 +000015773 p = get_tv_string(&argvars[0]);
15774 rettv->vval.v_string = vim_strsave(p);
15775 simplify_filename(rettv->vval.v_string); /* simplify in place */
15776 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015777}
15778
Bram Moolenaar8c8de832008-06-24 22:58:06 +000015779#ifdef FEAT_FLOAT
15780/*
15781 * "sin()" function
15782 */
15783 static void
15784f_sin(argvars, rettv)
15785 typval_T *argvars;
15786 typval_T *rettv;
15787{
15788 float_T f;
15789
15790 rettv->v_type = VAR_FLOAT;
15791 if (get_float_arg(argvars, &f) == OK)
15792 rettv->vval.v_float = sin(f);
15793 else
15794 rettv->vval.v_float = 0.0;
15795}
15796#endif
15797
Bram Moolenaar0d660222005-01-07 21:51:51 +000015798static int
15799#ifdef __BORLANDC__
15800 _RTLENTRYF
15801#endif
15802 item_compare __ARGS((const void *s1, const void *s2));
15803static int
15804#ifdef __BORLANDC__
15805 _RTLENTRYF
15806#endif
15807 item_compare2 __ARGS((const void *s1, const void *s2));
15808
15809static int item_compare_ic;
15810static char_u *item_compare_func;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015811static int item_compare_func_err;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015812#define ITEM_COMPARE_FAIL 999
15813
Bram Moolenaar071d4272004-06-13 20:20:40 +000015814/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015815 * Compare functions for f_sort() below.
Bram Moolenaar071d4272004-06-13 20:20:40 +000015816 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015817 static int
15818#ifdef __BORLANDC__
15819_RTLENTRYF
15820#endif
15821item_compare(s1, s2)
15822 const void *s1;
15823 const void *s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015824{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015825 char_u *p1, *p2;
15826 char_u *tofree1, *tofree2;
15827 int res;
15828 char_u numbuf1[NUMBUFLEN];
15829 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015830
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000015831 p1 = tv2string(&(*(listitem_T **)s1)->li_tv, &tofree1, numbuf1, 0);
15832 p2 = tv2string(&(*(listitem_T **)s2)->li_tv, &tofree2, numbuf2, 0);
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000015833 if (p1 == NULL)
15834 p1 = (char_u *)"";
15835 if (p2 == NULL)
15836 p2 = (char_u *)"";
Bram Moolenaar0d660222005-01-07 21:51:51 +000015837 if (item_compare_ic)
15838 res = STRICMP(p1, p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015839 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015840 res = STRCMP(p1, p2);
15841 vim_free(tofree1);
15842 vim_free(tofree2);
15843 return res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015844}
15845
15846 static int
Bram Moolenaar0d660222005-01-07 21:51:51 +000015847#ifdef __BORLANDC__
15848_RTLENTRYF
Bram Moolenaar071d4272004-06-13 20:20:40 +000015849#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +000015850item_compare2(s1, s2)
15851 const void *s1;
15852 const void *s2;
15853{
15854 int res;
Bram Moolenaar33570922005-01-25 22:26:29 +000015855 typval_T rettv;
Bram Moolenaareb3593b2006-04-22 22:33:57 +000015856 typval_T argv[3];
Bram Moolenaar0d660222005-01-07 21:51:51 +000015857 int dummy;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015858
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015859 /* shortcut after failure in previous call; compare all items equal */
15860 if (item_compare_func_err)
15861 return 0;
15862
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015863 /* copy the values. This is needed to be able to set v_lock to VAR_FIXED
15864 * in the copy without changing the original list items. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015865 copy_tv(&(*(listitem_T **)s1)->li_tv, &argv[0]);
15866 copy_tv(&(*(listitem_T **)s2)->li_tv, &argv[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015867
15868 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000015869 res = call_func(item_compare_func, (int)STRLEN(item_compare_func),
Bram Moolenaare9a41262005-01-15 22:18:47 +000015870 &rettv, 2, argv, 0L, 0L, &dummy, TRUE, NULL);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015871 clear_tv(&argv[0]);
15872 clear_tv(&argv[1]);
15873
15874 if (res == FAIL)
15875 res = ITEM_COMPARE_FAIL;
15876 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015877 res = get_tv_number_chk(&rettv, &item_compare_func_err);
15878 if (item_compare_func_err)
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000015879 res = ITEM_COMPARE_FAIL; /* return value has wrong type */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015880 clear_tv(&rettv);
15881 return res;
15882}
15883
15884/*
15885 * "sort({list})" function
15886 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015887 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015888f_sort(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015889 typval_T *argvars;
15890 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015891{
Bram Moolenaar33570922005-01-25 22:26:29 +000015892 list_T *l;
15893 listitem_T *li;
15894 listitem_T **ptrs;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015895 long len;
15896 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015897
Bram Moolenaar0d660222005-01-07 21:51:51 +000015898 if (argvars[0].v_type != VAR_LIST)
15899 EMSG2(_(e_listarg), "sort()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000015900 else
15901 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015902 l = argvars[0].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015903 if (l == NULL || tv_check_lock(l->lv_lock, (char_u *)"sort()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000015904 return;
15905 rettv->vval.v_list = l;
15906 rettv->v_type = VAR_LIST;
15907 ++l->lv_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015908
Bram Moolenaar0d660222005-01-07 21:51:51 +000015909 len = list_len(l);
15910 if (len <= 1)
15911 return; /* short list sorts pretty quickly */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015912
Bram Moolenaar0d660222005-01-07 21:51:51 +000015913 item_compare_ic = FALSE;
15914 item_compare_func = NULL;
15915 if (argvars[1].v_type != VAR_UNKNOWN)
15916 {
15917 if (argvars[1].v_type == VAR_FUNC)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015918 item_compare_func = argvars[1].vval.v_string;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015919 else
15920 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015921 int error = FALSE;
15922
15923 i = get_tv_number_chk(&argvars[1], &error);
15924 if (error)
15925 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015926 if (i == 1)
15927 item_compare_ic = TRUE;
15928 else
15929 item_compare_func = get_tv_string(&argvars[1]);
15930 }
15931 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015932
Bram Moolenaar0d660222005-01-07 21:51:51 +000015933 /* Make an array with each entry pointing to an item in the List. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015934 ptrs = (listitem_T **)alloc((int)(len * sizeof(listitem_T *)));
Bram Moolenaar0d660222005-01-07 21:51:51 +000015935 if (ptrs == NULL)
15936 return;
15937 i = 0;
15938 for (li = l->lv_first; li != NULL; li = li->li_next)
15939 ptrs[i++] = li;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015940
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015941 item_compare_func_err = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015942 /* test the compare function */
15943 if (item_compare_func != NULL
15944 && item_compare2((void *)&ptrs[0], (void *)&ptrs[1])
15945 == ITEM_COMPARE_FAIL)
Bram Moolenaare49b69a2005-01-08 16:11:57 +000015946 EMSG(_("E702: Sort compare function failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000015947 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015948 {
15949 /* Sort the array with item pointers. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015950 qsort((void *)ptrs, (size_t)len, sizeof(listitem_T *),
Bram Moolenaar0d660222005-01-07 21:51:51 +000015951 item_compare_func == NULL ? item_compare : item_compare2);
15952
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015953 if (!item_compare_func_err)
15954 {
15955 /* Clear the List and append the items in the sorted order. */
Bram Moolenaar52514562008-04-01 11:12:09 +000015956 l->lv_first = l->lv_last = l->lv_idx_item = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015957 l->lv_len = 0;
15958 for (i = 0; i < len; ++i)
15959 list_append(l, ptrs[i]);
15960 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015961 }
15962
15963 vim_free(ptrs);
15964 }
15965}
15966
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015967/*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015968 * "soundfold({word})" function
15969 */
15970 static void
15971f_soundfold(argvars, rettv)
15972 typval_T *argvars;
15973 typval_T *rettv;
15974{
15975 char_u *s;
15976
15977 rettv->v_type = VAR_STRING;
15978 s = get_tv_string(&argvars[0]);
Bram Moolenaar3c56a962006-03-12 22:19:04 +000015979#ifdef FEAT_SPELL
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015980 rettv->vval.v_string = eval_soundfold(s);
15981#else
15982 rettv->vval.v_string = vim_strsave(s);
15983#endif
15984}
15985
15986/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015987 * "spellbadword()" function
15988 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015989 static void
15990f_spellbadword(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015991 typval_T *argvars UNUSED;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015992 typval_T *rettv;
15993{
Bram Moolenaar4463f292005-09-25 22:20:24 +000015994 char_u *word = (char_u *)"";
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000015995 hlf_T attr = HLF_COUNT;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015996 int len = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015997
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015998 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar4463f292005-09-25 22:20:24 +000015999 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016000
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016001#ifdef FEAT_SPELL
Bram Moolenaar4463f292005-09-25 22:20:24 +000016002 if (argvars[0].v_type == VAR_UNKNOWN)
16003 {
16004 /* Find the start and length of the badly spelled word. */
16005 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, &attr);
16006 if (len != 0)
16007 word = ml_get_cursor();
16008 }
16009 else if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16010 {
16011 char_u *str = get_tv_string_chk(&argvars[0]);
16012 int capcol = -1;
16013
16014 if (str != NULL)
16015 {
16016 /* Check the argument for spelling. */
16017 while (*str != NUL)
16018 {
Bram Moolenaar4770d092006-01-12 23:22:24 +000016019 len = spell_check(curwin, str, &attr, &capcol, FALSE);
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016020 if (attr != HLF_COUNT)
Bram Moolenaar4463f292005-09-25 22:20:24 +000016021 {
16022 word = str;
16023 break;
16024 }
16025 str += len;
16026 }
16027 }
16028 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016029#endif
Bram Moolenaar4463f292005-09-25 22:20:24 +000016030
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016031 list_append_string(rettv->vval.v_list, word, len);
16032 list_append_string(rettv->vval.v_list, (char_u *)(
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016033 attr == HLF_SPB ? "bad" :
16034 attr == HLF_SPR ? "rare" :
16035 attr == HLF_SPL ? "local" :
16036 attr == HLF_SPC ? "caps" :
16037 ""), -1);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016038}
16039
16040/*
16041 * "spellsuggest()" function
16042 */
16043 static void
16044f_spellsuggest(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016045 typval_T *argvars UNUSED;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016046 typval_T *rettv;
16047{
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016048#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016049 char_u *str;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016050 int typeerr = FALSE;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016051 int maxcount;
16052 garray_T ga;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016053 int i;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016054 listitem_T *li;
16055 int need_capital = FALSE;
16056#endif
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016057
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016058 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016059 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016060
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016061#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016062 if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16063 {
16064 str = get_tv_string(&argvars[0]);
16065 if (argvars[1].v_type != VAR_UNKNOWN)
16066 {
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016067 maxcount = get_tv_number_chk(&argvars[1], &typeerr);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016068 if (maxcount <= 0)
16069 return;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016070 if (argvars[2].v_type != VAR_UNKNOWN)
16071 {
16072 need_capital = get_tv_number_chk(&argvars[2], &typeerr);
16073 if (typeerr)
16074 return;
16075 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016076 }
16077 else
16078 maxcount = 25;
16079
Bram Moolenaar4770d092006-01-12 23:22:24 +000016080 spell_suggest_list(&ga, str, maxcount, need_capital, FALSE);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016081
16082 for (i = 0; i < ga.ga_len; ++i)
16083 {
16084 str = ((char_u **)ga.ga_data)[i];
16085
16086 li = listitem_alloc();
16087 if (li == NULL)
16088 vim_free(str);
16089 else
16090 {
16091 li->li_tv.v_type = VAR_STRING;
16092 li->li_tv.v_lock = 0;
16093 li->li_tv.vval.v_string = str;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016094 list_append(rettv->vval.v_list, li);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016095 }
16096 }
16097 ga_clear(&ga);
16098 }
16099#endif
16100}
16101
Bram Moolenaar0d660222005-01-07 21:51:51 +000016102 static void
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000016103f_split(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016104 typval_T *argvars;
16105 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016106{
16107 char_u *str;
16108 char_u *end;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016109 char_u *pat = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016110 regmatch_T regmatch;
16111 char_u patbuf[NUMBUFLEN];
16112 char_u *save_cpo;
16113 int match;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016114 colnr_T col = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016115 int keepempty = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016116 int typeerr = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016117
16118 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
16119 save_cpo = p_cpo;
16120 p_cpo = (char_u *)"";
16121
16122 str = get_tv_string(&argvars[0]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016123 if (argvars[1].v_type != VAR_UNKNOWN)
16124 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016125 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16126 if (pat == NULL)
16127 typeerr = TRUE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016128 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016129 keepempty = get_tv_number_chk(&argvars[2], &typeerr);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016130 }
16131 if (pat == NULL || *pat == NUL)
16132 pat = (char_u *)"[\\x01- ]\\+";
Bram Moolenaar0d660222005-01-07 21:51:51 +000016133
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016134 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016135 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016136 if (typeerr)
16137 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016138
Bram Moolenaar0d660222005-01-07 21:51:51 +000016139 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
16140 if (regmatch.regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016141 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016142 regmatch.rm_ic = FALSE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016143 while (*str != NUL || keepempty)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016144 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016145 if (*str == NUL)
16146 match = FALSE; /* empty item at the end */
16147 else
16148 match = vim_regexec_nl(&regmatch, str, col);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016149 if (match)
16150 end = regmatch.startp[0];
16151 else
16152 end = str + STRLEN(str);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016153 if (keepempty || end > str || (rettv->vval.v_list->lv_len > 0
16154 && *str != NUL && match && end < regmatch.endp[0]))
Bram Moolenaar0d660222005-01-07 21:51:51 +000016155 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016156 if (list_append_string(rettv->vval.v_list, str,
16157 (int)(end - str)) == FAIL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016158 break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016159 }
16160 if (!match)
16161 break;
16162 /* Advance to just after the match. */
16163 if (regmatch.endp[0] > str)
16164 col = 0;
16165 else
16166 {
16167 /* Don't get stuck at the same match. */
16168#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000016169 col = (*mb_ptr2len)(regmatch.endp[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016170#else
16171 col = 1;
16172#endif
16173 }
16174 str = regmatch.endp[0];
16175 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016176
Bram Moolenaar0d660222005-01-07 21:51:51 +000016177 vim_free(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016178 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016179
Bram Moolenaar0d660222005-01-07 21:51:51 +000016180 p_cpo = save_cpo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016181}
16182
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016183#ifdef FEAT_FLOAT
16184/*
16185 * "sqrt()" function
16186 */
16187 static void
16188f_sqrt(argvars, rettv)
16189 typval_T *argvars;
16190 typval_T *rettv;
16191{
16192 float_T f;
16193
16194 rettv->v_type = VAR_FLOAT;
16195 if (get_float_arg(argvars, &f) == OK)
16196 rettv->vval.v_float = sqrt(f);
16197 else
16198 rettv->vval.v_float = 0.0;
16199}
16200
16201/*
16202 * "str2float()" function
16203 */
16204 static void
16205f_str2float(argvars, rettv)
16206 typval_T *argvars;
16207 typval_T *rettv;
16208{
16209 char_u *p = skipwhite(get_tv_string(&argvars[0]));
16210
16211 if (*p == '+')
16212 p = skipwhite(p + 1);
16213 (void)string2float(p, &rettv->vval.v_float);
16214 rettv->v_type = VAR_FLOAT;
16215}
16216#endif
16217
Bram Moolenaar2c932302006-03-18 21:42:09 +000016218/*
16219 * "str2nr()" function
16220 */
16221 static void
16222f_str2nr(argvars, rettv)
16223 typval_T *argvars;
16224 typval_T *rettv;
16225{
16226 int base = 10;
16227 char_u *p;
16228 long n;
16229
16230 if (argvars[1].v_type != VAR_UNKNOWN)
16231 {
16232 base = get_tv_number(&argvars[1]);
16233 if (base != 8 && base != 10 && base != 16)
16234 {
16235 EMSG(_(e_invarg));
16236 return;
16237 }
16238 }
16239
16240 p = skipwhite(get_tv_string(&argvars[0]));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016241 if (*p == '+')
16242 p = skipwhite(p + 1);
Bram Moolenaar2c932302006-03-18 21:42:09 +000016243 vim_str2nr(p, NULL, NULL, base == 8 ? 2 : 0, base == 16 ? 2 : 0, &n, NULL);
16244 rettv->vval.v_number = n;
16245}
16246
Bram Moolenaar071d4272004-06-13 20:20:40 +000016247#ifdef HAVE_STRFTIME
16248/*
16249 * "strftime({format}[, {time}])" function
16250 */
16251 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016252f_strftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016253 typval_T *argvars;
16254 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016255{
16256 char_u result_buf[256];
16257 struct tm *curtime;
16258 time_t seconds;
16259 char_u *p;
16260
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016261 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016262
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016263 p = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016264 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016265 seconds = time(NULL);
16266 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016267 seconds = (time_t)get_tv_number(&argvars[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016268 curtime = localtime(&seconds);
16269 /* MSVC returns NULL for an invalid value of seconds. */
16270 if (curtime == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016271 rettv->vval.v_string = vim_strsave((char_u *)_("(Invalid)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016272 else
16273 {
16274# ifdef FEAT_MBYTE
16275 vimconv_T conv;
16276 char_u *enc;
16277
16278 conv.vc_type = CONV_NONE;
16279 enc = enc_locale();
16280 convert_setup(&conv, p_enc, enc);
16281 if (conv.vc_type != CONV_NONE)
16282 p = string_convert(&conv, p, NULL);
16283# endif
16284 if (p != NULL)
16285 (void)strftime((char *)result_buf, sizeof(result_buf),
16286 (char *)p, curtime);
16287 else
16288 result_buf[0] = NUL;
16289
16290# ifdef FEAT_MBYTE
16291 if (conv.vc_type != CONV_NONE)
16292 vim_free(p);
16293 convert_setup(&conv, enc, p_enc);
16294 if (conv.vc_type != CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016295 rettv->vval.v_string = string_convert(&conv, result_buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016296 else
16297# endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016298 rettv->vval.v_string = vim_strsave(result_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016299
16300# ifdef FEAT_MBYTE
16301 /* Release conversion descriptors */
16302 convert_setup(&conv, NULL, NULL);
16303 vim_free(enc);
16304# endif
16305 }
16306}
16307#endif
16308
16309/*
16310 * "stridx()" function
16311 */
16312 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016313f_stridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016314 typval_T *argvars;
16315 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016316{
16317 char_u buf[NUMBUFLEN];
16318 char_u *needle;
16319 char_u *haystack;
Bram Moolenaar33570922005-01-25 22:26:29 +000016320 char_u *save_haystack;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016321 char_u *pos;
Bram Moolenaar33570922005-01-25 22:26:29 +000016322 int start_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016323
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016324 needle = get_tv_string_chk(&argvars[1]);
16325 save_haystack = haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar33570922005-01-25 22:26:29 +000016326 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016327 if (needle == NULL || haystack == NULL)
16328 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016329
Bram Moolenaar33570922005-01-25 22:26:29 +000016330 if (argvars[2].v_type != VAR_UNKNOWN)
16331 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016332 int error = FALSE;
16333
16334 start_idx = get_tv_number_chk(&argvars[2], &error);
16335 if (error || start_idx >= (int)STRLEN(haystack))
Bram Moolenaar33570922005-01-25 22:26:29 +000016336 return;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016337 if (start_idx >= 0)
16338 haystack += start_idx;
Bram Moolenaar33570922005-01-25 22:26:29 +000016339 }
16340
16341 pos = (char_u *)strstr((char *)haystack, (char *)needle);
16342 if (pos != NULL)
16343 rettv->vval.v_number = (varnumber_T)(pos - save_haystack);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016344}
16345
16346/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016347 * "string()" function
16348 */
16349 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016350f_string(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016351 typval_T *argvars;
16352 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016353{
16354 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000016355 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016356
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016357 rettv->v_type = VAR_STRING;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000016358 rettv->vval.v_string = tv2string(&argvars[0], &tofree, numbuf, 0);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016359 /* Make a copy if we have a value but it's not in allocated memory. */
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000016360 if (rettv->vval.v_string != NULL && tofree == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016361 rettv->vval.v_string = vim_strsave(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016362}
16363
16364/*
16365 * "strlen()" function
16366 */
16367 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016368f_strlen(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016369 typval_T *argvars;
16370 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016371{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016372 rettv->vval.v_number = (varnumber_T)(STRLEN(
16373 get_tv_string(&argvars[0])));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016374}
16375
16376/*
16377 * "strpart()" function
16378 */
16379 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016380f_strpart(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016381 typval_T *argvars;
16382 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016383{
16384 char_u *p;
16385 int n;
16386 int len;
16387 int slen;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016388 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016389
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016390 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016391 slen = (int)STRLEN(p);
16392
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016393 n = get_tv_number_chk(&argvars[1], &error);
16394 if (error)
16395 len = 0;
16396 else if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016397 len = get_tv_number(&argvars[2]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016398 else
16399 len = slen - n; /* default len: all bytes that are available. */
16400
16401 /*
16402 * Only return the overlap between the specified part and the actual
16403 * string.
16404 */
16405 if (n < 0)
16406 {
16407 len += n;
16408 n = 0;
16409 }
16410 else if (n > slen)
16411 n = slen;
16412 if (len < 0)
16413 len = 0;
16414 else if (n + len > slen)
16415 len = slen - n;
16416
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016417 rettv->v_type = VAR_STRING;
16418 rettv->vval.v_string = vim_strnsave(p + n, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016419}
16420
16421/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016422 * "strridx()" function
16423 */
16424 static void
16425f_strridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016426 typval_T *argvars;
16427 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016428{
16429 char_u buf[NUMBUFLEN];
16430 char_u *needle;
16431 char_u *haystack;
16432 char_u *rest;
16433 char_u *lastmatch = NULL;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016434 int haystack_len, end_idx;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016435
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016436 needle = get_tv_string_chk(&argvars[1]);
16437 haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016438
16439 rettv->vval.v_number = -1;
16440 if (needle == NULL || haystack == NULL)
16441 return; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016442
16443 haystack_len = (int)STRLEN(haystack);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016444 if (argvars[2].v_type != VAR_UNKNOWN)
16445 {
16446 /* Third argument: upper limit for index */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016447 end_idx = get_tv_number_chk(&argvars[2], NULL);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016448 if (end_idx < 0)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016449 return; /* can never find a match */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016450 }
16451 else
16452 end_idx = haystack_len;
16453
Bram Moolenaar0d660222005-01-07 21:51:51 +000016454 if (*needle == NUL)
Bram Moolenaar05159a02005-02-26 23:04:13 +000016455 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016456 /* Empty string matches past the end. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016457 lastmatch = haystack + end_idx;
16458 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016459 else
Bram Moolenaar532c7802005-01-27 14:44:31 +000016460 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016461 for (rest = haystack; *rest != '\0'; ++rest)
16462 {
16463 rest = (char_u *)strstr((char *)rest, (char *)needle);
Bram Moolenaar532c7802005-01-27 14:44:31 +000016464 if (rest == NULL || rest > haystack + end_idx)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016465 break;
16466 lastmatch = rest;
16467 }
Bram Moolenaar532c7802005-01-27 14:44:31 +000016468 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016469
16470 if (lastmatch == NULL)
16471 rettv->vval.v_number = -1;
16472 else
16473 rettv->vval.v_number = (varnumber_T)(lastmatch - haystack);
16474}
16475
16476/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016477 * "strtrans()" function
16478 */
16479 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016480f_strtrans(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016481 typval_T *argvars;
16482 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016483{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016484 rettv->v_type = VAR_STRING;
16485 rettv->vval.v_string = transstr(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016486}
16487
16488/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016489 * "submatch()" function
16490 */
16491 static void
16492f_submatch(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016493 typval_T *argvars;
16494 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016495{
16496 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016497 rettv->vval.v_string =
16498 reg_submatch((int)get_tv_number_chk(&argvars[0], NULL));
Bram Moolenaar0d660222005-01-07 21:51:51 +000016499}
16500
16501/*
16502 * "substitute()" function
16503 */
16504 static void
16505f_substitute(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016506 typval_T *argvars;
16507 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016508{
16509 char_u patbuf[NUMBUFLEN];
16510 char_u subbuf[NUMBUFLEN];
16511 char_u flagsbuf[NUMBUFLEN];
16512
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016513 char_u *str = get_tv_string_chk(&argvars[0]);
16514 char_u *pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16515 char_u *sub = get_tv_string_buf_chk(&argvars[2], subbuf);
16516 char_u *flg = get_tv_string_buf_chk(&argvars[3], flagsbuf);
16517
Bram Moolenaar0d660222005-01-07 21:51:51 +000016518 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016519 if (str == NULL || pat == NULL || sub == NULL || flg == NULL)
16520 rettv->vval.v_string = NULL;
16521 else
16522 rettv->vval.v_string = do_string_sub(str, pat, sub, flg);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016523}
16524
16525/*
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016526 * "synID(lnum, col, trans)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000016527 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016528 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016529f_synID(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016530 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016531 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016532{
16533 int id = 0;
16534#ifdef FEAT_SYN_HL
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016535 long lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016536 long col;
16537 int trans;
Bram Moolenaar92124a32005-06-17 22:03:40 +000016538 int transerr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016539
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016540 lnum = get_tv_lnum(argvars); /* -1 on type error */
16541 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16542 trans = get_tv_number_chk(&argvars[2], &transerr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016543
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016544 if (!transerr && lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016545 && col >= 0 && col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016546 id = syn_get_id(curwin, lnum, (colnr_T)col, trans, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016547#endif
16548
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016549 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016550}
16551
16552/*
16553 * "synIDattr(id, what [, mode])" function
16554 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016555 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016556f_synIDattr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016557 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016558 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016559{
16560 char_u *p = NULL;
16561#ifdef FEAT_SYN_HL
16562 int id;
16563 char_u *what;
16564 char_u *mode;
16565 char_u modebuf[NUMBUFLEN];
16566 int modec;
16567
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016568 id = get_tv_number(&argvars[0]);
16569 what = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016570 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016571 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016572 mode = get_tv_string_buf(&argvars[2], modebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016573 modec = TOLOWER_ASC(mode[0]);
16574 if (modec != 't' && modec != 'c'
16575#ifdef FEAT_GUI
16576 && modec != 'g'
16577#endif
16578 )
16579 modec = 0; /* replace invalid with current */
16580 }
16581 else
16582 {
16583#ifdef FEAT_GUI
16584 if (gui.in_use)
16585 modec = 'g';
16586 else
16587#endif
16588 if (t_colors > 1)
16589 modec = 'c';
16590 else
16591 modec = 't';
16592 }
16593
16594
16595 switch (TOLOWER_ASC(what[0]))
16596 {
16597 case 'b':
16598 if (TOLOWER_ASC(what[1]) == 'g') /* bg[#] */
16599 p = highlight_color(id, what, modec);
16600 else /* bold */
16601 p = highlight_has_attr(id, HL_BOLD, modec);
16602 break;
16603
16604 case 'f': /* fg[#] */
16605 p = highlight_color(id, what, modec);
16606 break;
16607
16608 case 'i':
16609 if (TOLOWER_ASC(what[1]) == 'n') /* inverse */
16610 p = highlight_has_attr(id, HL_INVERSE, modec);
16611 else /* italic */
16612 p = highlight_has_attr(id, HL_ITALIC, modec);
16613 break;
16614
16615 case 'n': /* name */
16616 p = get_highlight_name(NULL, id - 1);
16617 break;
16618
16619 case 'r': /* reverse */
16620 p = highlight_has_attr(id, HL_INVERSE, modec);
16621 break;
16622
Bram Moolenaar6f507d62008-11-28 10:16:05 +000016623 case 's':
16624 if (TOLOWER_ASC(what[1]) == 'p') /* sp[#] */
16625 p = highlight_color(id, what, modec);
16626 else /* standout */
16627 p = highlight_has_attr(id, HL_STANDOUT, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016628 break;
16629
Bram Moolenaar5b743bf2005-03-15 22:50:43 +000016630 case 'u':
16631 if (STRLEN(what) <= 5 || TOLOWER_ASC(what[5]) != 'c')
16632 /* underline */
16633 p = highlight_has_attr(id, HL_UNDERLINE, modec);
16634 else
16635 /* undercurl */
16636 p = highlight_has_attr(id, HL_UNDERCURL, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016637 break;
16638 }
16639
16640 if (p != NULL)
16641 p = vim_strsave(p);
16642#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016643 rettv->v_type = VAR_STRING;
16644 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016645}
16646
16647/*
16648 * "synIDtrans(id)" function
16649 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016650 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016651f_synIDtrans(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016652 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016653 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016654{
16655 int id;
16656
16657#ifdef FEAT_SYN_HL
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016658 id = get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016659
16660 if (id > 0)
16661 id = syn_get_final_id(id);
16662 else
16663#endif
16664 id = 0;
16665
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016666 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016667}
16668
16669/*
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016670 * "synstack(lnum, col)" function
16671 */
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016672 static void
16673f_synstack(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016674 typval_T *argvars UNUSED;
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016675 typval_T *rettv;
16676{
16677#ifdef FEAT_SYN_HL
16678 long lnum;
16679 long col;
16680 int i;
16681 int id;
16682#endif
16683
16684 rettv->v_type = VAR_LIST;
16685 rettv->vval.v_list = NULL;
16686
16687#ifdef FEAT_SYN_HL
16688 lnum = get_tv_lnum(argvars); /* -1 on type error */
16689 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16690
16691 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar6cad8bd2008-09-10 13:39:10 +000016692 && col >= 0 && (col == 0 || col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016693 && rettv_list_alloc(rettv) != FAIL)
16694 {
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016695 (void)syn_get_id(curwin, lnum, (colnr_T)col, FALSE, NULL, TRUE);
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016696 for (i = 0; ; ++i)
16697 {
16698 id = syn_get_stack_item(i);
16699 if (id < 0)
16700 break;
16701 if (list_append_number(rettv->vval.v_list, id) == FAIL)
16702 break;
16703 }
16704 }
16705#endif
16706}
16707
16708/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016709 * "system()" function
16710 */
16711 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016712f_system(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016713 typval_T *argvars;
16714 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016715{
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016716 char_u *res = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016717 char_u *p;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016718 char_u *infile = NULL;
16719 char_u buf[NUMBUFLEN];
16720 int err = FALSE;
16721 FILE *fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016722
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016723 if (check_restricted() || check_secure())
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016724 goto done;
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016725
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016726 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016727 {
16728 /*
16729 * Write the string to a temp file, to be used for input of the shell
16730 * command.
16731 */
16732 if ((infile = vim_tempname('i')) == NULL)
16733 {
16734 EMSG(_(e_notmp));
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016735 goto done;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016736 }
16737
16738 fd = mch_fopen((char *)infile, WRITEBIN);
16739 if (fd == NULL)
16740 {
16741 EMSG2(_(e_notopen), infile);
16742 goto done;
16743 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016744 p = get_tv_string_buf_chk(&argvars[1], buf);
16745 if (p == NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016746 {
16747 fclose(fd);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016748 goto done; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016749 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016750 if (fwrite(p, STRLEN(p), 1, fd) != 1)
16751 err = TRUE;
16752 if (fclose(fd) != 0)
16753 err = TRUE;
16754 if (err)
16755 {
16756 EMSG(_("E677: Error writing temp file"));
16757 goto done;
16758 }
16759 }
16760
Bram Moolenaare580b0c2006-03-21 21:33:03 +000016761 res = get_cmd_output(get_tv_string(&argvars[0]), infile,
16762 SHELL_SILENT | SHELL_COOKED);
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016763
Bram Moolenaar071d4272004-06-13 20:20:40 +000016764#ifdef USE_CR
16765 /* translate <CR> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016766 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016767 {
16768 char_u *s;
16769
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016770 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016771 {
16772 if (*s == CAR)
16773 *s = NL;
16774 }
16775 }
16776#else
16777# ifdef USE_CRNL
16778 /* translate <CR><NL> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016779 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016780 {
16781 char_u *s, *d;
16782
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016783 d = res;
16784 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016785 {
16786 if (s[0] == CAR && s[1] == NL)
16787 ++s;
16788 *d++ = *s;
16789 }
16790 *d = NUL;
16791 }
16792# endif
16793#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016794
16795done:
16796 if (infile != NULL)
16797 {
16798 mch_remove(infile);
16799 vim_free(infile);
16800 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016801 rettv->v_type = VAR_STRING;
16802 rettv->vval.v_string = res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016803}
16804
16805/*
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016806 * "tabpagebuflist()" function
16807 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016808 static void
16809f_tabpagebuflist(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016810 typval_T *argvars UNUSED;
16811 typval_T *rettv UNUSED;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016812{
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016813#ifdef FEAT_WINDOWS
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016814 tabpage_T *tp;
16815 win_T *wp = NULL;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016816
16817 if (argvars[0].v_type == VAR_UNKNOWN)
16818 wp = firstwin;
16819 else
16820 {
16821 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16822 if (tp != NULL)
Bram Moolenaar238a5642006-02-21 22:12:05 +000016823 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016824 }
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016825 if (wp != NULL && rettv_list_alloc(rettv) != FAIL)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016826 {
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016827 for (; wp != NULL; wp = wp->w_next)
16828 if (list_append_number(rettv->vval.v_list,
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016829 wp->w_buffer->b_fnum) == FAIL)
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016830 break;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016831 }
16832#endif
16833}
16834
16835
16836/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016837 * "tabpagenr()" function
16838 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016839 static void
16840f_tabpagenr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016841 typval_T *argvars UNUSED;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016842 typval_T *rettv;
16843{
16844 int nr = 1;
16845#ifdef FEAT_WINDOWS
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016846 char_u *arg;
16847
16848 if (argvars[0].v_type != VAR_UNKNOWN)
16849 {
16850 arg = get_tv_string_chk(&argvars[0]);
16851 nr = 0;
16852 if (arg != NULL)
16853 {
16854 if (STRCMP(arg, "$") == 0)
Bram Moolenaara5621492006-02-25 21:55:24 +000016855 nr = tabpage_index(NULL) - 1;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016856 else
16857 EMSG2(_(e_invexpr2), arg);
16858 }
16859 }
16860 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +000016861 nr = tabpage_index(curtab);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016862#endif
16863 rettv->vval.v_number = nr;
16864}
16865
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016866
16867#ifdef FEAT_WINDOWS
16868static int get_winnr __ARGS((tabpage_T *tp, typval_T *argvar));
16869
16870/*
16871 * Common code for tabpagewinnr() and winnr().
16872 */
16873 static int
16874get_winnr(tp, argvar)
16875 tabpage_T *tp;
16876 typval_T *argvar;
16877{
16878 win_T *twin;
16879 int nr = 1;
16880 win_T *wp;
16881 char_u *arg;
16882
16883 twin = (tp == curtab) ? curwin : tp->tp_curwin;
16884 if (argvar->v_type != VAR_UNKNOWN)
16885 {
16886 arg = get_tv_string_chk(argvar);
16887 if (arg == NULL)
16888 nr = 0; /* type error; errmsg already given */
16889 else if (STRCMP(arg, "$") == 0)
16890 twin = (tp == curtab) ? lastwin : tp->tp_lastwin;
16891 else if (STRCMP(arg, "#") == 0)
16892 {
16893 twin = (tp == curtab) ? prevwin : tp->tp_prevwin;
16894 if (twin == NULL)
16895 nr = 0;
16896 }
16897 else
16898 {
16899 EMSG2(_(e_invexpr2), arg);
16900 nr = 0;
16901 }
16902 }
16903
16904 if (nr > 0)
16905 for (wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
16906 wp != twin; wp = wp->w_next)
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016907 {
16908 if (wp == NULL)
16909 {
16910 /* didn't find it in this tabpage */
16911 nr = 0;
16912 break;
16913 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016914 ++nr;
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016915 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016916 return nr;
16917}
16918#endif
16919
16920/*
16921 * "tabpagewinnr()" function
16922 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016923 static void
16924f_tabpagewinnr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016925 typval_T *argvars UNUSED;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016926 typval_T *rettv;
16927{
16928 int nr = 1;
16929#ifdef FEAT_WINDOWS
16930 tabpage_T *tp;
16931
16932 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16933 if (tp == NULL)
16934 nr = 0;
16935 else
16936 nr = get_winnr(tp, &argvars[1]);
16937#endif
16938 rettv->vval.v_number = nr;
16939}
16940
16941
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016942/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016943 * "tagfiles()" function
16944 */
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016945 static void
16946f_tagfiles(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016947 typval_T *argvars UNUSED;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016948 typval_T *rettv;
16949{
16950 char_u fname[MAXPATHL + 1];
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016951 tagname_T tn;
16952 int first;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016953
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016954 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016955 return;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016956
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016957 for (first = TRUE; ; first = FALSE)
16958 if (get_tagfname(&tn, first, fname) == FAIL
16959 || list_append_string(rettv->vval.v_list, fname, -1) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016960 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016961 tagname_free(&tn);
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016962}
16963
16964/*
Bram Moolenaare2ac10d2005-03-07 23:26:06 +000016965 * "taglist()" function
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016966 */
16967 static void
16968f_taglist(argvars, rettv)
16969 typval_T *argvars;
16970 typval_T *rettv;
16971{
16972 char_u *tag_pattern;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016973
16974 tag_pattern = get_tv_string(&argvars[0]);
16975
16976 rettv->vval.v_number = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016977 if (*tag_pattern == NUL)
16978 return;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016979
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016980 if (rettv_list_alloc(rettv) == OK)
16981 (void)get_tags(rettv->vval.v_list, tag_pattern);
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016982}
16983
16984/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016985 * "tempname()" function
16986 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016987 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016988f_tempname(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016989 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016990 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016991{
16992 static int x = 'A';
16993
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016994 rettv->v_type = VAR_STRING;
16995 rettv->vval.v_string = vim_tempname(x);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016996
16997 /* Advance 'x' to use A-Z and 0-9, so that there are at least 34 different
16998 * names. Skip 'I' and 'O', they are used for shell redirection. */
16999 do
17000 {
17001 if (x == 'Z')
17002 x = '0';
17003 else if (x == '9')
17004 x = 'A';
17005 else
17006 {
17007#ifdef EBCDIC
17008 if (x == 'I')
17009 x = 'J';
17010 else if (x == 'R')
17011 x = 'S';
17012 else
17013#endif
17014 ++x;
17015 }
17016 } while (x == 'I' || x == 'O');
17017}
17018
17019/*
Bram Moolenaard52d9742005-08-21 22:20:28 +000017020 * "test(list)" function: Just checking the walls...
17021 */
Bram Moolenaard52d9742005-08-21 22:20:28 +000017022 static void
17023f_test(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017024 typval_T *argvars UNUSED;
17025 typval_T *rettv UNUSED;
Bram Moolenaard52d9742005-08-21 22:20:28 +000017026{
17027 /* Used for unit testing. Change the code below to your liking. */
17028#if 0
17029 listitem_T *li;
17030 list_T *l;
17031 char_u *bad, *good;
17032
17033 if (argvars[0].v_type != VAR_LIST)
17034 return;
17035 l = argvars[0].vval.v_list;
17036 if (l == NULL)
17037 return;
17038 li = l->lv_first;
17039 if (li == NULL)
17040 return;
17041 bad = get_tv_string(&li->li_tv);
17042 li = li->li_next;
17043 if (li == NULL)
17044 return;
17045 good = get_tv_string(&li->li_tv);
17046 rettv->vval.v_number = test_edit_score(bad, good);
17047#endif
17048}
17049
17050/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017051 * "tolower(string)" function
17052 */
17053 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017054f_tolower(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017055 typval_T *argvars;
17056 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017057{
17058 char_u *p;
17059
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017060 p = vim_strsave(get_tv_string(&argvars[0]));
17061 rettv->v_type = VAR_STRING;
17062 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017063
17064 if (p != NULL)
17065 while (*p != NUL)
17066 {
17067#ifdef FEAT_MBYTE
17068 int l;
17069
17070 if (enc_utf8)
17071 {
17072 int c, lc;
17073
17074 c = utf_ptr2char(p);
17075 lc = utf_tolower(c);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017076 l = utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017077 /* TODO: reallocate string when byte count changes. */
17078 if (utf_char2len(lc) == l)
17079 utf_char2bytes(lc, p);
17080 p += l;
17081 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017082 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017083 p += l; /* skip multi-byte character */
17084 else
17085#endif
17086 {
17087 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
17088 ++p;
17089 }
17090 }
17091}
17092
17093/*
17094 * "toupper(string)" function
17095 */
17096 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017097f_toupper(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017098 typval_T *argvars;
17099 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017100{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017101 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017102 rettv->vval.v_string = strup_save(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000017103}
17104
17105/*
Bram Moolenaar8299df92004-07-10 09:47:34 +000017106 * "tr(string, fromstr, tostr)" function
17107 */
17108 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017109f_tr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017110 typval_T *argvars;
17111 typval_T *rettv;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017112{
17113 char_u *instr;
17114 char_u *fromstr;
17115 char_u *tostr;
17116 char_u *p;
17117#ifdef FEAT_MBYTE
Bram Moolenaar342337a2005-07-21 21:11:17 +000017118 int inlen;
17119 int fromlen;
17120 int tolen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017121 int idx;
17122 char_u *cpstr;
17123 int cplen;
17124 int first = TRUE;
17125#endif
17126 char_u buf[NUMBUFLEN];
17127 char_u buf2[NUMBUFLEN];
17128 garray_T ga;
17129
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017130 instr = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017131 fromstr = get_tv_string_buf_chk(&argvars[1], buf);
17132 tostr = get_tv_string_buf_chk(&argvars[2], buf2);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017133
17134 /* Default return value: empty string. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017135 rettv->v_type = VAR_STRING;
17136 rettv->vval.v_string = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017137 if (fromstr == NULL || tostr == NULL)
17138 return; /* type error; errmsg already given */
Bram Moolenaar8299df92004-07-10 09:47:34 +000017139 ga_init2(&ga, (int)sizeof(char), 80);
17140
17141#ifdef FEAT_MBYTE
17142 if (!has_mbyte)
17143#endif
17144 /* not multi-byte: fromstr and tostr must be the same length */
17145 if (STRLEN(fromstr) != STRLEN(tostr))
17146 {
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017147#ifdef FEAT_MBYTE
Bram Moolenaar8299df92004-07-10 09:47:34 +000017148error:
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017149#endif
Bram Moolenaar8299df92004-07-10 09:47:34 +000017150 EMSG2(_(e_invarg2), fromstr);
17151 ga_clear(&ga);
17152 return;
17153 }
17154
17155 /* fromstr and tostr have to contain the same number of chars */
17156 while (*instr != NUL)
17157 {
17158#ifdef FEAT_MBYTE
17159 if (has_mbyte)
17160 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017161 inlen = (*mb_ptr2len)(instr);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017162 cpstr = instr;
17163 cplen = inlen;
17164 idx = 0;
17165 for (p = fromstr; *p != NUL; p += fromlen)
17166 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017167 fromlen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017168 if (fromlen == inlen && STRNCMP(instr, p, inlen) == 0)
17169 {
17170 for (p = tostr; *p != NUL; p += tolen)
17171 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017172 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017173 if (idx-- == 0)
17174 {
17175 cplen = tolen;
17176 cpstr = p;
17177 break;
17178 }
17179 }
17180 if (*p == NUL) /* tostr is shorter than fromstr */
17181 goto error;
17182 break;
17183 }
17184 ++idx;
17185 }
17186
17187 if (first && cpstr == instr)
17188 {
17189 /* Check that fromstr and tostr have the same number of
17190 * (multi-byte) characters. Done only once when a character
17191 * of instr doesn't appear in fromstr. */
17192 first = FALSE;
17193 for (p = tostr; *p != NUL; p += tolen)
17194 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017195 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017196 --idx;
17197 }
17198 if (idx != 0)
17199 goto error;
17200 }
17201
17202 ga_grow(&ga, cplen);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000017203 mch_memmove((char *)ga.ga_data + ga.ga_len, cpstr, (size_t)cplen);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017204 ga.ga_len += cplen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017205
17206 instr += inlen;
17207 }
17208 else
17209#endif
17210 {
17211 /* When not using multi-byte chars we can do it faster. */
17212 p = vim_strchr(fromstr, *instr);
17213 if (p != NULL)
17214 ga_append(&ga, tostr[p - fromstr]);
17215 else
17216 ga_append(&ga, *instr);
17217 ++instr;
17218 }
17219 }
17220
Bram Moolenaar61b974b2006-12-05 09:32:29 +000017221 /* add a terminating NUL */
17222 ga_grow(&ga, 1);
17223 ga_append(&ga, NUL);
17224
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017225 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017226}
17227
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017228#ifdef FEAT_FLOAT
17229/*
17230 * "trunc({float})" function
17231 */
17232 static void
17233f_trunc(argvars, rettv)
17234 typval_T *argvars;
17235 typval_T *rettv;
17236{
17237 float_T f;
17238
17239 rettv->v_type = VAR_FLOAT;
17240 if (get_float_arg(argvars, &f) == OK)
17241 /* trunc() is not in C90, use floor() or ceil() instead. */
17242 rettv->vval.v_float = f > 0 ? floor(f) : ceil(f);
17243 else
17244 rettv->vval.v_float = 0.0;
17245}
17246#endif
17247
Bram Moolenaar8299df92004-07-10 09:47:34 +000017248/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017249 * "type(expr)" function
17250 */
17251 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017252f_type(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017253 typval_T *argvars;
17254 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017255{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017256 int n;
17257
17258 switch (argvars[0].v_type)
17259 {
17260 case VAR_NUMBER: n = 0; break;
17261 case VAR_STRING: n = 1; break;
17262 case VAR_FUNC: n = 2; break;
17263 case VAR_LIST: n = 3; break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000017264 case VAR_DICT: n = 4; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017265#ifdef FEAT_FLOAT
17266 case VAR_FLOAT: n = 5; break;
17267#endif
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017268 default: EMSG2(_(e_intern2), "f_type()"); n = 0; break;
17269 }
17270 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017271}
17272
17273/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000017274 * "values(dict)" function
17275 */
17276 static void
17277f_values(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017278 typval_T *argvars;
17279 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000017280{
17281 dict_list(argvars, rettv, 1);
17282}
17283
17284/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017285 * "virtcol(string)" function
17286 */
17287 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017288f_virtcol(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017289 typval_T *argvars;
17290 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017291{
17292 colnr_T vcol = 0;
17293 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017294 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017295
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017296 fp = var2fpos(&argvars[0], FALSE, &fnum);
17297 if (fp != NULL && fp->lnum <= curbuf->b_ml.ml_line_count
17298 && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017299 {
17300 getvvcol(curwin, fp, NULL, NULL, &vcol);
17301 ++vcol;
17302 }
17303
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017304 rettv->vval.v_number = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017305}
17306
17307/*
17308 * "visualmode()" function
17309 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017310 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017311f_visualmode(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017312 typval_T *argvars UNUSED;
17313 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017314{
17315#ifdef FEAT_VISUAL
17316 char_u str[2];
17317
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017318 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017319 str[0] = curbuf->b_visual_mode_eval;
17320 str[1] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017321 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017322
17323 /* A non-zero number or non-empty string argument: reset mode. */
Bram Moolenaar05bb9532008-07-04 09:44:11 +000017324 if (non_zero_arg(&argvars[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +000017325 curbuf->b_visual_mode_eval = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017326#endif
17327}
17328
17329/*
17330 * "winbufnr(nr)" function
17331 */
17332 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017333f_winbufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017334 typval_T *argvars;
17335 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017336{
17337 win_T *wp;
17338
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017339 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017340 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017341 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017342 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017343 rettv->vval.v_number = wp->w_buffer->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017344}
17345
17346/*
17347 * "wincol()" function
17348 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017349 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017350f_wincol(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017351 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017352 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017353{
17354 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017355 rettv->vval.v_number = curwin->w_wcol + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017356}
17357
17358/*
17359 * "winheight(nr)" function
17360 */
17361 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017362f_winheight(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017363 typval_T *argvars;
17364 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017365{
17366 win_T *wp;
17367
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017368 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017369 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017370 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017371 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017372 rettv->vval.v_number = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017373}
17374
17375/*
17376 * "winline()" function
17377 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017378 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017379f_winline(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017380 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017381 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017382{
17383 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017384 rettv->vval.v_number = curwin->w_wrow + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017385}
17386
17387/*
17388 * "winnr()" function
17389 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017390 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017391f_winnr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017392 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017393 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017394{
17395 int nr = 1;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017396
Bram Moolenaar071d4272004-06-13 20:20:40 +000017397#ifdef FEAT_WINDOWS
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017398 nr = get_winnr(curtab, &argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017399#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017400 rettv->vval.v_number = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017401}
17402
17403/*
17404 * "winrestcmd()" function
17405 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017406 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017407f_winrestcmd(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017408 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017409 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017410{
17411#ifdef FEAT_WINDOWS
17412 win_T *wp;
17413 int winnr = 1;
17414 garray_T ga;
17415 char_u buf[50];
17416
17417 ga_init2(&ga, (int)sizeof(char), 70);
17418 for (wp = firstwin; wp != NULL; wp = wp->w_next)
17419 {
17420 sprintf((char *)buf, "%dresize %d|", winnr, wp->w_height);
17421 ga_concat(&ga, buf);
17422# ifdef FEAT_VERTSPLIT
17423 sprintf((char *)buf, "vert %dresize %d|", winnr, wp->w_width);
17424 ga_concat(&ga, buf);
17425# endif
17426 ++winnr;
17427 }
Bram Moolenaar269ec652004-07-29 08:43:53 +000017428 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017429
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017430 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017431#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017432 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017433#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017434 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017435}
17436
17437/*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017438 * "winrestview()" function
17439 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017440 static void
17441f_winrestview(argvars, rettv)
17442 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017443 typval_T *rettv UNUSED;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017444{
17445 dict_T *dict;
17446
17447 if (argvars[0].v_type != VAR_DICT
17448 || (dict = argvars[0].vval.v_dict) == NULL)
17449 EMSG(_(e_invarg));
17450 else
17451 {
17452 curwin->w_cursor.lnum = get_dict_number(dict, (char_u *)"lnum");
17453 curwin->w_cursor.col = get_dict_number(dict, (char_u *)"col");
17454#ifdef FEAT_VIRTUALEDIT
17455 curwin->w_cursor.coladd = get_dict_number(dict, (char_u *)"coladd");
17456#endif
17457 curwin->w_curswant = get_dict_number(dict, (char_u *)"curswant");
Bram Moolenaar362e1a32006-03-06 23:29:24 +000017458 curwin->w_set_curswant = FALSE;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017459
Bram Moolenaar6f11a412006-09-06 20:16:42 +000017460 set_topline(curwin, get_dict_number(dict, (char_u *)"topline"));
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017461#ifdef FEAT_DIFF
17462 curwin->w_topfill = get_dict_number(dict, (char_u *)"topfill");
17463#endif
17464 curwin->w_leftcol = get_dict_number(dict, (char_u *)"leftcol");
17465 curwin->w_skipcol = get_dict_number(dict, (char_u *)"skipcol");
17466
17467 check_cursor();
17468 changed_cline_bef_curs();
17469 invalidate_botline();
17470 redraw_later(VALID);
17471
17472 if (curwin->w_topline == 0)
17473 curwin->w_topline = 1;
17474 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
17475 curwin->w_topline = curbuf->b_ml.ml_line_count;
17476#ifdef FEAT_DIFF
17477 check_topfill(curwin, TRUE);
17478#endif
17479 }
17480}
17481
17482/*
17483 * "winsaveview()" function
17484 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017485 static void
17486f_winsaveview(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017487 typval_T *argvars UNUSED;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017488 typval_T *rettv;
17489{
17490 dict_T *dict;
17491
17492 dict = dict_alloc();
17493 if (dict == NULL)
17494 return;
17495 rettv->v_type = VAR_DICT;
17496 rettv->vval.v_dict = dict;
17497 ++dict->dv_refcount;
17498
17499 dict_add_nr_str(dict, "lnum", (long)curwin->w_cursor.lnum, NULL);
17500 dict_add_nr_str(dict, "col", (long)curwin->w_cursor.col, NULL);
17501#ifdef FEAT_VIRTUALEDIT
17502 dict_add_nr_str(dict, "coladd", (long)curwin->w_cursor.coladd, NULL);
17503#endif
Bram Moolenaar9af1ba92006-08-29 19:55:53 +000017504 update_curswant();
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017505 dict_add_nr_str(dict, "curswant", (long)curwin->w_curswant, NULL);
17506
17507 dict_add_nr_str(dict, "topline", (long)curwin->w_topline, NULL);
17508#ifdef FEAT_DIFF
17509 dict_add_nr_str(dict, "topfill", (long)curwin->w_topfill, NULL);
17510#endif
17511 dict_add_nr_str(dict, "leftcol", (long)curwin->w_leftcol, NULL);
17512 dict_add_nr_str(dict, "skipcol", (long)curwin->w_skipcol, NULL);
17513}
17514
17515/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017516 * "winwidth(nr)" function
17517 */
17518 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017519f_winwidth(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017520 typval_T *argvars;
17521 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017522{
17523 win_T *wp;
17524
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017525 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017526 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017527 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017528 else
17529#ifdef FEAT_VERTSPLIT
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017530 rettv->vval.v_number = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017531#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017532 rettv->vval.v_number = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017533#endif
17534}
17535
Bram Moolenaar071d4272004-06-13 20:20:40 +000017536/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017537 * "writefile()" function
17538 */
17539 static void
17540f_writefile(argvars, rettv)
17541 typval_T *argvars;
17542 typval_T *rettv;
17543{
17544 int binary = FALSE;
17545 char_u *fname;
17546 FILE *fd;
17547 listitem_T *li;
17548 char_u *s;
17549 int ret = 0;
17550 int c;
17551
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000017552 if (check_restricted() || check_secure())
17553 return;
17554
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017555 if (argvars[0].v_type != VAR_LIST)
17556 {
17557 EMSG2(_(e_listarg), "writefile()");
17558 return;
17559 }
17560 if (argvars[0].vval.v_list == NULL)
17561 return;
17562
17563 if (argvars[2].v_type != VAR_UNKNOWN
17564 && STRCMP(get_tv_string(&argvars[2]), "b") == 0)
17565 binary = TRUE;
17566
17567 /* Always open the file in binary mode, library functions have a mind of
17568 * their own about CR-LF conversion. */
17569 fname = get_tv_string(&argvars[1]);
17570 if (*fname == NUL || (fd = mch_fopen((char *)fname, WRITEBIN)) == NULL)
17571 {
17572 EMSG2(_(e_notcreate), *fname == NUL ? (char_u *)_("<empty>") : fname);
17573 ret = -1;
17574 }
17575 else
17576 {
17577 for (li = argvars[0].vval.v_list->lv_first; li != NULL;
17578 li = li->li_next)
17579 {
17580 for (s = get_tv_string(&li->li_tv); *s != NUL; ++s)
17581 {
17582 if (*s == '\n')
17583 c = putc(NUL, fd);
17584 else
17585 c = putc(*s, fd);
17586 if (c == EOF)
17587 {
17588 ret = -1;
17589 break;
17590 }
17591 }
17592 if (!binary || li->li_next != NULL)
17593 if (putc('\n', fd) == EOF)
17594 {
17595 ret = -1;
17596 break;
17597 }
17598 if (ret < 0)
17599 {
17600 EMSG(_(e_write));
17601 break;
17602 }
17603 }
17604 fclose(fd);
17605 }
17606
17607 rettv->vval.v_number = ret;
17608}
17609
17610/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017611 * Translate a String variable into a position.
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017612 * Returns NULL when there is an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017613 */
17614 static pos_T *
Bram Moolenaar477933c2007-07-17 14:32:23 +000017615var2fpos(varp, dollar_lnum, fnum)
Bram Moolenaar33570922005-01-25 22:26:29 +000017616 typval_T *varp;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017617 int dollar_lnum; /* TRUE when $ is last line */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017618 int *fnum; /* set to fnum for '0, 'A, etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017619{
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017620 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017621 static pos_T pos;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017622 pos_T *pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017623
Bram Moolenaara5525202006-03-02 22:52:09 +000017624 /* Argument can be [lnum, col, coladd]. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017625 if (varp->v_type == VAR_LIST)
17626 {
17627 list_T *l;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017628 int len;
Bram Moolenaara5525202006-03-02 22:52:09 +000017629 int error = FALSE;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017630 listitem_T *li;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017631
17632 l = varp->vval.v_list;
17633 if (l == NULL)
17634 return NULL;
17635
17636 /* Get the line number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017637 pos.lnum = list_find_nr(l, 0L, &error);
17638 if (error || pos.lnum <= 0 || pos.lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017639 return NULL; /* invalid line number */
17640
17641 /* Get the column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017642 pos.col = list_find_nr(l, 1L, &error);
17643 if (error)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017644 return NULL;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017645 len = (long)STRLEN(ml_get(pos.lnum));
Bram Moolenaar477933c2007-07-17 14:32:23 +000017646
17647 /* We accept "$" for the column number: last column. */
17648 li = list_find(l, 1L);
17649 if (li != NULL && li->li_tv.v_type == VAR_STRING
17650 && li->li_tv.vval.v_string != NULL
17651 && STRCMP(li->li_tv.vval.v_string, "$") == 0)
17652 pos.col = len + 1;
17653
Bram Moolenaara5525202006-03-02 22:52:09 +000017654 /* Accept a position up to the NUL after the line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000017655 if (pos.col == 0 || (int)pos.col > len + 1)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017656 return NULL; /* invalid column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017657 --pos.col;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017658
Bram Moolenaara5525202006-03-02 22:52:09 +000017659#ifdef FEAT_VIRTUALEDIT
17660 /* Get the virtual offset. Defaults to zero. */
17661 pos.coladd = list_find_nr(l, 2L, &error);
17662 if (error)
17663 pos.coladd = 0;
17664#endif
17665
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017666 return &pos;
17667 }
17668
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017669 name = get_tv_string_chk(varp);
17670 if (name == NULL)
17671 return NULL;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017672 if (name[0] == '.') /* cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017673 return &curwin->w_cursor;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017674#ifdef FEAT_VISUAL
17675 if (name[0] == 'v' && name[1] == NUL) /* Visual start */
17676 {
17677 if (VIsual_active)
17678 return &VIsual;
17679 return &curwin->w_cursor;
17680 }
17681#endif
17682 if (name[0] == '\'') /* mark */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017683 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017684 pp = getmark_fnum(name[1], FALSE, fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017685 if (pp == NULL || pp == (pos_T *)-1 || pp->lnum <= 0)
17686 return NULL;
17687 return pp;
17688 }
Bram Moolenaara5525202006-03-02 22:52:09 +000017689
17690#ifdef FEAT_VIRTUALEDIT
17691 pos.coladd = 0;
17692#endif
17693
Bram Moolenaar477933c2007-07-17 14:32:23 +000017694 if (name[0] == 'w' && dollar_lnum)
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017695 {
17696 pos.col = 0;
17697 if (name[1] == '0') /* "w0": first visible line */
17698 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017699 update_topline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017700 pos.lnum = curwin->w_topline;
17701 return &pos;
17702 }
17703 else if (name[1] == '$') /* "w$": last visible line */
17704 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017705 validate_botline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017706 pos.lnum = curwin->w_botline - 1;
17707 return &pos;
17708 }
17709 }
17710 else if (name[0] == '$') /* last column or line */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017711 {
Bram Moolenaar477933c2007-07-17 14:32:23 +000017712 if (dollar_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017713 {
17714 pos.lnum = curbuf->b_ml.ml_line_count;
17715 pos.col = 0;
17716 }
17717 else
17718 {
17719 pos.lnum = curwin->w_cursor.lnum;
17720 pos.col = (colnr_T)STRLEN(ml_get_curline());
17721 }
17722 return &pos;
17723 }
17724 return NULL;
17725}
17726
17727/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017728 * Convert list in "arg" into a position and optional file number.
17729 * When "fnump" is NULL there is no file number, only 3 items.
17730 * Note that the column is passed on as-is, the caller may want to decrement
17731 * it to use 1 for the first column.
17732 * Return FAIL when conversion is not possible, doesn't check the position for
17733 * validity.
17734 */
17735 static int
17736list2fpos(arg, posp, fnump)
17737 typval_T *arg;
17738 pos_T *posp;
17739 int *fnump;
17740{
17741 list_T *l = arg->vval.v_list;
17742 long i = 0;
17743 long n;
17744
Bram Moolenaarbde35262006-07-23 20:12:24 +000017745 /* List must be: [fnum, lnum, col, coladd], where "fnum" is only there
17746 * when "fnump" isn't NULL and "coladd" is optional. */
17747 if (arg->v_type != VAR_LIST
17748 || l == NULL
17749 || l->lv_len < (fnump == NULL ? 2 : 3)
17750 || l->lv_len > (fnump == NULL ? 3 : 4))
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017751 return FAIL;
17752
17753 if (fnump != NULL)
17754 {
17755 n = list_find_nr(l, i++, NULL); /* fnum */
17756 if (n < 0)
17757 return FAIL;
17758 if (n == 0)
17759 n = curbuf->b_fnum; /* current buffer */
17760 *fnump = n;
17761 }
17762
17763 n = list_find_nr(l, i++, NULL); /* lnum */
17764 if (n < 0)
17765 return FAIL;
17766 posp->lnum = n;
17767
17768 n = list_find_nr(l, i++, NULL); /* col */
17769 if (n < 0)
17770 return FAIL;
17771 posp->col = n;
17772
17773#ifdef FEAT_VIRTUALEDIT
17774 n = list_find_nr(l, i, NULL);
17775 if (n < 0)
Bram Moolenaarbde35262006-07-23 20:12:24 +000017776 posp->coladd = 0;
17777 else
17778 posp->coladd = n;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017779#endif
17780
17781 return OK;
17782}
17783
17784/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017785 * Get the length of an environment variable name.
17786 * Advance "arg" to the first character after the name.
17787 * Return 0 for error.
17788 */
17789 static int
17790get_env_len(arg)
17791 char_u **arg;
17792{
17793 char_u *p;
17794 int len;
17795
17796 for (p = *arg; vim_isIDc(*p); ++p)
17797 ;
17798 if (p == *arg) /* no name found */
17799 return 0;
17800
17801 len = (int)(p - *arg);
17802 *arg = p;
17803 return len;
17804}
17805
17806/*
17807 * Get the length of the name of a function or internal variable.
17808 * "arg" is advanced to the first non-white character after the name.
17809 * Return 0 if something is wrong.
17810 */
17811 static int
17812get_id_len(arg)
17813 char_u **arg;
17814{
17815 char_u *p;
17816 int len;
17817
17818 /* Find the end of the name. */
17819 for (p = *arg; eval_isnamec(*p); ++p)
17820 ;
17821 if (p == *arg) /* no name found */
17822 return 0;
17823
17824 len = (int)(p - *arg);
17825 *arg = skipwhite(p);
17826
17827 return len;
17828}
17829
17830/*
Bram Moolenaara7043832005-01-21 11:56:39 +000017831 * Get the length of the name of a variable or function.
17832 * Only the name is recognized, does not handle ".key" or "[idx]".
Bram Moolenaar071d4272004-06-13 20:20:40 +000017833 * "arg" is advanced to the first non-white character after the name.
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017834 * Return -1 if curly braces expansion failed.
17835 * Return 0 if something else is wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017836 * If the name contains 'magic' {}'s, expand them and return the
17837 * expanded name in an allocated string via 'alias' - caller must free.
17838 */
17839 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017840get_name_len(arg, alias, evaluate, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017841 char_u **arg;
17842 char_u **alias;
17843 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017844 int verbose;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017845{
17846 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017847 char_u *p;
17848 char_u *expr_start;
17849 char_u *expr_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017850
17851 *alias = NULL; /* default to no alias */
17852
17853 if ((*arg)[0] == K_SPECIAL && (*arg)[1] == KS_EXTRA
17854 && (*arg)[2] == (int)KE_SNR)
17855 {
17856 /* hard coded <SNR>, already translated */
17857 *arg += 3;
17858 return get_id_len(arg) + 3;
17859 }
17860 len = eval_fname_script(*arg);
17861 if (len > 0)
17862 {
17863 /* literal "<SID>", "s:" or "<SNR>" */
17864 *arg += len;
17865 }
17866
Bram Moolenaar071d4272004-06-13 20:20:40 +000017867 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017868 * Find the end of the name; check for {} construction.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017869 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017870 p = find_name_end(*arg, &expr_start, &expr_end,
17871 len > 0 ? 0 : FNE_CHECK_START);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017872 if (expr_start != NULL)
17873 {
17874 char_u *temp_string;
17875
17876 if (!evaluate)
17877 {
17878 len += (int)(p - *arg);
17879 *arg = skipwhite(p);
17880 return len;
17881 }
17882
17883 /*
17884 * Include any <SID> etc in the expanded string:
17885 * Thus the -len here.
17886 */
17887 temp_string = make_expanded_name(*arg - len, expr_start, expr_end, p);
17888 if (temp_string == NULL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017889 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017890 *alias = temp_string;
17891 *arg = skipwhite(p);
17892 return (int)STRLEN(temp_string);
17893 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017894
17895 len += get_id_len(arg);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017896 if (len == 0 && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017897 EMSG2(_(e_invexpr2), *arg);
17898
17899 return len;
17900}
17901
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017902/*
17903 * Find the end of a variable or function name, taking care of magic braces.
17904 * If "expr_start" is not NULL then "expr_start" and "expr_end" are set to the
17905 * start and end of the first magic braces item.
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017906 * "flags" can have FNE_INCL_BR and FNE_CHECK_START.
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017907 * Return a pointer to just after the name. Equal to "arg" if there is no
17908 * valid name.
17909 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017910 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017911find_name_end(arg, expr_start, expr_end, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017912 char_u *arg;
17913 char_u **expr_start;
17914 char_u **expr_end;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017915 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017916{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017917 int mb_nest = 0;
17918 int br_nest = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017919 char_u *p;
17920
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017921 if (expr_start != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017922 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017923 *expr_start = NULL;
17924 *expr_end = NULL;
17925 }
17926
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017927 /* Quick check for valid starting character. */
17928 if ((flags & FNE_CHECK_START) && !eval_isnamec1(*arg) && *arg != '{')
17929 return arg;
17930
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017931 for (p = arg; *p != NUL
17932 && (eval_isnamec(*p)
Bram Moolenaare9a41262005-01-15 22:18:47 +000017933 || *p == '{'
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017934 || ((flags & FNE_INCL_BR) && (*p == '[' || *p == '.'))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017935 || mb_nest != 0
Bram Moolenaar8af24422005-08-08 22:06:28 +000017936 || br_nest != 0); mb_ptr_adv(p))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017937 {
Bram Moolenaar8af24422005-08-08 22:06:28 +000017938 if (*p == '\'')
17939 {
17940 /* skip over 'string' to avoid counting [ and ] inside it. */
17941 for (p = p + 1; *p != NUL && *p != '\''; mb_ptr_adv(p))
17942 ;
17943 if (*p == NUL)
17944 break;
17945 }
17946 else if (*p == '"')
17947 {
17948 /* skip over "str\"ing" to avoid counting [ and ] inside it. */
17949 for (p = p + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
17950 if (*p == '\\' && p[1] != NUL)
17951 ++p;
17952 if (*p == NUL)
17953 break;
17954 }
17955
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017956 if (mb_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017957 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017958 if (*p == '[')
17959 ++br_nest;
17960 else if (*p == ']')
17961 --br_nest;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017962 }
Bram Moolenaar8af24422005-08-08 22:06:28 +000017963
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017964 if (br_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017965 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017966 if (*p == '{')
17967 {
17968 mb_nest++;
17969 if (expr_start != NULL && *expr_start == NULL)
17970 *expr_start = p;
17971 }
17972 else if (*p == '}')
17973 {
17974 mb_nest--;
17975 if (expr_start != NULL && mb_nest == 0 && *expr_end == NULL)
17976 *expr_end = p;
17977 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017978 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017979 }
17980
17981 return p;
17982}
17983
17984/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017985 * Expands out the 'magic' {}'s in a variable/function name.
17986 * Note that this can call itself recursively, to deal with
17987 * constructs like foo{bar}{baz}{bam}
17988 * The four pointer arguments point to "foo{expre}ss{ion}bar"
17989 * "in_start" ^
17990 * "expr_start" ^
17991 * "expr_end" ^
17992 * "in_end" ^
17993 *
17994 * Returns a new allocated string, which the caller must free.
17995 * Returns NULL for failure.
17996 */
17997 static char_u *
17998make_expanded_name(in_start, expr_start, expr_end, in_end)
17999 char_u *in_start;
18000 char_u *expr_start;
18001 char_u *expr_end;
18002 char_u *in_end;
18003{
18004 char_u c1;
18005 char_u *retval = NULL;
18006 char_u *temp_result;
18007 char_u *nextcmd = NULL;
18008
18009 if (expr_end == NULL || in_end == NULL)
18010 return NULL;
18011 *expr_start = NUL;
18012 *expr_end = NUL;
18013 c1 = *in_end;
18014 *in_end = NUL;
18015
Bram Moolenaar362e1a32006-03-06 23:29:24 +000018016 temp_result = eval_to_string(expr_start + 1, &nextcmd, FALSE);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018017 if (temp_result != NULL && nextcmd == NULL)
18018 {
18019 retval = alloc((unsigned)(STRLEN(temp_result) + (expr_start - in_start)
18020 + (in_end - expr_end) + 1));
18021 if (retval != NULL)
18022 {
18023 STRCPY(retval, in_start);
18024 STRCAT(retval, temp_result);
18025 STRCAT(retval, expr_end + 1);
18026 }
18027 }
18028 vim_free(temp_result);
18029
18030 *in_end = c1; /* put char back for error messages */
18031 *expr_start = '{';
18032 *expr_end = '}';
18033
18034 if (retval != NULL)
18035 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018036 temp_result = find_name_end(retval, &expr_start, &expr_end, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018037 if (expr_start != NULL)
18038 {
18039 /* Further expansion! */
18040 temp_result = make_expanded_name(retval, expr_start,
18041 expr_end, temp_result);
18042 vim_free(retval);
18043 retval = temp_result;
18044 }
18045 }
18046
18047 return retval;
18048}
18049
18050/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018051 * Return TRUE if character "c" can be used in a variable or function name.
Bram Moolenaare9a41262005-01-15 22:18:47 +000018052 * Does not include '{' or '}' for magic braces.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018053 */
18054 static int
18055eval_isnamec(c)
18056 int c;
18057{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018058 return (ASCII_ISALNUM(c) || c == '_' || c == ':' || c == AUTOLOAD_CHAR);
18059}
18060
18061/*
18062 * Return TRUE if character "c" can be used as the first character in a
18063 * variable or function name (excluding '{' and '}').
18064 */
18065 static int
18066eval_isnamec1(c)
18067 int c;
18068{
18069 return (ASCII_ISALPHA(c) || c == '_');
Bram Moolenaar071d4272004-06-13 20:20:40 +000018070}
18071
18072/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018073 * Set number v: variable to "val".
18074 */
18075 void
18076set_vim_var_nr(idx, val)
18077 int idx;
18078 long val;
18079{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018080 vimvars[idx].vv_nr = val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018081}
18082
18083/*
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018084 * Get number v: variable value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018085 */
18086 long
18087get_vim_var_nr(idx)
18088 int idx;
18089{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018090 return vimvars[idx].vv_nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018091}
18092
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018093/*
18094 * Get string v: variable value. Uses a static buffer, can only be used once.
18095 */
18096 char_u *
18097get_vim_var_str(idx)
18098 int idx;
18099{
18100 return get_tv_string(&vimvars[idx].vv_tv);
18101}
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018102
Bram Moolenaar071d4272004-06-13 20:20:40 +000018103/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018104 * Get List v: variable value. Caller must take care of reference count when
18105 * needed.
18106 */
18107 list_T *
18108get_vim_var_list(idx)
18109 int idx;
18110{
18111 return vimvars[idx].vv_list;
18112}
18113
18114/*
Bram Moolenaarda9591e2009-09-30 13:17:02 +000018115 * Set v:char to character "c".
18116 */
18117 void
18118set_vim_var_char(c)
18119 int c;
18120{
18121#ifdef FEAT_MBYTE
18122 char_u buf[MB_MAXBYTES];
18123#else
18124 char_u buf[2];
18125#endif
18126
18127#ifdef FEAT_MBYTE
18128 if (has_mbyte)
18129 buf[(*mb_char2bytes)(c, buf)] = NUL;
18130 else
18131#endif
18132 {
18133 buf[0] = c;
18134 buf[1] = NUL;
18135 }
18136 set_vim_var_string(VV_CHAR, buf, -1);
18137}
18138
18139/*
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018140 * Set v:count to "count" and v:count1 to "count1".
18141 * When "set_prevcount" is TRUE first set v:prevcount from v:count.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018142 */
18143 void
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018144set_vcount(count, count1, set_prevcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018145 long count;
18146 long count1;
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018147 int set_prevcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018148{
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018149 if (set_prevcount)
18150 vimvars[VV_PREVCOUNT].vv_nr = vimvars[VV_COUNT].vv_nr;
Bram Moolenaare9a41262005-01-15 22:18:47 +000018151 vimvars[VV_COUNT].vv_nr = count;
18152 vimvars[VV_COUNT1].vv_nr = count1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018153}
18154
18155/*
18156 * Set string v: variable to a copy of "val".
18157 */
18158 void
18159set_vim_var_string(idx, val, len)
18160 int idx;
18161 char_u *val;
18162 int len; /* length of "val" to use or -1 (whole string) */
18163{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018164 /* Need to do this (at least) once, since we can't initialize a union.
18165 * Will always be invoked when "v:progname" is set. */
18166 vimvars[VV_VERSION].vv_nr = VIM_VERSION_100;
18167
Bram Moolenaare9a41262005-01-15 22:18:47 +000018168 vim_free(vimvars[idx].vv_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018169 if (val == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018170 vimvars[idx].vv_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018171 else if (len == -1)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018172 vimvars[idx].vv_str = vim_strsave(val);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018173 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000018174 vimvars[idx].vv_str = vim_strnsave(val, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018175}
18176
18177/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018178 * Set List v: variable to "val".
18179 */
18180 void
18181set_vim_var_list(idx, val)
18182 int idx;
18183 list_T *val;
18184{
18185 list_unref(vimvars[idx].vv_list);
18186 vimvars[idx].vv_list = val;
18187 if (val != NULL)
18188 ++val->lv_refcount;
18189}
18190
18191/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018192 * Set v:register if needed.
18193 */
18194 void
18195set_reg_var(c)
18196 int c;
18197{
18198 char_u regname;
18199
18200 if (c == 0 || c == ' ')
18201 regname = '"';
18202 else
18203 regname = c;
18204 /* Avoid free/alloc when the value is already right. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000018205 if (vimvars[VV_REG].vv_str == NULL || vimvars[VV_REG].vv_str[0] != c)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018206 set_vim_var_string(VV_REG, &regname, 1);
18207}
18208
18209/*
18210 * Get or set v:exception. If "oldval" == NULL, return the current value.
18211 * Otherwise, restore the value to "oldval" and return NULL.
18212 * Must always be called in pairs to save and restore v:exception! Does not
18213 * take care of memory allocations.
18214 */
18215 char_u *
18216v_exception(oldval)
18217 char_u *oldval;
18218{
18219 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018220 return vimvars[VV_EXCEPTION].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018221
Bram Moolenaare9a41262005-01-15 22:18:47 +000018222 vimvars[VV_EXCEPTION].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018223 return NULL;
18224}
18225
18226/*
18227 * Get or set v:throwpoint. If "oldval" == NULL, return the current value.
18228 * Otherwise, restore the value to "oldval" and return NULL.
18229 * Must always be called in pairs to save and restore v:throwpoint! Does not
18230 * take care of memory allocations.
18231 */
18232 char_u *
18233v_throwpoint(oldval)
18234 char_u *oldval;
18235{
18236 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018237 return vimvars[VV_THROWPOINT].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018238
Bram Moolenaare9a41262005-01-15 22:18:47 +000018239 vimvars[VV_THROWPOINT].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018240 return NULL;
18241}
18242
18243#if defined(FEAT_AUTOCMD) || defined(PROTO)
18244/*
18245 * Set v:cmdarg.
18246 * If "eap" != NULL, use "eap" to generate the value and return the old value.
18247 * If "oldarg" != NULL, restore the value to "oldarg" and return NULL.
18248 * Must always be called in pairs!
18249 */
18250 char_u *
18251set_cmdarg(eap, oldarg)
18252 exarg_T *eap;
18253 char_u *oldarg;
18254{
18255 char_u *oldval;
18256 char_u *newval;
18257 unsigned len;
18258
Bram Moolenaare9a41262005-01-15 22:18:47 +000018259 oldval = vimvars[VV_CMDARG].vv_str;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018260 if (eap == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018261 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018262 vim_free(oldval);
Bram Moolenaare9a41262005-01-15 22:18:47 +000018263 vimvars[VV_CMDARG].vv_str = oldarg;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018264 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018265 }
18266
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018267 if (eap->force_bin == FORCE_BIN)
18268 len = 6;
18269 else if (eap->force_bin == FORCE_NOBIN)
18270 len = 8;
18271 else
18272 len = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018273
18274 if (eap->read_edit)
18275 len += 7;
18276
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018277 if (eap->force_ff != 0)
18278 len += (unsigned)STRLEN(eap->cmd + eap->force_ff) + 6;
18279# ifdef FEAT_MBYTE
18280 if (eap->force_enc != 0)
18281 len += (unsigned)STRLEN(eap->cmd + eap->force_enc) + 7;
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018282 if (eap->bad_char != 0)
18283 len += (unsigned)STRLEN(eap->cmd + eap->bad_char) + 7;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018284# endif
18285
18286 newval = alloc(len + 1);
18287 if (newval == NULL)
18288 return NULL;
18289
18290 if (eap->force_bin == FORCE_BIN)
18291 sprintf((char *)newval, " ++bin");
18292 else if (eap->force_bin == FORCE_NOBIN)
18293 sprintf((char *)newval, " ++nobin");
18294 else
18295 *newval = NUL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018296
18297 if (eap->read_edit)
18298 STRCAT(newval, " ++edit");
18299
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018300 if (eap->force_ff != 0)
18301 sprintf((char *)newval + STRLEN(newval), " ++ff=%s",
18302 eap->cmd + eap->force_ff);
18303# ifdef FEAT_MBYTE
18304 if (eap->force_enc != 0)
18305 sprintf((char *)newval + STRLEN(newval), " ++enc=%s",
18306 eap->cmd + eap->force_enc);
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018307 if (eap->bad_char != 0)
18308 sprintf((char *)newval + STRLEN(newval), " ++bad=%s",
18309 eap->cmd + eap->bad_char);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018310# endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000018311 vimvars[VV_CMDARG].vv_str = newval;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018312 return oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018313}
18314#endif
18315
18316/*
18317 * Get the value of internal variable "name".
18318 * Return OK or FAIL.
18319 */
18320 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018321get_var_tv(name, len, rettv, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018322 char_u *name;
18323 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +000018324 typval_T *rettv; /* NULL when only checking existence */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018325 int verbose; /* may give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018326{
18327 int ret = OK;
Bram Moolenaar33570922005-01-25 22:26:29 +000018328 typval_T *tv = NULL;
18329 typval_T atv;
18330 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018331 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018332
18333 /* truncate the name, so that we can use strcmp() */
18334 cc = name[len];
18335 name[len] = NUL;
18336
18337 /*
18338 * Check for "b:changedtick".
18339 */
18340 if (STRCMP(name, "b:changedtick") == 0)
18341 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000018342 atv.v_type = VAR_NUMBER;
18343 atv.vval.v_number = curbuf->b_changedtick;
18344 tv = &atv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018345 }
18346
18347 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018348 * Check for user-defined variables.
18349 */
18350 else
18351 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018352 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018353 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018354 tv = &v->di_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018355 }
18356
Bram Moolenaare9a41262005-01-15 22:18:47 +000018357 if (tv == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018358 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018359 if (rettv != NULL && verbose)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018360 EMSG2(_(e_undefvar), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018361 ret = FAIL;
18362 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018363 else if (rettv != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018364 copy_tv(tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018365
18366 name[len] = cc;
18367
18368 return ret;
18369}
18370
18371/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018372 * Handle expr[expr], expr[expr:expr] subscript and .name lookup.
18373 * Also handle function call with Funcref variable: func(expr)
18374 * Can all be combined: dict.func(expr)[idx]['func'](expr)
18375 */
18376 static int
18377handle_subscript(arg, rettv, evaluate, verbose)
18378 char_u **arg;
18379 typval_T *rettv;
18380 int evaluate; /* do more than finding the end */
18381 int verbose; /* give error messages */
18382{
18383 int ret = OK;
18384 dict_T *selfdict = NULL;
18385 char_u *s;
18386 int len;
Bram Moolenaard9fba312005-06-26 22:34:35 +000018387 typval_T functv;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018388
18389 while (ret == OK
18390 && (**arg == '['
18391 || (**arg == '.' && rettv->v_type == VAR_DICT)
18392 || (**arg == '(' && rettv->v_type == VAR_FUNC))
18393 && !vim_iswhite(*(*arg - 1)))
18394 {
18395 if (**arg == '(')
18396 {
Bram Moolenaard9fba312005-06-26 22:34:35 +000018397 /* need to copy the funcref so that we can clear rettv */
18398 functv = *rettv;
18399 rettv->v_type = VAR_UNKNOWN;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018400
18401 /* Invoke the function. Recursive! */
Bram Moolenaard9fba312005-06-26 22:34:35 +000018402 s = functv.vval.v_string;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018403 ret = get_func_tv(s, (int)STRLEN(s), rettv, arg,
Bram Moolenaard9fba312005-06-26 22:34:35 +000018404 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
18405 &len, evaluate, selfdict);
18406
18407 /* Clear the funcref afterwards, so that deleting it while
18408 * evaluating the arguments is possible (see test55). */
18409 clear_tv(&functv);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018410
18411 /* Stop the expression evaluation when immediately aborting on
18412 * error, or when an interrupt occurred or an exception was thrown
18413 * but not caught. */
18414 if (aborting())
18415 {
18416 if (ret == OK)
18417 clear_tv(rettv);
18418 ret = FAIL;
18419 }
18420 dict_unref(selfdict);
18421 selfdict = NULL;
18422 }
18423 else /* **arg == '[' || **arg == '.' */
18424 {
18425 dict_unref(selfdict);
18426 if (rettv->v_type == VAR_DICT)
18427 {
18428 selfdict = rettv->vval.v_dict;
18429 if (selfdict != NULL)
18430 ++selfdict->dv_refcount;
18431 }
18432 else
18433 selfdict = NULL;
18434 if (eval_index(arg, rettv, evaluate, verbose) == FAIL)
18435 {
18436 clear_tv(rettv);
18437 ret = FAIL;
18438 }
18439 }
18440 }
18441 dict_unref(selfdict);
18442 return ret;
18443}
18444
18445/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018446 * Allocate memory for a variable type-value, and make it empty (0 or NULL
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018447 * value).
18448 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018449 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018450alloc_tv()
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018451{
Bram Moolenaar33570922005-01-25 22:26:29 +000018452 return (typval_T *)alloc_clear((unsigned)sizeof(typval_T));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018453}
18454
18455/*
18456 * Allocate memory for a variable type-value, and assign a string to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018457 * The string "s" must have been allocated, it is consumed.
18458 * Return NULL for out of memory, the variable otherwise.
18459 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018460 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018461alloc_string_tv(s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018462 char_u *s;
18463{
Bram Moolenaar33570922005-01-25 22:26:29 +000018464 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018465
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018466 rettv = alloc_tv();
18467 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018468 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018469 rettv->v_type = VAR_STRING;
18470 rettv->vval.v_string = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018471 }
18472 else
18473 vim_free(s);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018474 return rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018475}
18476
18477/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018478 * Free the memory for a variable type-value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018479 */
Bram Moolenaar4770d092006-01-12 23:22:24 +000018480 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018481free_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018482 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018483{
18484 if (varp != NULL)
18485 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018486 switch (varp->v_type)
18487 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018488 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018489 func_unref(varp->vval.v_string);
18490 /*FALLTHROUGH*/
18491 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018492 vim_free(varp->vval.v_string);
18493 break;
18494 case VAR_LIST:
18495 list_unref(varp->vval.v_list);
18496 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018497 case VAR_DICT:
18498 dict_unref(varp->vval.v_dict);
18499 break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000018500 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018501#ifdef FEAT_FLOAT
18502 case VAR_FLOAT:
18503#endif
Bram Moolenaar758711c2005-02-02 23:11:38 +000018504 case VAR_UNKNOWN:
18505 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018506 default:
Bram Moolenaar758711c2005-02-02 23:11:38 +000018507 EMSG2(_(e_intern2), "free_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018508 break;
18509 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018510 vim_free(varp);
18511 }
18512}
18513
18514/*
18515 * Free the memory for a variable value and set the value to NULL or 0.
18516 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018517 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018518clear_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018519 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018520{
18521 if (varp != NULL)
18522 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018523 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018524 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018525 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018526 func_unref(varp->vval.v_string);
18527 /*FALLTHROUGH*/
18528 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018529 vim_free(varp->vval.v_string);
18530 varp->vval.v_string = NULL;
18531 break;
18532 case VAR_LIST:
18533 list_unref(varp->vval.v_list);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018534 varp->vval.v_list = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018535 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018536 case VAR_DICT:
18537 dict_unref(varp->vval.v_dict);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018538 varp->vval.v_dict = NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018539 break;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018540 case VAR_NUMBER:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018541 varp->vval.v_number = 0;
18542 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018543#ifdef FEAT_FLOAT
18544 case VAR_FLOAT:
18545 varp->vval.v_float = 0.0;
18546 break;
18547#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018548 case VAR_UNKNOWN:
18549 break;
18550 default:
18551 EMSG2(_(e_intern2), "clear_tv()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000018552 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018553 varp->v_lock = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018554 }
18555}
18556
18557/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018558 * Set the value of a variable to NULL without freeing items.
18559 */
18560 static void
18561init_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018562 typval_T *varp;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018563{
18564 if (varp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018565 vim_memset(varp, 0, sizeof(typval_T));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018566}
18567
18568/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018569 * Get the number value of a variable.
18570 * If it is a String variable, uses vim_str2nr().
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018571 * For incompatible types, return 0.
18572 * get_tv_number_chk() is similar to get_tv_number(), but informs the
18573 * caller of incompatible types: it sets *denote to TRUE if "denote"
18574 * is not NULL or returns -1 otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018575 */
18576 static long
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018577get_tv_number(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018578 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018579{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018580 int error = FALSE;
18581
18582 return get_tv_number_chk(varp, &error); /* return 0L on error */
18583}
18584
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018585 long
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018586get_tv_number_chk(varp, denote)
18587 typval_T *varp;
18588 int *denote;
18589{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018590 long n = 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018591
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018592 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018593 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018594 case VAR_NUMBER:
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018595 return (long)(varp->vval.v_number);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018596#ifdef FEAT_FLOAT
18597 case VAR_FLOAT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018598 EMSG(_("E805: Using a Float as a Number"));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018599 break;
18600#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018601 case VAR_FUNC:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018602 EMSG(_("E703: Using a Funcref as a Number"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018603 break;
18604 case VAR_STRING:
18605 if (varp->vval.v_string != NULL)
18606 vim_str2nr(varp->vval.v_string, NULL, NULL,
18607 TRUE, TRUE, &n, NULL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018608 return n;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018609 case VAR_LIST:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018610 EMSG(_("E745: Using a List as a Number"));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018611 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018612 case VAR_DICT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018613 EMSG(_("E728: Using a Dictionary as a Number"));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018614 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018615 default:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018616 EMSG2(_(e_intern2), "get_tv_number()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018617 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018618 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018619 if (denote == NULL) /* useful for values that must be unsigned */
18620 n = -1;
18621 else
18622 *denote = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018623 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018624}
18625
18626/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018627 * Get the lnum from the first argument.
18628 * Also accepts ".", "$", etc., but that only works for the current buffer.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018629 * Returns -1 on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018630 */
18631 static linenr_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018632get_tv_lnum(argvars)
Bram Moolenaar33570922005-01-25 22:26:29 +000018633 typval_T *argvars;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018634{
Bram Moolenaar33570922005-01-25 22:26:29 +000018635 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018636 linenr_T lnum;
18637
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018638 lnum = get_tv_number_chk(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018639 if (lnum == 0) /* no valid number, try using line() */
18640 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018641 rettv.v_type = VAR_NUMBER;
18642 f_line(argvars, &rettv);
18643 lnum = rettv.vval.v_number;
18644 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018645 }
18646 return lnum;
18647}
18648
18649/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018650 * Get the lnum from the first argument.
18651 * Also accepts "$", then "buf" is used.
18652 * Returns 0 on error.
18653 */
18654 static linenr_T
18655get_tv_lnum_buf(argvars, buf)
18656 typval_T *argvars;
18657 buf_T *buf;
18658{
18659 if (argvars[0].v_type == VAR_STRING
18660 && argvars[0].vval.v_string != NULL
18661 && argvars[0].vval.v_string[0] == '$'
18662 && buf != NULL)
18663 return buf->b_ml.ml_line_count;
18664 return get_tv_number_chk(&argvars[0], NULL);
18665}
18666
18667/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018668 * Get the string value of a variable.
18669 * If it is a Number variable, the number is converted into a string.
Bram Moolenaara7043832005-01-21 11:56:39 +000018670 * get_tv_string() uses a single, static buffer. YOU CAN ONLY USE IT ONCE!
18671 * get_tv_string_buf() uses a given buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018672 * If the String variable has never been set, return an empty string.
18673 * Never returns NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018674 * get_tv_string_chk() and get_tv_string_buf_chk() are similar, but return
18675 * NULL on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018676 */
18677 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018678get_tv_string(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018679 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018680{
18681 static char_u mybuf[NUMBUFLEN];
18682
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018683 return get_tv_string_buf(varp, mybuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018684}
18685
18686 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018687get_tv_string_buf(varp, buf)
Bram Moolenaar33570922005-01-25 22:26:29 +000018688 typval_T *varp;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018689 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018690{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018691 char_u *res = get_tv_string_buf_chk(varp, buf);
18692
18693 return res != NULL ? res : (char_u *)"";
18694}
18695
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018696 char_u *
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018697get_tv_string_chk(varp)
18698 typval_T *varp;
18699{
18700 static char_u mybuf[NUMBUFLEN];
18701
18702 return get_tv_string_buf_chk(varp, mybuf);
18703}
18704
18705 static char_u *
18706get_tv_string_buf_chk(varp, buf)
18707 typval_T *varp;
18708 char_u *buf;
18709{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018710 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018711 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018712 case VAR_NUMBER:
18713 sprintf((char *)buf, "%ld", (long)varp->vval.v_number);
18714 return buf;
18715 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018716 EMSG(_("E729: using Funcref as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018717 break;
18718 case VAR_LIST:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018719 EMSG(_("E730: using List as a String"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000018720 break;
18721 case VAR_DICT:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018722 EMSG(_("E731: using Dictionary as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018723 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018724#ifdef FEAT_FLOAT
18725 case VAR_FLOAT:
18726 EMSG(_("E806: using Float as a String"));
18727 break;
18728#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018729 case VAR_STRING:
18730 if (varp->vval.v_string != NULL)
18731 return varp->vval.v_string;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018732 return (char_u *)"";
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018733 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018734 EMSG2(_(e_intern2), "get_tv_string_buf()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018735 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018736 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018737 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018738}
18739
18740/*
18741 * Find variable "name" in the list of variables.
18742 * Return a pointer to it if found, NULL if not found.
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018743 * Careful: "a:0" variables don't have a name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018744 * When "htp" is not NULL we are writing to the variable, set "htp" to the
Bram Moolenaar33570922005-01-25 22:26:29 +000018745 * hashtab_T used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018746 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018747 static dictitem_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018748find_var(name, htp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018749 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000018750 hashtab_T **htp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018751{
Bram Moolenaar071d4272004-06-13 20:20:40 +000018752 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000018753 hashtab_T *ht;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018754
Bram Moolenaara7043832005-01-21 11:56:39 +000018755 ht = find_var_ht(name, &varname);
18756 if (htp != NULL)
18757 *htp = ht;
18758 if (ht == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018759 return NULL;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018760 return find_var_in_ht(ht, varname, htp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018761}
18762
18763/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018764 * Find variable "varname" in hashtab "ht".
Bram Moolenaara7043832005-01-21 11:56:39 +000018765 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018766 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018767 static dictitem_T *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018768find_var_in_ht(ht, varname, writing)
Bram Moolenaar33570922005-01-25 22:26:29 +000018769 hashtab_T *ht;
Bram Moolenaara7043832005-01-21 11:56:39 +000018770 char_u *varname;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018771 int writing;
Bram Moolenaara7043832005-01-21 11:56:39 +000018772{
Bram Moolenaar33570922005-01-25 22:26:29 +000018773 hashitem_T *hi;
18774
18775 if (*varname == NUL)
18776 {
18777 /* Must be something like "s:", otherwise "ht" would be NULL. */
18778 switch (varname[-2])
18779 {
18780 case 's': return &SCRIPT_SV(current_SID).sv_var;
18781 case 'g': return &globvars_var;
18782 case 'v': return &vimvars_var;
18783 case 'b': return &curbuf->b_bufvar;
18784 case 'w': return &curwin->w_winvar;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018785#ifdef FEAT_WINDOWS
18786 case 't': return &curtab->tp_winvar;
18787#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000018788 case 'l': return current_funccal == NULL
18789 ? NULL : &current_funccal->l_vars_var;
18790 case 'a': return current_funccal == NULL
18791 ? NULL : &current_funccal->l_avars_var;
Bram Moolenaar33570922005-01-25 22:26:29 +000018792 }
18793 return NULL;
18794 }
Bram Moolenaara7043832005-01-21 11:56:39 +000018795
18796 hi = hash_find(ht, varname);
18797 if (HASHITEM_EMPTY(hi))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018798 {
18799 /* For global variables we may try auto-loading the script. If it
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018800 * worked find the variable again. Don't auto-load a script if it was
18801 * loaded already, otherwise it would be loaded every time when
18802 * checking if a function name is a Funcref variable. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018803 if (ht == &globvarht && !writing
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018804 && script_autoload(varname, FALSE) && !aborting())
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018805 hi = hash_find(ht, varname);
18806 if (HASHITEM_EMPTY(hi))
18807 return NULL;
18808 }
Bram Moolenaar33570922005-01-25 22:26:29 +000018809 return HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000018810}
18811
18812/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018813 * Find the hashtab used for a variable name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018814 * Set "varname" to the start of name without ':'.
18815 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018816 static hashtab_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018817find_var_ht(name, varname)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018818 char_u *name;
18819 char_u **varname;
18820{
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018821 hashitem_T *hi;
18822
Bram Moolenaar071d4272004-06-13 20:20:40 +000018823 if (name[1] != ':')
18824 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018825 /* The name must not start with a colon or #. */
18826 if (name[0] == ':' || name[0] == AUTOLOAD_CHAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018827 return NULL;
18828 *varname = name;
Bram Moolenaar532c7802005-01-27 14:44:31 +000018829
18830 /* "version" is "v:version" in all scopes */
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018831 hi = hash_find(&compat_hashtab, name);
18832 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar532c7802005-01-27 14:44:31 +000018833 return &compat_hashtab;
18834
Bram Moolenaar071d4272004-06-13 20:20:40 +000018835 if (current_funccal == NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018836 return &globvarht; /* global variable */
18837 return &current_funccal->l_vars.dv_hashtab; /* l: variable */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018838 }
18839 *varname = name + 2;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018840 if (*name == 'g') /* global variable */
18841 return &globvarht;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018842 /* There must be no ':' or '#' in the rest of the name, unless g: is used
18843 */
18844 if (vim_strchr(name + 2, ':') != NULL
18845 || vim_strchr(name + 2, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018846 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018847 if (*name == 'b') /* buffer variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018848 return &curbuf->b_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018849 if (*name == 'w') /* window variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018850 return &curwin->w_vars.dv_hashtab;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018851#ifdef FEAT_WINDOWS
18852 if (*name == 't') /* tab page variable */
18853 return &curtab->tp_vars.dv_hashtab;
18854#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000018855 if (*name == 'v') /* v: variable */
18856 return &vimvarht;
18857 if (*name == 'a' && current_funccal != NULL) /* function argument */
18858 return &current_funccal->l_avars.dv_hashtab;
18859 if (*name == 'l' && current_funccal != NULL) /* local function variable */
18860 return &current_funccal->l_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018861 if (*name == 's' /* script variable */
18862 && current_SID > 0 && current_SID <= ga_scripts.ga_len)
18863 return &SCRIPT_VARS(current_SID);
18864 return NULL;
18865}
18866
18867/*
18868 * Get the string value of a (global/local) variable.
18869 * Returns NULL when it doesn't exist.
18870 */
18871 char_u *
18872get_var_value(name)
18873 char_u *name;
18874{
Bram Moolenaar33570922005-01-25 22:26:29 +000018875 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018876
Bram Moolenaara7043832005-01-21 11:56:39 +000018877 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018878 if (v == NULL)
18879 return NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000018880 return get_tv_string(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018881}
18882
18883/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018884 * Allocate a new hashtab for a sourced script. It will be used while
Bram Moolenaar071d4272004-06-13 20:20:40 +000018885 * sourcing this script and when executing functions defined in the script.
18886 */
18887 void
18888new_script_vars(id)
18889 scid_T id;
18890{
Bram Moolenaara7043832005-01-21 11:56:39 +000018891 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +000018892 hashtab_T *ht;
18893 scriptvar_T *sv;
Bram Moolenaara7043832005-01-21 11:56:39 +000018894
Bram Moolenaar071d4272004-06-13 20:20:40 +000018895 if (ga_grow(&ga_scripts, (int)(id - ga_scripts.ga_len)) == OK)
18896 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018897 /* Re-allocating ga_data means that an ht_array pointing to
18898 * ht_smallarray becomes invalid. We can recognize this: ht_mask is
Bram Moolenaar33570922005-01-25 22:26:29 +000018899 * at its init value. Also reset "v_dict", it's always the same. */
Bram Moolenaara7043832005-01-21 11:56:39 +000018900 for (i = 1; i <= ga_scripts.ga_len; ++i)
18901 {
18902 ht = &SCRIPT_VARS(i);
18903 if (ht->ht_mask == HT_INIT_SIZE - 1)
18904 ht->ht_array = ht->ht_smallarray;
Bram Moolenaar33570922005-01-25 22:26:29 +000018905 sv = &SCRIPT_SV(i);
18906 sv->sv_var.di_tv.vval.v_dict = &sv->sv_dict;
Bram Moolenaara7043832005-01-21 11:56:39 +000018907 }
18908
Bram Moolenaar071d4272004-06-13 20:20:40 +000018909 while (ga_scripts.ga_len < id)
18910 {
Bram Moolenaar33570922005-01-25 22:26:29 +000018911 sv = &SCRIPT_SV(ga_scripts.ga_len + 1);
18912 init_var_dict(&sv->sv_dict, &sv->sv_var);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018913 ++ga_scripts.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018914 }
18915 }
18916}
18917
18918/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018919 * Initialize dictionary "dict" as a scope and set variable "dict_var" to
18920 * point to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018921 */
18922 void
Bram Moolenaar33570922005-01-25 22:26:29 +000018923init_var_dict(dict, dict_var)
18924 dict_T *dict;
18925 dictitem_T *dict_var;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018926{
Bram Moolenaar33570922005-01-25 22:26:29 +000018927 hash_init(&dict->dv_hashtab);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000018928 dict->dv_refcount = DO_NOT_FREE_CNT;
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +000018929 dict->dv_copyID = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000018930 dict_var->di_tv.vval.v_dict = dict;
18931 dict_var->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018932 dict_var->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000018933 dict_var->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
18934 dict_var->di_key[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018935}
18936
18937/*
18938 * Clean up a list of internal variables.
Bram Moolenaar33570922005-01-25 22:26:29 +000018939 * Frees all allocated variables and the value they contain.
18940 * Clears hashtab "ht", does not free it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018941 */
18942 void
Bram Moolenaara7043832005-01-21 11:56:39 +000018943vars_clear(ht)
Bram Moolenaar33570922005-01-25 22:26:29 +000018944 hashtab_T *ht;
18945{
18946 vars_clear_ext(ht, TRUE);
18947}
18948
18949/*
18950 * Like vars_clear(), but only free the value if "free_val" is TRUE.
18951 */
18952 static void
18953vars_clear_ext(ht, free_val)
18954 hashtab_T *ht;
18955 int free_val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018956{
Bram Moolenaara7043832005-01-21 11:56:39 +000018957 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000018958 hashitem_T *hi;
18959 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018960
Bram Moolenaar33570922005-01-25 22:26:29 +000018961 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018962 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +000018963 for (hi = ht->ht_array; todo > 0; ++hi)
18964 {
18965 if (!HASHITEM_EMPTY(hi))
18966 {
18967 --todo;
18968
Bram Moolenaar33570922005-01-25 22:26:29 +000018969 /* Free the variable. Don't remove it from the hashtab,
Bram Moolenaara7043832005-01-21 11:56:39 +000018970 * ht_array might change then. hash_clear() takes care of it
18971 * later. */
Bram Moolenaar33570922005-01-25 22:26:29 +000018972 v = HI2DI(hi);
18973 if (free_val)
18974 clear_tv(&v->di_tv);
18975 if ((v->di_flags & DI_FLAGS_FIX) == 0)
18976 vim_free(v);
Bram Moolenaara7043832005-01-21 11:56:39 +000018977 }
18978 }
18979 hash_clear(ht);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000018980 ht->ht_used = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018981}
18982
Bram Moolenaara7043832005-01-21 11:56:39 +000018983/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018984 * Delete a variable from hashtab "ht" at item "hi".
18985 * Clear the variable value and free the dictitem.
Bram Moolenaara7043832005-01-21 11:56:39 +000018986 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018987 static void
Bram Moolenaara7043832005-01-21 11:56:39 +000018988delete_var(ht, hi)
Bram Moolenaar33570922005-01-25 22:26:29 +000018989 hashtab_T *ht;
18990 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018991{
Bram Moolenaar33570922005-01-25 22:26:29 +000018992 dictitem_T *di = HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000018993
18994 hash_remove(ht, hi);
Bram Moolenaar33570922005-01-25 22:26:29 +000018995 clear_tv(&di->di_tv);
18996 vim_free(di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018997}
18998
18999/*
19000 * List the value of one internal variable.
19001 */
19002 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019003list_one_var(v, prefix, first)
Bram Moolenaar33570922005-01-25 22:26:29 +000019004 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019005 char_u *prefix;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019006 int *first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019007{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019008 char_u *tofree;
19009 char_u *s;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019010 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019011
Bram Moolenaar2c2398c2009-06-03 11:22:45 +000019012 current_copyID += COPYID_INC;
19013 s = echo_string(&v->di_tv, &tofree, numbuf, current_copyID);
Bram Moolenaar33570922005-01-25 22:26:29 +000019014 list_one_var_a(prefix, v->di_key, v->di_tv.v_type,
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019015 s == NULL ? (char_u *)"" : s, first);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019016 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019017}
19018
Bram Moolenaar071d4272004-06-13 20:20:40 +000019019 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019020list_one_var_a(prefix, name, type, string, first)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019021 char_u *prefix;
19022 char_u *name;
19023 int type;
19024 char_u *string;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019025 int *first; /* when TRUE clear rest of screen and set to FALSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019026{
Bram Moolenaar31859182007-08-14 20:41:13 +000019027 /* don't use msg() or msg_attr() to avoid overwriting "v:statusmsg" */
19028 msg_start();
19029 msg_puts(prefix);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019030 if (name != NULL) /* "a:" vars don't have a name stored */
19031 msg_puts(name);
19032 msg_putchar(' ');
19033 msg_advance(22);
19034 if (type == VAR_NUMBER)
19035 msg_putchar('#');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019036 else if (type == VAR_FUNC)
19037 msg_putchar('*');
19038 else if (type == VAR_LIST)
19039 {
19040 msg_putchar('[');
19041 if (*string == '[')
19042 ++string;
19043 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000019044 else if (type == VAR_DICT)
19045 {
19046 msg_putchar('{');
19047 if (*string == '{')
19048 ++string;
19049 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019050 else
19051 msg_putchar(' ');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019052
Bram Moolenaar071d4272004-06-13 20:20:40 +000019053 msg_outtrans(string);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019054
19055 if (type == VAR_FUNC)
19056 msg_puts((char_u *)"()");
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019057 if (*first)
19058 {
19059 msg_clr_eos();
19060 *first = FALSE;
19061 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019062}
19063
19064/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019065 * Set variable "name" to value in "tv".
Bram Moolenaar071d4272004-06-13 20:20:40 +000019066 * If the variable already exists, the value is updated.
19067 * Otherwise the variable is created.
19068 */
19069 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019070set_var(name, tv, copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019071 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000019072 typval_T *tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019073 int copy; /* make copy of value in "tv" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019074{
Bram Moolenaar33570922005-01-25 22:26:29 +000019075 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019076 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000019077 hashtab_T *ht;
Bram Moolenaar92124a32005-06-17 22:03:40 +000019078 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019079
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019080 if (tv->v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019081 {
19082 if (!(vim_strchr((char_u *)"wbs", name[0]) != NULL && name[1] == ':')
19083 && !ASCII_ISUPPER((name[0] != NUL && name[1] == ':')
19084 ? name[2] : name[0]))
19085 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019086 EMSG2(_("E704: Funcref variable name must start with a capital: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019087 return;
19088 }
19089 if (function_exists(name))
19090 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000019091 EMSG2(_("E705: Variable name conflicts with existing function: %s"),
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019092 name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019093 return;
19094 }
19095 }
19096
Bram Moolenaara7043832005-01-21 11:56:39 +000019097 ht = find_var_ht(name, &varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019098 if (ht == NULL || *varname == NUL)
Bram Moolenaara7043832005-01-21 11:56:39 +000019099 {
Bram Moolenaar92124a32005-06-17 22:03:40 +000019100 EMSG2(_(e_illvar), name);
Bram Moolenaara7043832005-01-21 11:56:39 +000019101 return;
19102 }
19103
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019104 v = find_var_in_ht(ht, varname, TRUE);
Bram Moolenaar33570922005-01-25 22:26:29 +000019105 if (v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019106 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019107 /* existing variable, need to clear the value */
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019108 if (var_check_ro(v->di_flags, name)
19109 || tv_check_lock(v->di_tv.v_lock, name))
Bram Moolenaar33570922005-01-25 22:26:29 +000019110 return;
19111 if (v->di_tv.v_type != tv->v_type
19112 && !((v->di_tv.v_type == VAR_STRING
19113 || v->di_tv.v_type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019114 && (tv->v_type == VAR_STRING
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019115 || tv->v_type == VAR_NUMBER))
19116#ifdef FEAT_FLOAT
19117 && !((v->di_tv.v_type == VAR_NUMBER
19118 || v->di_tv.v_type == VAR_FLOAT)
19119 && (tv->v_type == VAR_NUMBER
19120 || tv->v_type == VAR_FLOAT))
19121#endif
19122 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019123 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019124 EMSG2(_("E706: Variable type mismatch for: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019125 return;
19126 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019127
19128 /*
Bram Moolenaar758711c2005-02-02 23:11:38 +000019129 * Handle setting internal v: variables separately: we don't change
19130 * the type.
Bram Moolenaar33570922005-01-25 22:26:29 +000019131 */
19132 if (ht == &vimvarht)
19133 {
19134 if (v->di_tv.v_type == VAR_STRING)
19135 {
19136 vim_free(v->di_tv.vval.v_string);
19137 if (copy || tv->v_type != VAR_STRING)
19138 v->di_tv.vval.v_string = vim_strsave(get_tv_string(tv));
19139 else
19140 {
19141 /* Take over the string to avoid an extra alloc/free. */
19142 v->di_tv.vval.v_string = tv->vval.v_string;
19143 tv->vval.v_string = NULL;
19144 }
19145 }
19146 else if (v->di_tv.v_type != VAR_NUMBER)
19147 EMSG2(_(e_intern2), "set_var()");
19148 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019149 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019150 v->di_tv.vval.v_number = get_tv_number(tv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019151 if (STRCMP(varname, "searchforward") == 0)
19152 set_search_direction(v->di_tv.vval.v_number ? '/' : '?');
19153 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019154 return;
19155 }
19156
19157 clear_tv(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019158 }
19159 else /* add a new variable */
19160 {
Bram Moolenaar5fcc3fe2006-06-22 15:35:14 +000019161 /* Can't add "v:" variable. */
19162 if (ht == &vimvarht)
19163 {
19164 EMSG2(_(e_illvar), name);
19165 return;
19166 }
19167
Bram Moolenaar92124a32005-06-17 22:03:40 +000019168 /* Make sure the variable name is valid. */
19169 for (p = varname; *p != NUL; ++p)
Bram Moolenaara5792f52005-11-23 21:25:05 +000019170 if (!eval_isnamec1(*p) && (p == varname || !VIM_ISDIGIT(*p))
19171 && *p != AUTOLOAD_CHAR)
Bram Moolenaar92124a32005-06-17 22:03:40 +000019172 {
19173 EMSG2(_(e_illvar), varname);
19174 return;
19175 }
19176
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019177 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
19178 + STRLEN(varname)));
Bram Moolenaara7043832005-01-21 11:56:39 +000019179 if (v == NULL)
19180 return;
Bram Moolenaar33570922005-01-25 22:26:29 +000019181 STRCPY(v->di_key, varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019182 if (hash_add(ht, DI2HIKEY(v)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019183 {
Bram Moolenaara7043832005-01-21 11:56:39 +000019184 vim_free(v);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019185 return;
19186 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019187 v->di_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019188 }
Bram Moolenaara7043832005-01-21 11:56:39 +000019189
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019190 if (copy || tv->v_type == VAR_NUMBER || tv->v_type == VAR_FLOAT)
Bram Moolenaar33570922005-01-25 22:26:29 +000019191 copy_tv(tv, &v->di_tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019192 else
19193 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019194 v->di_tv = *tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019195 v->di_tv.v_lock = 0;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019196 init_tv(tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019197 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019198}
19199
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019200/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019201 * Return TRUE if di_flags "flags" indicates variable "name" is read-only.
Bram Moolenaar33570922005-01-25 22:26:29 +000019202 * Also give an error message.
19203 */
19204 static int
19205var_check_ro(flags, name)
19206 int flags;
19207 char_u *name;
19208{
19209 if (flags & DI_FLAGS_RO)
19210 {
19211 EMSG2(_(e_readonlyvar), name);
19212 return TRUE;
19213 }
19214 if ((flags & DI_FLAGS_RO_SBX) && sandbox)
19215 {
19216 EMSG2(_(e_readonlysbx), name);
19217 return TRUE;
19218 }
19219 return FALSE;
19220}
19221
19222/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019223 * Return TRUE if di_flags "flags" indicates variable "name" is fixed.
19224 * Also give an error message.
19225 */
19226 static int
19227var_check_fixed(flags, name)
19228 int flags;
19229 char_u *name;
19230{
19231 if (flags & DI_FLAGS_FIX)
19232 {
19233 EMSG2(_("E795: Cannot delete variable %s"), name);
19234 return TRUE;
19235 }
19236 return FALSE;
19237}
19238
19239/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019240 * Return TRUE if typeval "tv" is set to be locked (immutable).
19241 * Also give an error message, using "name".
19242 */
19243 static int
19244tv_check_lock(lock, name)
19245 int lock;
19246 char_u *name;
19247{
19248 if (lock & VAR_LOCKED)
19249 {
19250 EMSG2(_("E741: Value is locked: %s"),
19251 name == NULL ? (char_u *)_("Unknown") : name);
19252 return TRUE;
19253 }
19254 if (lock & VAR_FIXED)
19255 {
19256 EMSG2(_("E742: Cannot change value of %s"),
19257 name == NULL ? (char_u *)_("Unknown") : name);
19258 return TRUE;
19259 }
19260 return FALSE;
19261}
19262
19263/*
Bram Moolenaar33570922005-01-25 22:26:29 +000019264 * Copy the values from typval_T "from" to typval_T "to".
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019265 * When needed allocates string or increases reference count.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019266 * Does not make a copy of a list or dict but copies the reference!
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000019267 * It is OK for "from" and "to" to point to the same item. This is used to
19268 * make a copy later.
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019269 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019270 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019271copy_tv(from, to)
Bram Moolenaar33570922005-01-25 22:26:29 +000019272 typval_T *from;
19273 typval_T *to;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019274{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019275 to->v_type = from->v_type;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019276 to->v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019277 switch (from->v_type)
19278 {
19279 case VAR_NUMBER:
19280 to->vval.v_number = from->vval.v_number;
19281 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019282#ifdef FEAT_FLOAT
19283 case VAR_FLOAT:
19284 to->vval.v_float = from->vval.v_float;
19285 break;
19286#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019287 case VAR_STRING:
19288 case VAR_FUNC:
19289 if (from->vval.v_string == NULL)
19290 to->vval.v_string = NULL;
19291 else
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019292 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019293 to->vval.v_string = vim_strsave(from->vval.v_string);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019294 if (from->v_type == VAR_FUNC)
19295 func_ref(to->vval.v_string);
19296 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019297 break;
19298 case VAR_LIST:
19299 if (from->vval.v_list == NULL)
19300 to->vval.v_list = NULL;
19301 else
19302 {
19303 to->vval.v_list = from->vval.v_list;
19304 ++to->vval.v_list->lv_refcount;
19305 }
19306 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000019307 case VAR_DICT:
19308 if (from->vval.v_dict == NULL)
19309 to->vval.v_dict = NULL;
19310 else
19311 {
19312 to->vval.v_dict = from->vval.v_dict;
19313 ++to->vval.v_dict->dv_refcount;
19314 }
19315 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019316 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019317 EMSG2(_(e_intern2), "copy_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019318 break;
19319 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019320}
19321
19322/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000019323 * Make a copy of an item.
19324 * Lists and Dictionaries are also copied. A deep copy if "deep" is set.
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019325 * For deepcopy() "copyID" is zero for a full copy or the ID for when a
19326 * reference to an already copied list/dict can be used.
19327 * Returns FAIL or OK.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019328 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019329 static int
19330item_copy(from, to, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +000019331 typval_T *from;
19332 typval_T *to;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019333 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019334 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019335{
19336 static int recurse = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019337 int ret = OK;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019338
Bram Moolenaar33570922005-01-25 22:26:29 +000019339 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +000019340 {
19341 EMSG(_("E698: variable nested too deep for making a copy"));
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019342 return FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019343 }
19344 ++recurse;
19345
19346 switch (from->v_type)
19347 {
19348 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019349#ifdef FEAT_FLOAT
19350 case VAR_FLOAT:
19351#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000019352 case VAR_STRING:
19353 case VAR_FUNC:
19354 copy_tv(from, to);
19355 break;
19356 case VAR_LIST:
19357 to->v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019358 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019359 if (from->vval.v_list == NULL)
19360 to->vval.v_list = NULL;
19361 else if (copyID != 0 && from->vval.v_list->lv_copyID == copyID)
19362 {
19363 /* use the copy made earlier */
19364 to->vval.v_list = from->vval.v_list->lv_copylist;
19365 ++to->vval.v_list->lv_refcount;
19366 }
19367 else
19368 to->vval.v_list = list_copy(from->vval.v_list, deep, copyID);
19369 if (to->vval.v_list == NULL)
19370 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019371 break;
19372 case VAR_DICT:
19373 to->v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019374 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019375 if (from->vval.v_dict == NULL)
19376 to->vval.v_dict = NULL;
19377 else if (copyID != 0 && from->vval.v_dict->dv_copyID == copyID)
19378 {
19379 /* use the copy made earlier */
19380 to->vval.v_dict = from->vval.v_dict->dv_copydict;
19381 ++to->vval.v_dict->dv_refcount;
19382 }
19383 else
19384 to->vval.v_dict = dict_copy(from->vval.v_dict, deep, copyID);
19385 if (to->vval.v_dict == NULL)
19386 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019387 break;
19388 default:
19389 EMSG2(_(e_intern2), "item_copy()");
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019390 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019391 }
19392 --recurse;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019393 return ret;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019394}
19395
19396/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000019397 * ":echo expr1 ..." print each argument separated with a space, add a
19398 * newline at the end.
19399 * ":echon expr1 ..." print each argument plain.
19400 */
19401 void
19402ex_echo(eap)
19403 exarg_T *eap;
19404{
19405 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019406 typval_T rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019407 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019408 char_u *p;
19409 int needclr = TRUE;
19410 int atstart = TRUE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019411 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000019412
19413 if (eap->skip)
19414 ++emsg_skip;
19415 while (*arg != NUL && *arg != '|' && *arg != '\n' && !got_int)
19416 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019417 /* If eval1() causes an error message the text from the command may
19418 * still need to be cleared. E.g., "echo 22,44". */
19419 need_clr_eos = needclr;
19420
Bram Moolenaar071d4272004-06-13 20:20:40 +000019421 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019422 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019423 {
19424 /*
19425 * Report the invalid expression unless the expression evaluation
19426 * has been cancelled due to an aborting error, an interrupt, or an
19427 * exception.
19428 */
19429 if (!aborting())
19430 EMSG2(_(e_invexpr2), p);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019431 need_clr_eos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019432 break;
19433 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019434 need_clr_eos = FALSE;
19435
Bram Moolenaar071d4272004-06-13 20:20:40 +000019436 if (!eap->skip)
19437 {
19438 if (atstart)
19439 {
19440 atstart = FALSE;
19441 /* Call msg_start() after eval1(), evaluating the expression
19442 * may cause a message to appear. */
19443 if (eap->cmdidx == CMD_echo)
19444 msg_start();
19445 }
19446 else if (eap->cmdidx == CMD_echo)
19447 msg_puts_attr((char_u *)" ", echo_attr);
Bram Moolenaar2c2398c2009-06-03 11:22:45 +000019448 current_copyID += COPYID_INC;
19449 p = echo_string(&rettv, &tofree, numbuf, current_copyID);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019450 if (p != NULL)
19451 for ( ; *p != NUL && !got_int; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019452 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019453 if (*p == '\n' || *p == '\r' || *p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019454 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019455 if (*p != TAB && needclr)
19456 {
19457 /* remove any text still there from the command */
19458 msg_clr_eos();
19459 needclr = FALSE;
19460 }
19461 msg_putchar_attr(*p, echo_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019462 }
19463 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019464 {
19465#ifdef FEAT_MBYTE
19466 if (has_mbyte)
19467 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000019468 int i = (*mb_ptr2len)(p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019469
19470 (void)msg_outtrans_len_attr(p, i, echo_attr);
19471 p += i - 1;
19472 }
19473 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000019474#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019475 (void)msg_outtrans_len_attr(p, 1, echo_attr);
19476 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019477 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019478 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019479 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019480 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019481 arg = skipwhite(arg);
19482 }
19483 eap->nextcmd = check_nextcmd(arg);
19484
19485 if (eap->skip)
19486 --emsg_skip;
19487 else
19488 {
19489 /* remove text that may still be there from the command */
19490 if (needclr)
19491 msg_clr_eos();
19492 if (eap->cmdidx == CMD_echo)
19493 msg_end();
19494 }
19495}
19496
19497/*
19498 * ":echohl {name}".
19499 */
19500 void
19501ex_echohl(eap)
19502 exarg_T *eap;
19503{
19504 int id;
19505
19506 id = syn_name2id(eap->arg);
19507 if (id == 0)
19508 echo_attr = 0;
19509 else
19510 echo_attr = syn_id2attr(id);
19511}
19512
19513/*
19514 * ":execute expr1 ..." execute the result of an expression.
19515 * ":echomsg expr1 ..." Print a message
19516 * ":echoerr expr1 ..." Print an error
19517 * Each gets spaces around each argument and a newline at the end for
19518 * echo commands
19519 */
19520 void
19521ex_execute(eap)
19522 exarg_T *eap;
19523{
19524 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019525 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019526 int ret = OK;
19527 char_u *p;
19528 garray_T ga;
19529 int len;
19530 int save_did_emsg;
19531
19532 ga_init2(&ga, 1, 80);
19533
19534 if (eap->skip)
19535 ++emsg_skip;
19536 while (*arg != NUL && *arg != '|' && *arg != '\n')
19537 {
19538 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019539 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019540 {
19541 /*
19542 * Report the invalid expression unless the expression evaluation
19543 * has been cancelled due to an aborting error, an interrupt, or an
19544 * exception.
19545 */
19546 if (!aborting())
19547 EMSG2(_(e_invexpr2), p);
19548 ret = FAIL;
19549 break;
19550 }
19551
19552 if (!eap->skip)
19553 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019554 p = get_tv_string(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019555 len = (int)STRLEN(p);
19556 if (ga_grow(&ga, len + 2) == FAIL)
19557 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019558 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019559 ret = FAIL;
19560 break;
19561 }
19562 if (ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019563 ((char_u *)(ga.ga_data))[ga.ga_len++] = ' ';
Bram Moolenaar071d4272004-06-13 20:20:40 +000019564 STRCPY((char_u *)(ga.ga_data) + ga.ga_len, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019565 ga.ga_len += len;
19566 }
19567
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019568 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019569 arg = skipwhite(arg);
19570 }
19571
19572 if (ret != FAIL && ga.ga_data != NULL)
19573 {
19574 if (eap->cmdidx == CMD_echomsg)
Bram Moolenaar4770d092006-01-12 23:22:24 +000019575 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000019576 MSG_ATTR(ga.ga_data, echo_attr);
Bram Moolenaar4770d092006-01-12 23:22:24 +000019577 out_flush();
19578 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019579 else if (eap->cmdidx == CMD_echoerr)
19580 {
19581 /* We don't want to abort following commands, restore did_emsg. */
19582 save_did_emsg = did_emsg;
19583 EMSG((char_u *)ga.ga_data);
19584 if (!force_abort)
19585 did_emsg = save_did_emsg;
19586 }
19587 else if (eap->cmdidx == CMD_execute)
19588 do_cmdline((char_u *)ga.ga_data,
19589 eap->getline, eap->cookie, DOCMD_NOWAIT|DOCMD_VERBOSE);
19590 }
19591
19592 ga_clear(&ga);
19593
19594 if (eap->skip)
19595 --emsg_skip;
19596
19597 eap->nextcmd = check_nextcmd(arg);
19598}
19599
19600/*
19601 * Skip over the name of an option: "&option", "&g:option" or "&l:option".
19602 * "arg" points to the "&" or '+' when called, to "option" when returning.
19603 * Returns NULL when no option name found. Otherwise pointer to the char
19604 * after the option name.
19605 */
19606 static char_u *
19607find_option_end(arg, opt_flags)
19608 char_u **arg;
19609 int *opt_flags;
19610{
19611 char_u *p = *arg;
19612
19613 ++p;
19614 if (*p == 'g' && p[1] == ':')
19615 {
19616 *opt_flags = OPT_GLOBAL;
19617 p += 2;
19618 }
19619 else if (*p == 'l' && p[1] == ':')
19620 {
19621 *opt_flags = OPT_LOCAL;
19622 p += 2;
19623 }
19624 else
19625 *opt_flags = 0;
19626
19627 if (!ASCII_ISALPHA(*p))
19628 return NULL;
19629 *arg = p;
19630
19631 if (p[0] == 't' && p[1] == '_' && p[2] != NUL && p[3] != NUL)
19632 p += 4; /* termcap option */
19633 else
19634 while (ASCII_ISALPHA(*p))
19635 ++p;
19636 return p;
19637}
19638
19639/*
19640 * ":function"
19641 */
19642 void
19643ex_function(eap)
19644 exarg_T *eap;
19645{
19646 char_u *theline;
19647 int j;
19648 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019649 int saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019650 char_u *name = NULL;
19651 char_u *p;
19652 char_u *arg;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019653 char_u *line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019654 garray_T newargs;
19655 garray_T newlines;
19656 int varargs = FALSE;
19657 int mustend = FALSE;
19658 int flags = 0;
19659 ufunc_T *fp;
19660 int indent;
19661 int nesting;
19662 char_u *skip_until = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000019663 dictitem_T *v;
19664 funcdict_T fudi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019665 static int func_nr = 0; /* number for nameless function */
19666 int paren;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019667 hashtab_T *ht;
19668 int todo;
19669 hashitem_T *hi;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019670 int sourcing_lnum_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019671
19672 /*
19673 * ":function" without argument: list functions.
19674 */
19675 if (ends_excmd(*eap->arg))
19676 {
19677 if (!eap->skip)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019678 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019679 todo = (int)func_hashtab.ht_used;
Bram Moolenaar038eb0e2005-02-27 22:43:26 +000019680 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019681 {
19682 if (!HASHITEM_EMPTY(hi))
19683 {
19684 --todo;
19685 fp = HI2UF(hi);
19686 if (!isdigit(*fp->uf_name))
19687 list_func_head(fp, FALSE);
19688 }
19689 }
19690 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019691 eap->nextcmd = check_nextcmd(eap->arg);
19692 return;
19693 }
19694
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019695 /*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019696 * ":function /pat": list functions matching pattern.
19697 */
19698 if (*eap->arg == '/')
19699 {
19700 p = skip_regexp(eap->arg + 1, '/', TRUE, NULL);
19701 if (!eap->skip)
19702 {
19703 regmatch_T regmatch;
19704
19705 c = *p;
19706 *p = NUL;
19707 regmatch.regprog = vim_regcomp(eap->arg + 1, RE_MAGIC);
19708 *p = c;
19709 if (regmatch.regprog != NULL)
19710 {
19711 regmatch.rm_ic = p_ic;
19712
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019713 todo = (int)func_hashtab.ht_used;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019714 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
19715 {
19716 if (!HASHITEM_EMPTY(hi))
19717 {
19718 --todo;
19719 fp = HI2UF(hi);
19720 if (!isdigit(*fp->uf_name)
19721 && vim_regexec(&regmatch, fp->uf_name, 0))
19722 list_func_head(fp, FALSE);
19723 }
19724 }
Bram Moolenaar69f2d5a2009-04-22 14:10:39 +000019725 vim_free(regmatch.regprog);
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019726 }
19727 }
19728 if (*p == '/')
19729 ++p;
19730 eap->nextcmd = check_nextcmd(p);
19731 return;
19732 }
19733
19734 /*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019735 * Get the function name. There are these situations:
19736 * func normal function name
19737 * "name" == func, "fudi.fd_dict" == NULL
19738 * dict.func new dictionary entry
19739 * "name" == NULL, "fudi.fd_dict" set,
19740 * "fudi.fd_di" == NULL, "fudi.fd_newkey" == func
19741 * dict.func existing dict entry with a Funcref
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019742 * "name" == func, "fudi.fd_dict" set,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019743 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19744 * dict.func existing dict entry that's not a Funcref
19745 * "name" == NULL, "fudi.fd_dict" set,
19746 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19747 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019748 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019749 name = trans_function_name(&p, eap->skip, 0, &fudi);
19750 paren = (vim_strchr(p, '(') != NULL);
19751 if (name == NULL && (fudi.fd_dict == NULL || !paren) && !eap->skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019752 {
19753 /*
19754 * Return on an invalid expression in braces, unless the expression
19755 * evaluation has been cancelled due to an aborting error, an
19756 * interrupt, or an exception.
19757 */
19758 if (!aborting())
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019759 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000019760 if (!eap->skip && fudi.fd_newkey != NULL)
19761 EMSG2(_(e_dictkey), fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019762 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019763 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019764 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019765 else
19766 eap->skip = TRUE;
19767 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000019768
Bram Moolenaar071d4272004-06-13 20:20:40 +000019769 /* An error in a function call during evaluation of an expression in magic
19770 * braces should not cause the function not to be defined. */
19771 saved_did_emsg = did_emsg;
19772 did_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019773
19774 /*
19775 * ":function func" with only function name: list function.
19776 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019777 if (!paren)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019778 {
19779 if (!ends_excmd(*skipwhite(p)))
19780 {
19781 EMSG(_(e_trailing));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019782 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019783 }
19784 eap->nextcmd = check_nextcmd(p);
19785 if (eap->nextcmd != NULL)
19786 *p = NUL;
19787 if (!eap->skip && !got_int)
19788 {
19789 fp = find_func(name);
19790 if (fp != NULL)
19791 {
19792 list_func_head(fp, TRUE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019793 for (j = 0; j < fp->uf_lines.ga_len && !got_int; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019794 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019795 if (FUNCLINE(fp, j) == NULL)
19796 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019797 msg_putchar('\n');
19798 msg_outnum((long)(j + 1));
19799 if (j < 9)
19800 msg_putchar(' ');
19801 if (j < 99)
19802 msg_putchar(' ');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019803 msg_prt_line(FUNCLINE(fp, j), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019804 out_flush(); /* show a line at a time */
19805 ui_breakcheck();
19806 }
19807 if (!got_int)
19808 {
19809 msg_putchar('\n');
19810 msg_puts((char_u *)" endfunction");
19811 }
19812 }
19813 else
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +000019814 emsg_funcname(N_("E123: Undefined function: %s"), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019815 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019816 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019817 }
19818
19819 /*
19820 * ":function name(arg1, arg2)" Define function.
19821 */
19822 p = skipwhite(p);
19823 if (*p != '(')
19824 {
19825 if (!eap->skip)
19826 {
19827 EMSG2(_("E124: Missing '(': %s"), eap->arg);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019828 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019829 }
19830 /* attempt to continue by skipping some text */
19831 if (vim_strchr(p, '(') != NULL)
19832 p = vim_strchr(p, '(');
19833 }
19834 p = skipwhite(p + 1);
19835
19836 ga_init2(&newargs, (int)sizeof(char_u *), 3);
19837 ga_init2(&newlines, (int)sizeof(char_u *), 3);
19838
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019839 if (!eap->skip)
19840 {
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019841 /* Check the name of the function. Unless it's a dictionary function
19842 * (that we are overwriting). */
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019843 if (name != NULL)
19844 arg = name;
19845 else
19846 arg = fudi.fd_newkey;
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019847 if (arg != NULL && (fudi.fd_di == NULL
19848 || fudi.fd_di->di_tv.v_type != VAR_FUNC))
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019849 {
19850 if (*arg == K_SPECIAL)
19851 j = 3;
19852 else
19853 j = 0;
19854 while (arg[j] != NUL && (j == 0 ? eval_isnamec1(arg[j])
19855 : eval_isnamec(arg[j])))
19856 ++j;
19857 if (arg[j] != NUL)
Bram Moolenaarb67cc162009-02-04 15:27:06 +000019858 emsg_funcname((char *)e_invarg2, arg);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019859 }
19860 }
19861
Bram Moolenaar071d4272004-06-13 20:20:40 +000019862 /*
19863 * Isolate the arguments: "arg1, arg2, ...)"
19864 */
19865 while (*p != ')')
19866 {
19867 if (p[0] == '.' && p[1] == '.' && p[2] == '.')
19868 {
19869 varargs = TRUE;
19870 p += 3;
19871 mustend = TRUE;
19872 }
19873 else
19874 {
19875 arg = p;
19876 while (ASCII_ISALNUM(*p) || *p == '_')
19877 ++p;
19878 if (arg == p || isdigit(*arg)
19879 || (p - arg == 9 && STRNCMP(arg, "firstline", 9) == 0)
19880 || (p - arg == 8 && STRNCMP(arg, "lastline", 8) == 0))
19881 {
19882 if (!eap->skip)
19883 EMSG2(_("E125: Illegal argument: %s"), arg);
19884 break;
19885 }
19886 if (ga_grow(&newargs, 1) == FAIL)
19887 goto erret;
19888 c = *p;
19889 *p = NUL;
19890 arg = vim_strsave(arg);
19891 if (arg == NULL)
19892 goto erret;
19893 ((char_u **)(newargs.ga_data))[newargs.ga_len] = arg;
19894 *p = c;
19895 newargs.ga_len++;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019896 if (*p == ',')
19897 ++p;
19898 else
19899 mustend = TRUE;
19900 }
19901 p = skipwhite(p);
19902 if (mustend && *p != ')')
19903 {
19904 if (!eap->skip)
19905 EMSG2(_(e_invarg2), eap->arg);
19906 break;
19907 }
19908 }
19909 ++p; /* skip the ')' */
19910
Bram Moolenaare9a41262005-01-15 22:18:47 +000019911 /* find extra arguments "range", "dict" and "abort" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019912 for (;;)
19913 {
19914 p = skipwhite(p);
19915 if (STRNCMP(p, "range", 5) == 0)
19916 {
19917 flags |= FC_RANGE;
19918 p += 5;
19919 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000019920 else if (STRNCMP(p, "dict", 4) == 0)
19921 {
19922 flags |= FC_DICT;
19923 p += 4;
19924 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019925 else if (STRNCMP(p, "abort", 5) == 0)
19926 {
19927 flags |= FC_ABORT;
19928 p += 5;
19929 }
19930 else
19931 break;
19932 }
19933
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019934 /* When there is a line break use what follows for the function body.
19935 * Makes 'exe "func Test()\n...\nendfunc"' work. */
19936 if (*p == '\n')
19937 line_arg = p + 1;
19938 else if (*p != NUL && *p != '"' && !eap->skip && !did_emsg)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019939 EMSG(_(e_trailing));
19940
19941 /*
19942 * Read the body of the function, until ":endfunction" is found.
19943 */
19944 if (KeyTyped)
19945 {
19946 /* Check if the function already exists, don't let the user type the
19947 * whole function before telling him it doesn't work! For a script we
19948 * need to skip the body to be able to find what follows. */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019949 if (!eap->skip && !eap->forceit)
19950 {
19951 if (fudi.fd_dict != NULL && fudi.fd_newkey == NULL)
19952 EMSG(_(e_funcdict));
19953 else if (name != NULL && find_func(name) != NULL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019954 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019955 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019956
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019957 if (!eap->skip && did_emsg)
19958 goto erret;
19959
Bram Moolenaar071d4272004-06-13 20:20:40 +000019960 msg_putchar('\n'); /* don't overwrite the function name */
19961 cmdline_row = msg_row;
19962 }
19963
19964 indent = 2;
19965 nesting = 0;
19966 for (;;)
19967 {
19968 msg_scroll = TRUE;
19969 need_wait_return = FALSE;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019970 sourcing_lnum_off = sourcing_lnum;
19971
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019972 if (line_arg != NULL)
19973 {
19974 /* Use eap->arg, split up in parts by line breaks. */
19975 theline = line_arg;
19976 p = vim_strchr(theline, '\n');
19977 if (p == NULL)
19978 line_arg += STRLEN(line_arg);
19979 else
19980 {
19981 *p = NUL;
19982 line_arg = p + 1;
19983 }
19984 }
19985 else if (eap->getline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019986 theline = getcmdline(':', 0L, indent);
19987 else
19988 theline = eap->getline(':', eap->cookie, indent);
19989 if (KeyTyped)
19990 lines_left = Rows - 1;
19991 if (theline == NULL)
19992 {
19993 EMSG(_("E126: Missing :endfunction"));
19994 goto erret;
19995 }
19996
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019997 /* Detect line continuation: sourcing_lnum increased more than one. */
19998 if (sourcing_lnum > sourcing_lnum_off + 1)
19999 sourcing_lnum_off = sourcing_lnum - sourcing_lnum_off - 1;
20000 else
20001 sourcing_lnum_off = 0;
20002
Bram Moolenaar071d4272004-06-13 20:20:40 +000020003 if (skip_until != NULL)
20004 {
20005 /* between ":append" and "." and between ":python <<EOF" and "EOF"
20006 * don't check for ":endfunc". */
20007 if (STRCMP(theline, skip_until) == 0)
20008 {
20009 vim_free(skip_until);
20010 skip_until = NULL;
20011 }
20012 }
20013 else
20014 {
20015 /* skip ':' and blanks*/
20016 for (p = theline; vim_iswhite(*p) || *p == ':'; ++p)
20017 ;
20018
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020019 /* Check for "endfunction". */
20020 if (checkforcmd(&p, "endfunction", 4) && nesting-- == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020021 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020022 if (line_arg == NULL)
20023 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020024 break;
20025 }
20026
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020027 /* Increase indent inside "if", "while", "for" and "try", decrease
Bram Moolenaar071d4272004-06-13 20:20:40 +000020028 * at "end". */
20029 if (indent > 2 && STRNCMP(p, "end", 3) == 0)
20030 indent -= 2;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020031 else if (STRNCMP(p, "if", 2) == 0
20032 || STRNCMP(p, "wh", 2) == 0
20033 || STRNCMP(p, "for", 3) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000020034 || STRNCMP(p, "try", 3) == 0)
20035 indent += 2;
20036
20037 /* Check for defining a function inside this function. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020038 if (checkforcmd(&p, "function", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020039 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020040 if (*p == '!')
20041 p = skipwhite(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020042 p += eval_fname_script(p);
20043 if (ASCII_ISALPHA(*p))
20044 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020045 vim_free(trans_function_name(&p, TRUE, 0, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020046 if (*skipwhite(p) == '(')
20047 {
20048 ++nesting;
20049 indent += 2;
20050 }
20051 }
20052 }
20053
20054 /* Check for ":append" or ":insert". */
20055 p = skip_range(p, NULL);
20056 if ((p[0] == 'a' && (!ASCII_ISALPHA(p[1]) || p[1] == 'p'))
20057 || (p[0] == 'i'
20058 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'n'
20059 && (!ASCII_ISALPHA(p[2]) || (p[2] == 's'))))))
20060 skip_until = vim_strsave((char_u *)".");
20061
20062 /* Check for ":python <<EOF", ":tcl <<EOF", etc. */
20063 arg = skipwhite(skiptowhite(p));
20064 if (arg[0] == '<' && arg[1] =='<'
20065 && ((p[0] == 'p' && p[1] == 'y'
20066 && (!ASCII_ISALPHA(p[2]) || p[2] == 't'))
20067 || (p[0] == 'p' && p[1] == 'e'
20068 && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
20069 || (p[0] == 't' && p[1] == 'c'
20070 && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
20071 || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
20072 && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
Bram Moolenaar325b7a22004-07-05 15:58:32 +000020073 || (p[0] == 'm' && p[1] == 'z'
20074 && (!ASCII_ISALPHA(p[2]) || p[2] == 's'))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020075 ))
20076 {
20077 /* ":python <<" continues until a dot, like ":append" */
20078 p = skipwhite(arg + 2);
20079 if (*p == NUL)
20080 skip_until = vim_strsave((char_u *)".");
20081 else
20082 skip_until = vim_strsave(p);
20083 }
20084 }
20085
20086 /* Add the line to the function. */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020087 if (ga_grow(&newlines, 1 + sourcing_lnum_off) == FAIL)
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020088 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020089 if (line_arg == NULL)
20090 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020091 goto erret;
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020092 }
20093
20094 /* Copy the line to newly allocated memory. get_one_sourceline()
20095 * allocates 250 bytes per line, this saves 80% on average. The cost
20096 * is an extra alloc/free. */
20097 p = vim_strsave(theline);
20098 if (p != NULL)
20099 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020100 if (line_arg == NULL)
20101 vim_free(theline);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020102 theline = p;
20103 }
20104
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020105 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = theline;
20106
20107 /* Add NULL lines for continuation lines, so that the line count is
20108 * equal to the index in the growarray. */
20109 while (sourcing_lnum_off-- > 0)
20110 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = NULL;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020111
20112 /* Check for end of eap->arg. */
20113 if (line_arg != NULL && *line_arg == NUL)
20114 line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020115 }
20116
20117 /* Don't define the function when skipping commands or when an error was
20118 * detected. */
20119 if (eap->skip || did_emsg)
20120 goto erret;
20121
20122 /*
20123 * If there are no errors, add the function
20124 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020125 if (fudi.fd_dict == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020126 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020127 v = find_var(name, &ht);
Bram Moolenaar33570922005-01-25 22:26:29 +000020128 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020129 {
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +000020130 emsg_funcname(N_("E707: Function name conflicts with variable: %s"),
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020131 name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020132 goto erret;
20133 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020134
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020135 fp = find_func(name);
20136 if (fp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020137 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020138 if (!eap->forceit)
20139 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020140 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020141 goto erret;
20142 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020143 if (fp->uf_calls > 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020144 {
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +000020145 emsg_funcname(N_("E127: Cannot redefine function %s: It is in use"),
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020146 name);
20147 goto erret;
20148 }
20149 /* redefine existing function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020150 ga_clear_strings(&(fp->uf_args));
20151 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020152 vim_free(name);
20153 name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020154 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020155 }
20156 else
20157 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020158 char numbuf[20];
20159
20160 fp = NULL;
20161 if (fudi.fd_newkey == NULL && !eap->forceit)
20162 {
20163 EMSG(_(e_funcdict));
20164 goto erret;
20165 }
Bram Moolenaar758711c2005-02-02 23:11:38 +000020166 if (fudi.fd_di == NULL)
20167 {
20168 /* Can't add a function to a locked dictionary */
20169 if (tv_check_lock(fudi.fd_dict->dv_lock, eap->arg))
20170 goto erret;
20171 }
20172 /* Can't change an existing function if it is locked */
20173 else if (tv_check_lock(fudi.fd_di->di_tv.v_lock, eap->arg))
20174 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020175
20176 /* Give the function a sequential number. Can only be used with a
20177 * Funcref! */
20178 vim_free(name);
20179 sprintf(numbuf, "%d", ++func_nr);
20180 name = vim_strsave((char_u *)numbuf);
20181 if (name == NULL)
20182 goto erret;
20183 }
20184
20185 if (fp == NULL)
20186 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020187 if (fudi.fd_dict == NULL && vim_strchr(name, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020188 {
20189 int slen, plen;
20190 char_u *scriptname;
20191
20192 /* Check that the autoload name matches the script name. */
20193 j = FAIL;
20194 if (sourcing_name != NULL)
20195 {
20196 scriptname = autoload_name(name);
20197 if (scriptname != NULL)
20198 {
20199 p = vim_strchr(scriptname, '/');
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020200 plen = (int)STRLEN(p);
20201 slen = (int)STRLEN(sourcing_name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020202 if (slen > plen && fnamecmp(p,
20203 sourcing_name + slen - plen) == 0)
20204 j = OK;
20205 vim_free(scriptname);
20206 }
20207 }
20208 if (j == FAIL)
20209 {
20210 EMSG2(_("E746: Function name does not match script file name: %s"), name);
20211 goto erret;
20212 }
20213 }
20214
20215 fp = (ufunc_T *)alloc((unsigned)(sizeof(ufunc_T) + STRLEN(name)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020216 if (fp == NULL)
20217 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020218
20219 if (fudi.fd_dict != NULL)
20220 {
20221 if (fudi.fd_di == NULL)
20222 {
20223 /* add new dict entry */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020224 fudi.fd_di = dictitem_alloc(fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020225 if (fudi.fd_di == NULL)
20226 {
20227 vim_free(fp);
20228 goto erret;
20229 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020230 if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
20231 {
20232 vim_free(fudi.fd_di);
Bram Moolenaar0a5fd8b2006-08-16 20:02:22 +000020233 vim_free(fp);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020234 goto erret;
20235 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020236 }
20237 else
20238 /* overwrite existing dict entry */
20239 clear_tv(&fudi.fd_di->di_tv);
20240 fudi.fd_di->di_tv.v_type = VAR_FUNC;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000020241 fudi.fd_di->di_tv.v_lock = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020242 fudi.fd_di->di_tv.vval.v_string = vim_strsave(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020243 fp->uf_refcount = 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000020244
20245 /* behave like "dict" was used */
20246 flags |= FC_DICT;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020247 }
20248
Bram Moolenaar071d4272004-06-13 20:20:40 +000020249 /* insert the new function in the function list */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020250 STRCPY(fp->uf_name, name);
20251 hash_add(&func_hashtab, UF2HIKEY(fp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020252 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020253 fp->uf_args = newargs;
20254 fp->uf_lines = newlines;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020255#ifdef FEAT_PROFILE
20256 fp->uf_tml_count = NULL;
20257 fp->uf_tml_total = NULL;
20258 fp->uf_tml_self = NULL;
20259 fp->uf_profiling = FALSE;
20260 if (prof_def_func())
20261 func_do_profile(fp);
20262#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020263 fp->uf_varargs = varargs;
20264 fp->uf_flags = flags;
20265 fp->uf_calls = 0;
20266 fp->uf_script_ID = current_SID;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020267 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020268
20269erret:
Bram Moolenaar071d4272004-06-13 20:20:40 +000020270 ga_clear_strings(&newargs);
20271 ga_clear_strings(&newlines);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020272ret_free:
20273 vim_free(skip_until);
20274 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020275 vim_free(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020276 did_emsg |= saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020277}
20278
20279/*
20280 * Get a function name, translating "<SID>" and "<SNR>".
Bram Moolenaara7043832005-01-21 11:56:39 +000020281 * Also handles a Funcref in a List or Dictionary.
Bram Moolenaar071d4272004-06-13 20:20:40 +000020282 * Returns the function name in allocated memory, or NULL for failure.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020283 * flags:
20284 * TFN_INT: internal function name OK
20285 * TFN_QUIET: be quiet
Bram Moolenaar071d4272004-06-13 20:20:40 +000020286 * Advances "pp" to just after the function name (if no error).
20287 */
20288 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020289trans_function_name(pp, skip, flags, fdp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020290 char_u **pp;
20291 int skip; /* only find the end, don't evaluate */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020292 int flags;
Bram Moolenaar33570922005-01-25 22:26:29 +000020293 funcdict_T *fdp; /* return: info about dictionary used */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020294{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020295 char_u *name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020296 char_u *start;
20297 char_u *end;
20298 int lead;
20299 char_u sid_buf[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +000020300 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +000020301 lval_T lv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020302
20303 if (fdp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000020304 vim_memset(fdp, 0, sizeof(funcdict_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020305 start = *pp;
Bram Moolenaara7043832005-01-21 11:56:39 +000020306
20307 /* Check for hard coded <SNR>: already translated function ID (from a user
20308 * command). */
20309 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA
20310 && (*pp)[2] == (int)KE_SNR)
20311 {
20312 *pp += 3;
20313 len = get_id_len(pp) + 3;
20314 return vim_strnsave(start, len);
20315 }
20316
20317 /* A name starting with "<SID>" or "<SNR>" is local to a script. But
20318 * don't skip over "s:", get_lval() needs it for "s:dict.func". */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020319 lead = eval_fname_script(start);
Bram Moolenaara7043832005-01-21 11:56:39 +000020320 if (lead > 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020321 start += lead;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020322
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020323 end = get_lval(start, NULL, &lv, FALSE, skip, flags & TFN_QUIET,
20324 lead > 2 ? 0 : FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020325 if (end == start)
20326 {
20327 if (!skip)
20328 EMSG(_("E129: Function name required"));
20329 goto theend;
20330 }
Bram Moolenaara7043832005-01-21 11:56:39 +000020331 if (end == NULL || (lv.ll_tv != NULL && (lead > 2 || lv.ll_range)))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020332 {
20333 /*
20334 * Report an invalid expression in braces, unless the expression
20335 * evaluation has been cancelled due to an aborting error, an
20336 * interrupt, or an exception.
20337 */
20338 if (!aborting())
20339 {
20340 if (end != NULL)
20341 EMSG2(_(e_invarg2), start);
20342 }
20343 else
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020344 *pp = find_name_end(start, NULL, NULL, FNE_INCL_BR);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020345 goto theend;
20346 }
20347
20348 if (lv.ll_tv != NULL)
20349 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020350 if (fdp != NULL)
20351 {
20352 fdp->fd_dict = lv.ll_dict;
20353 fdp->fd_newkey = lv.ll_newkey;
20354 lv.ll_newkey = NULL;
20355 fdp->fd_di = lv.ll_di;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020356 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020357 if (lv.ll_tv->v_type == VAR_FUNC && lv.ll_tv->vval.v_string != NULL)
20358 {
20359 name = vim_strsave(lv.ll_tv->vval.v_string);
20360 *pp = end;
20361 }
20362 else
20363 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020364 if (!skip && !(flags & TFN_QUIET) && (fdp == NULL
20365 || lv.ll_dict == NULL || fdp->fd_newkey == NULL))
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020366 EMSG(_(e_funcref));
20367 else
20368 *pp = end;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020369 name = NULL;
20370 }
20371 goto theend;
20372 }
20373
20374 if (lv.ll_name == NULL)
20375 {
20376 /* Error found, but continue after the function name. */
20377 *pp = end;
20378 goto theend;
20379 }
20380
Bram Moolenaar33e1a802007-09-06 12:26:44 +000020381 /* Check if the name is a Funcref. If so, use the value. */
20382 if (lv.ll_exp_name != NULL)
20383 {
20384 len = (int)STRLEN(lv.ll_exp_name);
20385 name = deref_func_name(lv.ll_exp_name, &len);
20386 if (name == lv.ll_exp_name)
20387 name = NULL;
20388 }
20389 else
20390 {
20391 len = (int)(end - *pp);
20392 name = deref_func_name(*pp, &len);
20393 if (name == *pp)
20394 name = NULL;
20395 }
20396 if (name != NULL)
20397 {
20398 name = vim_strsave(name);
20399 *pp = end;
20400 goto theend;
20401 }
20402
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020403 if (lv.ll_exp_name != NULL)
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020404 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020405 len = (int)STRLEN(lv.ll_exp_name);
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020406 if (lead <= 2 && lv.ll_name == lv.ll_exp_name
20407 && STRNCMP(lv.ll_name, "s:", 2) == 0)
20408 {
20409 /* When there was "s:" already or the name expanded to get a
20410 * leading "s:" then remove it. */
20411 lv.ll_name += 2;
20412 len -= 2;
20413 lead = 2;
20414 }
20415 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020416 else
Bram Moolenaara7043832005-01-21 11:56:39 +000020417 {
20418 if (lead == 2) /* skip over "s:" */
20419 lv.ll_name += 2;
20420 len = (int)(end - lv.ll_name);
20421 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020422
20423 /*
20424 * Copy the function name to allocated memory.
20425 * Accept <SID>name() inside a script, translate into <SNR>123_name().
20426 * Accept <SNR>123_name() outside a script.
20427 */
20428 if (skip)
20429 lead = 0; /* do nothing */
20430 else if (lead > 0)
20431 {
20432 lead = 3;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000020433 if ((lv.ll_exp_name != NULL && eval_fname_sid(lv.ll_exp_name))
20434 || eval_fname_sid(*pp))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020435 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +000020436 /* It's "s:" or "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020437 if (current_SID <= 0)
20438 {
20439 EMSG(_(e_usingsid));
20440 goto theend;
20441 }
20442 sprintf((char *)sid_buf, "%ld_", (long)current_SID);
20443 lead += (int)STRLEN(sid_buf);
20444 }
20445 }
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020446 else if (!(flags & TFN_INT) && builtin_function(lv.ll_name))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020447 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020448 EMSG2(_("E128: Function name must start with a capital or contain a colon: %s"), lv.ll_name);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020449 goto theend;
20450 }
20451 name = alloc((unsigned)(len + lead + 1));
20452 if (name != NULL)
20453 {
20454 if (lead > 0)
20455 {
20456 name[0] = K_SPECIAL;
20457 name[1] = KS_EXTRA;
20458 name[2] = (int)KE_SNR;
Bram Moolenaara7043832005-01-21 11:56:39 +000020459 if (lead > 3) /* If it's "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020460 STRCPY(name + 3, sid_buf);
20461 }
20462 mch_memmove(name + lead, lv.ll_name, (size_t)len);
20463 name[len + lead] = NUL;
20464 }
20465 *pp = end;
20466
20467theend:
20468 clear_lval(&lv);
20469 return name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020470}
20471
20472/*
20473 * Return 5 if "p" starts with "<SID>" or "<SNR>" (ignoring case).
20474 * Return 2 if "p" starts with "s:".
20475 * Return 0 otherwise.
20476 */
20477 static int
20478eval_fname_script(p)
20479 char_u *p;
20480{
20481 if (p[0] == '<' && (STRNICMP(p + 1, "SID>", 4) == 0
20482 || STRNICMP(p + 1, "SNR>", 4) == 0))
20483 return 5;
20484 if (p[0] == 's' && p[1] == ':')
20485 return 2;
20486 return 0;
20487}
20488
20489/*
20490 * Return TRUE if "p" starts with "<SID>" or "s:".
20491 * Only works if eval_fname_script() returned non-zero for "p"!
20492 */
20493 static int
20494eval_fname_sid(p)
20495 char_u *p;
20496{
20497 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I');
20498}
20499
20500/*
20501 * List the head of the function: "name(arg1, arg2)".
20502 */
20503 static void
20504list_func_head(fp, indent)
20505 ufunc_T *fp;
20506 int indent;
20507{
20508 int j;
20509
20510 msg_start();
20511 if (indent)
20512 MSG_PUTS(" ");
20513 MSG_PUTS("function ");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020514 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020515 {
20516 MSG_PUTS_ATTR("<SNR>", hl_attr(HLF_8));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020517 msg_puts(fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020518 }
20519 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020520 msg_puts(fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020521 msg_putchar('(');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020522 for (j = 0; j < fp->uf_args.ga_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020523 {
20524 if (j)
20525 MSG_PUTS(", ");
20526 msg_puts(FUNCARG(fp, j));
20527 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020528 if (fp->uf_varargs)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020529 {
20530 if (j)
20531 MSG_PUTS(", ");
20532 MSG_PUTS("...");
20533 }
20534 msg_putchar(')');
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000020535 msg_clr_eos();
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000020536 if (p_verbose > 0)
20537 last_set_msg(fp->uf_script_ID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020538}
20539
20540/*
20541 * Find a function by name, return pointer to it in ufuncs.
20542 * Return NULL for unknown function.
20543 */
20544 static ufunc_T *
20545find_func(name)
20546 char_u *name;
20547{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020548 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020549
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020550 hi = hash_find(&func_hashtab, name);
20551 if (!HASHITEM_EMPTY(hi))
20552 return HI2UF(hi);
20553 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020554}
20555
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020556#if defined(EXITFREE) || defined(PROTO)
20557 void
20558free_all_functions()
20559{
20560 hashitem_T *hi;
20561
20562 /* Need to start all over every time, because func_free() may change the
20563 * hash table. */
20564 while (func_hashtab.ht_used > 0)
20565 for (hi = func_hashtab.ht_array; ; ++hi)
20566 if (!HASHITEM_EMPTY(hi))
20567 {
20568 func_free(HI2UF(hi));
20569 break;
20570 }
20571}
20572#endif
20573
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020574/*
20575 * Return TRUE if a function "name" exists.
20576 */
20577 static int
20578function_exists(name)
20579 char_u *name;
20580{
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020581 char_u *nm = name;
20582 char_u *p;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020583 int n = FALSE;
20584
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020585 p = trans_function_name(&nm, FALSE, TFN_INT|TFN_QUIET, NULL);
Bram Moolenaar79783442006-05-05 21:18:03 +000020586 nm = skipwhite(nm);
20587
20588 /* Only accept "funcname", "funcname ", "funcname (..." and
20589 * "funcname(...", not "funcname!...". */
20590 if (p != NULL && (*nm == NUL || *nm == '('))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020591 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020592 if (builtin_function(p))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020593 n = (find_internal_func(p) >= 0);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020594 else
20595 n = (find_func(p) != NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020596 }
Bram Moolenaar79783442006-05-05 21:18:03 +000020597 vim_free(p);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020598 return n;
20599}
20600
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020601/*
20602 * Return TRUE if "name" looks like a builtin function name: starts with a
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020603 * lower case letter and doesn't contain a ':' or AUTOLOAD_CHAR.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020604 */
20605 static int
20606builtin_function(name)
20607 char_u *name;
20608{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020609 return ASCII_ISLOWER(name[0]) && vim_strchr(name, ':') == NULL
20610 && vim_strchr(name, AUTOLOAD_CHAR) == NULL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020611}
20612
Bram Moolenaar05159a02005-02-26 23:04:13 +000020613#if defined(FEAT_PROFILE) || defined(PROTO)
20614/*
20615 * Start profiling function "fp".
20616 */
20617 static void
20618func_do_profile(fp)
20619 ufunc_T *fp;
20620{
20621 fp->uf_tm_count = 0;
20622 profile_zero(&fp->uf_tm_self);
20623 profile_zero(&fp->uf_tm_total);
20624 if (fp->uf_tml_count == NULL)
20625 fp->uf_tml_count = (int *)alloc_clear((unsigned)
20626 (sizeof(int) * fp->uf_lines.ga_len));
20627 if (fp->uf_tml_total == NULL)
20628 fp->uf_tml_total = (proftime_T *)alloc_clear((unsigned)
20629 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20630 if (fp->uf_tml_self == NULL)
20631 fp->uf_tml_self = (proftime_T *)alloc_clear((unsigned)
20632 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20633 fp->uf_tml_idx = -1;
20634 if (fp->uf_tml_count == NULL || fp->uf_tml_total == NULL
20635 || fp->uf_tml_self == NULL)
20636 return; /* out of memory */
20637
20638 fp->uf_profiling = TRUE;
20639}
20640
20641/*
20642 * Dump the profiling results for all functions in file "fd".
20643 */
20644 void
20645func_dump_profile(fd)
20646 FILE *fd;
20647{
20648 hashitem_T *hi;
20649 int todo;
20650 ufunc_T *fp;
20651 int i;
Bram Moolenaar73830342005-02-28 22:48:19 +000020652 ufunc_T **sorttab;
20653 int st_len = 0;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020654
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020655 todo = (int)func_hashtab.ht_used;
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020656 if (todo == 0)
20657 return; /* nothing to dump */
20658
Bram Moolenaar73830342005-02-28 22:48:19 +000020659 sorttab = (ufunc_T **)alloc((unsigned)(sizeof(ufunc_T) * todo));
20660
Bram Moolenaar05159a02005-02-26 23:04:13 +000020661 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
20662 {
20663 if (!HASHITEM_EMPTY(hi))
20664 {
20665 --todo;
20666 fp = HI2UF(hi);
20667 if (fp->uf_profiling)
20668 {
Bram Moolenaar73830342005-02-28 22:48:19 +000020669 if (sorttab != NULL)
20670 sorttab[st_len++] = fp;
20671
Bram Moolenaar05159a02005-02-26 23:04:13 +000020672 if (fp->uf_name[0] == K_SPECIAL)
20673 fprintf(fd, "FUNCTION <SNR>%s()\n", fp->uf_name + 3);
20674 else
20675 fprintf(fd, "FUNCTION %s()\n", fp->uf_name);
20676 if (fp->uf_tm_count == 1)
20677 fprintf(fd, "Called 1 time\n");
20678 else
20679 fprintf(fd, "Called %d times\n", fp->uf_tm_count);
20680 fprintf(fd, "Total time: %s\n", profile_msg(&fp->uf_tm_total));
20681 fprintf(fd, " Self time: %s\n", profile_msg(&fp->uf_tm_self));
20682 fprintf(fd, "\n");
20683 fprintf(fd, "count total (s) self (s)\n");
20684
20685 for (i = 0; i < fp->uf_lines.ga_len; ++i)
20686 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020687 if (FUNCLINE(fp, i) == NULL)
20688 continue;
Bram Moolenaar73830342005-02-28 22:48:19 +000020689 prof_func_line(fd, fp->uf_tml_count[i],
20690 &fp->uf_tml_total[i], &fp->uf_tml_self[i], TRUE);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020691 fprintf(fd, "%s\n", FUNCLINE(fp, i));
20692 }
20693 fprintf(fd, "\n");
20694 }
20695 }
20696 }
Bram Moolenaar73830342005-02-28 22:48:19 +000020697
20698 if (sorttab != NULL && st_len > 0)
20699 {
20700 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20701 prof_total_cmp);
20702 prof_sort_list(fd, sorttab, st_len, "TOTAL", FALSE);
20703 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20704 prof_self_cmp);
20705 prof_sort_list(fd, sorttab, st_len, "SELF", TRUE);
20706 }
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020707
20708 vim_free(sorttab);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020709}
Bram Moolenaar73830342005-02-28 22:48:19 +000020710
20711 static void
20712prof_sort_list(fd, sorttab, st_len, title, prefer_self)
20713 FILE *fd;
20714 ufunc_T **sorttab;
20715 int st_len;
20716 char *title;
20717 int prefer_self; /* when equal print only self time */
20718{
20719 int i;
20720 ufunc_T *fp;
20721
20722 fprintf(fd, "FUNCTIONS SORTED ON %s TIME\n", title);
20723 fprintf(fd, "count total (s) self (s) function\n");
20724 for (i = 0; i < 20 && i < st_len; ++i)
20725 {
20726 fp = sorttab[i];
20727 prof_func_line(fd, fp->uf_tm_count, &fp->uf_tm_total, &fp->uf_tm_self,
20728 prefer_self);
20729 if (fp->uf_name[0] == K_SPECIAL)
20730 fprintf(fd, " <SNR>%s()\n", fp->uf_name + 3);
20731 else
20732 fprintf(fd, " %s()\n", fp->uf_name);
20733 }
20734 fprintf(fd, "\n");
20735}
20736
20737/*
20738 * Print the count and times for one function or function line.
20739 */
20740 static void
20741prof_func_line(fd, count, total, self, prefer_self)
20742 FILE *fd;
20743 int count;
20744 proftime_T *total;
20745 proftime_T *self;
20746 int prefer_self; /* when equal print only self time */
20747{
20748 if (count > 0)
20749 {
20750 fprintf(fd, "%5d ", count);
20751 if (prefer_self && profile_equal(total, self))
20752 fprintf(fd, " ");
20753 else
20754 fprintf(fd, "%s ", profile_msg(total));
20755 if (!prefer_self && profile_equal(total, self))
20756 fprintf(fd, " ");
20757 else
20758 fprintf(fd, "%s ", profile_msg(self));
20759 }
20760 else
20761 fprintf(fd, " ");
20762}
20763
20764/*
20765 * Compare function for total time sorting.
20766 */
20767 static int
20768#ifdef __BORLANDC__
20769_RTLENTRYF
20770#endif
20771prof_total_cmp(s1, s2)
20772 const void *s1;
20773 const void *s2;
20774{
20775 ufunc_T *p1, *p2;
20776
20777 p1 = *(ufunc_T **)s1;
20778 p2 = *(ufunc_T **)s2;
20779 return profile_cmp(&p1->uf_tm_total, &p2->uf_tm_total);
20780}
20781
20782/*
20783 * Compare function for self time sorting.
20784 */
20785 static int
20786#ifdef __BORLANDC__
20787_RTLENTRYF
20788#endif
20789prof_self_cmp(s1, s2)
20790 const void *s1;
20791 const void *s2;
20792{
20793 ufunc_T *p1, *p2;
20794
20795 p1 = *(ufunc_T **)s1;
20796 p2 = *(ufunc_T **)s2;
20797 return profile_cmp(&p1->uf_tm_self, &p2->uf_tm_self);
20798}
20799
Bram Moolenaar05159a02005-02-26 23:04:13 +000020800#endif
20801
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020802/*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020803 * If "name" has a package name try autoloading the script for it.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020804 * Return TRUE if a package was loaded.
20805 */
20806 static int
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020807script_autoload(name, reload)
20808 char_u *name;
20809 int reload; /* load script again when already loaded */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020810{
20811 char_u *p;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020812 char_u *scriptname, *tofree;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020813 int ret = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020814 int i;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020815
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020816 /* If there is no '#' after name[0] there is no package name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020817 p = vim_strchr(name, AUTOLOAD_CHAR);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020818 if (p == NULL || p == name)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020819 return FALSE;
20820
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020821 tofree = scriptname = autoload_name(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020822
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020823 /* Find the name in the list of previously loaded package names. Skip
20824 * "autoload/", it's always the same. */
20825 for (i = 0; i < ga_loaded.ga_len; ++i)
20826 if (STRCMP(((char_u **)ga_loaded.ga_data)[i] + 9, scriptname + 9) == 0)
20827 break;
20828 if (!reload && i < ga_loaded.ga_len)
20829 ret = FALSE; /* was loaded already */
20830 else
20831 {
20832 /* Remember the name if it wasn't loaded already. */
20833 if (i == ga_loaded.ga_len && ga_grow(&ga_loaded, 1) == OK)
20834 {
20835 ((char_u **)ga_loaded.ga_data)[ga_loaded.ga_len++] = scriptname;
20836 tofree = NULL;
20837 }
20838
20839 /* Try loading the package from $VIMRUNTIME/autoload/<name>.vim */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +000020840 if (source_runtime(scriptname, FALSE) == OK)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020841 ret = TRUE;
20842 }
20843
20844 vim_free(tofree);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020845 return ret;
20846}
20847
20848/*
20849 * Return the autoload script name for a function or variable name.
20850 * Returns NULL when out of memory.
20851 */
20852 static char_u *
20853autoload_name(name)
20854 char_u *name;
20855{
20856 char_u *p;
20857 char_u *scriptname;
20858
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020859 /* Get the script file name: replace '#' with '/', append ".vim". */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020860 scriptname = alloc((unsigned)(STRLEN(name) + 14));
20861 if (scriptname == NULL)
20862 return FALSE;
20863 STRCPY(scriptname, "autoload/");
20864 STRCAT(scriptname, name);
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020865 *vim_strrchr(scriptname, AUTOLOAD_CHAR) = NUL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020866 STRCAT(scriptname, ".vim");
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020867 while ((p = vim_strchr(scriptname, AUTOLOAD_CHAR)) != NULL)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020868 *p = '/';
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020869 return scriptname;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020870}
20871
Bram Moolenaar071d4272004-06-13 20:20:40 +000020872#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
20873
20874/*
20875 * Function given to ExpandGeneric() to obtain the list of user defined
20876 * function names.
20877 */
20878 char_u *
20879get_user_func_name(xp, idx)
20880 expand_T *xp;
20881 int idx;
20882{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020883 static long_u done;
20884 static hashitem_T *hi;
20885 ufunc_T *fp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020886
20887 if (idx == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020888 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020889 done = 0;
20890 hi = func_hashtab.ht_array;
20891 }
20892 if (done < func_hashtab.ht_used)
20893 {
20894 if (done++ > 0)
20895 ++hi;
20896 while (HASHITEM_EMPTY(hi))
20897 ++hi;
20898 fp = HI2UF(hi);
20899
20900 if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
20901 return fp->uf_name; /* prevents overflow */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020902
20903 cat_func_name(IObuff, fp);
20904 if (xp->xp_context != EXPAND_USER_FUNC)
20905 {
20906 STRCAT(IObuff, "(");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020907 if (!fp->uf_varargs && fp->uf_args.ga_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020908 STRCAT(IObuff, ")");
20909 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020910 return IObuff;
20911 }
20912 return NULL;
20913}
20914
20915#endif /* FEAT_CMDL_COMPL */
20916
20917/*
20918 * Copy the function name of "fp" to buffer "buf".
20919 * "buf" must be able to hold the function name plus three bytes.
20920 * Takes care of script-local function names.
20921 */
20922 static void
20923cat_func_name(buf, fp)
20924 char_u *buf;
20925 ufunc_T *fp;
20926{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020927 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020928 {
20929 STRCPY(buf, "<SNR>");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020930 STRCAT(buf, fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020931 }
20932 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020933 STRCPY(buf, fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020934}
20935
20936/*
20937 * ":delfunction {name}"
20938 */
20939 void
20940ex_delfunction(eap)
20941 exarg_T *eap;
20942{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020943 ufunc_T *fp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020944 char_u *p;
20945 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000020946 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020947
20948 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020949 name = trans_function_name(&p, eap->skip, 0, &fudi);
20950 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020951 if (name == NULL)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020952 {
20953 if (fudi.fd_dict != NULL && !eap->skip)
20954 EMSG(_(e_funcref));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020955 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020956 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020957 if (!ends_excmd(*skipwhite(p)))
20958 {
20959 vim_free(name);
20960 EMSG(_(e_trailing));
20961 return;
20962 }
20963 eap->nextcmd = check_nextcmd(p);
20964 if (eap->nextcmd != NULL)
20965 *p = NUL;
20966
20967 if (!eap->skip)
20968 fp = find_func(name);
20969 vim_free(name);
20970
20971 if (!eap->skip)
20972 {
20973 if (fp == NULL)
20974 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000020975 EMSG2(_(e_nofunc), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020976 return;
20977 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020978 if (fp->uf_calls > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020979 {
20980 EMSG2(_("E131: Cannot delete function %s: It is in use"), eap->arg);
20981 return;
20982 }
20983
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020984 if (fudi.fd_dict != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020985 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020986 /* Delete the dict item that refers to the function, it will
20987 * invoke func_unref() and possibly delete the function. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020988 dictitem_remove(fudi.fd_dict, fudi.fd_di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020989 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020990 else
20991 func_free(fp);
20992 }
20993}
20994
20995/*
20996 * Free a function and remove it from the list of functions.
20997 */
20998 static void
20999func_free(fp)
21000 ufunc_T *fp;
21001{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021002 hashitem_T *hi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021003
21004 /* clear this function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021005 ga_clear_strings(&(fp->uf_args));
21006 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar05159a02005-02-26 23:04:13 +000021007#ifdef FEAT_PROFILE
21008 vim_free(fp->uf_tml_count);
21009 vim_free(fp->uf_tml_total);
21010 vim_free(fp->uf_tml_self);
21011#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021012
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021013 /* remove the function from the function hashtable */
21014 hi = hash_find(&func_hashtab, UF2HIKEY(fp));
21015 if (HASHITEM_EMPTY(hi))
21016 EMSG2(_(e_intern2), "func_free()");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021017 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021018 hash_remove(&func_hashtab, hi);
21019
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021020 vim_free(fp);
21021}
21022
21023/*
21024 * Unreference a Function: decrement the reference count and free it when it
21025 * becomes zero. Only for numbered functions.
21026 */
21027 static void
21028func_unref(name)
21029 char_u *name;
21030{
21031 ufunc_T *fp;
21032
21033 if (name != NULL && isdigit(*name))
21034 {
21035 fp = find_func(name);
21036 if (fp == NULL)
21037 EMSG2(_(e_intern2), "func_unref()");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021038 else if (--fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021039 {
21040 /* Only delete it when it's not being used. Otherwise it's done
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021041 * when "uf_calls" becomes zero. */
21042 if (fp->uf_calls == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021043 func_free(fp);
21044 }
21045 }
21046}
21047
21048/*
21049 * Count a reference to a Function.
21050 */
21051 static void
21052func_ref(name)
21053 char_u *name;
21054{
21055 ufunc_T *fp;
21056
21057 if (name != NULL && isdigit(*name))
21058 {
21059 fp = find_func(name);
21060 if (fp == NULL)
21061 EMSG2(_(e_intern2), "func_ref()");
21062 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021063 ++fp->uf_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021064 }
21065}
21066
21067/*
21068 * Call a user function.
21069 */
21070 static void
Bram Moolenaare9a41262005-01-15 22:18:47 +000021071call_user_func(fp, argcount, argvars, rettv, firstline, lastline, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021072 ufunc_T *fp; /* pointer to function */
21073 int argcount; /* nr of args */
Bram Moolenaar33570922005-01-25 22:26:29 +000021074 typval_T *argvars; /* arguments */
21075 typval_T *rettv; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021076 linenr_T firstline; /* first line of range */
21077 linenr_T lastline; /* last line of range */
Bram Moolenaar33570922005-01-25 22:26:29 +000021078 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021079{
Bram Moolenaar33570922005-01-25 22:26:29 +000021080 char_u *save_sourcing_name;
21081 linenr_T save_sourcing_lnum;
21082 scid_T save_current_SID;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021083 funccall_T *fc;
Bram Moolenaar33570922005-01-25 22:26:29 +000021084 int save_did_emsg;
21085 static int depth = 0;
21086 dictitem_T *v;
21087 int fixvar_idx = 0; /* index in fixvar[] */
21088 int i;
21089 int ai;
21090 char_u numbuf[NUMBUFLEN];
21091 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021092#ifdef FEAT_PROFILE
21093 proftime_T wait_start;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021094 proftime_T call_start;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021095#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021096
21097 /* If depth of calling is getting too high, don't execute the function */
21098 if (depth >= p_mfd)
21099 {
21100 EMSG(_("E132: Function call depth is higher than 'maxfuncdepth'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021101 rettv->v_type = VAR_NUMBER;
21102 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021103 return;
21104 }
21105 ++depth;
21106
21107 line_breakcheck(); /* check for CTRL-C hit */
21108
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021109 fc = (funccall_T *)alloc(sizeof(funccall_T));
21110 fc->caller = current_funccal;
21111 current_funccal = fc;
21112 fc->func = fp;
21113 fc->rettv = rettv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021114 rettv->vval.v_number = 0;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021115 fc->linenr = 0;
21116 fc->returned = FALSE;
21117 fc->level = ex_nesting_level;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021118 /* Check if this function has a breakpoint. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021119 fc->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0);
21120 fc->dbg_tick = debug_tick;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021121
Bram Moolenaar33570922005-01-25 22:26:29 +000021122 /*
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021123 * Note about using fc->fixvar[]: This is an array of FIXVAR_CNT variables
Bram Moolenaar33570922005-01-25 22:26:29 +000021124 * with names up to VAR_SHORT_LEN long. This avoids having to alloc/free
21125 * each argument variable and saves a lot of time.
21126 */
21127 /*
21128 * Init l: variables.
21129 */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021130 init_var_dict(&fc->l_vars, &fc->l_vars_var);
Bram Moolenaara7043832005-01-21 11:56:39 +000021131 if (selfdict != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000021132 {
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021133 /* Set l:self to "selfdict". Use "name" to avoid a warning from
21134 * some compiler that checks the destination size. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021135 v = &fc->fixvar[fixvar_idx++].var;
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021136 name = v->di_key;
21137 STRCPY(name, "self");
Bram Moolenaar33570922005-01-25 22:26:29 +000021138 v->di_flags = DI_FLAGS_RO + DI_FLAGS_FIX;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021139 hash_add(&fc->l_vars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaar33570922005-01-25 22:26:29 +000021140 v->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021141 v->di_tv.v_lock = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000021142 v->di_tv.vval.v_dict = selfdict;
21143 ++selfdict->dv_refcount;
21144 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000021145
Bram Moolenaar33570922005-01-25 22:26:29 +000021146 /*
21147 * Init a: variables.
21148 * Set a:0 to "argcount".
21149 * Set a:000 to a list with room for the "..." arguments.
21150 */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021151 init_var_dict(&fc->l_avars, &fc->l_avars_var);
21152 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "0",
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021153 (varnumber_T)(argcount - fp->uf_args.ga_len));
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021154 /* Use "name" to avoid a warning from some compiler that checks the
21155 * destination size. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021156 v = &fc->fixvar[fixvar_idx++].var;
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021157 name = v->di_key;
21158 STRCPY(name, "000");
Bram Moolenaar33570922005-01-25 22:26:29 +000021159 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021160 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaar33570922005-01-25 22:26:29 +000021161 v->di_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021162 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021163 v->di_tv.vval.v_list = &fc->l_varlist;
21164 vim_memset(&fc->l_varlist, 0, sizeof(list_T));
21165 fc->l_varlist.lv_refcount = DO_NOT_FREE_CNT;
21166 fc->l_varlist.lv_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021167
21168 /*
21169 * Set a:firstline to "firstline" and a:lastline to "lastline".
21170 * Set a:name to named arguments.
21171 * Set a:N to the "..." arguments.
21172 */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021173 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "firstline",
Bram Moolenaar33570922005-01-25 22:26:29 +000021174 (varnumber_T)firstline);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021175 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "lastline",
Bram Moolenaar33570922005-01-25 22:26:29 +000021176 (varnumber_T)lastline);
21177 for (i = 0; i < argcount; ++i)
21178 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021179 ai = i - fp->uf_args.ga_len;
Bram Moolenaar33570922005-01-25 22:26:29 +000021180 if (ai < 0)
21181 /* named argument a:name */
21182 name = FUNCARG(fp, i);
21183 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000021184 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021185 /* "..." argument a:1, a:2, etc. */
21186 sprintf((char *)numbuf, "%d", ai + 1);
21187 name = numbuf;
21188 }
21189 if (fixvar_idx < FIXVAR_CNT && STRLEN(name) <= VAR_SHORT_LEN)
21190 {
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021191 v = &fc->fixvar[fixvar_idx++].var;
Bram Moolenaar33570922005-01-25 22:26:29 +000021192 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21193 }
21194 else
21195 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021196 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
21197 + STRLEN(name)));
Bram Moolenaar33570922005-01-25 22:26:29 +000021198 if (v == NULL)
21199 break;
21200 v->di_flags = DI_FLAGS_RO;
21201 }
21202 STRCPY(v->di_key, name);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021203 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaar33570922005-01-25 22:26:29 +000021204
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021205 /* Note: the values are copied directly to avoid alloc/free.
21206 * "argvars" must have VAR_FIXED for v_lock. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021207 v->di_tv = argvars[i];
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021208 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021209
21210 if (ai >= 0 && ai < MAX_FUNC_ARGS)
21211 {
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021212 list_append(&fc->l_varlist, &fc->l_listitems[ai]);
21213 fc->l_listitems[ai].li_tv = argvars[i];
21214 fc->l_listitems[ai].li_tv.v_lock = VAR_FIXED;
Bram Moolenaare9a41262005-01-15 22:18:47 +000021215 }
21216 }
21217
Bram Moolenaar071d4272004-06-13 20:20:40 +000021218 /* Don't redraw while executing the function. */
21219 ++RedrawingDisabled;
21220 save_sourcing_name = sourcing_name;
21221 save_sourcing_lnum = sourcing_lnum;
21222 sourcing_lnum = 1;
21223 sourcing_name = alloc((unsigned)((save_sourcing_name == NULL ? 0
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021224 : STRLEN(save_sourcing_name)) + STRLEN(fp->uf_name) + 13));
Bram Moolenaar071d4272004-06-13 20:20:40 +000021225 if (sourcing_name != NULL)
21226 {
21227 if (save_sourcing_name != NULL
21228 && STRNCMP(save_sourcing_name, "function ", 9) == 0)
21229 sprintf((char *)sourcing_name, "%s..", save_sourcing_name);
21230 else
21231 STRCPY(sourcing_name, "function ");
21232 cat_func_name(sourcing_name + STRLEN(sourcing_name), fp);
21233
21234 if (p_verbose >= 12)
21235 {
21236 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021237 verbose_enter_scroll();
21238
Bram Moolenaar555b2802005-05-19 21:08:39 +000021239 smsg((char_u *)_("calling %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021240 if (p_verbose >= 14)
21241 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021242 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021243 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021244 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021245 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021246
21247 msg_puts((char_u *)"(");
21248 for (i = 0; i < argcount; ++i)
21249 {
21250 if (i > 0)
21251 msg_puts((char_u *)", ");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000021252 if (argvars[i].v_type == VAR_NUMBER)
21253 msg_outnum((long)argvars[i].vval.v_number);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021254 else
21255 {
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021256 s = tv2string(&argvars[i], &tofree, numbuf2, 0);
21257 if (s != NULL)
21258 {
21259 trunc_string(s, buf, MSG_BUF_CLEN);
21260 msg_puts(buf);
21261 vim_free(tofree);
21262 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021263 }
21264 }
21265 msg_puts((char_u *)")");
21266 }
21267 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021268
21269 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021270 --no_wait_return;
21271 }
21272 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021273#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021274 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021275 {
21276 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
21277 func_do_profile(fp);
21278 if (fp->uf_profiling
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021279 || (fc->caller != NULL && fc->caller->func->uf_profiling))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021280 {
21281 ++fp->uf_tm_count;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021282 profile_start(&call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021283 profile_zero(&fp->uf_tm_children);
21284 }
21285 script_prof_save(&wait_start);
21286 }
21287#endif
21288
Bram Moolenaar071d4272004-06-13 20:20:40 +000021289 save_current_SID = current_SID;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021290 current_SID = fp->uf_script_ID;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021291 save_did_emsg = did_emsg;
21292 did_emsg = FALSE;
21293
21294 /* call do_cmdline() to execute the lines */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021295 do_cmdline(NULL, get_func_line, (void *)fc,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021296 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
21297
21298 --RedrawingDisabled;
21299
21300 /* when the function was aborted because of an error, return -1 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021301 if ((did_emsg && (fp->uf_flags & FC_ABORT)) || rettv->v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021302 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021303 clear_tv(rettv);
21304 rettv->v_type = VAR_NUMBER;
21305 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021306 }
21307
Bram Moolenaar05159a02005-02-26 23:04:13 +000021308#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021309 if (do_profiling == PROF_YES && (fp->uf_profiling
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021310 || (fc->caller != NULL && fc->caller->func->uf_profiling)))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021311 {
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021312 profile_end(&call_start);
21313 profile_sub_wait(&wait_start, &call_start);
21314 profile_add(&fp->uf_tm_total, &call_start);
21315 profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021316 if (fc->caller != NULL && fc->caller->func->uf_profiling)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021317 {
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021318 profile_add(&fc->caller->func->uf_tm_children, &call_start);
21319 profile_add(&fc->caller->func->uf_tml_children, &call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021320 }
21321 }
21322#endif
21323
Bram Moolenaar071d4272004-06-13 20:20:40 +000021324 /* when being verbose, mention the return value */
21325 if (p_verbose >= 12)
21326 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021327 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021328 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021329
Bram Moolenaar071d4272004-06-13 20:20:40 +000021330 if (aborting())
Bram Moolenaar555b2802005-05-19 21:08:39 +000021331 smsg((char_u *)_("%s aborted"), sourcing_name);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021332 else if (fc->rettv->v_type == VAR_NUMBER)
Bram Moolenaar555b2802005-05-19 21:08:39 +000021333 smsg((char_u *)_("%s returning #%ld"), sourcing_name,
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021334 (long)fc->rettv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +000021335 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000021336 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000021337 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021338 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021339 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021340 char_u *s;
Bram Moolenaar758711c2005-02-02 23:11:38 +000021341
Bram Moolenaar555b2802005-05-19 21:08:39 +000021342 /* The value may be very long. Skip the middle part, so that we
21343 * have some idea how it starts and ends. smsg() would always
21344 * truncate it at the end. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021345 s = tv2string(fc->rettv, &tofree, numbuf2, 0);
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021346 if (s != NULL)
21347 {
21348 trunc_string(s, buf, MSG_BUF_CLEN);
21349 smsg((char_u *)_("%s returning %s"), sourcing_name, buf);
21350 vim_free(tofree);
21351 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021352 }
21353 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021354
21355 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021356 --no_wait_return;
21357 }
21358
21359 vim_free(sourcing_name);
21360 sourcing_name = save_sourcing_name;
21361 sourcing_lnum = save_sourcing_lnum;
21362 current_SID = save_current_SID;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021363#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021364 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021365 script_prof_restore(&wait_start);
21366#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021367
21368 if (p_verbose >= 12 && sourcing_name != NULL)
21369 {
21370 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021371 verbose_enter_scroll();
21372
Bram Moolenaar555b2802005-05-19 21:08:39 +000021373 smsg((char_u *)_("continuing in %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021374 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021375
21376 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021377 --no_wait_return;
21378 }
21379
21380 did_emsg |= save_did_emsg;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021381 current_funccal = fc->caller;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021382 --depth;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021383
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +000021384 /* If the a:000 list and the l: and a: dicts are not referenced we can
21385 * free the funccall_T and what's in it. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021386 if (fc->l_varlist.lv_refcount == DO_NOT_FREE_CNT
21387 && fc->l_vars.dv_refcount == DO_NOT_FREE_CNT
21388 && fc->l_avars.dv_refcount == DO_NOT_FREE_CNT)
21389 {
21390 free_funccal(fc, FALSE);
21391 }
21392 else
21393 {
21394 hashitem_T *hi;
21395 listitem_T *li;
21396 int todo;
21397
21398 /* "fc" is still in use. This can happen when returning "a:000" or
21399 * assigning "l:" to a global variable.
21400 * Link "fc" in the list for garbage collection later. */
21401 fc->caller = previous_funccal;
21402 previous_funccal = fc;
21403
21404 /* Make a copy of the a: variables, since we didn't do that above. */
21405 todo = (int)fc->l_avars.dv_hashtab.ht_used;
21406 for (hi = fc->l_avars.dv_hashtab.ht_array; todo > 0; ++hi)
21407 {
21408 if (!HASHITEM_EMPTY(hi))
21409 {
21410 --todo;
21411 v = HI2DI(hi);
21412 copy_tv(&v->di_tv, &v->di_tv);
21413 }
21414 }
21415
21416 /* Make a copy of the a:000 items, since we didn't do that above. */
21417 for (li = fc->l_varlist.lv_first; li != NULL; li = li->li_next)
21418 copy_tv(&li->li_tv, &li->li_tv);
21419 }
21420}
21421
21422/*
21423 * Return TRUE if items in "fc" do not have "copyID". That means they are not
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +000021424 * referenced from anywhere that is in use.
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021425 */
21426 static int
21427can_free_funccal(fc, copyID)
21428 funccall_T *fc;
21429 int copyID;
21430{
21431 return (fc->l_varlist.lv_copyID != copyID
21432 && fc->l_vars.dv_copyID != copyID
21433 && fc->l_avars.dv_copyID != copyID);
21434}
21435
21436/*
21437 * Free "fc" and what it contains.
21438 */
21439 static void
21440free_funccal(fc, free_val)
21441 funccall_T *fc;
21442 int free_val; /* a: vars were allocated */
21443{
21444 listitem_T *li;
21445
21446 /* The a: variables typevals may not have been allocated, only free the
21447 * allocated variables. */
21448 vars_clear_ext(&fc->l_avars.dv_hashtab, free_val);
21449
21450 /* free all l: variables */
21451 vars_clear(&fc->l_vars.dv_hashtab);
21452
21453 /* Free the a:000 variables if they were allocated. */
21454 if (free_val)
21455 for (li = fc->l_varlist.lv_first; li != NULL; li = li->li_next)
21456 clear_tv(&li->li_tv);
21457
21458 vim_free(fc);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021459}
21460
21461/*
Bram Moolenaar33570922005-01-25 22:26:29 +000021462 * Add a number variable "name" to dict "dp" with value "nr".
21463 */
21464 static void
21465add_nr_var(dp, v, name, nr)
21466 dict_T *dp;
21467 dictitem_T *v;
21468 char *name;
21469 varnumber_T nr;
21470{
21471 STRCPY(v->di_key, name);
21472 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21473 hash_add(&dp->dv_hashtab, DI2HIKEY(v));
21474 v->di_tv.v_type = VAR_NUMBER;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021475 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021476 v->di_tv.vval.v_number = nr;
21477}
21478
21479/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000021480 * ":return [expr]"
21481 */
21482 void
21483ex_return(eap)
21484 exarg_T *eap;
21485{
21486 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000021487 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021488 int returning = FALSE;
21489
21490 if (current_funccal == NULL)
21491 {
21492 EMSG(_("E133: :return not inside a function"));
21493 return;
21494 }
21495
21496 if (eap->skip)
21497 ++emsg_skip;
21498
21499 eap->nextcmd = NULL;
21500 if ((*arg != NUL && *arg != '|' && *arg != '\n')
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021501 && eval0(arg, &rettv, &eap->nextcmd, !eap->skip) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021502 {
21503 if (!eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021504 returning = do_return(eap, FALSE, TRUE, &rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021505 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021506 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021507 }
21508 /* It's safer to return also on error. */
21509 else if (!eap->skip)
21510 {
21511 /*
21512 * Return unless the expression evaluation has been cancelled due to an
21513 * aborting error, an interrupt, or an exception.
21514 */
21515 if (!aborting())
21516 returning = do_return(eap, FALSE, TRUE, NULL);
21517 }
21518
21519 /* When skipping or the return gets pending, advance to the next command
21520 * in this line (!returning). Otherwise, ignore the rest of the line.
21521 * Following lines will be ignored by get_func_line(). */
21522 if (returning)
21523 eap->nextcmd = NULL;
21524 else if (eap->nextcmd == NULL) /* no argument */
21525 eap->nextcmd = check_nextcmd(arg);
21526
21527 if (eap->skip)
21528 --emsg_skip;
21529}
21530
21531/*
21532 * Return from a function. Possibly makes the return pending. Also called
21533 * for a pending return at the ":endtry" or after returning from an extra
21534 * do_cmdline(). "reanimate" is used in the latter case. "is_cmd" is set
Bram Moolenaar33570922005-01-25 22:26:29 +000021535 * when called due to a ":return" command. "rettv" may point to a typval_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021536 * with the return rettv. Returns TRUE when the return can be carried out,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021537 * FALSE when the return gets pending.
21538 */
21539 int
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021540do_return(eap, reanimate, is_cmd, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021541 exarg_T *eap;
21542 int reanimate;
21543 int is_cmd;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021544 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021545{
21546 int idx;
21547 struct condstack *cstack = eap->cstack;
21548
21549 if (reanimate)
21550 /* Undo the return. */
21551 current_funccal->returned = FALSE;
21552
21553 /*
21554 * Cleanup (and inactivate) conditionals, but stop when a try conditional
21555 * not in its finally clause (which then is to be executed next) is found.
21556 * In this case, make the ":return" pending for execution at the ":endtry".
21557 * Otherwise, return normally.
21558 */
21559 idx = cleanup_conditionals(eap->cstack, 0, TRUE);
21560 if (idx >= 0)
21561 {
21562 cstack->cs_pending[idx] = CSTP_RETURN;
21563
21564 if (!is_cmd && !reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021565 /* A pending return again gets pending. "rettv" points to an
21566 * allocated variable with the rettv of the original ":return"'s
Bram Moolenaar071d4272004-06-13 20:20:40 +000021567 * argument if present or is NULL else. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021568 cstack->cs_rettv[idx] = rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021569 else
21570 {
21571 /* When undoing a return in order to make it pending, get the stored
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021572 * return rettv. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021573 if (reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021574 rettv = current_funccal->rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021575
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021576 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021577 {
21578 /* Store the value of the pending return. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021579 if ((cstack->cs_rettv[idx] = alloc_tv()) != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000021580 *(typval_T *)cstack->cs_rettv[idx] = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021581 else
21582 EMSG(_(e_outofmem));
21583 }
21584 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021585 cstack->cs_rettv[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021586
21587 if (reanimate)
21588 {
21589 /* The pending return value could be overwritten by a ":return"
21590 * without argument in a finally clause; reset the default
21591 * return value. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021592 current_funccal->rettv->v_type = VAR_NUMBER;
21593 current_funccal->rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021594 }
21595 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021596 report_make_pending(CSTP_RETURN, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021597 }
21598 else
21599 {
21600 current_funccal->returned = TRUE;
21601
21602 /* If the return is carried out now, store the return value. For
21603 * a return immediately after reanimation, the value is already
21604 * there. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021605 if (!reanimate && rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021606 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021607 clear_tv(current_funccal->rettv);
Bram Moolenaar33570922005-01-25 22:26:29 +000021608 *current_funccal->rettv = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021609 if (!is_cmd)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021610 vim_free(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021611 }
21612 }
21613
21614 return idx < 0;
21615}
21616
21617/*
21618 * Free the variable with a pending return value.
21619 */
21620 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021621discard_pending_return(rettv)
21622 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021623{
Bram Moolenaar33570922005-01-25 22:26:29 +000021624 free_tv((typval_T *)rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021625}
21626
21627/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021628 * Generate a return command for producing the value of "rettv". The result
Bram Moolenaar071d4272004-06-13 20:20:40 +000021629 * is an allocated string. Used by report_pending() for verbose messages.
21630 */
21631 char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021632get_return_cmd(rettv)
21633 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021634{
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021635 char_u *s = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021636 char_u *tofree = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021637 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021638
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021639 if (rettv != NULL)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021640 s = echo_string((typval_T *)rettv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021641 if (s == NULL)
21642 s = (char_u *)"";
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021643
21644 STRCPY(IObuff, ":return ");
21645 STRNCPY(IObuff + 8, s, IOSIZE - 8);
21646 if (STRLEN(s) + 8 >= IOSIZE)
21647 STRCPY(IObuff + IOSIZE - 4, "...");
21648 vim_free(tofree);
21649 return vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021650}
21651
21652/*
21653 * Get next function line.
21654 * Called by do_cmdline() to get the next line.
21655 * Returns allocated string, or NULL for end of function.
21656 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021657 char_u *
21658get_func_line(c, cookie, indent)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000021659 int c UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021660 void *cookie;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000021661 int indent UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021662{
Bram Moolenaar33570922005-01-25 22:26:29 +000021663 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021664 ufunc_T *fp = fcp->func;
21665 char_u *retval;
21666 garray_T *gap; /* growarray with function lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021667
21668 /* If breakpoints have been added/deleted need to check for it. */
21669 if (fcp->dbg_tick != debug_tick)
21670 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021671 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021672 sourcing_lnum);
21673 fcp->dbg_tick = debug_tick;
21674 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021675#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021676 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021677 func_line_end(cookie);
21678#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021679
Bram Moolenaar05159a02005-02-26 23:04:13 +000021680 gap = &fp->uf_lines;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021681 if (((fp->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
21682 || fcp->returned)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021683 retval = NULL;
21684 else
21685 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021686 /* Skip NULL lines (continuation lines). */
21687 while (fcp->linenr < gap->ga_len
21688 && ((char_u **)(gap->ga_data))[fcp->linenr] == NULL)
21689 ++fcp->linenr;
21690 if (fcp->linenr >= gap->ga_len)
21691 retval = NULL;
21692 else
21693 {
21694 retval = vim_strsave(((char_u **)(gap->ga_data))[fcp->linenr++]);
21695 sourcing_lnum = fcp->linenr;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021696#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021697 if (do_profiling == PROF_YES)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021698 func_line_start(cookie);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021699#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021700 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021701 }
21702
21703 /* Did we encounter a breakpoint? */
21704 if (fcp->breakpoint != 0 && fcp->breakpoint <= sourcing_lnum)
21705 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021706 dbg_breakpoint(fp->uf_name, sourcing_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021707 /* Find next breakpoint. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000021708 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021709 sourcing_lnum);
21710 fcp->dbg_tick = debug_tick;
21711 }
21712
21713 return retval;
21714}
21715
Bram Moolenaar05159a02005-02-26 23:04:13 +000021716#if defined(FEAT_PROFILE) || defined(PROTO)
21717/*
21718 * Called when starting to read a function line.
21719 * "sourcing_lnum" must be correct!
21720 * When skipping lines it may not actually be executed, but we won't find out
21721 * until later and we need to store the time now.
21722 */
21723 void
21724func_line_start(cookie)
21725 void *cookie;
21726{
21727 funccall_T *fcp = (funccall_T *)cookie;
21728 ufunc_T *fp = fcp->func;
21729
21730 if (fp->uf_profiling && sourcing_lnum >= 1
21731 && sourcing_lnum <= fp->uf_lines.ga_len)
21732 {
21733 fp->uf_tml_idx = sourcing_lnum - 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021734 /* Skip continuation lines. */
21735 while (fp->uf_tml_idx > 0 && FUNCLINE(fp, fp->uf_tml_idx) == NULL)
21736 --fp->uf_tml_idx;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021737 fp->uf_tml_execed = FALSE;
21738 profile_start(&fp->uf_tml_start);
21739 profile_zero(&fp->uf_tml_children);
21740 profile_get_wait(&fp->uf_tml_wait);
21741 }
21742}
21743
21744/*
21745 * Called when actually executing a function line.
21746 */
21747 void
21748func_line_exec(cookie)
21749 void *cookie;
21750{
21751 funccall_T *fcp = (funccall_T *)cookie;
21752 ufunc_T *fp = fcp->func;
21753
21754 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21755 fp->uf_tml_execed = TRUE;
21756}
21757
21758/*
21759 * Called when done with a function line.
21760 */
21761 void
21762func_line_end(cookie)
21763 void *cookie;
21764{
21765 funccall_T *fcp = (funccall_T *)cookie;
21766 ufunc_T *fp = fcp->func;
21767
21768 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21769 {
21770 if (fp->uf_tml_execed)
21771 {
21772 ++fp->uf_tml_count[fp->uf_tml_idx];
21773 profile_end(&fp->uf_tml_start);
21774 profile_sub_wait(&fp->uf_tml_wait, &fp->uf_tml_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021775 profile_add(&fp->uf_tml_total[fp->uf_tml_idx], &fp->uf_tml_start);
Bram Moolenaar1056d982006-03-09 22:37:52 +000021776 profile_self(&fp->uf_tml_self[fp->uf_tml_idx], &fp->uf_tml_start,
21777 &fp->uf_tml_children);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021778 }
21779 fp->uf_tml_idx = -1;
21780 }
21781}
21782#endif
21783
Bram Moolenaar071d4272004-06-13 20:20:40 +000021784/*
21785 * Return TRUE if the currently active function should be ended, because a
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021786 * return was encountered or an error occurred. Used inside a ":while".
Bram Moolenaar071d4272004-06-13 20:20:40 +000021787 */
21788 int
21789func_has_ended(cookie)
21790 void *cookie;
21791{
Bram Moolenaar33570922005-01-25 22:26:29 +000021792 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021793
21794 /* Ignore the "abort" flag if the abortion behavior has been changed due to
21795 * an error inside a try conditional. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021796 return (((fcp->func->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
Bram Moolenaar071d4272004-06-13 20:20:40 +000021797 || fcp->returned);
21798}
21799
21800/*
21801 * return TRUE if cookie indicates a function which "abort"s on errors.
21802 */
21803 int
21804func_has_abort(cookie)
21805 void *cookie;
21806{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021807 return ((funccall_T *)cookie)->func->uf_flags & FC_ABORT;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021808}
21809
21810#if defined(FEAT_VIMINFO) || defined(FEAT_SESSION)
21811typedef enum
21812{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021813 VAR_FLAVOUR_DEFAULT, /* doesn't start with uppercase */
21814 VAR_FLAVOUR_SESSION, /* starts with uppercase, some lower */
21815 VAR_FLAVOUR_VIMINFO /* all uppercase */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021816} var_flavour_T;
21817
21818static var_flavour_T var_flavour __ARGS((char_u *varname));
21819
21820 static var_flavour_T
21821var_flavour(varname)
21822 char_u *varname;
21823{
21824 char_u *p = varname;
21825
21826 if (ASCII_ISUPPER(*p))
21827 {
21828 while (*(++p))
21829 if (ASCII_ISLOWER(*p))
21830 return VAR_FLAVOUR_SESSION;
21831 return VAR_FLAVOUR_VIMINFO;
21832 }
21833 else
21834 return VAR_FLAVOUR_DEFAULT;
21835}
21836#endif
21837
21838#if defined(FEAT_VIMINFO) || defined(PROTO)
21839/*
21840 * Restore global vars that start with a capital from the viminfo file
21841 */
21842 int
21843read_viminfo_varlist(virp, writing)
21844 vir_T *virp;
21845 int writing;
21846{
21847 char_u *tab;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021848 int type = VAR_NUMBER;
Bram Moolenaar33570922005-01-25 22:26:29 +000021849 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021850
21851 if (!writing && (find_viminfo_parameter('!') != NULL))
21852 {
21853 tab = vim_strchr(virp->vir_line + 1, '\t');
21854 if (tab != NULL)
21855 {
21856 *tab++ = '\0'; /* isolate the variable name */
21857 if (*tab == 'S') /* string var */
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021858 type = VAR_STRING;
21859#ifdef FEAT_FLOAT
21860 else if (*tab == 'F')
21861 type = VAR_FLOAT;
21862#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021863
21864 tab = vim_strchr(tab, '\t');
21865 if (tab != NULL)
21866 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021867 tv.v_type = type;
21868 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021869 tv.vval.v_string = viminfo_readstring(virp,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021870 (int)(tab - virp->vir_line + 1), TRUE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021871#ifdef FEAT_FLOAT
21872 else if (type == VAR_FLOAT)
21873 (void)string2float(tab + 1, &tv.vval.v_float);
21874#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021875 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021876 tv.vval.v_number = atol((char *)tab + 1);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021877 set_var(virp->vir_line + 1, &tv, FALSE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021878 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021879 vim_free(tv.vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021880 }
21881 }
21882 }
21883
21884 return viminfo_readline(virp);
21885}
21886
21887/*
21888 * Write global vars that start with a capital to the viminfo file
21889 */
21890 void
21891write_viminfo_varlist(fp)
21892 FILE *fp;
21893{
Bram Moolenaar33570922005-01-25 22:26:29 +000021894 hashitem_T *hi;
21895 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021896 int todo;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021897 char *s;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021898 char_u *p;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021899 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021900 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021901
21902 if (find_viminfo_parameter('!') == NULL)
21903 return;
21904
21905 fprintf(fp, _("\n# global variables:\n"));
Bram Moolenaara7043832005-01-21 11:56:39 +000021906
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021907 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021908 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021909 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021910 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021911 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021912 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021913 this_var = HI2DI(hi);
21914 if (var_flavour(this_var->di_key) == VAR_FLAVOUR_VIMINFO)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021915 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021916 switch (this_var->di_tv.v_type)
Bram Moolenaara7043832005-01-21 11:56:39 +000021917 {
21918 case VAR_STRING: s = "STR"; break;
21919 case VAR_NUMBER: s = "NUM"; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021920#ifdef FEAT_FLOAT
21921 case VAR_FLOAT: s = "FLO"; break;
21922#endif
Bram Moolenaara7043832005-01-21 11:56:39 +000021923 default: continue;
21924 }
Bram Moolenaar33570922005-01-25 22:26:29 +000021925 fprintf(fp, "!%s\t%s\t", this_var->di_key, s);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021926 p = echo_string(&this_var->di_tv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021927 if (p != NULL)
21928 viminfo_writestring(fp, p);
Bram Moolenaara7043832005-01-21 11:56:39 +000021929 vim_free(tofree);
21930 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021931 }
21932 }
21933}
21934#endif
21935
21936#if defined(FEAT_SESSION) || defined(PROTO)
21937 int
21938store_session_globals(fd)
21939 FILE *fd;
21940{
Bram Moolenaar33570922005-01-25 22:26:29 +000021941 hashitem_T *hi;
21942 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021943 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021944 char_u *p, *t;
21945
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021946 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021947 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021948 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021949 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021950 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021951 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021952 this_var = HI2DI(hi);
21953 if ((this_var->di_tv.v_type == VAR_NUMBER
21954 || this_var->di_tv.v_type == VAR_STRING)
21955 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021956 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021957 /* Escape special characters with a backslash. Turn a LF and
21958 * CR into \n and \r. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021959 p = vim_strsave_escaped(get_tv_string(&this_var->di_tv),
Bram Moolenaara7043832005-01-21 11:56:39 +000021960 (char_u *)"\\\"\n\r");
21961 if (p == NULL) /* out of memory */
21962 break;
21963 for (t = p; *t != NUL; ++t)
21964 if (*t == '\n')
21965 *t = 'n';
21966 else if (*t == '\r')
21967 *t = 'r';
21968 if ((fprintf(fd, "let %s = %c%s%c",
Bram Moolenaar33570922005-01-25 22:26:29 +000021969 this_var->di_key,
21970 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21971 : ' ',
21972 p,
21973 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21974 : ' ') < 0)
Bram Moolenaara7043832005-01-21 11:56:39 +000021975 || put_eol(fd) == FAIL)
21976 {
21977 vim_free(p);
21978 return FAIL;
21979 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021980 vim_free(p);
21981 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021982#ifdef FEAT_FLOAT
21983 else if (this_var->di_tv.v_type == VAR_FLOAT
21984 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
21985 {
21986 float_T f = this_var->di_tv.vval.v_float;
21987 int sign = ' ';
21988
21989 if (f < 0)
21990 {
21991 f = -f;
21992 sign = '-';
21993 }
21994 if ((fprintf(fd, "let %s = %c&%f",
21995 this_var->di_key, sign, f) < 0)
21996 || put_eol(fd) == FAIL)
21997 return FAIL;
21998 }
21999#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000022000 }
22001 }
22002 return OK;
22003}
22004#endif
22005
Bram Moolenaar661b1822005-07-28 22:36:45 +000022006/*
22007 * Display script name where an item was last set.
22008 * Should only be invoked when 'verbose' is non-zero.
22009 */
22010 void
22011last_set_msg(scriptID)
22012 scid_T scriptID;
22013{
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000022014 char_u *p;
22015
Bram Moolenaar661b1822005-07-28 22:36:45 +000022016 if (scriptID != 0)
22017 {
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000022018 p = home_replace_save(NULL, get_scriptname(scriptID));
22019 if (p != NULL)
22020 {
22021 verbose_enter();
22022 MSG_PUTS(_("\n\tLast set from "));
22023 MSG_PUTS(p);
22024 vim_free(p);
22025 verbose_leave();
22026 }
Bram Moolenaar661b1822005-07-28 22:36:45 +000022027 }
22028}
22029
Bram Moolenaard812df62008-11-09 12:46:09 +000022030/*
22031 * List v:oldfiles in a nice way.
22032 */
Bram Moolenaard812df62008-11-09 12:46:09 +000022033 void
22034ex_oldfiles(eap)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000022035 exarg_T *eap UNUSED;
Bram Moolenaard812df62008-11-09 12:46:09 +000022036{
22037 list_T *l = vimvars[VV_OLDFILES].vv_list;
22038 listitem_T *li;
22039 int nr = 0;
22040
22041 if (l == NULL)
22042 msg((char_u *)_("No old files"));
22043 else
22044 {
22045 msg_start();
22046 msg_scroll = TRUE;
22047 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
22048 {
22049 msg_outnum((long)++nr);
22050 MSG_PUTS(": ");
22051 msg_outtrans(get_tv_string(&li->li_tv));
22052 msg_putchar('\n');
22053 out_flush(); /* output one line at a time */
22054 ui_breakcheck();
22055 }
22056 /* Assume "got_int" was set to truncate the listing. */
22057 got_int = FALSE;
22058
22059#ifdef FEAT_BROWSE_CMD
22060 if (cmdmod.browse)
22061 {
22062 quit_more = FALSE;
22063 nr = prompt_for_number(FALSE);
22064 msg_starthere();
22065 if (nr > 0)
22066 {
22067 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
22068 (long)nr);
22069
22070 if (p != NULL)
22071 {
22072 p = expand_env_save(p);
22073 eap->arg = p;
22074 eap->cmdidx = CMD_edit;
22075 cmdmod.browse = FALSE;
22076 do_exedit(eap, NULL);
22077 vim_free(p);
22078 }
22079 }
22080 }
22081#endif
22082 }
22083}
22084
Bram Moolenaar071d4272004-06-13 20:20:40 +000022085#endif /* FEAT_EVAL */
22086
Bram Moolenaar071d4272004-06-13 20:20:40 +000022087
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022088#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022089
22090#ifdef WIN3264
22091/*
22092 * Functions for ":8" filename modifier: get 8.3 version of a filename.
22093 */
22094static int get_short_pathname __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22095static int shortpath_for_invalid_fname __ARGS((char_u **fname, char_u **bufp, int *fnamelen));
22096static int shortpath_for_partial __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22097
22098/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022099 * Get the short path (8.3) for the filename in "fnamep".
22100 * Only works for a valid file name.
22101 * When the path gets longer "fnamep" is changed and the allocated buffer
22102 * is put in "bufp".
22103 * *fnamelen is the length of "fnamep" and set to 0 for a nonexistent path.
22104 * Returns OK on success, FAIL on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022105 */
22106 static int
22107get_short_pathname(fnamep, bufp, fnamelen)
22108 char_u **fnamep;
22109 char_u **bufp;
22110 int *fnamelen;
22111{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022112 int l, len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022113 char_u *newbuf;
22114
22115 len = *fnamelen;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022116 l = GetShortPathName(*fnamep, *fnamep, len);
22117 if (l > len - 1)
22118 {
22119 /* If that doesn't work (not enough space), then save the string
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022120 * and try again with a new buffer big enough. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022121 newbuf = vim_strnsave(*fnamep, l);
22122 if (newbuf == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022123 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022124
22125 vim_free(*bufp);
22126 *fnamep = *bufp = newbuf;
22127
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022128 /* Really should always succeed, as the buffer is big enough. */
22129 l = GetShortPathName(*fnamep, *fnamep, l+1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022130 }
22131
22132 *fnamelen = l;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022133 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022134}
22135
22136/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022137 * Get the short path (8.3) for the filename in "fname". The converted
22138 * path is returned in "bufp".
22139 *
22140 * Some of the directories specified in "fname" may not exist. This function
22141 * will shorten the existing directories at the beginning of the path and then
22142 * append the remaining non-existing path.
22143 *
22144 * fname - Pointer to the filename to shorten. On return, contains the
22145 * pointer to the shortened pathname
22146 * bufp - Pointer to an allocated buffer for the filename.
22147 * fnamelen - Length of the filename pointed to by fname
22148 *
22149 * Returns OK on success (or nothing done) and FAIL on failure (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +000022150 */
22151 static int
22152shortpath_for_invalid_fname(fname, bufp, fnamelen)
22153 char_u **fname;
22154 char_u **bufp;
22155 int *fnamelen;
22156{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022157 char_u *short_fname, *save_fname, *pbuf_unused;
22158 char_u *endp, *save_endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022159 char_u ch;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022160 int old_len, len;
22161 int new_len, sfx_len;
22162 int retval = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022163
22164 /* Make a copy */
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022165 old_len = *fnamelen;
22166 save_fname = vim_strnsave(*fname, old_len);
22167 pbuf_unused = NULL;
22168 short_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022169
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022170 endp = save_fname + old_len - 1; /* Find the end of the copy */
22171 save_endp = endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022172
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022173 /*
22174 * Try shortening the supplied path till it succeeds by removing one
22175 * directory at a time from the tail of the path.
22176 */
22177 len = 0;
22178 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022179 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022180 /* go back one path-separator */
22181 while (endp > save_fname && !after_pathsep(save_fname, endp + 1))
22182 --endp;
22183 if (endp <= save_fname)
22184 break; /* processed the complete path */
22185
22186 /*
22187 * Replace the path separator with a NUL and try to shorten the
22188 * resulting path.
22189 */
22190 ch = *endp;
22191 *endp = 0;
22192 short_fname = save_fname;
Bram Moolenaarc236c162008-07-13 17:41:49 +000022193 len = (int)STRLEN(short_fname) + 1;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022194 if (get_short_pathname(&short_fname, &pbuf_unused, &len) == FAIL)
22195 {
22196 retval = FAIL;
22197 goto theend;
22198 }
22199 *endp = ch; /* preserve the string */
22200
22201 if (len > 0)
22202 break; /* successfully shortened the path */
22203
22204 /* failed to shorten the path. Skip the path separator */
22205 --endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022206 }
22207
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022208 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022209 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022210 /*
22211 * Succeeded in shortening the path. Now concatenate the shortened
22212 * path with the remaining path at the tail.
22213 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022214
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022215 /* Compute the length of the new path. */
22216 sfx_len = (int)(save_endp - endp) + 1;
22217 new_len = len + sfx_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022218
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022219 *fnamelen = new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022220 vim_free(*bufp);
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022221 if (new_len > old_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022222 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022223 /* There is not enough space in the currently allocated string,
22224 * copy it to a buffer big enough. */
22225 *fname = *bufp = vim_strnsave(short_fname, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022226 if (*fname == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022227 {
22228 retval = FAIL;
22229 goto theend;
22230 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022231 }
22232 else
22233 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022234 /* Transfer short_fname to the main buffer (it's big enough),
22235 * unless get_short_pathname() did its work in-place. */
22236 *fname = *bufp = save_fname;
22237 if (short_fname != save_fname)
22238 vim_strncpy(save_fname, short_fname, len);
22239 save_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022240 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022241
22242 /* concat the not-shortened part of the path */
22243 vim_strncpy(*fname + len, endp, sfx_len);
22244 (*fname)[new_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022245 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022246
22247theend:
22248 vim_free(pbuf_unused);
22249 vim_free(save_fname);
22250
22251 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022252}
22253
22254/*
22255 * Get a pathname for a partial path.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022256 * Returns OK for success, FAIL for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022257 */
22258 static int
22259shortpath_for_partial(fnamep, bufp, fnamelen)
22260 char_u **fnamep;
22261 char_u **bufp;
22262 int *fnamelen;
22263{
22264 int sepcount, len, tflen;
22265 char_u *p;
22266 char_u *pbuf, *tfname;
22267 int hasTilde;
22268
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022269 /* Count up the path separators from the RHS.. so we know which part
22270 * of the path to return. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022271 sepcount = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022272 for (p = *fnamep; p < *fnamep + *fnamelen; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022273 if (vim_ispathsep(*p))
22274 ++sepcount;
22275
22276 /* Need full path first (use expand_env() to remove a "~/") */
22277 hasTilde = (**fnamep == '~');
22278 if (hasTilde)
22279 pbuf = tfname = expand_env_save(*fnamep);
22280 else
22281 pbuf = tfname = FullName_save(*fnamep, FALSE);
22282
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000022283 len = tflen = (int)STRLEN(tfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022284
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022285 if (get_short_pathname(&tfname, &pbuf, &len) == FAIL)
22286 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022287
22288 if (len == 0)
22289 {
22290 /* Don't have a valid filename, so shorten the rest of the
22291 * path if we can. This CAN give us invalid 8.3 filenames, but
22292 * there's not a lot of point in guessing what it might be.
22293 */
22294 len = tflen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022295 if (shortpath_for_invalid_fname(&tfname, &pbuf, &len) == FAIL)
22296 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022297 }
22298
22299 /* Count the paths backward to find the beginning of the desired string. */
22300 for (p = tfname + len - 1; p >= tfname; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022301 {
22302#ifdef FEAT_MBYTE
22303 if (has_mbyte)
22304 p -= mb_head_off(tfname, p);
22305#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000022306 if (vim_ispathsep(*p))
22307 {
22308 if (sepcount == 0 || (hasTilde && sepcount == 1))
22309 break;
22310 else
22311 sepcount --;
22312 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022313 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022314 if (hasTilde)
22315 {
22316 --p;
22317 if (p >= tfname)
22318 *p = '~';
22319 else
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022320 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022321 }
22322 else
22323 ++p;
22324
22325 /* Copy in the string - p indexes into tfname - allocated at pbuf */
22326 vim_free(*bufp);
22327 *fnamelen = (int)STRLEN(p);
22328 *bufp = pbuf;
22329 *fnamep = p;
22330
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022331 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022332}
22333#endif /* WIN3264 */
22334
22335/*
22336 * Adjust a filename, according to a string of modifiers.
22337 * *fnamep must be NUL terminated when called. When returning, the length is
22338 * determined by *fnamelen.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022339 * Returns VALID_ flags or -1 for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022340 * When there is an error, *fnamep is set to NULL.
22341 */
22342 int
22343modify_fname(src, usedlen, fnamep, bufp, fnamelen)
22344 char_u *src; /* string with modifiers */
22345 int *usedlen; /* characters after src that are used */
22346 char_u **fnamep; /* file name so far */
22347 char_u **bufp; /* buffer for allocated file name or NULL */
22348 int *fnamelen; /* length of fnamep */
22349{
22350 int valid = 0;
22351 char_u *tail;
22352 char_u *s, *p, *pbuf;
22353 char_u dirname[MAXPATHL];
22354 int c;
22355 int has_fullname = 0;
22356#ifdef WIN3264
22357 int has_shortname = 0;
22358#endif
22359
22360repeat:
22361 /* ":p" - full path/file_name */
22362 if (src[*usedlen] == ':' && src[*usedlen + 1] == 'p')
22363 {
22364 has_fullname = 1;
22365
22366 valid |= VALID_PATH;
22367 *usedlen += 2;
22368
22369 /* Expand "~/path" for all systems and "~user/path" for Unix and VMS */
22370 if ((*fnamep)[0] == '~'
22371#if !defined(UNIX) && !(defined(VMS) && defined(USER_HOME))
22372 && ((*fnamep)[1] == '/'
22373# ifdef BACKSLASH_IN_FILENAME
22374 || (*fnamep)[1] == '\\'
22375# endif
22376 || (*fnamep)[1] == NUL)
22377
22378#endif
22379 )
22380 {
22381 *fnamep = expand_env_save(*fnamep);
22382 vim_free(*bufp); /* free any allocated file name */
22383 *bufp = *fnamep;
22384 if (*fnamep == NULL)
22385 return -1;
22386 }
22387
22388 /* When "/." or "/.." is used: force expansion to get rid of it. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022389 for (p = *fnamep; *p != NUL; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022390 {
22391 if (vim_ispathsep(*p)
22392 && p[1] == '.'
22393 && (p[2] == NUL
22394 || vim_ispathsep(p[2])
22395 || (p[2] == '.'
22396 && (p[3] == NUL || vim_ispathsep(p[3])))))
22397 break;
22398 }
22399
22400 /* FullName_save() is slow, don't use it when not needed. */
22401 if (*p != NUL || !vim_isAbsName(*fnamep))
22402 {
22403 *fnamep = FullName_save(*fnamep, *p != NUL);
22404 vim_free(*bufp); /* free any allocated file name */
22405 *bufp = *fnamep;
22406 if (*fnamep == NULL)
22407 return -1;
22408 }
22409
22410 /* Append a path separator to a directory. */
22411 if (mch_isdir(*fnamep))
22412 {
22413 /* Make room for one or two extra characters. */
22414 *fnamep = vim_strnsave(*fnamep, (int)STRLEN(*fnamep) + 2);
22415 vim_free(*bufp); /* free any allocated file name */
22416 *bufp = *fnamep;
22417 if (*fnamep == NULL)
22418 return -1;
22419 add_pathsep(*fnamep);
22420 }
22421 }
22422
22423 /* ":." - path relative to the current directory */
22424 /* ":~" - path relative to the home directory */
22425 /* ":8" - shortname path - postponed till after */
22426 while (src[*usedlen] == ':'
22427 && ((c = src[*usedlen + 1]) == '.' || c == '~' || c == '8'))
22428 {
22429 *usedlen += 2;
22430 if (c == '8')
22431 {
22432#ifdef WIN3264
22433 has_shortname = 1; /* Postpone this. */
22434#endif
22435 continue;
22436 }
22437 pbuf = NULL;
22438 /* Need full path first (use expand_env() to remove a "~/") */
22439 if (!has_fullname)
22440 {
22441 if (c == '.' && **fnamep == '~')
22442 p = pbuf = expand_env_save(*fnamep);
22443 else
22444 p = pbuf = FullName_save(*fnamep, FALSE);
22445 }
22446 else
22447 p = *fnamep;
22448
22449 has_fullname = 0;
22450
22451 if (p != NULL)
22452 {
22453 if (c == '.')
22454 {
22455 mch_dirname(dirname, MAXPATHL);
22456 s = shorten_fname(p, dirname);
22457 if (s != NULL)
22458 {
22459 *fnamep = s;
22460 if (pbuf != NULL)
22461 {
22462 vim_free(*bufp); /* free any allocated file name */
22463 *bufp = pbuf;
22464 pbuf = NULL;
22465 }
22466 }
22467 }
22468 else
22469 {
22470 home_replace(NULL, p, dirname, MAXPATHL, TRUE);
22471 /* Only replace it when it starts with '~' */
22472 if (*dirname == '~')
22473 {
22474 s = vim_strsave(dirname);
22475 if (s != NULL)
22476 {
22477 *fnamep = s;
22478 vim_free(*bufp);
22479 *bufp = s;
22480 }
22481 }
22482 }
22483 vim_free(pbuf);
22484 }
22485 }
22486
22487 tail = gettail(*fnamep);
22488 *fnamelen = (int)STRLEN(*fnamep);
22489
22490 /* ":h" - head, remove "/file_name", can be repeated */
22491 /* Don't remove the first "/" or "c:\" */
22492 while (src[*usedlen] == ':' && src[*usedlen + 1] == 'h')
22493 {
22494 valid |= VALID_HEAD;
22495 *usedlen += 2;
22496 s = get_past_head(*fnamep);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022497 while (tail > s && after_pathsep(s, tail))
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022498 mb_ptr_back(*fnamep, tail);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022499 *fnamelen = (int)(tail - *fnamep);
22500#ifdef VMS
22501 if (*fnamelen > 0)
22502 *fnamelen += 1; /* the path separator is part of the path */
22503#endif
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022504 if (*fnamelen == 0)
22505 {
22506 /* Result is empty. Turn it into "." to make ":cd %:h" work. */
22507 p = vim_strsave((char_u *)".");
22508 if (p == NULL)
22509 return -1;
22510 vim_free(*bufp);
22511 *bufp = *fnamep = tail = p;
22512 *fnamelen = 1;
22513 }
22514 else
22515 {
22516 while (tail > s && !after_pathsep(s, tail))
22517 mb_ptr_back(*fnamep, tail);
22518 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022519 }
22520
22521 /* ":8" - shortname */
22522 if (src[*usedlen] == ':' && src[*usedlen + 1] == '8')
22523 {
22524 *usedlen += 2;
22525#ifdef WIN3264
22526 has_shortname = 1;
22527#endif
22528 }
22529
22530#ifdef WIN3264
22531 /* Check shortname after we have done 'heads' and before we do 'tails'
22532 */
22533 if (has_shortname)
22534 {
22535 pbuf = NULL;
22536 /* Copy the string if it is shortened by :h */
22537 if (*fnamelen < (int)STRLEN(*fnamep))
22538 {
22539 p = vim_strnsave(*fnamep, *fnamelen);
22540 if (p == 0)
22541 return -1;
22542 vim_free(*bufp);
22543 *bufp = *fnamep = p;
22544 }
22545
22546 /* Split into two implementations - makes it easier. First is where
22547 * there isn't a full name already, second is where there is.
22548 */
22549 if (!has_fullname && !vim_isAbsName(*fnamep))
22550 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022551 if (shortpath_for_partial(fnamep, bufp, fnamelen) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022552 return -1;
22553 }
22554 else
22555 {
22556 int l;
22557
22558 /* Simple case, already have the full-name
22559 * Nearly always shorter, so try first time. */
22560 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022561 if (get_short_pathname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022562 return -1;
22563
22564 if (l == 0)
22565 {
22566 /* Couldn't find the filename.. search the paths.
22567 */
22568 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022569 if (shortpath_for_invalid_fname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022570 return -1;
22571 }
22572 *fnamelen = l;
22573 }
22574 }
22575#endif /* WIN3264 */
22576
22577 /* ":t" - tail, just the basename */
22578 if (src[*usedlen] == ':' && src[*usedlen + 1] == 't')
22579 {
22580 *usedlen += 2;
22581 *fnamelen -= (int)(tail - *fnamep);
22582 *fnamep = tail;
22583 }
22584
22585 /* ":e" - extension, can be repeated */
22586 /* ":r" - root, without extension, can be repeated */
22587 while (src[*usedlen] == ':'
22588 && (src[*usedlen + 1] == 'e' || src[*usedlen + 1] == 'r'))
22589 {
22590 /* find a '.' in the tail:
22591 * - for second :e: before the current fname
22592 * - otherwise: The last '.'
22593 */
22594 if (src[*usedlen + 1] == 'e' && *fnamep > tail)
22595 s = *fnamep - 2;
22596 else
22597 s = *fnamep + *fnamelen - 1;
22598 for ( ; s > tail; --s)
22599 if (s[0] == '.')
22600 break;
22601 if (src[*usedlen + 1] == 'e') /* :e */
22602 {
22603 if (s > tail)
22604 {
22605 *fnamelen += (int)(*fnamep - (s + 1));
22606 *fnamep = s + 1;
22607#ifdef VMS
22608 /* cut version from the extension */
22609 s = *fnamep + *fnamelen - 1;
22610 for ( ; s > *fnamep; --s)
22611 if (s[0] == ';')
22612 break;
22613 if (s > *fnamep)
22614 *fnamelen = s - *fnamep;
22615#endif
22616 }
22617 else if (*fnamep <= tail)
22618 *fnamelen = 0;
22619 }
22620 else /* :r */
22621 {
22622 if (s > tail) /* remove one extension */
22623 *fnamelen = (int)(s - *fnamep);
22624 }
22625 *usedlen += 2;
22626 }
22627
22628 /* ":s?pat?foo?" - substitute */
22629 /* ":gs?pat?foo?" - global substitute */
22630 if (src[*usedlen] == ':'
22631 && (src[*usedlen + 1] == 's'
22632 || (src[*usedlen + 1] == 'g' && src[*usedlen + 2] == 's')))
22633 {
22634 char_u *str;
22635 char_u *pat;
22636 char_u *sub;
22637 int sep;
22638 char_u *flags;
22639 int didit = FALSE;
22640
22641 flags = (char_u *)"";
22642 s = src + *usedlen + 2;
22643 if (src[*usedlen + 1] == 'g')
22644 {
22645 flags = (char_u *)"g";
22646 ++s;
22647 }
22648
22649 sep = *s++;
22650 if (sep)
22651 {
22652 /* find end of pattern */
22653 p = vim_strchr(s, sep);
22654 if (p != NULL)
22655 {
22656 pat = vim_strnsave(s, (int)(p - s));
22657 if (pat != NULL)
22658 {
22659 s = p + 1;
22660 /* find end of substitution */
22661 p = vim_strchr(s, sep);
22662 if (p != NULL)
22663 {
22664 sub = vim_strnsave(s, (int)(p - s));
22665 str = vim_strnsave(*fnamep, *fnamelen);
22666 if (sub != NULL && str != NULL)
22667 {
22668 *usedlen = (int)(p + 1 - src);
22669 s = do_string_sub(str, pat, sub, flags);
22670 if (s != NULL)
22671 {
22672 *fnamep = s;
22673 *fnamelen = (int)STRLEN(s);
22674 vim_free(*bufp);
22675 *bufp = s;
22676 didit = TRUE;
22677 }
22678 }
22679 vim_free(sub);
22680 vim_free(str);
22681 }
22682 vim_free(pat);
22683 }
22684 }
22685 /* after using ":s", repeat all the modifiers */
22686 if (didit)
22687 goto repeat;
22688 }
22689 }
22690
22691 return valid;
22692}
22693
22694/*
22695 * Perform a substitution on "str" with pattern "pat" and substitute "sub".
22696 * "flags" can be "g" to do a global substitute.
22697 * Returns an allocated string, NULL for error.
22698 */
22699 char_u *
22700do_string_sub(str, pat, sub, flags)
22701 char_u *str;
22702 char_u *pat;
22703 char_u *sub;
22704 char_u *flags;
22705{
22706 int sublen;
22707 regmatch_T regmatch;
22708 int i;
22709 int do_all;
22710 char_u *tail;
22711 garray_T ga;
22712 char_u *ret;
22713 char_u *save_cpo;
22714
22715 /* Make 'cpoptions' empty, so that the 'l' flag doesn't work here */
22716 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022717 p_cpo = empty_option;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022718
22719 ga_init2(&ga, 1, 200);
22720
22721 do_all = (flags[0] == 'g');
22722
22723 regmatch.rm_ic = p_ic;
22724 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
22725 if (regmatch.regprog != NULL)
22726 {
22727 tail = str;
22728 while (vim_regexec_nl(&regmatch, str, (colnr_T)(tail - str)))
22729 {
22730 /*
22731 * Get some space for a temporary buffer to do the substitution
22732 * into. It will contain:
22733 * - The text up to where the match is.
22734 * - The substituted text.
22735 * - The text after the match.
22736 */
22737 sublen = vim_regsub(&regmatch, sub, tail, FALSE, TRUE, FALSE);
22738 if (ga_grow(&ga, (int)(STRLEN(tail) + sublen -
22739 (regmatch.endp[0] - regmatch.startp[0]))) == FAIL)
22740 {
22741 ga_clear(&ga);
22742 break;
22743 }
22744
22745 /* copy the text up to where the match is */
22746 i = (int)(regmatch.startp[0] - tail);
22747 mch_memmove((char_u *)ga.ga_data + ga.ga_len, tail, (size_t)i);
22748 /* add the substituted text */
22749 (void)vim_regsub(&regmatch, sub, (char_u *)ga.ga_data
22750 + ga.ga_len + i, TRUE, TRUE, FALSE);
22751 ga.ga_len += i + sublen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022752 /* avoid getting stuck on a match with an empty string */
22753 if (tail == regmatch.endp[0])
22754 {
22755 if (*tail == NUL)
22756 break;
22757 *((char_u *)ga.ga_data + ga.ga_len) = *tail++;
22758 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022759 }
22760 else
22761 {
22762 tail = regmatch.endp[0];
22763 if (*tail == NUL)
22764 break;
22765 }
22766 if (!do_all)
22767 break;
22768 }
22769
22770 if (ga.ga_data != NULL)
22771 STRCPY((char *)ga.ga_data + ga.ga_len, tail);
22772
22773 vim_free(regmatch.regprog);
22774 }
22775
22776 ret = vim_strsave(ga.ga_data == NULL ? str : (char_u *)ga.ga_data);
22777 ga_clear(&ga);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022778 if (p_cpo == empty_option)
22779 p_cpo = save_cpo;
22780 else
22781 /* Darn, evaluating {sub} expression changed the value. */
22782 free_string_option(save_cpo);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022783
22784 return ret;
22785}
22786
22787#endif /* defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) */