blob: 9f70467703519beb0013b78fc5ab8f4da87f2381 [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 Moolenaar627b1d32009-11-17 11:20:35 +00009931 int index = 0;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009932
Bram Moolenaare9a41262005-01-15 22:18:47 +00009933 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009934 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009935 if ((l = argvars[0].vval.v_list) == NULL
Bram Moolenaar89d40322006-08-29 15:30:07 +00009936 || (map && tv_check_lock(l->lv_lock, ermsg)))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009937 return;
9938 }
9939 else if (argvars[0].v_type == VAR_DICT)
9940 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009941 if ((d = argvars[0].vval.v_dict) == NULL
Bram Moolenaar89d40322006-08-29 15:30:07 +00009942 || (map && tv_check_lock(d->dv_lock, ermsg)))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009943 return;
9944 }
9945 else
9946 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00009947 EMSG2(_(e_listdictarg), ermsg);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009948 return;
9949 }
9950
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009951 expr = get_tv_string_buf_chk(&argvars[1], buf);
9952 /* On type errors, the preceding call has already displayed an error
9953 * message. Avoid a misleading error message for an empty string that
9954 * was not passed as argument. */
9955 if (expr != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009956 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009957 prepare_vimvar(VV_VAL, &save_val);
9958 expr = skipwhite(expr);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009959
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009960 /* We reset "did_emsg" to be able to detect whether an error
9961 * occurred during evaluation of the expression. */
9962 save_did_emsg = did_emsg;
9963 did_emsg = FALSE;
Bram Moolenaar280f1262006-01-30 00:14:18 +00009964
Bram Moolenaar627b1d32009-11-17 11:20:35 +00009965 prepare_vimvar(VV_KEY, &save_key);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009966 if (argvars[0].v_type == VAR_DICT)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009967 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009968 vimvars[VV_KEY].vv_type = VAR_STRING;
9969
9970 ht = &d->dv_hashtab;
9971 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009972 todo = (int)ht->ht_used;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009973 for (hi = ht->ht_array; todo > 0; ++hi)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009974 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009975 if (!HASHITEM_EMPTY(hi))
9976 {
9977 --todo;
9978 di = HI2DI(hi);
Bram Moolenaar89d40322006-08-29 15:30:07 +00009979 if (tv_check_lock(di->di_tv.v_lock, ermsg))
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009980 break;
9981 vimvars[VV_KEY].vv_str = vim_strsave(di->di_key);
Bram Moolenaar280f1262006-01-30 00:14:18 +00009982 if (filter_map_one(&di->di_tv, expr, map, &rem) == FAIL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009983 || did_emsg)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009984 break;
9985 if (!map && rem)
9986 dictitem_remove(d, di);
9987 clear_tv(&vimvars[VV_KEY].vv_tv);
9988 }
9989 }
9990 hash_unlock(ht);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009991 }
9992 else
9993 {
Bram Moolenaar627b1d32009-11-17 11:20:35 +00009994 vimvars[VV_KEY].vv_type = VAR_NUMBER;
9995
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009996 for (li = l->lv_first; li != NULL; li = nli)
9997 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00009998 if (tv_check_lock(li->li_tv.v_lock, ermsg))
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009999 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010000 nli = li->li_next;
Bram Moolenaar627b1d32009-11-17 11:20:35 +000010001 vimvars[VV_KEY].vv_nr = index;
Bram Moolenaar280f1262006-01-30 00:14:18 +000010002 if (filter_map_one(&li->li_tv, expr, map, &rem) == FAIL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000010003 || did_emsg)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010004 break;
10005 if (!map && rem)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010006 listitem_remove(l, li);
Bram Moolenaar627b1d32009-11-17 11:20:35 +000010007 ++index;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010008 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010009 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010010
Bram Moolenaar627b1d32009-11-17 11:20:35 +000010011 restore_vimvar(VV_KEY, &save_key);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010012 restore_vimvar(VV_VAL, &save_val);
Bram Moolenaar280f1262006-01-30 00:14:18 +000010013
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000010014 did_emsg |= save_did_emsg;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010015 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000010016
10017 copy_tv(&argvars[0], rettv);
10018}
10019
10020 static int
10021filter_map_one(tv, expr, map, remp)
Bram Moolenaar33570922005-01-25 22:26:29 +000010022 typval_T *tv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010023 char_u *expr;
10024 int map;
10025 int *remp;
10026{
Bram Moolenaar33570922005-01-25 22:26:29 +000010027 typval_T rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010028 char_u *s;
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010029 int retval = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010030
Bram Moolenaar33570922005-01-25 22:26:29 +000010031 copy_tv(tv, &vimvars[VV_VAL].vv_tv);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010032 s = expr;
10033 if (eval1(&s, &rettv, TRUE) == FAIL)
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010034 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010035 if (*s != NUL) /* check for trailing chars after expr */
10036 {
10037 EMSG2(_(e_invexpr2), s);
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010038 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010039 }
10040 if (map)
10041 {
10042 /* map(): replace the list item value */
10043 clear_tv(tv);
Bram Moolenaar4463f292005-09-25 22:20:24 +000010044 rettv.v_lock = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010045 *tv = rettv;
10046 }
10047 else
10048 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010049 int error = FALSE;
10050
Bram Moolenaare9a41262005-01-15 22:18:47 +000010051 /* filter(): when expr is zero remove the item */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010052 *remp = (get_tv_number_chk(&rettv, &error) == 0);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010053 clear_tv(&rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010054 /* On type error, nothing has been removed; return FAIL to stop the
10055 * loop. The error message was given by get_tv_number_chk(). */
10056 if (error)
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010057 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010058 }
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010059 retval = OK;
10060theend:
Bram Moolenaar33570922005-01-25 22:26:29 +000010061 clear_tv(&vimvars[VV_VAL].vv_tv);
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010062 return retval;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010063}
10064
10065/*
10066 * "filter()" function
10067 */
10068 static void
10069f_filter(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010070 typval_T *argvars;
10071 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010072{
10073 filter_map(argvars, rettv, FALSE);
10074}
10075
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000010076/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010077 * "finddir({fname}[, {path}[, {count}]])" function
10078 */
10079 static void
10080f_finddir(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010081 typval_T *argvars;
10082 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010083{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +000010084 findfilendir(argvars, rettv, FINDFILE_DIR);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010085}
10086
10087/*
10088 * "findfile({fname}[, {path}[, {count}]])" function
10089 */
10090 static void
10091f_findfile(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010092 typval_T *argvars;
10093 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010094{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +000010095 findfilendir(argvars, rettv, FINDFILE_FILE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010096}
10097
Bram Moolenaar8c8de832008-06-24 22:58:06 +000010098#ifdef FEAT_FLOAT
10099/*
10100 * "float2nr({float})" function
10101 */
10102 static void
10103f_float2nr(argvars, rettv)
10104 typval_T *argvars;
10105 typval_T *rettv;
10106{
10107 float_T f;
10108
10109 if (get_float_arg(argvars, &f) == OK)
10110 {
10111 if (f < -0x7fffffff)
10112 rettv->vval.v_number = -0x7fffffff;
10113 else if (f > 0x7fffffff)
10114 rettv->vval.v_number = 0x7fffffff;
10115 else
10116 rettv->vval.v_number = (varnumber_T)f;
10117 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000010118}
10119
10120/*
10121 * "floor({float})" function
10122 */
10123 static void
10124f_floor(argvars, rettv)
10125 typval_T *argvars;
10126 typval_T *rettv;
10127{
10128 float_T f;
10129
10130 rettv->v_type = VAR_FLOAT;
10131 if (get_float_arg(argvars, &f) == OK)
10132 rettv->vval.v_float = floor(f);
10133 else
10134 rettv->vval.v_float = 0.0;
10135}
10136#endif
10137
Bram Moolenaar0d660222005-01-07 21:51:51 +000010138/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +000010139 * "fnameescape({string})" function
10140 */
10141 static void
10142f_fnameescape(argvars, rettv)
10143 typval_T *argvars;
10144 typval_T *rettv;
10145{
10146 rettv->vval.v_string = vim_strsave_fnameescape(
10147 get_tv_string(&argvars[0]), FALSE);
10148 rettv->v_type = VAR_STRING;
10149}
10150
10151/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010152 * "fnamemodify({fname}, {mods})" function
10153 */
10154 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010155f_fnamemodify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010156 typval_T *argvars;
10157 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010158{
10159 char_u *fname;
10160 char_u *mods;
10161 int usedlen = 0;
10162 int len;
10163 char_u *fbuf = NULL;
10164 char_u buf[NUMBUFLEN];
10165
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010166 fname = get_tv_string_chk(&argvars[0]);
10167 mods = get_tv_string_buf_chk(&argvars[1], buf);
10168 if (fname == NULL || mods == NULL)
10169 fname = NULL;
10170 else
10171 {
10172 len = (int)STRLEN(fname);
10173 (void)modify_fname(mods, &usedlen, &fname, &fbuf, &len);
10174 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010175
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010176 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010177 if (fname == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010178 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010179 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010180 rettv->vval.v_string = vim_strnsave(fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010181 vim_free(fbuf);
10182}
10183
Bram Moolenaar33570922005-01-25 22:26:29 +000010184static void foldclosed_both __ARGS((typval_T *argvars, typval_T *rettv, int end));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010185
10186/*
10187 * "foldclosed()" function
10188 */
10189 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010190foldclosed_both(argvars, rettv, end)
Bram Moolenaar33570922005-01-25 22:26:29 +000010191 typval_T *argvars;
10192 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010193 int end;
10194{
10195#ifdef FEAT_FOLDING
10196 linenr_T lnum;
10197 linenr_T first, last;
10198
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010199 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010200 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
10201 {
10202 if (hasFoldingWin(curwin, lnum, &first, &last, FALSE, NULL))
10203 {
10204 if (end)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010205 rettv->vval.v_number = (varnumber_T)last;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010206 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010207 rettv->vval.v_number = (varnumber_T)first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010208 return;
10209 }
10210 }
10211#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010212 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010213}
10214
10215/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010216 * "foldclosed()" function
10217 */
10218 static void
10219f_foldclosed(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010220 typval_T *argvars;
10221 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010222{
10223 foldclosed_both(argvars, rettv, FALSE);
10224}
10225
10226/*
10227 * "foldclosedend()" function
10228 */
10229 static void
10230f_foldclosedend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010231 typval_T *argvars;
10232 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010233{
10234 foldclosed_both(argvars, rettv, TRUE);
10235}
10236
10237/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010238 * "foldlevel()" function
10239 */
10240 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010241f_foldlevel(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010242 typval_T *argvars;
10243 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010244{
10245#ifdef FEAT_FOLDING
10246 linenr_T lnum;
10247
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010248 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010249 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010250 rettv->vval.v_number = foldLevel(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010251#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010252}
10253
10254/*
10255 * "foldtext()" function
10256 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010257 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010258f_foldtext(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010259 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010260 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010261{
10262#ifdef FEAT_FOLDING
10263 linenr_T lnum;
10264 char_u *s;
10265 char_u *r;
10266 int len;
10267 char *txt;
10268#endif
10269
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010270 rettv->v_type = VAR_STRING;
10271 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010272#ifdef FEAT_FOLDING
Bram Moolenaare9a41262005-01-15 22:18:47 +000010273 if ((linenr_T)vimvars[VV_FOLDSTART].vv_nr > 0
10274 && (linenr_T)vimvars[VV_FOLDEND].vv_nr
10275 <= curbuf->b_ml.ml_line_count
10276 && vimvars[VV_FOLDDASHES].vv_str != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010277 {
10278 /* Find first non-empty line in the fold. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000010279 lnum = (linenr_T)vimvars[VV_FOLDSTART].vv_nr;
10280 while (lnum < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010281 {
10282 if (!linewhite(lnum))
10283 break;
10284 ++lnum;
10285 }
10286
10287 /* Find interesting text in this line. */
10288 s = skipwhite(ml_get(lnum));
10289 /* skip C comment-start */
10290 if (s[0] == '/' && (s[1] == '*' || s[1] == '/'))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010291 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000010292 s = skipwhite(s + 2);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010293 if (*skipwhite(s) == NUL
Bram Moolenaare9a41262005-01-15 22:18:47 +000010294 && lnum + 1 < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010295 {
10296 s = skipwhite(ml_get(lnum + 1));
10297 if (*s == '*')
10298 s = skipwhite(s + 1);
10299 }
10300 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010301 txt = _("+-%s%3ld lines: ");
10302 r = alloc((unsigned)(STRLEN(txt)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010303 + STRLEN(vimvars[VV_FOLDDASHES].vv_str) /* for %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010304 + 20 /* for %3ld */
10305 + STRLEN(s))); /* concatenated */
10306 if (r != NULL)
10307 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000010308 sprintf((char *)r, txt, vimvars[VV_FOLDDASHES].vv_str,
10309 (long)((linenr_T)vimvars[VV_FOLDEND].vv_nr
10310 - (linenr_T)vimvars[VV_FOLDSTART].vv_nr + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010311 len = (int)STRLEN(r);
10312 STRCAT(r, s);
10313 /* remove 'foldmarker' and 'commentstring' */
10314 foldtext_cleanup(r + len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010315 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010316 }
10317 }
10318#endif
10319}
10320
10321/*
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010322 * "foldtextresult(lnum)" function
10323 */
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010324 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010325f_foldtextresult(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010326 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010327 typval_T *rettv;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010328{
10329#ifdef FEAT_FOLDING
10330 linenr_T lnum;
10331 char_u *text;
10332 char_u buf[51];
10333 foldinfo_T foldinfo;
10334 int fold_count;
10335#endif
10336
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010337 rettv->v_type = VAR_STRING;
10338 rettv->vval.v_string = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010339#ifdef FEAT_FOLDING
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010340 lnum = get_tv_lnum(argvars);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010341 /* treat illegal types and illegal string values for {lnum} the same */
10342 if (lnum < 0)
10343 lnum = 0;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010344 fold_count = foldedCount(curwin, lnum, &foldinfo);
10345 if (fold_count > 0)
10346 {
10347 text = get_foldtext(curwin, lnum, lnum + fold_count - 1,
10348 &foldinfo, buf);
10349 if (text == buf)
10350 text = vim_strsave(text);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010351 rettv->vval.v_string = text;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010352 }
10353#endif
10354}
10355
10356/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010357 * "foreground()" function
10358 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010359 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010360f_foreground(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010361 typval_T *argvars UNUSED;
10362 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010363{
Bram Moolenaar071d4272004-06-13 20:20:40 +000010364#ifdef FEAT_GUI
10365 if (gui.in_use)
10366 gui_mch_set_foreground();
10367#else
10368# ifdef WIN32
10369 win32_set_foreground();
10370# endif
10371#endif
10372}
10373
10374/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010375 * "function()" function
10376 */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010377 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010378f_function(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010379 typval_T *argvars;
10380 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010381{
10382 char_u *s;
10383
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010384 s = get_tv_string(&argvars[0]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010385 if (s == NULL || *s == NUL || VIM_ISDIGIT(*s))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010386 EMSG2(_(e_invarg2), s);
Bram Moolenaar3d0089f2008-12-03 08:52:26 +000010387 /* Don't check an autoload name for existence here. */
10388 else if (vim_strchr(s, AUTOLOAD_CHAR) == NULL && !function_exists(s))
Bram Moolenaare49b69a2005-01-08 16:11:57 +000010389 EMSG2(_("E700: Unknown function: %s"), s);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010390 else
10391 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010392 rettv->vval.v_string = vim_strsave(s);
10393 rettv->v_type = VAR_FUNC;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010394 }
10395}
10396
10397/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010398 * "garbagecollect()" function
10399 */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010400 static void
10401f_garbagecollect(argvars, rettv)
10402 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010403 typval_T *rettv UNUSED;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010404{
Bram Moolenaar9fecb462006-09-05 10:59:47 +000010405 /* This is postponed until we are back at the toplevel, because we may be
10406 * using Lists and Dicts internally. E.g.: ":echo [garbagecollect()]". */
10407 want_garbage_collect = TRUE;
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +000010408
10409 if (argvars[0].v_type != VAR_UNKNOWN && get_tv_number(&argvars[0]) == 1)
10410 garbage_collect_at_exit = TRUE;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010411}
10412
10413/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010414 * "get()" function
10415 */
10416 static void
10417f_get(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010418 typval_T *argvars;
10419 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010420{
Bram Moolenaar33570922005-01-25 22:26:29 +000010421 listitem_T *li;
10422 list_T *l;
10423 dictitem_T *di;
10424 dict_T *d;
10425 typval_T *tv = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010426
Bram Moolenaare9a41262005-01-15 22:18:47 +000010427 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000010428 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000010429 if ((l = argvars[0].vval.v_list) != NULL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000010430 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010431 int error = FALSE;
10432
10433 li = list_find(l, get_tv_number_chk(&argvars[1], &error));
10434 if (!error && li != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010435 tv = &li->li_tv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010436 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000010437 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000010438 else if (argvars[0].v_type == VAR_DICT)
10439 {
10440 if ((d = argvars[0].vval.v_dict) != NULL)
10441 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010442 di = dict_find(d, get_tv_string(&argvars[1]), -1);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010443 if (di != NULL)
10444 tv = &di->di_tv;
10445 }
10446 }
10447 else
10448 EMSG2(_(e_listdictarg), "get()");
10449
10450 if (tv == NULL)
10451 {
Bram Moolenaar798b30b2009-04-22 10:56:16 +000010452 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010453 copy_tv(&argvars[2], rettv);
10454 }
10455 else
10456 copy_tv(tv, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010457}
10458
Bram Moolenaar342337a2005-07-21 21:11:17 +000010459static 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 +000010460
10461/*
10462 * Get line or list of lines from buffer "buf" into "rettv".
Bram Moolenaar342337a2005-07-21 21:11:17 +000010463 * Return a range (from start to end) of lines in rettv from the specified
10464 * buffer.
10465 * If 'retlist' is TRUE, then the lines are returned as a Vim List.
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010466 */
10467 static void
Bram Moolenaar342337a2005-07-21 21:11:17 +000010468get_buffer_lines(buf, start, end, retlist, rettv)
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010469 buf_T *buf;
10470 linenr_T start;
10471 linenr_T end;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010472 int retlist;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010473 typval_T *rettv;
10474{
10475 char_u *p;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010476
Bram Moolenaar798b30b2009-04-22 10:56:16 +000010477 if (retlist && rettv_list_alloc(rettv) == FAIL)
10478 return;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010479
10480 if (buf == NULL || buf->b_ml.ml_mfp == NULL || start < 0)
10481 return;
10482
10483 if (!retlist)
10484 {
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010485 if (start >= 1 && start <= buf->b_ml.ml_line_count)
10486 p = ml_get_buf(buf, start, FALSE);
10487 else
10488 p = (char_u *)"";
10489
10490 rettv->v_type = VAR_STRING;
10491 rettv->vval.v_string = vim_strsave(p);
10492 }
10493 else
10494 {
10495 if (end < start)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010496 return;
10497
10498 if (start < 1)
10499 start = 1;
10500 if (end > buf->b_ml.ml_line_count)
10501 end = buf->b_ml.ml_line_count;
10502 while (start <= end)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000010503 if (list_append_string(rettv->vval.v_list,
10504 ml_get_buf(buf, start++, FALSE), -1) == FAIL)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010505 break;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010506 }
10507}
10508
10509/*
10510 * "getbufline()" function
10511 */
10512 static void
10513f_getbufline(argvars, rettv)
10514 typval_T *argvars;
10515 typval_T *rettv;
10516{
10517 linenr_T lnum;
10518 linenr_T end;
10519 buf_T *buf;
10520
10521 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10522 ++emsg_off;
10523 buf = get_buf_tv(&argvars[0]);
10524 --emsg_off;
10525
Bram Moolenaar661b1822005-07-28 22:36:45 +000010526 lnum = get_tv_lnum_buf(&argvars[1], buf);
Bram Moolenaar342337a2005-07-21 21:11:17 +000010527 if (argvars[2].v_type == VAR_UNKNOWN)
10528 end = lnum;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010529 else
Bram Moolenaar661b1822005-07-28 22:36:45 +000010530 end = get_tv_lnum_buf(&argvars[2], buf);
10531
Bram Moolenaar342337a2005-07-21 21:11:17 +000010532 get_buffer_lines(buf, lnum, end, TRUE, rettv);
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010533}
10534
Bram Moolenaar0d660222005-01-07 21:51:51 +000010535/*
10536 * "getbufvar()" function
10537 */
10538 static void
10539f_getbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010540 typval_T *argvars;
10541 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010542{
10543 buf_T *buf;
10544 buf_T *save_curbuf;
10545 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000010546 dictitem_T *v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010547
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010548 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10549 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010550 ++emsg_off;
10551 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010552
10553 rettv->v_type = VAR_STRING;
10554 rettv->vval.v_string = NULL;
10555
10556 if (buf != NULL && varname != NULL)
10557 {
Bram Moolenaar632deed2008-06-27 18:26:11 +000010558 /* set curbuf to be our buf, temporarily */
10559 save_curbuf = curbuf;
10560 curbuf = buf;
10561
Bram Moolenaar0d660222005-01-07 21:51:51 +000010562 if (*varname == '&') /* buffer-local-option */
Bram Moolenaar0d660222005-01-07 21:51:51 +000010563 get_option_tv(&varname, rettv, TRUE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010564 else
10565 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010566 if (*varname == NUL)
10567 /* let getbufvar({nr}, "") return the "b:" dictionary. The
10568 * scope prefix before the NUL byte is required by
10569 * find_var_in_ht(). */
10570 varname = (char_u *)"b:" + 2;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010571 /* look up the variable */
Bram Moolenaar632deed2008-06-27 18:26:11 +000010572 v = find_var_in_ht(&curbuf->b_vars.dv_hashtab, varname, FALSE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010573 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000010574 copy_tv(&v->di_tv, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010575 }
Bram Moolenaar632deed2008-06-27 18:26:11 +000010576
10577 /* restore previous notion of curbuf */
10578 curbuf = save_curbuf;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010579 }
10580
10581 --emsg_off;
10582}
10583
10584/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010585 * "getchar()" function
10586 */
10587 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010588f_getchar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010589 typval_T *argvars;
10590 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010591{
10592 varnumber_T n;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010593 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010594
Bram Moolenaar4015b2c2006-06-22 19:01:34 +000010595 /* Position the cursor. Needed after a message that ends in a space. */
10596 windgoto(msg_row, msg_col);
10597
Bram Moolenaar071d4272004-06-13 20:20:40 +000010598 ++no_mapping;
10599 ++allow_keys;
Bram Moolenaar9c8791f2007-09-05 19:47:23 +000010600 for (;;)
10601 {
10602 if (argvars[0].v_type == VAR_UNKNOWN)
10603 /* getchar(): blocking wait. */
10604 n = safe_vgetc();
10605 else if (get_tv_number_chk(&argvars[0], &error) == 1)
10606 /* getchar(1): only check if char avail */
10607 n = vpeekc();
10608 else if (error || vpeekc() == NUL)
10609 /* illegal argument or getchar(0) and no char avail: return zero */
10610 n = 0;
10611 else
10612 /* getchar(0) and char avail: return char */
10613 n = safe_vgetc();
10614 if (n == K_IGNORE)
10615 continue;
10616 break;
10617 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010618 --no_mapping;
10619 --allow_keys;
10620
Bram Moolenaar219b8702006-11-01 14:32:36 +000010621 vimvars[VV_MOUSE_WIN].vv_nr = 0;
10622 vimvars[VV_MOUSE_LNUM].vv_nr = 0;
10623 vimvars[VV_MOUSE_COL].vv_nr = 0;
10624
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010625 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010626 if (IS_SPECIAL(n) || mod_mask != 0)
10627 {
10628 char_u temp[10]; /* modifier: 3, mbyte-char: 6, NUL: 1 */
10629 int i = 0;
10630
10631 /* Turn a special key into three bytes, plus modifier. */
10632 if (mod_mask != 0)
10633 {
10634 temp[i++] = K_SPECIAL;
10635 temp[i++] = KS_MODIFIER;
10636 temp[i++] = mod_mask;
10637 }
10638 if (IS_SPECIAL(n))
10639 {
10640 temp[i++] = K_SPECIAL;
10641 temp[i++] = K_SECOND(n);
10642 temp[i++] = K_THIRD(n);
10643 }
10644#ifdef FEAT_MBYTE
10645 else if (has_mbyte)
10646 i += (*mb_char2bytes)(n, temp + i);
10647#endif
10648 else
10649 temp[i++] = n;
10650 temp[i++] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010651 rettv->v_type = VAR_STRING;
10652 rettv->vval.v_string = vim_strsave(temp);
Bram Moolenaar219b8702006-11-01 14:32:36 +000010653
10654#ifdef FEAT_MOUSE
10655 if (n == K_LEFTMOUSE
10656 || n == K_LEFTMOUSE_NM
10657 || n == K_LEFTDRAG
10658 || n == K_LEFTRELEASE
10659 || n == K_LEFTRELEASE_NM
10660 || n == K_MIDDLEMOUSE
10661 || n == K_MIDDLEDRAG
10662 || n == K_MIDDLERELEASE
10663 || n == K_RIGHTMOUSE
10664 || n == K_RIGHTDRAG
10665 || n == K_RIGHTRELEASE
10666 || n == K_X1MOUSE
10667 || n == K_X1DRAG
10668 || n == K_X1RELEASE
10669 || n == K_X2MOUSE
10670 || n == K_X2DRAG
10671 || n == K_X2RELEASE
10672 || n == K_MOUSEDOWN
10673 || n == K_MOUSEUP)
10674 {
10675 int row = mouse_row;
10676 int col = mouse_col;
10677 win_T *win;
10678 linenr_T lnum;
10679# ifdef FEAT_WINDOWS
10680 win_T *wp;
10681# endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000010682 int winnr = 1;
Bram Moolenaar219b8702006-11-01 14:32:36 +000010683
10684 if (row >= 0 && col >= 0)
10685 {
10686 /* Find the window at the mouse coordinates and compute the
10687 * text position. */
10688 win = mouse_find_win(&row, &col);
10689 (void)mouse_comp_pos(win, &row, &col, &lnum);
10690# ifdef FEAT_WINDOWS
10691 for (wp = firstwin; wp != win; wp = wp->w_next)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000010692 ++winnr;
Bram Moolenaar219b8702006-11-01 14:32:36 +000010693# endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000010694 vimvars[VV_MOUSE_WIN].vv_nr = winnr;
Bram Moolenaar219b8702006-11-01 14:32:36 +000010695 vimvars[VV_MOUSE_LNUM].vv_nr = lnum;
10696 vimvars[VV_MOUSE_COL].vv_nr = col + 1;
10697 }
10698 }
10699#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010700 }
10701}
10702
10703/*
10704 * "getcharmod()" function
10705 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010706 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010707f_getcharmod(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010708 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010709 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010710{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010711 rettv->vval.v_number = mod_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010712}
10713
10714/*
10715 * "getcmdline()" function
10716 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010717 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010718f_getcmdline(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010719 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010720 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010721{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010722 rettv->v_type = VAR_STRING;
10723 rettv->vval.v_string = get_cmdline_str();
Bram Moolenaar071d4272004-06-13 20:20:40 +000010724}
10725
10726/*
10727 * "getcmdpos()" function
10728 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010729 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010730f_getcmdpos(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010731 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010732 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010733{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010734 rettv->vval.v_number = get_cmdline_pos() + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010735}
10736
10737/*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010738 * "getcmdtype()" function
10739 */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010740 static void
10741f_getcmdtype(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010742 typval_T *argvars UNUSED;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010743 typval_T *rettv;
10744{
10745 rettv->v_type = VAR_STRING;
10746 rettv->vval.v_string = alloc(2);
10747 if (rettv->vval.v_string != NULL)
10748 {
10749 rettv->vval.v_string[0] = get_cmdline_type();
10750 rettv->vval.v_string[1] = NUL;
10751 }
10752}
10753
10754/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010755 * "getcwd()" function
10756 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010757 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010758f_getcwd(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010759 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010760 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010761{
10762 char_u cwd[MAXPATHL];
10763
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010764 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010765 if (mch_dirname(cwd, MAXPATHL) == FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010766 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010767 else
10768 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010769 rettv->vval.v_string = vim_strsave(cwd);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010770#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar342337a2005-07-21 21:11:17 +000010771 if (rettv->vval.v_string != NULL)
10772 slash_adjust(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010773#endif
10774 }
10775}
10776
10777/*
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010778 * "getfontname()" function
10779 */
10780 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010781f_getfontname(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010782 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010783 typval_T *rettv;
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010784{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010785 rettv->v_type = VAR_STRING;
10786 rettv->vval.v_string = NULL;
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010787#ifdef FEAT_GUI
10788 if (gui.in_use)
10789 {
10790 GuiFont font;
10791 char_u *name = NULL;
10792
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010793 if (argvars[0].v_type == VAR_UNKNOWN)
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010794 {
10795 /* Get the "Normal" font. Either the name saved by
10796 * hl_set_font_name() or from the font ID. */
10797 font = gui.norm_font;
10798 name = hl_get_font_name();
10799 }
10800 else
10801 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010802 name = get_tv_string(&argvars[0]);
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010803 if (STRCMP(name, "*") == 0) /* don't use font dialog */
10804 return;
10805 font = gui_mch_get_font(name, FALSE);
10806 if (font == NOFONT)
10807 return; /* Invalid font name, return empty string. */
10808 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010809 rettv->vval.v_string = gui_mch_get_fontname(font, name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010810 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010811 gui_mch_free_font(font);
10812 }
10813#endif
10814}
10815
10816/*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010817 * "getfperm({fname})" function
10818 */
10819 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010820f_getfperm(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010821 typval_T *argvars;
10822 typval_T *rettv;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010823{
10824 char_u *fname;
10825 struct stat st;
10826 char_u *perm = NULL;
10827 char_u flags[] = "rwx";
10828 int i;
10829
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010830 fname = get_tv_string(&argvars[0]);
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010831
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010832 rettv->v_type = VAR_STRING;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010833 if (mch_stat((char *)fname, &st) >= 0)
10834 {
10835 perm = vim_strsave((char_u *)"---------");
10836 if (perm != NULL)
10837 {
10838 for (i = 0; i < 9; i++)
10839 {
10840 if (st.st_mode & (1 << (8 - i)))
10841 perm[i] = flags[i % 3];
10842 }
10843 }
10844 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010845 rettv->vval.v_string = perm;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010846}
10847
10848/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010849 * "getfsize({fname})" function
10850 */
10851 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010852f_getfsize(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010853 typval_T *argvars;
10854 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010855{
10856 char_u *fname;
10857 struct stat st;
10858
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010859 fname = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010860
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010861 rettv->v_type = VAR_NUMBER;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010862
10863 if (mch_stat((char *)fname, &st) >= 0)
10864 {
10865 if (mch_isdir(fname))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010866 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010867 else
Bram Moolenaard827ada2007-06-19 15:19:55 +000010868 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010869 rettv->vval.v_number = (varnumber_T)st.st_size;
Bram Moolenaard827ada2007-06-19 15:19:55 +000010870
10871 /* non-perfect check for overflow */
10872 if ((off_t)rettv->vval.v_number != (off_t)st.st_size)
10873 rettv->vval.v_number = -2;
10874 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010875 }
10876 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010877 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010878}
10879
10880/*
10881 * "getftime({fname})" function
10882 */
10883 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010884f_getftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010885 typval_T *argvars;
10886 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010887{
10888 char_u *fname;
10889 struct stat st;
10890
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010891 fname = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010892
10893 if (mch_stat((char *)fname, &st) >= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010894 rettv->vval.v_number = (varnumber_T)st.st_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010895 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010896 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010897}
10898
10899/*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010900 * "getftype({fname})" function
10901 */
10902 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010903f_getftype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010904 typval_T *argvars;
10905 typval_T *rettv;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010906{
10907 char_u *fname;
10908 struct stat st;
10909 char_u *type = NULL;
10910 char *t;
10911
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010912 fname = get_tv_string(&argvars[0]);
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010913
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010914 rettv->v_type = VAR_STRING;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010915 if (mch_lstat((char *)fname, &st) >= 0)
10916 {
10917#ifdef S_ISREG
10918 if (S_ISREG(st.st_mode))
10919 t = "file";
10920 else if (S_ISDIR(st.st_mode))
10921 t = "dir";
10922# ifdef S_ISLNK
10923 else if (S_ISLNK(st.st_mode))
10924 t = "link";
10925# endif
10926# ifdef S_ISBLK
10927 else if (S_ISBLK(st.st_mode))
10928 t = "bdev";
10929# endif
10930# ifdef S_ISCHR
10931 else if (S_ISCHR(st.st_mode))
10932 t = "cdev";
10933# endif
10934# ifdef S_ISFIFO
10935 else if (S_ISFIFO(st.st_mode))
10936 t = "fifo";
10937# endif
10938# ifdef S_ISSOCK
10939 else if (S_ISSOCK(st.st_mode))
10940 t = "fifo";
10941# endif
10942 else
10943 t = "other";
10944#else
10945# ifdef S_IFMT
10946 switch (st.st_mode & S_IFMT)
10947 {
10948 case S_IFREG: t = "file"; break;
10949 case S_IFDIR: t = "dir"; break;
10950# ifdef S_IFLNK
10951 case S_IFLNK: t = "link"; break;
10952# endif
10953# ifdef S_IFBLK
10954 case S_IFBLK: t = "bdev"; break;
10955# endif
10956# ifdef S_IFCHR
10957 case S_IFCHR: t = "cdev"; break;
10958# endif
10959# ifdef S_IFIFO
10960 case S_IFIFO: t = "fifo"; break;
10961# endif
10962# ifdef S_IFSOCK
10963 case S_IFSOCK: t = "socket"; break;
10964# endif
10965 default: t = "other";
10966 }
10967# else
10968 if (mch_isdir(fname))
10969 t = "dir";
10970 else
10971 t = "file";
10972# endif
10973#endif
10974 type = vim_strsave((char_u *)t);
10975 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010976 rettv->vval.v_string = type;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010977}
10978
10979/*
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010980 * "getline(lnum, [end])" function
Bram Moolenaar0d660222005-01-07 21:51:51 +000010981 */
10982 static void
10983f_getline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010984 typval_T *argvars;
10985 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010986{
10987 linenr_T lnum;
10988 linenr_T end;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010989 int retlist;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010990
10991 lnum = get_tv_lnum(argvars);
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010992 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010993 {
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010994 end = 0;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010995 retlist = FALSE;
10996 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000010997 else
Bram Moolenaar342337a2005-07-21 21:11:17 +000010998 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000010999 end = get_tv_lnum(&argvars[1]);
Bram Moolenaar342337a2005-07-21 21:11:17 +000011000 retlist = TRUE;
11001 }
Bram Moolenaar80fc0432005-07-20 22:06:07 +000011002
Bram Moolenaar342337a2005-07-21 21:11:17 +000011003 get_buffer_lines(curbuf, lnum, end, retlist, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000011004}
11005
11006/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011007 * "getmatches()" function
11008 */
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011009 static void
11010f_getmatches(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011011 typval_T *argvars UNUSED;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011012 typval_T *rettv;
11013{
11014#ifdef FEAT_SEARCH_EXTRA
11015 dict_T *dict;
11016 matchitem_T *cur = curwin->w_match_head;
11017
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011018 if (rettv_list_alloc(rettv) == OK)
11019 {
11020 while (cur != NULL)
11021 {
11022 dict = dict_alloc();
11023 if (dict == NULL)
11024 return;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011025 dict_add_nr_str(dict, "group", 0L, syn_id2name(cur->hlg_id));
11026 dict_add_nr_str(dict, "pattern", 0L, cur->pattern);
11027 dict_add_nr_str(dict, "priority", (long)cur->priority, NULL);
11028 dict_add_nr_str(dict, "id", (long)cur->id, NULL);
11029 list_append_dict(rettv->vval.v_list, dict);
11030 cur = cur->next;
11031 }
11032 }
11033#endif
11034}
11035
11036/*
Bram Moolenaar18081e32008-02-20 19:11:07 +000011037 * "getpid()" function
11038 */
Bram Moolenaar18081e32008-02-20 19:11:07 +000011039 static void
11040f_getpid(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011041 typval_T *argvars UNUSED;
Bram Moolenaar18081e32008-02-20 19:11:07 +000011042 typval_T *rettv;
11043{
11044 rettv->vval.v_number = mch_get_pid();
11045}
11046
11047/*
Bram Moolenaara5525202006-03-02 22:52:09 +000011048 * "getpos(string)" function
11049 */
11050 static void
11051f_getpos(argvars, rettv)
11052 typval_T *argvars;
11053 typval_T *rettv;
11054{
11055 pos_T *fp;
11056 list_T *l;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000011057 int fnum = -1;
Bram Moolenaara5525202006-03-02 22:52:09 +000011058
11059 if (rettv_list_alloc(rettv) == OK)
11060 {
11061 l = rettv->vval.v_list;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000011062 fp = var2fpos(&argvars[0], TRUE, &fnum);
11063 if (fnum != -1)
11064 list_append_number(l, (varnumber_T)fnum);
11065 else
11066 list_append_number(l, (varnumber_T)0);
Bram Moolenaara5525202006-03-02 22:52:09 +000011067 list_append_number(l, (fp != NULL) ? (varnumber_T)fp->lnum
11068 : (varnumber_T)0);
Bram Moolenaare65f7322007-10-02 20:08:54 +000011069 list_append_number(l, (fp != NULL)
11070 ? (varnumber_T)(fp->col == MAXCOL ? MAXCOL : fp->col + 1)
Bram Moolenaara5525202006-03-02 22:52:09 +000011071 : (varnumber_T)0);
11072 list_append_number(l,
11073#ifdef FEAT_VIRTUALEDIT
11074 (fp != NULL) ? (varnumber_T)fp->coladd :
11075#endif
11076 (varnumber_T)0);
11077 }
11078 else
11079 rettv->vval.v_number = FALSE;
11080}
11081
11082/*
Bram Moolenaar280f1262006-01-30 00:14:18 +000011083 * "getqflist()" and "getloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000011084 */
Bram Moolenaar2641f772005-03-25 21:58:17 +000011085 static void
Bram Moolenaar280f1262006-01-30 00:14:18 +000011086f_getqflist(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011087 typval_T *argvars UNUSED;
11088 typval_T *rettv UNUSED;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011089{
11090#ifdef FEAT_QUICKFIX
Bram Moolenaar280f1262006-01-30 00:14:18 +000011091 win_T *wp;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011092#endif
11093
Bram Moolenaar2641f772005-03-25 21:58:17 +000011094#ifdef FEAT_QUICKFIX
Bram Moolenaareddf53b2006-02-27 00:11:10 +000011095 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000011096 {
Bram Moolenaar280f1262006-01-30 00:14:18 +000011097 wp = NULL;
11098 if (argvars[0].v_type != VAR_UNKNOWN) /* getloclist() */
11099 {
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011100 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar280f1262006-01-30 00:14:18 +000011101 if (wp == NULL)
11102 return;
11103 }
11104
Bram Moolenaareddf53b2006-02-27 00:11:10 +000011105 (void)get_errorlist(wp, rettv->vval.v_list);
Bram Moolenaar2641f772005-03-25 21:58:17 +000011106 }
11107#endif
11108}
11109
11110/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011111 * "getreg()" function
11112 */
11113 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011114f_getreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011115 typval_T *argvars;
11116 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011117{
11118 char_u *strregname;
11119 int regname;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011120 int arg2 = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011121 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011122
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011123 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011124 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011125 strregname = get_tv_string_chk(&argvars[0]);
11126 error = strregname == NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011127 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011128 arg2 = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011129 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011130 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000011131 strregname = vimvars[VV_REG].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011132 regname = (strregname == NULL ? '"' : *strregname);
11133 if (regname == 0)
11134 regname = '"';
11135
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011136 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011137 rettv->vval.v_string = error ? NULL :
11138 get_reg_contents(regname, TRUE, arg2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011139}
11140
11141/*
11142 * "getregtype()" function
11143 */
11144 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011145f_getregtype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011146 typval_T *argvars;
11147 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011148{
11149 char_u *strregname;
11150 int regname;
11151 char_u buf[NUMBUFLEN + 2];
11152 long reglen = 0;
11153
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011154 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011155 {
11156 strregname = get_tv_string_chk(&argvars[0]);
11157 if (strregname == NULL) /* type error; errmsg already given */
11158 {
11159 rettv->v_type = VAR_STRING;
11160 rettv->vval.v_string = NULL;
11161 return;
11162 }
11163 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011164 else
11165 /* Default to v:register */
Bram Moolenaare9a41262005-01-15 22:18:47 +000011166 strregname = vimvars[VV_REG].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011167
11168 regname = (strregname == NULL ? '"' : *strregname);
11169 if (regname == 0)
11170 regname = '"';
11171
11172 buf[0] = NUL;
11173 buf[1] = NUL;
11174 switch (get_reg_type(regname, &reglen))
11175 {
11176 case MLINE: buf[0] = 'V'; break;
11177 case MCHAR: buf[0] = 'v'; break;
11178#ifdef FEAT_VISUAL
11179 case MBLOCK:
11180 buf[0] = Ctrl_V;
11181 sprintf((char *)buf + 1, "%ld", reglen + 1);
11182 break;
11183#endif
11184 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011185 rettv->v_type = VAR_STRING;
11186 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011187}
11188
11189/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011190 * "gettabwinvar()" function
11191 */
11192 static void
11193f_gettabwinvar(argvars, rettv)
11194 typval_T *argvars;
11195 typval_T *rettv;
11196{
11197 getwinvar(argvars, rettv, 1);
11198}
11199
11200/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011201 * "getwinposx()" function
11202 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011203 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011204f_getwinposx(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011205 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000011206 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011207{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011208 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011209#ifdef FEAT_GUI
11210 if (gui.in_use)
11211 {
11212 int x, y;
11213
11214 if (gui_mch_get_winpos(&x, &y) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011215 rettv->vval.v_number = x;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011216 }
11217#endif
11218}
11219
11220/*
11221 * "getwinposy()" function
11222 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011223 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011224f_getwinposy(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011225 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000011226 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011227{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011228 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011229#ifdef FEAT_GUI
11230 if (gui.in_use)
11231 {
11232 int x, y;
11233
11234 if (gui_mch_get_winpos(&x, &y) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011235 rettv->vval.v_number = y;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011236 }
11237#endif
11238}
11239
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011240/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011241 * Find window specified by "vp" in tabpage "tp".
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011242 */
Bram Moolenaara40058a2005-07-11 22:42:07 +000011243 static win_T *
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011244find_win_by_nr(vp, tp)
Bram Moolenaara40058a2005-07-11 22:42:07 +000011245 typval_T *vp;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011246 tabpage_T *tp; /* NULL for current tab page */
Bram Moolenaara40058a2005-07-11 22:42:07 +000011247{
11248#ifdef FEAT_WINDOWS
11249 win_T *wp;
11250#endif
11251 int nr;
11252
11253 nr = get_tv_number_chk(vp, NULL);
11254
11255#ifdef FEAT_WINDOWS
11256 if (nr < 0)
11257 return NULL;
11258 if (nr == 0)
11259 return curwin;
11260
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011261 for (wp = (tp == NULL || tp == curtab) ? firstwin : tp->tp_firstwin;
11262 wp != NULL; wp = wp->w_next)
Bram Moolenaara40058a2005-07-11 22:42:07 +000011263 if (--nr <= 0)
11264 break;
11265 return wp;
11266#else
11267 if (nr == 0 || nr == 1)
11268 return curwin;
11269 return NULL;
11270#endif
11271}
11272
Bram Moolenaar071d4272004-06-13 20:20:40 +000011273/*
11274 * "getwinvar()" function
11275 */
11276 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011277f_getwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011278 typval_T *argvars;
11279 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011280{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011281 getwinvar(argvars, rettv, 0);
11282}
11283
11284/*
11285 * getwinvar() and gettabwinvar()
11286 */
11287 static void
11288getwinvar(argvars, rettv, off)
11289 typval_T *argvars;
11290 typval_T *rettv;
11291 int off; /* 1 for gettabwinvar() */
11292{
Bram Moolenaar071d4272004-06-13 20:20:40 +000011293 win_T *win, *oldcurwin;
11294 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000011295 dictitem_T *v;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011296 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011297
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011298#ifdef FEAT_WINDOWS
11299 if (off == 1)
11300 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
11301 else
11302 tp = curtab;
11303#endif
11304 win = find_win_by_nr(&argvars[off], tp);
11305 varname = get_tv_string_chk(&argvars[off + 1]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011306 ++emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011307
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011308 rettv->v_type = VAR_STRING;
11309 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011310
11311 if (win != NULL && varname != NULL)
11312 {
Bram Moolenaar69a7e432006-10-10 10:55:47 +000011313 /* Set curwin to be our win, temporarily. Also set curbuf, so
11314 * that we can get buffer-local options. */
11315 oldcurwin = curwin;
11316 curwin = win;
11317 curbuf = win->w_buffer;
11318
Bram Moolenaar071d4272004-06-13 20:20:40 +000011319 if (*varname == '&') /* window-local-option */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011320 get_option_tv(&varname, rettv, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011321 else
11322 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011323 if (*varname == NUL)
11324 /* let getwinvar({nr}, "") return the "w:" dictionary. The
11325 * scope prefix before the NUL byte is required by
11326 * find_var_in_ht(). */
11327 varname = (char_u *)"w:" + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011328 /* look up the variable */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011329 v = find_var_in_ht(&win->w_vars.dv_hashtab, varname, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011330 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000011331 copy_tv(&v->di_tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011332 }
Bram Moolenaar69a7e432006-10-10 10:55:47 +000011333
11334 /* restore previous notion of curwin */
11335 curwin = oldcurwin;
11336 curbuf = curwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011337 }
11338
11339 --emsg_off;
11340}
11341
11342/*
11343 * "glob()" function
11344 */
11345 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011346f_glob(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011347 typval_T *argvars;
11348 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011349{
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011350 int flags = WILD_SILENT|WILD_USE_NL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011351 expand_T xpc;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011352 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011353
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011354 /* When the optional second argument is non-zero, don't remove matches
11355 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
11356 if (argvars[1].v_type != VAR_UNKNOWN
11357 && get_tv_number_chk(&argvars[1], &error))
11358 flags |= WILD_KEEP_ALL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011359 rettv->v_type = VAR_STRING;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011360 if (!error)
11361 {
11362 ExpandInit(&xpc);
11363 xpc.xp_context = EXPAND_FILES;
11364 rettv->vval.v_string = ExpandOne(&xpc, get_tv_string(&argvars[0]),
11365 NULL, flags, WILD_ALL);
11366 }
11367 else
11368 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011369}
11370
11371/*
11372 * "globpath()" function
11373 */
11374 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011375f_globpath(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011376 typval_T *argvars;
11377 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011378{
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011379 int flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011380 char_u buf1[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011381 char_u *file = get_tv_string_buf_chk(&argvars[1], buf1);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011382 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011383
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011384 /* When the optional second argument is non-zero, don't remove matches
11385 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
11386 if (argvars[2].v_type != VAR_UNKNOWN
11387 && get_tv_number_chk(&argvars[2], &error))
11388 flags |= WILD_KEEP_ALL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011389 rettv->v_type = VAR_STRING;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011390 if (file == NULL || error)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011391 rettv->vval.v_string = NULL;
11392 else
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011393 rettv->vval.v_string = globpath(get_tv_string(&argvars[0]), file,
11394 flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011395}
11396
11397/*
11398 * "has()" function
11399 */
11400 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011401f_has(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011402 typval_T *argvars;
11403 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011404{
11405 int i;
11406 char_u *name;
11407 int n = FALSE;
11408 static char *(has_list[]) =
11409 {
11410#ifdef AMIGA
11411 "amiga",
11412# ifdef FEAT_ARP
11413 "arp",
11414# endif
11415#endif
11416#ifdef __BEOS__
11417 "beos",
11418#endif
11419#ifdef MSDOS
11420# ifdef DJGPP
11421 "dos32",
11422# else
11423 "dos16",
11424# endif
11425#endif
Bram Moolenaar241a8aa2005-12-06 20:04:44 +000011426#ifdef MACOS
Bram Moolenaar071d4272004-06-13 20:20:40 +000011427 "mac",
11428#endif
11429#if defined(MACOS_X_UNIX)
11430 "macunix",
11431#endif
11432#ifdef OS2
11433 "os2",
11434#endif
11435#ifdef __QNX__
11436 "qnx",
11437#endif
11438#ifdef RISCOS
11439 "riscos",
11440#endif
11441#ifdef UNIX
11442 "unix",
11443#endif
11444#ifdef VMS
11445 "vms",
11446#endif
11447#ifdef WIN16
11448 "win16",
11449#endif
11450#ifdef WIN32
11451 "win32",
11452#endif
11453#if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
11454 "win32unix",
11455#endif
11456#ifdef WIN64
11457 "win64",
11458#endif
11459#ifdef EBCDIC
11460 "ebcdic",
11461#endif
11462#ifndef CASE_INSENSITIVE_FILENAME
11463 "fname_case",
11464#endif
11465#ifdef FEAT_ARABIC
11466 "arabic",
11467#endif
11468#ifdef FEAT_AUTOCMD
11469 "autocmd",
11470#endif
11471#ifdef FEAT_BEVAL
11472 "balloon_eval",
Bram Moolenaar342337a2005-07-21 21:11:17 +000011473# ifndef FEAT_GUI_W32 /* other GUIs always have multiline balloons */
11474 "balloon_multiline",
11475# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011476#endif
11477#if defined(SOME_BUILTIN_TCAPS) || defined(ALL_BUILTIN_TCAPS)
11478 "builtin_terms",
11479# ifdef ALL_BUILTIN_TCAPS
11480 "all_builtin_terms",
11481# endif
11482#endif
11483#ifdef FEAT_BYTEOFF
11484 "byte_offset",
11485#endif
11486#ifdef FEAT_CINDENT
11487 "cindent",
11488#endif
11489#ifdef FEAT_CLIENTSERVER
11490 "clientserver",
11491#endif
11492#ifdef FEAT_CLIPBOARD
11493 "clipboard",
11494#endif
11495#ifdef FEAT_CMDL_COMPL
11496 "cmdline_compl",
11497#endif
11498#ifdef FEAT_CMDHIST
11499 "cmdline_hist",
11500#endif
11501#ifdef FEAT_COMMENTS
11502 "comments",
11503#endif
11504#ifdef FEAT_CRYPT
11505 "cryptv",
11506#endif
11507#ifdef FEAT_CSCOPE
11508 "cscope",
11509#endif
Bram Moolenaarac6e65f2005-08-29 22:25:38 +000011510#ifdef CURSOR_SHAPE
11511 "cursorshape",
11512#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011513#ifdef DEBUG
11514 "debug",
11515#endif
11516#ifdef FEAT_CON_DIALOG
11517 "dialog_con",
11518#endif
11519#ifdef FEAT_GUI_DIALOG
11520 "dialog_gui",
11521#endif
11522#ifdef FEAT_DIFF
11523 "diff",
11524#endif
11525#ifdef FEAT_DIGRAPHS
11526 "digraphs",
11527#endif
11528#ifdef FEAT_DND
11529 "dnd",
11530#endif
11531#ifdef FEAT_EMACS_TAGS
11532 "emacs_tags",
11533#endif
11534 "eval", /* always present, of course! */
11535#ifdef FEAT_EX_EXTRA
11536 "ex_extra",
11537#endif
11538#ifdef FEAT_SEARCH_EXTRA
11539 "extra_search",
11540#endif
11541#ifdef FEAT_FKMAP
11542 "farsi",
11543#endif
11544#ifdef FEAT_SEARCHPATH
11545 "file_in_path",
11546#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011547#if defined(UNIX) && !defined(USE_SYSTEM)
11548 "filterpipe",
11549#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011550#ifdef FEAT_FIND_ID
11551 "find_in_path",
11552#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011553#ifdef FEAT_FLOAT
11554 "float",
11555#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011556#ifdef FEAT_FOLDING
11557 "folding",
11558#endif
11559#ifdef FEAT_FOOTER
11560 "footer",
11561#endif
11562#if !defined(USE_SYSTEM) && defined(UNIX)
11563 "fork",
11564#endif
11565#ifdef FEAT_GETTEXT
11566 "gettext",
11567#endif
11568#ifdef FEAT_GUI
11569 "gui",
11570#endif
11571#ifdef FEAT_GUI_ATHENA
11572# ifdef FEAT_GUI_NEXTAW
11573 "gui_neXtaw",
11574# else
11575 "gui_athena",
11576# endif
11577#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011578#ifdef FEAT_GUI_GTK
11579 "gui_gtk",
11580# ifdef HAVE_GTK2
11581 "gui_gtk2",
11582# endif
11583#endif
Bram Moolenaar7b188622007-09-25 10:51:12 +000011584#ifdef FEAT_GUI_GNOME
11585 "gui_gnome",
11586#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011587#ifdef FEAT_GUI_MAC
11588 "gui_mac",
11589#endif
11590#ifdef FEAT_GUI_MOTIF
11591 "gui_motif",
11592#endif
11593#ifdef FEAT_GUI_PHOTON
11594 "gui_photon",
11595#endif
11596#ifdef FEAT_GUI_W16
11597 "gui_win16",
11598#endif
11599#ifdef FEAT_GUI_W32
11600 "gui_win32",
11601#endif
11602#ifdef FEAT_HANGULIN
11603 "hangul_input",
11604#endif
11605#if defined(HAVE_ICONV_H) && defined(USE_ICONV)
11606 "iconv",
11607#endif
11608#ifdef FEAT_INS_EXPAND
11609 "insert_expand",
11610#endif
11611#ifdef FEAT_JUMPLIST
11612 "jumplist",
11613#endif
11614#ifdef FEAT_KEYMAP
11615 "keymap",
11616#endif
11617#ifdef FEAT_LANGMAP
11618 "langmap",
11619#endif
11620#ifdef FEAT_LIBCALL
11621 "libcall",
11622#endif
11623#ifdef FEAT_LINEBREAK
11624 "linebreak",
11625#endif
11626#ifdef FEAT_LISP
11627 "lispindent",
11628#endif
11629#ifdef FEAT_LISTCMDS
11630 "listcmds",
11631#endif
11632#ifdef FEAT_LOCALMAP
11633 "localmap",
11634#endif
11635#ifdef FEAT_MENU
11636 "menu",
11637#endif
11638#ifdef FEAT_SESSION
11639 "mksession",
11640#endif
11641#ifdef FEAT_MODIFY_FNAME
11642 "modify_fname",
11643#endif
11644#ifdef FEAT_MOUSE
11645 "mouse",
11646#endif
11647#ifdef FEAT_MOUSESHAPE
11648 "mouseshape",
11649#endif
11650#if defined(UNIX) || defined(VMS)
11651# ifdef FEAT_MOUSE_DEC
11652 "mouse_dec",
11653# endif
11654# ifdef FEAT_MOUSE_GPM
11655 "mouse_gpm",
11656# endif
11657# ifdef FEAT_MOUSE_JSB
11658 "mouse_jsbterm",
11659# endif
11660# ifdef FEAT_MOUSE_NET
11661 "mouse_netterm",
11662# endif
11663# ifdef FEAT_MOUSE_PTERM
11664 "mouse_pterm",
11665# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011666# ifdef FEAT_SYSMOUSE
11667 "mouse_sysmouse",
11668# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011669# ifdef FEAT_MOUSE_XTERM
11670 "mouse_xterm",
11671# endif
11672#endif
11673#ifdef FEAT_MBYTE
11674 "multi_byte",
11675#endif
11676#ifdef FEAT_MBYTE_IME
11677 "multi_byte_ime",
11678#endif
11679#ifdef FEAT_MULTI_LANG
11680 "multi_lang",
11681#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011682#ifdef FEAT_MZSCHEME
Bram Moolenaar33570922005-01-25 22:26:29 +000011683#ifndef DYNAMIC_MZSCHEME
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011684 "mzscheme",
11685#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011686#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011687#ifdef FEAT_OLE
11688 "ole",
11689#endif
11690#ifdef FEAT_OSFILETYPE
11691 "osfiletype",
11692#endif
11693#ifdef FEAT_PATH_EXTRA
11694 "path_extra",
11695#endif
11696#ifdef FEAT_PERL
11697#ifndef DYNAMIC_PERL
11698 "perl",
11699#endif
11700#endif
11701#ifdef FEAT_PYTHON
11702#ifndef DYNAMIC_PYTHON
11703 "python",
11704#endif
11705#endif
11706#ifdef FEAT_POSTSCRIPT
11707 "postscript",
11708#endif
11709#ifdef FEAT_PRINTER
11710 "printer",
11711#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +000011712#ifdef FEAT_PROFILE
11713 "profile",
11714#endif
Bram Moolenaare580b0c2006-03-21 21:33:03 +000011715#ifdef FEAT_RELTIME
11716 "reltime",
11717#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011718#ifdef FEAT_QUICKFIX
11719 "quickfix",
11720#endif
11721#ifdef FEAT_RIGHTLEFT
11722 "rightleft",
11723#endif
11724#if defined(FEAT_RUBY) && !defined(DYNAMIC_RUBY)
11725 "ruby",
11726#endif
11727#ifdef FEAT_SCROLLBIND
11728 "scrollbind",
11729#endif
11730#ifdef FEAT_CMDL_INFO
11731 "showcmd",
11732 "cmdline_info",
11733#endif
11734#ifdef FEAT_SIGNS
11735 "signs",
11736#endif
11737#ifdef FEAT_SMARTINDENT
11738 "smartindent",
11739#endif
11740#ifdef FEAT_SNIFF
11741 "sniff",
11742#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +000011743#ifdef STARTUPTIME
11744 "startuptime",
11745#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011746#ifdef FEAT_STL_OPT
11747 "statusline",
11748#endif
11749#ifdef FEAT_SUN_WORKSHOP
11750 "sun_workshop",
11751#endif
11752#ifdef FEAT_NETBEANS_INTG
11753 "netbeans_intg",
11754#endif
Bram Moolenaar3c56a962006-03-12 22:19:04 +000011755#ifdef FEAT_SPELL
Bram Moolenaar0e4d8772005-06-07 21:12:49 +000011756 "spell",
11757#endif
11758#ifdef FEAT_SYN_HL
Bram Moolenaar071d4272004-06-13 20:20:40 +000011759 "syntax",
11760#endif
11761#if defined(USE_SYSTEM) || !defined(UNIX)
11762 "system",
11763#endif
11764#ifdef FEAT_TAG_BINS
11765 "tag_binary",
11766#endif
11767#ifdef FEAT_TAG_OLDSTATIC
11768 "tag_old_static",
11769#endif
11770#ifdef FEAT_TAG_ANYWHITE
11771 "tag_any_white",
11772#endif
11773#ifdef FEAT_TCL
11774# ifndef DYNAMIC_TCL
11775 "tcl",
11776# endif
11777#endif
11778#ifdef TERMINFO
11779 "terminfo",
11780#endif
11781#ifdef FEAT_TERMRESPONSE
11782 "termresponse",
11783#endif
11784#ifdef FEAT_TEXTOBJ
11785 "textobjects",
11786#endif
11787#ifdef HAVE_TGETENT
11788 "tgetent",
11789#endif
11790#ifdef FEAT_TITLE
11791 "title",
11792#endif
11793#ifdef FEAT_TOOLBAR
11794 "toolbar",
11795#endif
11796#ifdef FEAT_USR_CMDS
11797 "user-commands", /* was accidentally included in 5.4 */
11798 "user_commands",
11799#endif
11800#ifdef FEAT_VIMINFO
11801 "viminfo",
11802#endif
11803#ifdef FEAT_VERTSPLIT
11804 "vertsplit",
11805#endif
11806#ifdef FEAT_VIRTUALEDIT
11807 "virtualedit",
11808#endif
11809#ifdef FEAT_VISUAL
11810 "visual",
11811#endif
11812#ifdef FEAT_VISUALEXTRA
11813 "visualextra",
11814#endif
11815#ifdef FEAT_VREPLACE
11816 "vreplace",
11817#endif
11818#ifdef FEAT_WILDIGN
11819 "wildignore",
11820#endif
11821#ifdef FEAT_WILDMENU
11822 "wildmenu",
11823#endif
11824#ifdef FEAT_WINDOWS
11825 "windows",
11826#endif
11827#ifdef FEAT_WAK
11828 "winaltkeys",
11829#endif
11830#ifdef FEAT_WRITEBACKUP
11831 "writebackup",
11832#endif
11833#ifdef FEAT_XIM
11834 "xim",
11835#endif
11836#ifdef FEAT_XFONTSET
11837 "xfontset",
11838#endif
11839#ifdef USE_XSMP
11840 "xsmp",
11841#endif
11842#ifdef USE_XSMP_INTERACT
11843 "xsmp_interact",
11844#endif
11845#ifdef FEAT_XCLIPBOARD
11846 "xterm_clipboard",
11847#endif
11848#ifdef FEAT_XTERM_SAVE
11849 "xterm_save",
11850#endif
11851#if defined(UNIX) && defined(FEAT_X11)
11852 "X11",
11853#endif
11854 NULL
11855 };
11856
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011857 name = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011858 for (i = 0; has_list[i] != NULL; ++i)
11859 if (STRICMP(name, has_list[i]) == 0)
11860 {
11861 n = TRUE;
11862 break;
11863 }
11864
11865 if (n == FALSE)
11866 {
11867 if (STRNICMP(name, "patch", 5) == 0)
11868 n = has_patch(atoi((char *)name + 5));
11869 else if (STRICMP(name, "vim_starting") == 0)
11870 n = (starting != 0);
Bram Moolenaar42022d52008-12-09 09:57:49 +000011871#ifdef FEAT_MBYTE
11872 else if (STRICMP(name, "multi_byte_encoding") == 0)
11873 n = has_mbyte;
11874#endif
Bram Moolenaar342337a2005-07-21 21:11:17 +000011875#if defined(FEAT_BEVAL) && defined(FEAT_GUI_W32)
11876 else if (STRICMP(name, "balloon_multiline") == 0)
11877 n = multiline_balloon_available();
11878#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011879#ifdef DYNAMIC_TCL
11880 else if (STRICMP(name, "tcl") == 0)
11881 n = tcl_enabled(FALSE);
11882#endif
11883#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
11884 else if (STRICMP(name, "iconv") == 0)
11885 n = iconv_enabled(FALSE);
11886#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011887#ifdef DYNAMIC_MZSCHEME
11888 else if (STRICMP(name, "mzscheme") == 0)
11889 n = mzscheme_enabled(FALSE);
11890#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011891#ifdef DYNAMIC_RUBY
11892 else if (STRICMP(name, "ruby") == 0)
11893 n = ruby_enabled(FALSE);
11894#endif
11895#ifdef DYNAMIC_PYTHON
11896 else if (STRICMP(name, "python") == 0)
11897 n = python_enabled(FALSE);
11898#endif
11899#ifdef DYNAMIC_PERL
11900 else if (STRICMP(name, "perl") == 0)
11901 n = perl_enabled(FALSE);
11902#endif
11903#ifdef FEAT_GUI
11904 else if (STRICMP(name, "gui_running") == 0)
11905 n = (gui.in_use || gui.starting);
11906# ifdef FEAT_GUI_W32
11907 else if (STRICMP(name, "gui_win32s") == 0)
11908 n = gui_is_win32s();
11909# endif
11910# ifdef FEAT_BROWSE
11911 else if (STRICMP(name, "browse") == 0)
11912 n = gui.in_use; /* gui_mch_browse() works when GUI is running */
11913# endif
11914#endif
11915#ifdef FEAT_SYN_HL
11916 else if (STRICMP(name, "syntax_items") == 0)
11917 n = syntax_present(curbuf);
11918#endif
11919#if defined(WIN3264)
11920 else if (STRICMP(name, "win95") == 0)
11921 n = mch_windows95();
11922#endif
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +000011923#ifdef FEAT_NETBEANS_INTG
11924 else if (STRICMP(name, "netbeans_enabled") == 0)
11925 n = usingNetbeans;
11926#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011927 }
11928
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011929 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011930}
11931
11932/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000011933 * "has_key()" function
11934 */
11935 static void
11936f_has_key(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011937 typval_T *argvars;
11938 typval_T *rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011939{
Bram Moolenaare9a41262005-01-15 22:18:47 +000011940 if (argvars[0].v_type != VAR_DICT)
11941 {
11942 EMSG(_(e_dictreq));
11943 return;
11944 }
11945 if (argvars[0].vval.v_dict == NULL)
11946 return;
11947
11948 rettv->vval.v_number = dict_find(argvars[0].vval.v_dict,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000011949 get_tv_string(&argvars[1]), -1) != NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011950}
11951
11952/*
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011953 * "haslocaldir()" function
11954 */
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011955 static void
11956f_haslocaldir(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011957 typval_T *argvars UNUSED;
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011958 typval_T *rettv;
11959{
11960 rettv->vval.v_number = (curwin->w_localdir != NULL);
11961}
11962
11963/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011964 * "hasmapto()" function
11965 */
11966 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011967f_hasmapto(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011968 typval_T *argvars;
11969 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011970{
11971 char_u *name;
11972 char_u *mode;
11973 char_u buf[NUMBUFLEN];
Bram Moolenaar2c932302006-03-18 21:42:09 +000011974 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011975
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011976 name = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011977 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011978 mode = (char_u *)"nvo";
11979 else
Bram Moolenaar2c932302006-03-18 21:42:09 +000011980 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011981 mode = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000011982 if (argvars[2].v_type != VAR_UNKNOWN)
11983 abbr = get_tv_number(&argvars[2]);
11984 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011985
Bram Moolenaar2c932302006-03-18 21:42:09 +000011986 if (map_to_exists(name, mode, abbr))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011987 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011988 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011989 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011990}
11991
11992/*
11993 * "histadd()" function
11994 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011995 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011996f_histadd(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011997 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000011998 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011999{
12000#ifdef FEAT_CMDHIST
12001 int histype;
12002 char_u *str;
12003 char_u buf[NUMBUFLEN];
12004#endif
12005
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012006 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012007 if (check_restricted() || check_secure())
12008 return;
12009#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012010 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12011 histype = str != NULL ? get_histtype(str) : -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012012 if (histype >= 0)
12013 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012014 str = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012015 if (*str != NUL)
12016 {
12017 add_to_history(histype, str, FALSE, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012018 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012019 return;
12020 }
12021 }
12022#endif
12023}
12024
12025/*
12026 * "histdel()" function
12027 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012028 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012029f_histdel(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012030 typval_T *argvars UNUSED;
12031 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012032{
12033#ifdef FEAT_CMDHIST
12034 int n;
12035 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012036 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012037
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012038 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12039 if (str == NULL)
12040 n = 0;
12041 else if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000012042 /* only one argument: clear entire history */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012043 n = clr_history(get_histtype(str));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012044 else if (argvars[1].v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +000012045 /* index given: remove that entry */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012046 n = del_history_idx(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012047 (int)get_tv_number(&argvars[1]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012048 else
12049 /* string given: remove all matching entries */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012050 n = del_history_entry(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012051 get_tv_string_buf(&argvars[1], buf));
12052 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012053#endif
12054}
12055
12056/*
12057 * "histget()" function
12058 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012059 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012060f_histget(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012061 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012062 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012063{
12064#ifdef FEAT_CMDHIST
12065 int type;
12066 int idx;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012067 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012068
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012069 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12070 if (str == NULL)
12071 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012072 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012073 {
12074 type = get_histtype(str);
12075 if (argvars[1].v_type == VAR_UNKNOWN)
12076 idx = get_history_idx(type);
12077 else
12078 idx = (int)get_tv_number_chk(&argvars[1], NULL);
12079 /* -1 on type error */
12080 rettv->vval.v_string = vim_strsave(get_history_entry(type, idx));
12081 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012082#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012083 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012084#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012085 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012086}
12087
12088/*
12089 * "histnr()" function
12090 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012091 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012092f_histnr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012093 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012094 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012095{
12096 int i;
12097
12098#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012099 char_u *history = get_tv_string_chk(&argvars[0]);
12100
12101 i = history == NULL ? HIST_CMD - 1 : get_histtype(history);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012102 if (i >= HIST_CMD && i < HIST_COUNT)
12103 i = get_history_idx(i);
12104 else
12105#endif
12106 i = -1;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012107 rettv->vval.v_number = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012108}
12109
12110/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012111 * "highlightID(name)" function
12112 */
12113 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012114f_hlID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012115 typval_T *argvars;
12116 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012117{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012118 rettv->vval.v_number = syn_name2id(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012119}
12120
12121/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012122 * "highlight_exists()" function
12123 */
12124 static void
12125f_hlexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012126 typval_T *argvars;
12127 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012128{
12129 rettv->vval.v_number = highlight_exists(get_tv_string(&argvars[0]));
12130}
12131
12132/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012133 * "hostname()" function
12134 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012135 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012136f_hostname(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012137 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012138 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012139{
12140 char_u hostname[256];
12141
12142 mch_get_host_name(hostname, 256);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012143 rettv->v_type = VAR_STRING;
12144 rettv->vval.v_string = vim_strsave(hostname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012145}
12146
12147/*
12148 * iconv() function
12149 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012150 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012151f_iconv(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012152 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012153 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012154{
12155#ifdef FEAT_MBYTE
12156 char_u buf1[NUMBUFLEN];
12157 char_u buf2[NUMBUFLEN];
12158 char_u *from, *to, *str;
12159 vimconv_T vimconv;
12160#endif
12161
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012162 rettv->v_type = VAR_STRING;
12163 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012164
12165#ifdef FEAT_MBYTE
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012166 str = get_tv_string(&argvars[0]);
12167 from = enc_canonize(enc_skip(get_tv_string_buf(&argvars[1], buf1)));
12168 to = enc_canonize(enc_skip(get_tv_string_buf(&argvars[2], buf2)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012169 vimconv.vc_type = CONV_NONE;
12170 convert_setup(&vimconv, from, to);
12171
12172 /* If the encodings are equal, no conversion needed. */
12173 if (vimconv.vc_type == CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012174 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012175 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012176 rettv->vval.v_string = string_convert(&vimconv, str, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012177
12178 convert_setup(&vimconv, NULL, NULL);
12179 vim_free(from);
12180 vim_free(to);
12181#endif
12182}
12183
12184/*
12185 * "indent()" function
12186 */
12187 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012188f_indent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012189 typval_T *argvars;
12190 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012191{
12192 linenr_T lnum;
12193
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012194 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012195 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012196 rettv->vval.v_number = get_indent_lnum(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012197 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012198 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012199}
12200
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012201/*
12202 * "index()" function
12203 */
12204 static void
12205f_index(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012206 typval_T *argvars;
12207 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012208{
Bram Moolenaar33570922005-01-25 22:26:29 +000012209 list_T *l;
12210 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012211 long idx = 0;
12212 int ic = FALSE;
12213
12214 rettv->vval.v_number = -1;
12215 if (argvars[0].v_type != VAR_LIST)
12216 {
12217 EMSG(_(e_listreq));
12218 return;
12219 }
12220 l = argvars[0].vval.v_list;
12221 if (l != NULL)
12222 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012223 item = l->lv_first;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012224 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012225 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012226 int error = FALSE;
12227
Bram Moolenaar758711c2005-02-02 23:11:38 +000012228 /* Start at specified item. Use the cached index that list_find()
12229 * sets, so that a negative number also works. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012230 item = list_find(l, get_tv_number_chk(&argvars[2], &error));
Bram Moolenaar758711c2005-02-02 23:11:38 +000012231 idx = l->lv_idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012232 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012233 ic = get_tv_number_chk(&argvars[3], &error);
12234 if (error)
12235 item = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012236 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012237
Bram Moolenaar758711c2005-02-02 23:11:38 +000012238 for ( ; item != NULL; item = item->li_next, ++idx)
12239 if (tv_equal(&item->li_tv, &argvars[1], ic))
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012240 {
12241 rettv->vval.v_number = idx;
12242 break;
12243 }
12244 }
12245}
12246
Bram Moolenaar071d4272004-06-13 20:20:40 +000012247static int inputsecret_flag = 0;
12248
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012249static void get_user_input __ARGS((typval_T *argvars, typval_T *rettv, int inputdialog));
12250
Bram Moolenaar071d4272004-06-13 20:20:40 +000012251/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012252 * This function is used by f_input() and f_inputdialog() functions. The third
12253 * argument to f_input() specifies the type of completion to use at the
12254 * prompt. The third argument to f_inputdialog() specifies the value to return
12255 * when the user cancels the prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +000012256 */
12257 static void
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012258get_user_input(argvars, rettv, inputdialog)
Bram Moolenaar33570922005-01-25 22:26:29 +000012259 typval_T *argvars;
12260 typval_T *rettv;
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012261 int inputdialog;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012262{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012263 char_u *prompt = get_tv_string_chk(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012264 char_u *p = NULL;
12265 int c;
12266 char_u buf[NUMBUFLEN];
12267 int cmd_silent_save = cmd_silent;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012268 char_u *defstr = (char_u *)"";
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012269 int xp_type = EXPAND_NOTHING;
12270 char_u *xp_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012271
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012272 rettv->v_type = VAR_STRING;
Bram Moolenaarce85c562007-09-16 12:21:16 +000012273 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012274
12275#ifdef NO_CONSOLE_INPUT
12276 /* While starting up, there is no place to enter text. */
12277 if (no_console_input())
Bram Moolenaar071d4272004-06-13 20:20:40 +000012278 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012279#endif
12280
12281 cmd_silent = FALSE; /* Want to see the prompt. */
12282 if (prompt != NULL)
12283 {
12284 /* Only the part of the message after the last NL is considered as
12285 * prompt for the command line */
12286 p = vim_strrchr(prompt, '\n');
12287 if (p == NULL)
12288 p = prompt;
12289 else
12290 {
12291 ++p;
12292 c = *p;
12293 *p = NUL;
12294 msg_start();
12295 msg_clr_eos();
12296 msg_puts_attr(prompt, echo_attr);
12297 msg_didout = FALSE;
12298 msg_starthere();
12299 *p = c;
12300 }
12301 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012302
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012303 if (argvars[1].v_type != VAR_UNKNOWN)
12304 {
12305 defstr = get_tv_string_buf_chk(&argvars[1], buf);
12306 if (defstr != NULL)
12307 stuffReadbuffSpec(defstr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012308
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012309 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar4463f292005-09-25 22:20:24 +000012310 {
12311 char_u *xp_name;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000012312 int xp_namelen;
Bram Moolenaar4463f292005-09-25 22:20:24 +000012313 long argt;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012314
Bram Moolenaar4463f292005-09-25 22:20:24 +000012315 rettv->vval.v_string = NULL;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012316
Bram Moolenaar4463f292005-09-25 22:20:24 +000012317 xp_name = get_tv_string_buf_chk(&argvars[2], buf);
12318 if (xp_name == NULL)
12319 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012320
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012321 xp_namelen = (int)STRLEN(xp_name);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012322
Bram Moolenaar4463f292005-09-25 22:20:24 +000012323 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt,
12324 &xp_arg) == FAIL)
12325 return;
12326 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012327 }
12328
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012329 if (defstr != NULL)
12330 rettv->vval.v_string =
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012331 getcmdline_prompt(inputsecret_flag ? NUL : '@', p, echo_attr,
12332 xp_type, xp_arg);
12333
12334 vim_free(xp_arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012335
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012336 /* since the user typed this, no need to wait for return */
12337 need_wait_return = FALSE;
12338 msg_didout = FALSE;
12339 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012340 cmd_silent = cmd_silent_save;
12341}
12342
12343/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012344 * "input()" function
12345 * Also handles inputsecret() when inputsecret is set.
12346 */
12347 static void
12348f_input(argvars, rettv)
12349 typval_T *argvars;
12350 typval_T *rettv;
12351{
12352 get_user_input(argvars, rettv, FALSE);
12353}
12354
12355/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012356 * "inputdialog()" function
12357 */
12358 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012359f_inputdialog(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012360 typval_T *argvars;
12361 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012362{
12363#if defined(FEAT_GUI_TEXTDIALOG)
12364 /* Use a GUI dialog if the GUI is running and 'c' is not in 'guioptions' */
12365 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
12366 {
12367 char_u *message;
12368 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012369 char_u *defstr = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +000012370
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012371 message = get_tv_string_chk(&argvars[0]);
12372 if (argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaarc05f93f2006-05-02 22:09:31 +000012373 && (defstr = get_tv_string_buf_chk(&argvars[1], buf)) != NULL)
Bram Moolenaarce0842a2005-07-18 21:58:11 +000012374 vim_strncpy(IObuff, defstr, IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012375 else
12376 IObuff[0] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012377 if (message != NULL && defstr != NULL
12378 && do_dialog(VIM_QUESTION, NULL, message,
12379 (char_u *)_("&OK\n&Cancel"), 1, IObuff) == 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012380 rettv->vval.v_string = vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012381 else
12382 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012383 if (message != NULL && defstr != NULL
12384 && argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012385 && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012386 rettv->vval.v_string = vim_strsave(
12387 get_tv_string_buf(&argvars[2], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012388 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012389 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012390 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012391 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012392 }
12393 else
12394#endif
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012395 get_user_input(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012396}
12397
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012398/*
12399 * "inputlist()" function
12400 */
12401 static void
12402f_inputlist(argvars, rettv)
12403 typval_T *argvars;
12404 typval_T *rettv;
12405{
12406 listitem_T *li;
12407 int selected;
12408 int mouse_used;
12409
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012410#ifdef NO_CONSOLE_INPUT
12411 /* While starting up, there is no place to enter text. */
12412 if (no_console_input())
12413 return;
12414#endif
12415 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
12416 {
12417 EMSG2(_(e_listarg), "inputlist()");
12418 return;
12419 }
12420
12421 msg_start();
Bram Moolenaar412f7442006-07-23 19:51:57 +000012422 msg_row = Rows - 1; /* for when 'cmdheight' > 1 */
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012423 lines_left = Rows; /* avoid more prompt */
12424 msg_scroll = TRUE;
12425 msg_clr_eos();
12426
12427 for (li = argvars[0].vval.v_list->lv_first; li != NULL; li = li->li_next)
12428 {
12429 msg_puts(get_tv_string(&li->li_tv));
12430 msg_putchar('\n');
12431 }
12432
12433 /* Ask for choice. */
12434 selected = prompt_for_number(&mouse_used);
12435 if (mouse_used)
12436 selected -= lines_left;
12437
12438 rettv->vval.v_number = selected;
12439}
12440
12441
Bram Moolenaar071d4272004-06-13 20:20:40 +000012442static garray_T ga_userinput = {0, 0, sizeof(tasave_T), 4, NULL};
12443
12444/*
12445 * "inputrestore()" function
12446 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012447 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012448f_inputrestore(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012449 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012450 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012451{
12452 if (ga_userinput.ga_len > 0)
12453 {
12454 --ga_userinput.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012455 restore_typeahead((tasave_T *)(ga_userinput.ga_data)
12456 + ga_userinput.ga_len);
Bram Moolenaar798b30b2009-04-22 10:56:16 +000012457 /* default return is zero == OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012458 }
12459 else if (p_verbose > 1)
12460 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +000012461 verb_msg((char_u *)_("called inputrestore() more often than inputsave()"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012462 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012463 }
12464}
12465
12466/*
12467 * "inputsave()" function
12468 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012469 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012470f_inputsave(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012471 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012472 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012473{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012474 /* Add an entry to the stack of typeahead storage. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012475 if (ga_grow(&ga_userinput, 1) == OK)
12476 {
12477 save_typeahead((tasave_T *)(ga_userinput.ga_data)
12478 + ga_userinput.ga_len);
12479 ++ga_userinput.ga_len;
Bram Moolenaar798b30b2009-04-22 10:56:16 +000012480 /* default return is zero == OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012481 }
12482 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012483 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012484}
12485
12486/*
12487 * "inputsecret()" function
12488 */
12489 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012490f_inputsecret(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012491 typval_T *argvars;
12492 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012493{
12494 ++cmdline_star;
12495 ++inputsecret_flag;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012496 f_input(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012497 --cmdline_star;
12498 --inputsecret_flag;
12499}
12500
12501/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012502 * "insert()" function
12503 */
12504 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012505f_insert(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012506 typval_T *argvars;
12507 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012508{
12509 long before = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000012510 listitem_T *item;
12511 list_T *l;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012512 int error = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012513
12514 if (argvars[0].v_type != VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000012515 EMSG2(_(e_listarg), "insert()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012516 else if ((l = argvars[0].vval.v_list) != NULL
12517 && !tv_check_lock(l->lv_lock, (char_u *)"insert()"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012518 {
12519 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012520 before = get_tv_number_chk(&argvars[2], &error);
12521 if (error)
12522 return; /* type error; errmsg already given */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012523
Bram Moolenaar758711c2005-02-02 23:11:38 +000012524 if (before == l->lv_len)
12525 item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012526 else
12527 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012528 item = list_find(l, before);
12529 if (item == NULL)
12530 {
12531 EMSGN(_(e_listidx), before);
12532 l = NULL;
12533 }
12534 }
12535 if (l != NULL)
12536 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012537 list_insert_tv(l, &argvars[1], item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012538 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012539 }
12540 }
12541}
12542
12543/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012544 * "isdirectory()" function
12545 */
12546 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012547f_isdirectory(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012548 typval_T *argvars;
12549 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012550{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012551 rettv->vval.v_number = mch_isdir(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012552}
12553
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012554/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012555 * "islocked()" function
12556 */
12557 static void
12558f_islocked(argvars, rettv)
12559 typval_T *argvars;
12560 typval_T *rettv;
12561{
12562 lval_T lv;
12563 char_u *end;
12564 dictitem_T *di;
12565
12566 rettv->vval.v_number = -1;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000012567 end = get_lval(get_tv_string(&argvars[0]), NULL, &lv, FALSE, FALSE, FALSE,
12568 FNE_CHECK_START);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012569 if (end != NULL && lv.ll_name != NULL)
12570 {
12571 if (*end != NUL)
12572 EMSG(_(e_trailing));
12573 else
12574 {
12575 if (lv.ll_tv == NULL)
12576 {
12577 if (check_changedtick(lv.ll_name))
12578 rettv->vval.v_number = 1; /* always locked */
12579 else
12580 {
12581 di = find_var(lv.ll_name, NULL);
12582 if (di != NULL)
12583 {
12584 /* Consider a variable locked when:
12585 * 1. the variable itself is locked
12586 * 2. the value of the variable is locked.
12587 * 3. the List or Dict value is locked.
12588 */
12589 rettv->vval.v_number = ((di->di_flags & DI_FLAGS_LOCK)
12590 || tv_islocked(&di->di_tv));
12591 }
12592 }
12593 }
12594 else if (lv.ll_range)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000012595 EMSG(_("E786: Range not allowed"));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012596 else if (lv.ll_newkey != NULL)
12597 EMSG2(_(e_dictkey), lv.ll_newkey);
12598 else if (lv.ll_list != NULL)
12599 /* List item. */
12600 rettv->vval.v_number = tv_islocked(&lv.ll_li->li_tv);
12601 else
12602 /* Dictionary item. */
12603 rettv->vval.v_number = tv_islocked(&lv.ll_di->di_tv);
12604 }
12605 }
12606
12607 clear_lval(&lv);
12608}
12609
Bram Moolenaar33570922005-01-25 22:26:29 +000012610static void dict_list __ARGS((typval_T *argvars, typval_T *rettv, int what));
Bram Moolenaar8c711452005-01-14 21:53:12 +000012611
12612/*
12613 * Turn a dict into a list:
12614 * "what" == 0: list of keys
12615 * "what" == 1: list of values
12616 * "what" == 2: list of items
12617 */
12618 static void
12619dict_list(argvars, rettv, what)
Bram Moolenaar33570922005-01-25 22:26:29 +000012620 typval_T *argvars;
12621 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012622 int what;
12623{
Bram Moolenaar33570922005-01-25 22:26:29 +000012624 list_T *l2;
12625 dictitem_T *di;
12626 hashitem_T *hi;
12627 listitem_T *li;
12628 listitem_T *li2;
12629 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012630 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012631
Bram Moolenaar8c711452005-01-14 21:53:12 +000012632 if (argvars[0].v_type != VAR_DICT)
12633 {
12634 EMSG(_(e_dictreq));
12635 return;
12636 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012637 if ((d = argvars[0].vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012638 return;
12639
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012640 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012641 return;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012642
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012643 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000012644 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012645 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012646 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +000012647 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012648 --todo;
12649 di = HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012650
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012651 li = listitem_alloc();
12652 if (li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012653 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012654 list_append(rettv->vval.v_list, li);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012655
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012656 if (what == 0)
12657 {
12658 /* keys() */
12659 li->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012660 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012661 li->li_tv.vval.v_string = vim_strsave(di->di_key);
12662 }
12663 else if (what == 1)
12664 {
12665 /* values() */
12666 copy_tv(&di->di_tv, &li->li_tv);
12667 }
12668 else
12669 {
12670 /* items() */
12671 l2 = list_alloc();
12672 li->li_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012673 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012674 li->li_tv.vval.v_list = l2;
12675 if (l2 == NULL)
12676 break;
12677 ++l2->lv_refcount;
12678
12679 li2 = listitem_alloc();
12680 if (li2 == NULL)
12681 break;
12682 list_append(l2, li2);
12683 li2->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012684 li2->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012685 li2->li_tv.vval.v_string = vim_strsave(di->di_key);
12686
12687 li2 = listitem_alloc();
12688 if (li2 == NULL)
12689 break;
12690 list_append(l2, li2);
12691 copy_tv(&di->di_tv, &li2->li_tv);
12692 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000012693 }
12694 }
12695}
12696
12697/*
12698 * "items(dict)" function
12699 */
12700 static void
12701f_items(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012702 typval_T *argvars;
12703 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012704{
12705 dict_list(argvars, rettv, 2);
12706}
12707
Bram Moolenaar071d4272004-06-13 20:20:40 +000012708/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012709 * "join()" function
12710 */
12711 static void
12712f_join(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012713 typval_T *argvars;
12714 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012715{
12716 garray_T ga;
12717 char_u *sep;
12718
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012719 if (argvars[0].v_type != VAR_LIST)
12720 {
12721 EMSG(_(e_listreq));
12722 return;
12723 }
12724 if (argvars[0].vval.v_list == NULL)
12725 return;
12726 if (argvars[1].v_type == VAR_UNKNOWN)
12727 sep = (char_u *)" ";
12728 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012729 sep = get_tv_string_chk(&argvars[1]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012730
12731 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012732
12733 if (sep != NULL)
12734 {
12735 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000012736 list_join(&ga, argvars[0].vval.v_list, sep, TRUE, 0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012737 ga_append(&ga, NUL);
12738 rettv->vval.v_string = (char_u *)ga.ga_data;
12739 }
12740 else
12741 rettv->vval.v_string = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012742}
12743
12744/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000012745 * "keys()" function
12746 */
12747 static void
12748f_keys(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012749 typval_T *argvars;
12750 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012751{
12752 dict_list(argvars, rettv, 0);
12753}
12754
12755/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012756 * "last_buffer_nr()" function.
12757 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012758 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012759f_last_buffer_nr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012760 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012761 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012762{
12763 int n = 0;
12764 buf_T *buf;
12765
12766 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
12767 if (n < buf->b_fnum)
12768 n = buf->b_fnum;
12769
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012770 rettv->vval.v_number = n;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012771}
12772
12773/*
12774 * "len()" function
12775 */
12776 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012777f_len(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012778 typval_T *argvars;
12779 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012780{
12781 switch (argvars[0].v_type)
12782 {
12783 case VAR_STRING:
12784 case VAR_NUMBER:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012785 rettv->vval.v_number = (varnumber_T)STRLEN(
12786 get_tv_string(&argvars[0]));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012787 break;
12788 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012789 rettv->vval.v_number = list_len(argvars[0].vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012790 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +000012791 case VAR_DICT:
12792 rettv->vval.v_number = dict_len(argvars[0].vval.v_dict);
12793 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012794 default:
Bram Moolenaare49b69a2005-01-08 16:11:57 +000012795 EMSG(_("E701: Invalid type for len()"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012796 break;
12797 }
12798}
12799
Bram Moolenaar33570922005-01-25 22:26:29 +000012800static void libcall_common __ARGS((typval_T *argvars, typval_T *rettv, int type));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012801
12802 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012803libcall_common(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000012804 typval_T *argvars;
12805 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012806 int type;
12807{
12808#ifdef FEAT_LIBCALL
12809 char_u *string_in;
12810 char_u **string_result;
12811 int nr_result;
12812#endif
12813
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012814 rettv->v_type = type;
Bram Moolenaar798b30b2009-04-22 10:56:16 +000012815 if (type != VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012816 rettv->vval.v_string = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012817
12818 if (check_restricted() || check_secure())
12819 return;
12820
12821#ifdef FEAT_LIBCALL
12822 /* The first two args must be strings, otherwise its meaningless */
12823 if (argvars[0].v_type == VAR_STRING && argvars[1].v_type == VAR_STRING)
12824 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012825 string_in = NULL;
12826 if (argvars[2].v_type == VAR_STRING)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012827 string_in = argvars[2].vval.v_string;
12828 if (type == VAR_NUMBER)
12829 string_result = NULL;
12830 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012831 string_result = &rettv->vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012832 if (mch_libcall(argvars[0].vval.v_string,
12833 argvars[1].vval.v_string,
12834 string_in,
12835 argvars[2].vval.v_number,
12836 string_result,
12837 &nr_result) == OK
12838 && type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012839 rettv->vval.v_number = nr_result;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012840 }
12841#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000012842}
12843
12844/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012845 * "libcall()" function
12846 */
12847 static void
12848f_libcall(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012849 typval_T *argvars;
12850 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012851{
12852 libcall_common(argvars, rettv, VAR_STRING);
12853}
12854
12855/*
12856 * "libcallnr()" function
12857 */
12858 static void
12859f_libcallnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012860 typval_T *argvars;
12861 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012862{
12863 libcall_common(argvars, rettv, VAR_NUMBER);
12864}
12865
12866/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012867 * "line(string)" function
12868 */
12869 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012870f_line(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012871 typval_T *argvars;
12872 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012873{
12874 linenr_T lnum = 0;
12875 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012876 int fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012877
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012878 fp = var2fpos(&argvars[0], TRUE, &fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012879 if (fp != NULL)
12880 lnum = fp->lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012881 rettv->vval.v_number = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012882}
12883
12884/*
12885 * "line2byte(lnum)" function
12886 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012887 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012888f_line2byte(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012889 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012890 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012891{
12892#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012893 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012894#else
12895 linenr_T lnum;
12896
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012897 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012898 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012899 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012900 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012901 rettv->vval.v_number = ml_find_line_or_offset(curbuf, lnum, NULL);
12902 if (rettv->vval.v_number >= 0)
12903 ++rettv->vval.v_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012904#endif
12905}
12906
12907/*
12908 * "lispindent(lnum)" function
12909 */
12910 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012911f_lispindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012912 typval_T *argvars;
12913 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012914{
12915#ifdef FEAT_LISP
12916 pos_T pos;
12917 linenr_T lnum;
12918
12919 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012920 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012921 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
12922 {
12923 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012924 rettv->vval.v_number = get_lisp_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +000012925 curwin->w_cursor = pos;
12926 }
12927 else
12928#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012929 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012930}
12931
12932/*
12933 * "localtime()" function
12934 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012935 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012936f_localtime(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012937 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012938 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012939{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012940 rettv->vval.v_number = (varnumber_T)time(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012941}
12942
Bram Moolenaar33570922005-01-25 22:26:29 +000012943static void get_maparg __ARGS((typval_T *argvars, typval_T *rettv, int exact));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012944
12945 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012946get_maparg(argvars, rettv, exact)
Bram Moolenaar33570922005-01-25 22:26:29 +000012947 typval_T *argvars;
12948 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012949 int exact;
12950{
12951 char_u *keys;
12952 char_u *which;
12953 char_u buf[NUMBUFLEN];
12954 char_u *keys_buf = NULL;
12955 char_u *rhs;
12956 int mode;
12957 garray_T ga;
Bram Moolenaar2c932302006-03-18 21:42:09 +000012958 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012959
12960 /* return empty string for failure */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012961 rettv->v_type = VAR_STRING;
12962 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012963
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012964 keys = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012965 if (*keys == NUL)
12966 return;
12967
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012968 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar2c932302006-03-18 21:42:09 +000012969 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012970 which = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012971 if (argvars[2].v_type != VAR_UNKNOWN)
12972 abbr = get_tv_number(&argvars[2]);
12973 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012974 else
12975 which = (char_u *)"";
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012976 if (which == NULL)
12977 return;
12978
Bram Moolenaar071d4272004-06-13 20:20:40 +000012979 mode = get_map_mode(&which, 0);
12980
Bram Moolenaar3fb9eda2006-05-03 21:29:58 +000012981 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE, FALSE);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012982 rhs = check_map(keys, mode, exact, FALSE, abbr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012983 vim_free(keys_buf);
12984 if (rhs != NULL)
12985 {
12986 ga_init(&ga);
12987 ga.ga_itemsize = 1;
12988 ga.ga_growsize = 40;
12989
12990 while (*rhs != NUL)
12991 ga_concat(&ga, str2special(&rhs, FALSE));
12992
12993 ga_append(&ga, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012994 rettv->vval.v_string = (char_u *)ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012995 }
12996}
12997
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012998#ifdef FEAT_FLOAT
12999/*
13000 * "log10()" function
13001 */
13002 static void
13003f_log10(argvars, rettv)
13004 typval_T *argvars;
13005 typval_T *rettv;
13006{
13007 float_T f;
13008
13009 rettv->v_type = VAR_FLOAT;
13010 if (get_float_arg(argvars, &f) == OK)
13011 rettv->vval.v_float = log10(f);
13012 else
13013 rettv->vval.v_float = 0.0;
13014}
13015#endif
13016
Bram Moolenaar071d4272004-06-13 20:20:40 +000013017/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013018 * "map()" function
13019 */
13020 static void
13021f_map(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013022 typval_T *argvars;
13023 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013024{
13025 filter_map(argvars, rettv, TRUE);
13026}
13027
13028/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013029 * "maparg()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013030 */
13031 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013032f_maparg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013033 typval_T *argvars;
13034 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013035{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013036 get_maparg(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013037}
13038
13039/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013040 * "mapcheck()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013041 */
13042 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013043f_mapcheck(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013044 typval_T *argvars;
13045 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013046{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013047 get_maparg(argvars, rettv, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013048}
13049
Bram Moolenaar33570922005-01-25 22:26:29 +000013050static void find_some_match __ARGS((typval_T *argvars, typval_T *rettv, int start));
Bram Moolenaar071d4272004-06-13 20:20:40 +000013051
13052 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013053find_some_match(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000013054 typval_T *argvars;
13055 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013056 int type;
13057{
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013058 char_u *str = NULL;
13059 char_u *expr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013060 char_u *pat;
13061 regmatch_T regmatch;
13062 char_u patbuf[NUMBUFLEN];
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013063 char_u strbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000013064 char_u *save_cpo;
13065 long start = 0;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013066 long nth = 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013067 colnr_T startcol = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013068 int match = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000013069 list_T *l = NULL;
13070 listitem_T *li = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013071 long idx = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013072 char_u *tofree = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013073
13074 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
13075 save_cpo = p_cpo;
13076 p_cpo = (char_u *)"";
13077
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013078 rettv->vval.v_number = -1;
13079 if (type == 3)
13080 {
13081 /* return empty list when there are no matches */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013082 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013083 goto theend;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013084 }
13085 else if (type == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013086 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013087 rettv->v_type = VAR_STRING;
13088 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013089 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013090
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013091 if (argvars[0].v_type == VAR_LIST)
13092 {
13093 if ((l = argvars[0].vval.v_list) == NULL)
13094 goto theend;
13095 li = l->lv_first;
13096 }
13097 else
13098 expr = str = get_tv_string(&argvars[0]);
13099
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013100 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
13101 if (pat == NULL)
13102 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013103
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013104 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013105 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013106 int error = FALSE;
13107
13108 start = get_tv_number_chk(&argvars[2], &error);
13109 if (error)
13110 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013111 if (l != NULL)
13112 {
13113 li = list_find(l, start);
13114 if (li == NULL)
13115 goto theend;
Bram Moolenaar758711c2005-02-02 23:11:38 +000013116 idx = l->lv_idx; /* use the cached index */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013117 }
13118 else
13119 {
13120 if (start < 0)
13121 start = 0;
13122 if (start > (long)STRLEN(str))
13123 goto theend;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000013124 /* When "count" argument is there ignore matches before "start",
13125 * otherwise skip part of the string. Differs when pattern is "^"
13126 * or "\<". */
13127 if (argvars[3].v_type != VAR_UNKNOWN)
13128 startcol = start;
13129 else
13130 str += start;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013131 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013132
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013133 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013134 nth = get_tv_number_chk(&argvars[3], &error);
13135 if (error)
13136 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013137 }
13138
13139 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
13140 if (regmatch.regprog != NULL)
13141 {
13142 regmatch.rm_ic = p_ic;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013143
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013144 for (;;)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013145 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013146 if (l != NULL)
13147 {
13148 if (li == NULL)
13149 {
13150 match = FALSE;
13151 break;
13152 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013153 vim_free(tofree);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013154 str = echo_string(&li->li_tv, &tofree, strbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013155 if (str == NULL)
13156 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013157 }
13158
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013159 match = vim_regexec_nl(&regmatch, str, (colnr_T)startcol);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013160
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013161 if (match && --nth <= 0)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013162 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013163 if (l == NULL && !match)
13164 break;
13165
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013166 /* Advance to just after the match. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013167 if (l != NULL)
13168 {
13169 li = li->li_next;
13170 ++idx;
13171 }
13172 else
13173 {
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013174#ifdef FEAT_MBYTE
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013175 startcol = (colnr_T)(regmatch.startp[0]
13176 + (*mb_ptr2len)(regmatch.startp[0]) - str);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013177#else
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013178 startcol = regmatch.startp[0] + 1 - str;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013179#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013180 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013181 }
13182
13183 if (match)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013184 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013185 if (type == 3)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013186 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013187 int i;
13188
13189 /* return list with matched string and submatches */
13190 for (i = 0; i < NSUBEXP; ++i)
13191 {
13192 if (regmatch.endp[i] == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000013193 {
13194 if (list_append_string(rettv->vval.v_list,
13195 (char_u *)"", 0) == FAIL)
13196 break;
13197 }
13198 else if (list_append_string(rettv->vval.v_list,
Bram Moolenaar4463f292005-09-25 22:20:24 +000013199 regmatch.startp[i],
13200 (int)(regmatch.endp[i] - regmatch.startp[i]))
13201 == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013202 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013203 }
13204 }
13205 else if (type == 2)
13206 {
13207 /* return matched string */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013208 if (l != NULL)
13209 copy_tv(&li->li_tv, rettv);
13210 else
13211 rettv->vval.v_string = vim_strnsave(regmatch.startp[0],
Bram Moolenaar071d4272004-06-13 20:20:40 +000013212 (int)(regmatch.endp[0] - regmatch.startp[0]));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013213 }
13214 else if (l != NULL)
13215 rettv->vval.v_number = idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013216 else
13217 {
13218 if (type != 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013219 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013220 (varnumber_T)(regmatch.startp[0] - str);
13221 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013222 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013223 (varnumber_T)(regmatch.endp[0] - str);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013224 rettv->vval.v_number += (varnumber_T)(str - expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013225 }
13226 }
13227 vim_free(regmatch.regprog);
13228 }
13229
13230theend:
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013231 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013232 p_cpo = save_cpo;
13233}
13234
13235/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013236 * "match()" function
13237 */
13238 static void
13239f_match(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013240 typval_T *argvars;
13241 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013242{
13243 find_some_match(argvars, rettv, 1);
13244}
13245
13246/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013247 * "matchadd()" function
13248 */
13249 static void
13250f_matchadd(argvars, rettv)
13251 typval_T *argvars;
13252 typval_T *rettv;
13253{
13254#ifdef FEAT_SEARCH_EXTRA
13255 char_u buf[NUMBUFLEN];
13256 char_u *grp = get_tv_string_buf_chk(&argvars[0], buf); /* group */
13257 char_u *pat = get_tv_string_buf_chk(&argvars[1], buf); /* pattern */
13258 int prio = 10; /* default priority */
13259 int id = -1;
13260 int error = FALSE;
13261
13262 rettv->vval.v_number = -1;
13263
13264 if (grp == NULL || pat == NULL)
13265 return;
13266 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013267 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013268 prio = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013269 if (argvars[3].v_type != VAR_UNKNOWN)
13270 id = get_tv_number_chk(&argvars[3], &error);
13271 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013272 if (error == TRUE)
13273 return;
13274 if (id >= 1 && id <= 3)
13275 {
13276 EMSGN("E798: ID is reserved for \":match\": %ld", id);
13277 return;
13278 }
13279
13280 rettv->vval.v_number = match_add(curwin, grp, pat, prio, id);
13281#endif
13282}
13283
13284/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013285 * "matcharg()" function
13286 */
13287 static void
13288f_matcharg(argvars, rettv)
13289 typval_T *argvars;
13290 typval_T *rettv;
13291{
13292 if (rettv_list_alloc(rettv) == OK)
13293 {
13294#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013295 int id = get_tv_number(&argvars[0]);
13296 matchitem_T *m;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013297
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013298 if (id >= 1 && id <= 3)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013299 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013300 if ((m = (matchitem_T *)get_match(curwin, id)) != NULL)
13301 {
13302 list_append_string(rettv->vval.v_list,
13303 syn_id2name(m->hlg_id), -1);
13304 list_append_string(rettv->vval.v_list, m->pattern, -1);
13305 }
13306 else
13307 {
13308 list_append_string(rettv->vval.v_list, NUL, -1);
13309 list_append_string(rettv->vval.v_list, NUL, -1);
13310 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013311 }
13312#endif
13313 }
13314}
13315
13316/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013317 * "matchdelete()" function
13318 */
13319 static void
13320f_matchdelete(argvars, rettv)
13321 typval_T *argvars;
13322 typval_T *rettv;
13323{
13324#ifdef FEAT_SEARCH_EXTRA
13325 rettv->vval.v_number = match_delete(curwin,
13326 (int)get_tv_number(&argvars[0]), TRUE);
13327#endif
13328}
13329
13330/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013331 * "matchend()" function
13332 */
13333 static void
13334f_matchend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013335 typval_T *argvars;
13336 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013337{
13338 find_some_match(argvars, rettv, 0);
13339}
13340
13341/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013342 * "matchlist()" function
13343 */
13344 static void
13345f_matchlist(argvars, rettv)
13346 typval_T *argvars;
13347 typval_T *rettv;
13348{
13349 find_some_match(argvars, rettv, 3);
13350}
13351
13352/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013353 * "matchstr()" function
13354 */
13355 static void
13356f_matchstr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013357 typval_T *argvars;
13358 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013359{
13360 find_some_match(argvars, rettv, 2);
13361}
13362
Bram Moolenaar33570922005-01-25 22:26:29 +000013363static void max_min __ARGS((typval_T *argvars, typval_T *rettv, int domax));
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013364
13365 static void
13366max_min(argvars, rettv, domax)
Bram Moolenaar33570922005-01-25 22:26:29 +000013367 typval_T *argvars;
13368 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013369 int domax;
13370{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013371 long n = 0;
13372 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013373 int error = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013374
13375 if (argvars[0].v_type == VAR_LIST)
13376 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013377 list_T *l;
13378 listitem_T *li;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013379
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013380 l = argvars[0].vval.v_list;
13381 if (l != NULL)
13382 {
13383 li = l->lv_first;
13384 if (li != NULL)
13385 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013386 n = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013387 for (;;)
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013388 {
13389 li = li->li_next;
13390 if (li == NULL)
13391 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013392 i = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013393 if (domax ? i > n : i < n)
13394 n = i;
13395 }
13396 }
13397 }
13398 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000013399 else if (argvars[0].v_type == VAR_DICT)
13400 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013401 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013402 int first = TRUE;
Bram Moolenaar33570922005-01-25 22:26:29 +000013403 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013404 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013405
13406 d = argvars[0].vval.v_dict;
13407 if (d != NULL)
13408 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013409 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000013410 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013411 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013412 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +000013413 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013414 --todo;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013415 i = get_tv_number_chk(&HI2DI(hi)->di_tv, &error);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013416 if (first)
13417 {
13418 n = i;
13419 first = FALSE;
13420 }
13421 else if (domax ? i > n : i < n)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013422 n = i;
13423 }
13424 }
13425 }
13426 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013427 else
Bram Moolenaar758711c2005-02-02 23:11:38 +000013428 EMSG(_(e_listdictarg));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013429 rettv->vval.v_number = error ? 0 : n;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013430}
13431
13432/*
13433 * "max()" function
13434 */
13435 static void
13436f_max(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013437 typval_T *argvars;
13438 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013439{
13440 max_min(argvars, rettv, TRUE);
13441}
13442
13443/*
13444 * "min()" function
13445 */
13446 static void
13447f_min(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013448 typval_T *argvars;
13449 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013450{
13451 max_min(argvars, rettv, FALSE);
13452}
13453
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013454static int mkdir_recurse __ARGS((char_u *dir, int prot));
13455
13456/*
13457 * Create the directory in which "dir" is located, and higher levels when
13458 * needed.
13459 */
13460 static int
13461mkdir_recurse(dir, prot)
13462 char_u *dir;
13463 int prot;
13464{
13465 char_u *p;
13466 char_u *updir;
13467 int r = FAIL;
13468
13469 /* Get end of directory name in "dir".
13470 * We're done when it's "/" or "c:/". */
13471 p = gettail_sep(dir);
13472 if (p <= get_past_head(dir))
13473 return OK;
13474
13475 /* If the directory exists we're done. Otherwise: create it.*/
13476 updir = vim_strnsave(dir, (int)(p - dir));
13477 if (updir == NULL)
13478 return FAIL;
13479 if (mch_isdir(updir))
13480 r = OK;
13481 else if (mkdir_recurse(updir, prot) == OK)
13482 r = vim_mkdir_emsg(updir, prot);
13483 vim_free(updir);
13484 return r;
13485}
13486
13487#ifdef vim_mkdir
13488/*
13489 * "mkdir()" function
13490 */
13491 static void
13492f_mkdir(argvars, rettv)
13493 typval_T *argvars;
13494 typval_T *rettv;
13495{
13496 char_u *dir;
13497 char_u buf[NUMBUFLEN];
13498 int prot = 0755;
13499
13500 rettv->vval.v_number = FAIL;
13501 if (check_restricted() || check_secure())
13502 return;
13503
13504 dir = get_tv_string_buf(&argvars[0], buf);
13505 if (argvars[1].v_type != VAR_UNKNOWN)
13506 {
13507 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013508 prot = get_tv_number_chk(&argvars[2], NULL);
13509 if (prot != -1 && STRCMP(get_tv_string(&argvars[1]), "p") == 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013510 mkdir_recurse(dir, prot);
13511 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013512 rettv->vval.v_number = prot != -1 ? vim_mkdir_emsg(dir, prot) : 0;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013513}
13514#endif
13515
Bram Moolenaar0d660222005-01-07 21:51:51 +000013516/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013517 * "mode()" function
13518 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000013519 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013520f_mode(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013521 typval_T *argvars;
13522 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013523{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013524 char_u buf[3];
13525
13526 buf[1] = NUL;
13527 buf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013528
13529#ifdef FEAT_VISUAL
13530 if (VIsual_active)
13531 {
13532 if (VIsual_select)
13533 buf[0] = VIsual_mode + 's' - 'v';
13534 else
13535 buf[0] = VIsual_mode;
13536 }
13537 else
13538#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013539 if (State == HITRETURN || State == ASKMORE || State == SETWSIZE
13540 || State == CONFIRM)
13541 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013542 buf[0] = 'r';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013543 if (State == ASKMORE)
13544 buf[1] = 'm';
13545 else if (State == CONFIRM)
13546 buf[1] = '?';
13547 }
13548 else if (State == EXTERNCMD)
13549 buf[0] = '!';
Bram Moolenaar071d4272004-06-13 20:20:40 +000013550 else if (State & INSERT)
13551 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013552#ifdef FEAT_VREPLACE
13553 if (State & VREPLACE_FLAG)
13554 {
13555 buf[0] = 'R';
13556 buf[1] = 'v';
13557 }
13558 else
13559#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000013560 if (State & REPLACE_FLAG)
13561 buf[0] = 'R';
13562 else
13563 buf[0] = 'i';
13564 }
13565 else if (State & CMDLINE)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013566 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013567 buf[0] = 'c';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013568 if (exmode_active)
13569 buf[1] = 'v';
13570 }
13571 else if (exmode_active)
13572 {
13573 buf[0] = 'c';
13574 buf[1] = 'e';
13575 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013576 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013577 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013578 buf[0] = 'n';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013579 if (finish_op)
13580 buf[1] = 'o';
13581 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013582
Bram Moolenaar05bb9532008-07-04 09:44:11 +000013583 /* Clear out the minor mode when the argument is not a non-zero number or
13584 * non-empty string. */
13585 if (!non_zero_arg(&argvars[0]))
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013586 buf[1] = NUL;
13587
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013588 rettv->vval.v_string = vim_strsave(buf);
13589 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013590}
13591
13592/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013593 * "nextnonblank()" function
13594 */
13595 static void
13596f_nextnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013597 typval_T *argvars;
13598 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013599{
13600 linenr_T lnum;
13601
13602 for (lnum = get_tv_lnum(argvars); ; ++lnum)
13603 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013604 if (lnum < 0 || lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar0d660222005-01-07 21:51:51 +000013605 {
13606 lnum = 0;
13607 break;
13608 }
13609 if (*skipwhite(ml_get(lnum)) != NUL)
13610 break;
13611 }
13612 rettv->vval.v_number = lnum;
13613}
13614
13615/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013616 * "nr2char()" function
13617 */
13618 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013619f_nr2char(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013620 typval_T *argvars;
13621 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013622{
13623 char_u buf[NUMBUFLEN];
13624
13625#ifdef FEAT_MBYTE
13626 if (has_mbyte)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013627 buf[(*mb_char2bytes)((int)get_tv_number(&argvars[0]), buf)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013628 else
13629#endif
13630 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013631 buf[0] = (char_u)get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013632 buf[1] = NUL;
13633 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013634 rettv->v_type = VAR_STRING;
13635 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013636}
13637
13638/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013639 * "pathshorten()" function
13640 */
13641 static void
13642f_pathshorten(argvars, rettv)
13643 typval_T *argvars;
13644 typval_T *rettv;
13645{
13646 char_u *p;
13647
13648 rettv->v_type = VAR_STRING;
13649 p = get_tv_string_chk(&argvars[0]);
13650 if (p == NULL)
13651 rettv->vval.v_string = NULL;
13652 else
13653 {
13654 p = vim_strsave(p);
13655 rettv->vval.v_string = p;
13656 if (p != NULL)
13657 shorten_dir(p);
13658 }
13659}
13660
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013661#ifdef FEAT_FLOAT
13662/*
13663 * "pow()" function
13664 */
13665 static void
13666f_pow(argvars, rettv)
13667 typval_T *argvars;
13668 typval_T *rettv;
13669{
13670 float_T fx, fy;
13671
13672 rettv->v_type = VAR_FLOAT;
13673 if (get_float_arg(argvars, &fx) == OK
13674 && get_float_arg(&argvars[1], &fy) == OK)
13675 rettv->vval.v_float = pow(fx, fy);
13676 else
13677 rettv->vval.v_float = 0.0;
13678}
13679#endif
13680
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013681/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013682 * "prevnonblank()" function
13683 */
13684 static void
13685f_prevnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013686 typval_T *argvars;
13687 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013688{
13689 linenr_T lnum;
13690
13691 lnum = get_tv_lnum(argvars);
13692 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
13693 lnum = 0;
13694 else
13695 while (lnum >= 1 && *skipwhite(ml_get(lnum)) == NUL)
13696 --lnum;
13697 rettv->vval.v_number = lnum;
13698}
13699
Bram Moolenaara6c840d2005-08-22 22:59:46 +000013700#ifdef HAVE_STDARG_H
13701/* This dummy va_list is here because:
13702 * - passing a NULL pointer doesn't work when va_list isn't a pointer
13703 * - locally in the function results in a "used before set" warning
13704 * - using va_start() to initialize it gives "function with fixed args" error */
13705static va_list ap;
13706#endif
13707
Bram Moolenaar8c711452005-01-14 21:53:12 +000013708/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013709 * "printf()" function
13710 */
13711 static void
13712f_printf(argvars, rettv)
13713 typval_T *argvars;
13714 typval_T *rettv;
13715{
13716 rettv->v_type = VAR_STRING;
13717 rettv->vval.v_string = NULL;
Bram Moolenaard52d9742005-08-21 22:20:28 +000013718#ifdef HAVE_STDARG_H /* only very old compilers can't do this */
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013719 {
13720 char_u buf[NUMBUFLEN];
13721 int len;
13722 char_u *s;
13723 int saved_did_emsg = did_emsg;
13724 char *fmt;
13725
13726 /* Get the required length, allocate the buffer and do it for real. */
13727 did_emsg = FALSE;
13728 fmt = (char *)get_tv_string_buf(&argvars[0], buf);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013729 len = vim_vsnprintf(NULL, 0, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013730 if (!did_emsg)
13731 {
13732 s = alloc(len + 1);
13733 if (s != NULL)
13734 {
13735 rettv->vval.v_string = s;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013736 (void)vim_vsnprintf((char *)s, len + 1, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013737 }
13738 }
13739 did_emsg |= saved_did_emsg;
13740 }
13741#endif
13742}
13743
13744/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013745 * "pumvisible()" function
13746 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013747 static void
13748f_pumvisible(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000013749 typval_T *argvars UNUSED;
13750 typval_T *rettv UNUSED;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013751{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013752#ifdef FEAT_INS_EXPAND
13753 if (pum_visible())
13754 rettv->vval.v_number = 1;
13755#endif
13756}
13757
13758/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000013759 * "range()" function
13760 */
13761 static void
13762f_range(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013763 typval_T *argvars;
13764 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013765{
13766 long start;
13767 long end;
13768 long stride = 1;
13769 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013770 int error = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013771
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013772 start = get_tv_number_chk(&argvars[0], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013773 if (argvars[1].v_type == VAR_UNKNOWN)
13774 {
13775 end = start - 1;
13776 start = 0;
13777 }
13778 else
13779 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013780 end = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013781 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013782 stride = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013783 }
13784
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013785 if (error)
13786 return; /* type error; errmsg already given */
Bram Moolenaar8c711452005-01-14 21:53:12 +000013787 if (stride == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013788 EMSG(_("E726: Stride is zero"));
Bram Moolenaar92124a32005-06-17 22:03:40 +000013789 else if (stride > 0 ? end + 1 < start : end - 1 > start)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013790 EMSG(_("E727: Start past end"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000013791 else
13792 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013793 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013794 for (i = start; stride > 0 ? i <= end : i >= end; i += stride)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013795 if (list_append_number(rettv->vval.v_list,
13796 (varnumber_T)i) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013797 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013798 }
13799}
13800
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013801/*
13802 * "readfile()" function
13803 */
13804 static void
13805f_readfile(argvars, rettv)
13806 typval_T *argvars;
13807 typval_T *rettv;
13808{
13809 int binary = FALSE;
13810 char_u *fname;
13811 FILE *fd;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013812 listitem_T *li;
13813#define FREAD_SIZE 200 /* optimized for text lines */
13814 char_u buf[FREAD_SIZE];
13815 int readlen; /* size of last fread() */
13816 int buflen; /* nr of valid chars in buf[] */
13817 int filtd; /* how much in buf[] was NUL -> '\n' filtered */
13818 int tolist; /* first byte in buf[] still to be put in list */
13819 int chop; /* how many CR to chop off */
13820 char_u *prev = NULL; /* previously read bytes, if any */
13821 int prevlen = 0; /* length of "prev" if not NULL */
13822 char_u *s;
13823 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013824 long maxline = MAXLNUM;
13825 long cnt = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013826
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013827 if (argvars[1].v_type != VAR_UNKNOWN)
13828 {
13829 if (STRCMP(get_tv_string(&argvars[1]), "b") == 0)
13830 binary = TRUE;
13831 if (argvars[2].v_type != VAR_UNKNOWN)
13832 maxline = get_tv_number(&argvars[2]);
13833 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013834
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013835 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013836 return;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013837
13838 /* Always open the file in binary mode, library functions have a mind of
13839 * their own about CR-LF conversion. */
13840 fname = get_tv_string(&argvars[0]);
13841 if (*fname == NUL || (fd = mch_fopen((char *)fname, READBIN)) == NULL)
13842 {
13843 EMSG2(_(e_notopen), *fname == NUL ? (char_u *)_("<empty>") : fname);
13844 return;
13845 }
13846
13847 filtd = 0;
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013848 while (cnt < maxline || maxline < 0)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013849 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013850 readlen = (int)fread(buf + filtd, 1, FREAD_SIZE - filtd, fd);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013851 buflen = filtd + readlen;
13852 tolist = 0;
13853 for ( ; filtd < buflen || readlen <= 0; ++filtd)
13854 {
13855 if (buf[filtd] == '\n' || readlen <= 0)
13856 {
13857 /* Only when in binary mode add an empty list item when the
13858 * last line ends in a '\n'. */
13859 if (!binary && readlen == 0 && filtd == 0)
13860 break;
13861
13862 /* Found end-of-line or end-of-file: add a text line to the
13863 * list. */
13864 chop = 0;
13865 if (!binary)
13866 while (filtd - chop - 1 >= tolist
13867 && buf[filtd - chop - 1] == '\r')
13868 ++chop;
13869 len = filtd - tolist - chop;
13870 if (prev == NULL)
13871 s = vim_strnsave(buf + tolist, len);
13872 else
13873 {
13874 s = alloc((unsigned)(prevlen + len + 1));
13875 if (s != NULL)
13876 {
13877 mch_memmove(s, prev, prevlen);
13878 vim_free(prev);
13879 prev = NULL;
13880 mch_memmove(s + prevlen, buf + tolist, len);
13881 s[prevlen + len] = NUL;
13882 }
13883 }
13884 tolist = filtd + 1;
13885
13886 li = listitem_alloc();
13887 if (li == NULL)
13888 {
13889 vim_free(s);
13890 break;
13891 }
13892 li->li_tv.v_type = VAR_STRING;
13893 li->li_tv.v_lock = 0;
13894 li->li_tv.vval.v_string = s;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013895 list_append(rettv->vval.v_list, li);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013896
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013897 if (++cnt >= maxline && maxline >= 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013898 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013899 if (readlen <= 0)
13900 break;
13901 }
13902 else if (buf[filtd] == NUL)
13903 buf[filtd] = '\n';
13904 }
13905 if (readlen <= 0)
13906 break;
13907
13908 if (tolist == 0)
13909 {
13910 /* "buf" is full, need to move text to an allocated buffer */
13911 if (prev == NULL)
13912 {
13913 prev = vim_strnsave(buf, buflen);
13914 prevlen = buflen;
13915 }
13916 else
13917 {
13918 s = alloc((unsigned)(prevlen + buflen));
13919 if (s != NULL)
13920 {
13921 mch_memmove(s, prev, prevlen);
13922 mch_memmove(s + prevlen, buf, buflen);
13923 vim_free(prev);
13924 prev = s;
13925 prevlen += buflen;
13926 }
13927 }
13928 filtd = 0;
13929 }
13930 else
13931 {
13932 mch_memmove(buf, buf + tolist, buflen - tolist);
13933 filtd -= tolist;
13934 }
13935 }
13936
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013937 /*
13938 * For a negative line count use only the lines at the end of the file,
13939 * free the rest.
13940 */
13941 if (maxline < 0)
13942 while (cnt > -maxline)
13943 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013944 listitem_remove(rettv->vval.v_list, rettv->vval.v_list->lv_first);
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013945 --cnt;
13946 }
13947
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013948 vim_free(prev);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013949 fclose(fd);
13950}
13951
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013952#if defined(FEAT_RELTIME)
13953static int list2proftime __ARGS((typval_T *arg, proftime_T *tm));
13954
13955/*
13956 * Convert a List to proftime_T.
13957 * Return FAIL when there is something wrong.
13958 */
13959 static int
13960list2proftime(arg, tm)
13961 typval_T *arg;
13962 proftime_T *tm;
13963{
13964 long n1, n2;
13965 int error = FALSE;
13966
13967 if (arg->v_type != VAR_LIST || arg->vval.v_list == NULL
13968 || arg->vval.v_list->lv_len != 2)
13969 return FAIL;
13970 n1 = list_find_nr(arg->vval.v_list, 0L, &error);
13971 n2 = list_find_nr(arg->vval.v_list, 1L, &error);
13972# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000013973 tm->HighPart = n1;
13974 tm->LowPart = n2;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013975# else
13976 tm->tv_sec = n1;
13977 tm->tv_usec = n2;
13978# endif
13979 return error ? FAIL : OK;
13980}
13981#endif /* FEAT_RELTIME */
13982
13983/*
13984 * "reltime()" function
13985 */
13986 static void
13987f_reltime(argvars, rettv)
13988 typval_T *argvars;
13989 typval_T *rettv;
13990{
13991#ifdef FEAT_RELTIME
13992 proftime_T res;
13993 proftime_T start;
13994
13995 if (argvars[0].v_type == VAR_UNKNOWN)
13996 {
13997 /* No arguments: get current time. */
13998 profile_start(&res);
13999 }
14000 else if (argvars[1].v_type == VAR_UNKNOWN)
14001 {
14002 if (list2proftime(&argvars[0], &res) == FAIL)
14003 return;
14004 profile_end(&res);
14005 }
14006 else
14007 {
14008 /* Two arguments: compute the difference. */
14009 if (list2proftime(&argvars[0], &start) == FAIL
14010 || list2proftime(&argvars[1], &res) == FAIL)
14011 return;
14012 profile_sub(&res, &start);
14013 }
14014
14015 if (rettv_list_alloc(rettv) == OK)
14016 {
14017 long n1, n2;
14018
14019# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000014020 n1 = res.HighPart;
14021 n2 = res.LowPart;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000014022# else
14023 n1 = res.tv_sec;
14024 n2 = res.tv_usec;
14025# endif
14026 list_append_number(rettv->vval.v_list, (varnumber_T)n1);
14027 list_append_number(rettv->vval.v_list, (varnumber_T)n2);
14028 }
14029#endif
14030}
14031
14032/*
14033 * "reltimestr()" function
14034 */
14035 static void
14036f_reltimestr(argvars, rettv)
14037 typval_T *argvars;
14038 typval_T *rettv;
14039{
14040#ifdef FEAT_RELTIME
14041 proftime_T tm;
14042#endif
14043
14044 rettv->v_type = VAR_STRING;
14045 rettv->vval.v_string = NULL;
14046#ifdef FEAT_RELTIME
14047 if (list2proftime(&argvars[0], &tm) == OK)
14048 rettv->vval.v_string = vim_strsave((char_u *)profile_msg(&tm));
14049#endif
14050}
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000014051
Bram Moolenaar0d660222005-01-07 21:51:51 +000014052#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
14053static void make_connection __ARGS((void));
14054static int check_connection __ARGS((void));
14055
14056 static void
14057make_connection()
14058{
14059 if (X_DISPLAY == NULL
14060# ifdef FEAT_GUI
14061 && !gui.in_use
14062# endif
14063 )
14064 {
14065 x_force_connect = TRUE;
14066 setup_term_clip();
14067 x_force_connect = FALSE;
14068 }
14069}
14070
14071 static int
14072check_connection()
14073{
14074 make_connection();
14075 if (X_DISPLAY == NULL)
14076 {
14077 EMSG(_("E240: No connection to Vim server"));
14078 return FAIL;
14079 }
14080 return OK;
14081}
14082#endif
14083
14084#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014085static void remote_common __ARGS((typval_T *argvars, typval_T *rettv, int expr));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014086
14087 static void
14088remote_common(argvars, rettv, expr)
Bram Moolenaar33570922005-01-25 22:26:29 +000014089 typval_T *argvars;
14090 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014091 int expr;
14092{
14093 char_u *server_name;
14094 char_u *keys;
14095 char_u *r = NULL;
14096 char_u buf[NUMBUFLEN];
14097# ifdef WIN32
14098 HWND w;
14099# else
14100 Window w;
14101# endif
14102
14103 if (check_restricted() || check_secure())
14104 return;
14105
14106# ifdef FEAT_X11
14107 if (check_connection() == FAIL)
14108 return;
14109# endif
14110
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014111 server_name = get_tv_string_chk(&argvars[0]);
14112 if (server_name == NULL)
14113 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014114 keys = get_tv_string_buf(&argvars[1], buf);
14115# ifdef WIN32
14116 if (serverSendToVim(server_name, keys, &r, &w, expr, TRUE) < 0)
14117# else
14118 if (serverSendToVim(X_DISPLAY, server_name, keys, &r, &w, expr, 0, TRUE)
14119 < 0)
14120# endif
14121 {
14122 if (r != NULL)
14123 EMSG(r); /* sending worked but evaluation failed */
14124 else
14125 EMSG2(_("E241: Unable to send to %s"), server_name);
14126 return;
14127 }
14128
14129 rettv->vval.v_string = r;
14130
14131 if (argvars[2].v_type != VAR_UNKNOWN)
14132 {
Bram Moolenaar33570922005-01-25 22:26:29 +000014133 dictitem_T v;
Bram Moolenaar555b2802005-05-19 21:08:39 +000014134 char_u str[30];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014135 char_u *idvar;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014136
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014137 sprintf((char *)str, PRINTF_HEX_LONG_U, (long_u)w);
Bram Moolenaar33570922005-01-25 22:26:29 +000014138 v.di_tv.v_type = VAR_STRING;
14139 v.di_tv.vval.v_string = vim_strsave(str);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014140 idvar = get_tv_string_chk(&argvars[2]);
14141 if (idvar != NULL)
14142 set_var(idvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014143 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014144 }
14145}
14146#endif
14147
14148/*
14149 * "remote_expr()" function
14150 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014151 static void
14152f_remote_expr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014153 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014154 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014155{
14156 rettv->v_type = VAR_STRING;
14157 rettv->vval.v_string = NULL;
14158#ifdef FEAT_CLIENTSERVER
14159 remote_common(argvars, rettv, TRUE);
14160#endif
14161}
14162
14163/*
14164 * "remote_foreground()" function
14165 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014166 static void
14167f_remote_foreground(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014168 typval_T *argvars UNUSED;
14169 typval_T *rettv UNUSED;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014170{
Bram Moolenaar0d660222005-01-07 21:51:51 +000014171#ifdef FEAT_CLIENTSERVER
14172# ifdef WIN32
14173 /* On Win32 it's done in this application. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014174 {
14175 char_u *server_name = get_tv_string_chk(&argvars[0]);
14176
14177 if (server_name != NULL)
14178 serverForeground(server_name);
14179 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014180# else
14181 /* Send a foreground() expression to the server. */
14182 argvars[1].v_type = VAR_STRING;
14183 argvars[1].vval.v_string = vim_strsave((char_u *)"foreground()");
14184 argvars[2].v_type = VAR_UNKNOWN;
14185 remote_common(argvars, rettv, TRUE);
14186 vim_free(argvars[1].vval.v_string);
14187# endif
14188#endif
14189}
14190
Bram Moolenaar0d660222005-01-07 21:51:51 +000014191 static void
14192f_remote_peek(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014193 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014194 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014195{
14196#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014197 dictitem_T v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014198 char_u *s = NULL;
14199# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014200 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014201# endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014202 char_u *serverid;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014203
14204 if (check_restricted() || check_secure())
14205 {
14206 rettv->vval.v_number = -1;
14207 return;
14208 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014209 serverid = get_tv_string_chk(&argvars[0]);
14210 if (serverid == NULL)
14211 {
14212 rettv->vval.v_number = -1;
14213 return; /* type error; errmsg already given */
14214 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014215# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014216 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014217 if (n == 0)
14218 rettv->vval.v_number = -1;
14219 else
14220 {
14221 s = serverGetReply((HWND)n, FALSE, FALSE, FALSE);
14222 rettv->vval.v_number = (s != NULL);
14223 }
14224# else
Bram Moolenaar0d660222005-01-07 21:51:51 +000014225 if (check_connection() == FAIL)
14226 return;
14227
14228 rettv->vval.v_number = serverPeekReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014229 serverStrToWin(serverid), &s);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014230# endif
14231
14232 if (argvars[1].v_type != VAR_UNKNOWN && rettv->vval.v_number > 0)
14233 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014234 char_u *retvar;
14235
Bram Moolenaar33570922005-01-25 22:26:29 +000014236 v.di_tv.v_type = VAR_STRING;
14237 v.di_tv.vval.v_string = vim_strsave(s);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014238 retvar = get_tv_string_chk(&argvars[1]);
14239 if (retvar != NULL)
14240 set_var(retvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014241 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014242 }
14243#else
14244 rettv->vval.v_number = -1;
14245#endif
14246}
14247
Bram Moolenaar0d660222005-01-07 21:51:51 +000014248 static void
14249f_remote_read(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014250 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014251 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014252{
14253 char_u *r = NULL;
14254
14255#ifdef FEAT_CLIENTSERVER
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014256 char_u *serverid = get_tv_string_chk(&argvars[0]);
14257
14258 if (serverid != NULL && !check_restricted() && !check_secure())
Bram Moolenaar0d660222005-01-07 21:51:51 +000014259 {
14260# ifdef WIN32
14261 /* The server's HWND is encoded in the 'id' parameter */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014262 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014263
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014264 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014265 if (n != 0)
14266 r = serverGetReply((HWND)n, FALSE, TRUE, TRUE);
14267 if (r == NULL)
14268# else
14269 if (check_connection() == FAIL || serverReadReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014270 serverStrToWin(serverid), &r, FALSE) < 0)
Bram Moolenaar0d660222005-01-07 21:51:51 +000014271# endif
14272 EMSG(_("E277: Unable to read a server reply"));
14273 }
14274#endif
14275 rettv->v_type = VAR_STRING;
14276 rettv->vval.v_string = r;
14277}
14278
14279/*
14280 * "remote_send()" function
14281 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014282 static void
14283f_remote_send(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014284 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014285 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014286{
14287 rettv->v_type = VAR_STRING;
14288 rettv->vval.v_string = NULL;
14289#ifdef FEAT_CLIENTSERVER
14290 remote_common(argvars, rettv, FALSE);
14291#endif
14292}
14293
14294/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000014295 * "remove()" function
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014296 */
14297 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014298f_remove(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014299 typval_T *argvars;
14300 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014301{
Bram Moolenaar33570922005-01-25 22:26:29 +000014302 list_T *l;
14303 listitem_T *item, *item2;
14304 listitem_T *li;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014305 long idx;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014306 long end;
Bram Moolenaar8c711452005-01-14 21:53:12 +000014307 char_u *key;
Bram Moolenaar33570922005-01-25 22:26:29 +000014308 dict_T *d;
14309 dictitem_T *di;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014310
Bram Moolenaar8c711452005-01-14 21:53:12 +000014311 if (argvars[0].v_type == VAR_DICT)
14312 {
14313 if (argvars[2].v_type != VAR_UNKNOWN)
14314 EMSG2(_(e_toomanyarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014315 else if ((d = argvars[0].vval.v_dict) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014316 && !tv_check_lock(d->dv_lock, (char_u *)"remove() argument"))
Bram Moolenaar8c711452005-01-14 21:53:12 +000014317 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014318 key = get_tv_string_chk(&argvars[1]);
14319 if (key != NULL)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014320 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014321 di = dict_find(d, key, -1);
14322 if (di == NULL)
14323 EMSG2(_(e_dictkey), key);
14324 else
14325 {
14326 *rettv = di->di_tv;
14327 init_tv(&di->di_tv);
14328 dictitem_remove(d, di);
14329 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014330 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000014331 }
14332 }
14333 else if (argvars[0].v_type != VAR_LIST)
14334 EMSG2(_(e_listdictarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014335 else if ((l = argvars[0].vval.v_list) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014336 && !tv_check_lock(l->lv_lock, (char_u *)"remove() argument"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014337 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014338 int error = FALSE;
14339
14340 idx = get_tv_number_chk(&argvars[1], &error);
14341 if (error)
14342 ; /* type error: do nothing, errmsg already given */
14343 else if ((item = list_find(l, idx)) == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014344 EMSGN(_(e_listidx), idx);
14345 else
14346 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014347 if (argvars[2].v_type == VAR_UNKNOWN)
14348 {
14349 /* Remove one item, return its value. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014350 list_remove(l, item, item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014351 *rettv = item->li_tv;
14352 vim_free(item);
14353 }
14354 else
14355 {
14356 /* Remove range of items, return list with values. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014357 end = get_tv_number_chk(&argvars[2], &error);
14358 if (error)
14359 ; /* type error: do nothing */
14360 else if ((item2 = list_find(l, end)) == NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014361 EMSGN(_(e_listidx), end);
14362 else
14363 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000014364 int cnt = 0;
14365
14366 for (li = item; li != NULL; li = li->li_next)
14367 {
14368 ++cnt;
14369 if (li == item2)
14370 break;
14371 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014372 if (li == NULL) /* didn't find "item2" after "item" */
14373 EMSG(_(e_invrange));
14374 else
14375 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014376 list_remove(l, item, item2);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014377 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014378 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014379 l = rettv->vval.v_list;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014380 l->lv_first = item;
14381 l->lv_last = item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014382 item->li_prev = NULL;
14383 item2->li_next = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014384 l->lv_len = cnt;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014385 }
14386 }
14387 }
14388 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014389 }
14390 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014391}
14392
14393/*
14394 * "rename({from}, {to})" function
14395 */
14396 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014397f_rename(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014398 typval_T *argvars;
14399 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014400{
14401 char_u buf[NUMBUFLEN];
14402
14403 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014404 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014405 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014406 rettv->vval.v_number = vim_rename(get_tv_string(&argvars[0]),
14407 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000014408}
14409
14410/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014411 * "repeat()" function
14412 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014413 static void
14414f_repeat(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014415 typval_T *argvars;
14416 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014417{
14418 char_u *p;
14419 int n;
14420 int slen;
14421 int len;
14422 char_u *r;
14423 int i;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014424
14425 n = get_tv_number(&argvars[1]);
14426 if (argvars[0].v_type == VAR_LIST)
14427 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014428 if (rettv_list_alloc(rettv) == OK && argvars[0].vval.v_list != NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014429 while (n-- > 0)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014430 if (list_extend(rettv->vval.v_list,
14431 argvars[0].vval.v_list, NULL) == FAIL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014432 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014433 }
14434 else
14435 {
14436 p = get_tv_string(&argvars[0]);
14437 rettv->v_type = VAR_STRING;
14438 rettv->vval.v_string = NULL;
14439
14440 slen = (int)STRLEN(p);
14441 len = slen * n;
14442 if (len <= 0)
14443 return;
14444
14445 r = alloc(len + 1);
14446 if (r != NULL)
14447 {
14448 for (i = 0; i < n; i++)
14449 mch_memmove(r + i * slen, p, (size_t)slen);
14450 r[len] = NUL;
14451 }
14452
14453 rettv->vval.v_string = r;
14454 }
14455}
14456
14457/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000014458 * "resolve()" function
14459 */
14460 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014461f_resolve(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014462 typval_T *argvars;
14463 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014464{
14465 char_u *p;
14466
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014467 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014468#ifdef FEAT_SHORTCUT
14469 {
14470 char_u *v = NULL;
14471
14472 v = mch_resolve_shortcut(p);
14473 if (v != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014474 rettv->vval.v_string = v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014475 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014476 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014477 }
14478#else
14479# ifdef HAVE_READLINK
14480 {
14481 char_u buf[MAXPATHL + 1];
14482 char_u *cpy;
14483 int len;
14484 char_u *remain = NULL;
14485 char_u *q;
14486 int is_relative_to_current = FALSE;
14487 int has_trailing_pathsep = FALSE;
14488 int limit = 100;
14489
14490 p = vim_strsave(p);
14491
14492 if (p[0] == '.' && (vim_ispathsep(p[1])
14493 || (p[1] == '.' && (vim_ispathsep(p[2])))))
14494 is_relative_to_current = TRUE;
14495
14496 len = STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014497 if (len > 0 && after_pathsep(p, p + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +000014498 has_trailing_pathsep = TRUE;
14499
14500 q = getnextcomp(p);
14501 if (*q != NUL)
14502 {
14503 /* Separate the first path component in "p", and keep the
14504 * remainder (beginning with the path separator). */
14505 remain = vim_strsave(q - 1);
14506 q[-1] = NUL;
14507 }
14508
14509 for (;;)
14510 {
14511 for (;;)
14512 {
14513 len = readlink((char *)p, (char *)buf, MAXPATHL);
14514 if (len <= 0)
14515 break;
14516 buf[len] = NUL;
14517
14518 if (limit-- == 0)
14519 {
14520 vim_free(p);
14521 vim_free(remain);
14522 EMSG(_("E655: Too many symbolic links (cycle?)"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014523 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014524 goto fail;
14525 }
14526
14527 /* Ensure that the result will have a trailing path separator
14528 * if the argument has one. */
14529 if (remain == NULL && has_trailing_pathsep)
14530 add_pathsep(buf);
14531
14532 /* Separate the first path component in the link value and
14533 * concatenate the remainders. */
14534 q = getnextcomp(vim_ispathsep(*buf) ? buf + 1 : buf);
14535 if (*q != NUL)
14536 {
14537 if (remain == NULL)
14538 remain = vim_strsave(q - 1);
14539 else
14540 {
Bram Moolenaar900b4d72005-12-12 22:05:50 +000014541 cpy = concat_str(q - 1, remain);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014542 if (cpy != NULL)
14543 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014544 vim_free(remain);
14545 remain = cpy;
14546 }
14547 }
14548 q[-1] = NUL;
14549 }
14550
14551 q = gettail(p);
14552 if (q > p && *q == NUL)
14553 {
14554 /* Ignore trailing path separator. */
14555 q[-1] = NUL;
14556 q = gettail(p);
14557 }
14558 if (q > p && !mch_isFullName(buf))
14559 {
14560 /* symlink is relative to directory of argument */
14561 cpy = alloc((unsigned)(STRLEN(p) + STRLEN(buf) + 1));
14562 if (cpy != NULL)
14563 {
14564 STRCPY(cpy, p);
14565 STRCPY(gettail(cpy), buf);
14566 vim_free(p);
14567 p = cpy;
14568 }
14569 }
14570 else
14571 {
14572 vim_free(p);
14573 p = vim_strsave(buf);
14574 }
14575 }
14576
14577 if (remain == NULL)
14578 break;
14579
14580 /* Append the first path component of "remain" to "p". */
14581 q = getnextcomp(remain + 1);
14582 len = q - remain - (*q != NUL);
14583 cpy = vim_strnsave(p, STRLEN(p) + len);
14584 if (cpy != NULL)
14585 {
14586 STRNCAT(cpy, remain, len);
14587 vim_free(p);
14588 p = cpy;
14589 }
14590 /* Shorten "remain". */
14591 if (*q != NUL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014592 STRMOVE(remain, q - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014593 else
14594 {
14595 vim_free(remain);
14596 remain = NULL;
14597 }
14598 }
14599
14600 /* If the result is a relative path name, make it explicitly relative to
14601 * the current directory if and only if the argument had this form. */
14602 if (!vim_ispathsep(*p))
14603 {
14604 if (is_relative_to_current
14605 && *p != NUL
14606 && !(p[0] == '.'
14607 && (p[1] == NUL
14608 || vim_ispathsep(p[1])
14609 || (p[1] == '.'
14610 && (p[2] == NUL
14611 || vim_ispathsep(p[2]))))))
14612 {
14613 /* Prepend "./". */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000014614 cpy = concat_str((char_u *)"./", p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014615 if (cpy != NULL)
14616 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014617 vim_free(p);
14618 p = cpy;
14619 }
14620 }
14621 else if (!is_relative_to_current)
14622 {
14623 /* Strip leading "./". */
14624 q = p;
14625 while (q[0] == '.' && vim_ispathsep(q[1]))
14626 q += 2;
14627 if (q > p)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014628 STRMOVE(p, p + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014629 }
14630 }
14631
14632 /* Ensure that the result will have no trailing path separator
14633 * if the argument had none. But keep "/" or "//". */
14634 if (!has_trailing_pathsep)
14635 {
14636 q = p + STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014637 if (after_pathsep(p, q))
14638 *gettail_sep(p) = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014639 }
14640
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014641 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014642 }
14643# else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014644 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014645# endif
14646#endif
14647
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014648 simplify_filename(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014649
14650#ifdef HAVE_READLINK
14651fail:
14652#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014653 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014654}
14655
14656/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000014657 * "reverse({list})" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000014658 */
14659 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000014660f_reverse(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014661 typval_T *argvars;
14662 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014663{
Bram Moolenaar33570922005-01-25 22:26:29 +000014664 list_T *l;
14665 listitem_T *li, *ni;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014666
Bram Moolenaar0d660222005-01-07 21:51:51 +000014667 if (argvars[0].v_type != VAR_LIST)
14668 EMSG2(_(e_listarg), "reverse()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014669 else if ((l = argvars[0].vval.v_list) != NULL
14670 && !tv_check_lock(l->lv_lock, (char_u *)"reverse()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000014671 {
14672 li = l->lv_last;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000014673 l->lv_first = l->lv_last = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014674 l->lv_len = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014675 while (li != NULL)
14676 {
14677 ni = li->li_prev;
14678 list_append(l, li);
14679 li = ni;
14680 }
14681 rettv->vval.v_list = l;
14682 rettv->v_type = VAR_LIST;
14683 ++l->lv_refcount;
Bram Moolenaar52514562008-04-01 11:12:09 +000014684 l->lv_idx = l->lv_len - l->lv_idx - 1;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014685 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014686}
14687
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014688#define SP_NOMOVE 0x01 /* don't move cursor */
14689#define SP_REPEAT 0x02 /* repeat to find outer pair */
14690#define SP_RETCOUNT 0x04 /* return matchcount */
14691#define SP_SETPCMARK 0x08 /* set previous context mark */
14692#define SP_START 0x10 /* accept match at start position */
14693#define SP_SUBPAT 0x20 /* return nr of matching sub-pattern */
14694#define SP_END 0x40 /* leave cursor at end of match */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014695
Bram Moolenaar33570922005-01-25 22:26:29 +000014696static int get_search_arg __ARGS((typval_T *varp, int *flagsp));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014697
14698/*
14699 * Get flags for a search function.
14700 * Possibly sets "p_ws".
14701 * Returns BACKWARD, FORWARD or zero (for an error).
14702 */
14703 static int
14704get_search_arg(varp, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014705 typval_T *varp;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014706 int *flagsp;
14707{
14708 int dir = FORWARD;
14709 char_u *flags;
14710 char_u nbuf[NUMBUFLEN];
14711 int mask;
14712
14713 if (varp->v_type != VAR_UNKNOWN)
14714 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014715 flags = get_tv_string_buf_chk(varp, nbuf);
14716 if (flags == NULL)
14717 return 0; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014718 while (*flags != NUL)
14719 {
14720 switch (*flags)
14721 {
14722 case 'b': dir = BACKWARD; break;
14723 case 'w': p_ws = TRUE; break;
14724 case 'W': p_ws = FALSE; break;
14725 default: mask = 0;
14726 if (flagsp != NULL)
14727 switch (*flags)
14728 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014729 case 'c': mask = SP_START; break;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014730 case 'e': mask = SP_END; break;
14731 case 'm': mask = SP_RETCOUNT; break;
14732 case 'n': mask = SP_NOMOVE; break;
14733 case 'p': mask = SP_SUBPAT; break;
14734 case 'r': mask = SP_REPEAT; break;
14735 case 's': mask = SP_SETPCMARK; break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014736 }
14737 if (mask == 0)
14738 {
14739 EMSG2(_(e_invarg2), flags);
14740 dir = 0;
14741 }
14742 else
14743 *flagsp |= mask;
14744 }
14745 if (dir == 0)
14746 break;
14747 ++flags;
14748 }
14749 }
14750 return dir;
14751}
14752
Bram Moolenaar071d4272004-06-13 20:20:40 +000014753/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014754 * Shared by search() and searchpos() functions
Bram Moolenaar071d4272004-06-13 20:20:40 +000014755 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014756 static int
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014757search_cmn(argvars, match_pos, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014758 typval_T *argvars;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014759 pos_T *match_pos;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014760 int *flagsp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014761{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014762 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014763 char_u *pat;
14764 pos_T pos;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014765 pos_T save_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014766 int save_p_ws = p_ws;
14767 int dir;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014768 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014769 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014770 proftime_T tm;
14771#ifdef FEAT_RELTIME
14772 long time_limit = 0;
14773#endif
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014774 int options = SEARCH_KEEP;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014775 int subpatnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014776
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014777 pat = get_tv_string(&argvars[0]);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014778 dir = get_search_arg(&argvars[1], flagsp); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014779 if (dir == 0)
14780 goto theend;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014781 flags = *flagsp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014782 if (flags & SP_START)
14783 options |= SEARCH_START;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014784 if (flags & SP_END)
14785 options |= SEARCH_END;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014786
Bram Moolenaar76929292008-01-06 19:07:36 +000014787 /* Optional arguments: line number to stop searching and timeout. */
14788 if (argvars[1].v_type != VAR_UNKNOWN && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014789 {
14790 lnum_stop = get_tv_number_chk(&argvars[2], NULL);
14791 if (lnum_stop < 0)
14792 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014793#ifdef FEAT_RELTIME
14794 if (argvars[3].v_type != VAR_UNKNOWN)
14795 {
14796 time_limit = get_tv_number_chk(&argvars[3], NULL);
14797 if (time_limit < 0)
14798 goto theend;
14799 }
14800#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014801 }
14802
Bram Moolenaar76929292008-01-06 19:07:36 +000014803#ifdef FEAT_RELTIME
14804 /* Set the time limit, if there is one. */
14805 profile_setlimit(time_limit, &tm);
14806#endif
14807
Bram Moolenaar231334e2005-07-25 20:46:57 +000014808 /*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014809 * This function does not accept SP_REPEAT and SP_RETCOUNT flags.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014810 * Check to make sure only those flags are set.
14811 * Also, Only the SP_NOMOVE or the SP_SETPCMARK flag can be set. Both
14812 * flags cannot be set. Check for that condition also.
14813 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014814 if (((flags & (SP_REPEAT | SP_RETCOUNT)) != 0)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014815 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014816 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014817 EMSG2(_(e_invarg2), get_tv_string(&argvars[1]));
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014818 goto theend;
14819 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014820
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014821 pos = save_cursor = curwin->w_cursor;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014822 subpatnum = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000014823 options, RE_SEARCH, (linenr_T)lnum_stop, &tm);
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014824 if (subpatnum != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014825 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014826 if (flags & SP_SUBPAT)
14827 retval = subpatnum;
14828 else
14829 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000014830 if (flags & SP_SETPCMARK)
14831 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000014832 curwin->w_cursor = pos;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014833 if (match_pos != NULL)
14834 {
14835 /* Store the match cursor position */
14836 match_pos->lnum = pos.lnum;
14837 match_pos->col = pos.col + 1;
14838 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014839 /* "/$" will put the cursor after the end of the line, may need to
14840 * correct that here */
14841 check_cursor();
14842 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014843
14844 /* If 'n' flag is used: restore cursor position. */
14845 if (flags & SP_NOMOVE)
14846 curwin->w_cursor = save_cursor;
Bram Moolenaar7a42fa32007-07-10 11:28:55 +000014847 else
14848 curwin->w_set_curswant = TRUE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014849theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +000014850 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014851
14852 return retval;
14853}
14854
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014855#ifdef FEAT_FLOAT
14856/*
14857 * "round({float})" function
14858 */
14859 static void
14860f_round(argvars, rettv)
14861 typval_T *argvars;
14862 typval_T *rettv;
14863{
14864 float_T f;
14865
14866 rettv->v_type = VAR_FLOAT;
14867 if (get_float_arg(argvars, &f) == OK)
14868 /* round() is not in C90, use ceil() or floor() instead. */
14869 rettv->vval.v_float = f > 0 ? floor(f + 0.5) : ceil(f - 0.5);
14870 else
14871 rettv->vval.v_float = 0.0;
14872}
14873#endif
14874
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014875/*
14876 * "search()" function
14877 */
14878 static void
14879f_search(argvars, rettv)
14880 typval_T *argvars;
14881 typval_T *rettv;
14882{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014883 int flags = 0;
14884
14885 rettv->vval.v_number = search_cmn(argvars, NULL, &flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014886}
14887
Bram Moolenaar071d4272004-06-13 20:20:40 +000014888/*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014889 * "searchdecl()" function
14890 */
14891 static void
14892f_searchdecl(argvars, rettv)
14893 typval_T *argvars;
14894 typval_T *rettv;
14895{
14896 int locally = 1;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014897 int thisblock = 0;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014898 int error = FALSE;
14899 char_u *name;
14900
14901 rettv->vval.v_number = 1; /* default: FAIL */
14902
14903 name = get_tv_string_chk(&argvars[0]);
14904 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaare6facf92005-09-13 21:22:27 +000014905 {
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014906 locally = get_tv_number_chk(&argvars[1], &error) == 0;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014907 if (!error && argvars[2].v_type != VAR_UNKNOWN)
14908 thisblock = get_tv_number_chk(&argvars[2], &error) != 0;
14909 }
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014910 if (!error && name != NULL)
14911 rettv->vval.v_number = find_decl(name, (int)STRLEN(name),
Bram Moolenaare6facf92005-09-13 21:22:27 +000014912 locally, thisblock, SEARCH_KEEP) == FAIL;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014913}
14914
14915/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014916 * Used by searchpair() and searchpairpos()
Bram Moolenaar071d4272004-06-13 20:20:40 +000014917 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014918 static int
14919searchpair_cmn(argvars, match_pos)
Bram Moolenaar33570922005-01-25 22:26:29 +000014920 typval_T *argvars;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014921 pos_T *match_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014922{
14923 char_u *spat, *mpat, *epat;
14924 char_u *skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014925 int save_p_ws = p_ws;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014926 int dir;
14927 int flags = 0;
14928 char_u nbuf1[NUMBUFLEN];
14929 char_u nbuf2[NUMBUFLEN];
14930 char_u nbuf3[NUMBUFLEN];
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014931 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014932 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014933 long time_limit = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014934
Bram Moolenaar071d4272004-06-13 20:20:40 +000014935 /* Get the three pattern arguments: start, middle, end. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014936 spat = get_tv_string_chk(&argvars[0]);
14937 mpat = get_tv_string_buf_chk(&argvars[1], nbuf1);
14938 epat = get_tv_string_buf_chk(&argvars[2], nbuf2);
14939 if (spat == NULL || mpat == NULL || epat == NULL)
14940 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014941
Bram Moolenaar071d4272004-06-13 20:20:40 +000014942 /* Handle the optional fourth argument: flags */
14943 dir = get_search_arg(&argvars[3], &flags); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014944 if (dir == 0)
14945 goto theend;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014946
14947 /* Don't accept SP_END or SP_SUBPAT.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014948 * Only one of the SP_NOMOVE or SP_SETPCMARK flags can be set.
14949 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014950 if ((flags & (SP_END | SP_SUBPAT)) != 0
14951 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar231334e2005-07-25 20:46:57 +000014952 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014953 EMSG2(_(e_invarg2), get_tv_string(&argvars[3]));
Bram Moolenaar231334e2005-07-25 20:46:57 +000014954 goto theend;
14955 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014956
Bram Moolenaar92de73d2008-01-22 10:59:38 +000014957 /* Using 'r' implies 'W', otherwise it doesn't work. */
14958 if (flags & SP_REPEAT)
14959 p_ws = FALSE;
14960
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014961 /* Optional fifth argument: skip expression */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014962 if (argvars[3].v_type == VAR_UNKNOWN
14963 || argvars[4].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014964 skip = (char_u *)"";
14965 else
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014966 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014967 skip = get_tv_string_buf_chk(&argvars[4], nbuf3);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014968 if (argvars[5].v_type != VAR_UNKNOWN)
14969 {
14970 lnum_stop = get_tv_number_chk(&argvars[5], NULL);
14971 if (lnum_stop < 0)
14972 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014973#ifdef FEAT_RELTIME
14974 if (argvars[6].v_type != VAR_UNKNOWN)
14975 {
14976 time_limit = get_tv_number_chk(&argvars[6], NULL);
14977 if (time_limit < 0)
14978 goto theend;
14979 }
14980#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014981 }
14982 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014983 if (skip == NULL)
14984 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014985
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014986 retval = do_searchpair(spat, mpat, epat, dir, skip, flags,
Bram Moolenaar76929292008-01-06 19:07:36 +000014987 match_pos, lnum_stop, time_limit);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000014988
14989theend:
14990 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014991
14992 return retval;
14993}
14994
14995/*
14996 * "searchpair()" function
14997 */
14998 static void
14999f_searchpair(argvars, rettv)
15000 typval_T *argvars;
15001 typval_T *rettv;
15002{
15003 rettv->vval.v_number = searchpair_cmn(argvars, NULL);
15004}
15005
15006/*
15007 * "searchpairpos()" function
15008 */
15009 static void
15010f_searchpairpos(argvars, rettv)
15011 typval_T *argvars;
15012 typval_T *rettv;
15013{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015014 pos_T match_pos;
15015 int lnum = 0;
15016 int col = 0;
15017
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015018 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015019 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015020
15021 if (searchpair_cmn(argvars, &match_pos) > 0)
15022 {
15023 lnum = match_pos.lnum;
15024 col = match_pos.col;
15025 }
15026
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015027 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15028 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015029}
15030
15031/*
15032 * Search for a start/middle/end thing.
15033 * Used by searchpair(), see its documentation for the details.
15034 * Returns 0 or -1 for no match,
15035 */
15036 long
Bram Moolenaar76929292008-01-06 19:07:36 +000015037do_searchpair(spat, mpat, epat, dir, skip, flags, match_pos,
15038 lnum_stop, time_limit)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015039 char_u *spat; /* start pattern */
15040 char_u *mpat; /* middle pattern */
15041 char_u *epat; /* end pattern */
15042 int dir; /* BACKWARD or FORWARD */
15043 char_u *skip; /* skip expression */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000015044 int flags; /* SP_SETPCMARK and other SP_ values */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015045 pos_T *match_pos;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015046 linenr_T lnum_stop; /* stop at this line if not zero */
Bram Moolenaar76929292008-01-06 19:07:36 +000015047 long time_limit; /* stop after this many msec */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015048{
15049 char_u *save_cpo;
15050 char_u *pat, *pat2 = NULL, *pat3 = NULL;
15051 long retval = 0;
15052 pos_T pos;
15053 pos_T firstpos;
15054 pos_T foundpos;
15055 pos_T save_cursor;
15056 pos_T save_pos;
15057 int n;
15058 int r;
15059 int nest = 1;
15060 int err;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015061 int options = SEARCH_KEEP;
Bram Moolenaar76929292008-01-06 19:07:36 +000015062 proftime_T tm;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015063
15064 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
15065 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015066 p_cpo = empty_option;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015067
Bram Moolenaar76929292008-01-06 19:07:36 +000015068#ifdef FEAT_RELTIME
15069 /* Set the time limit, if there is one. */
15070 profile_setlimit(time_limit, &tm);
15071#endif
15072
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015073 /* Make two search patterns: start/end (pat2, for in nested pairs) and
15074 * start/middle/end (pat3, for the top pair). */
15075 pat2 = alloc((unsigned)(STRLEN(spat) + STRLEN(epat) + 15));
15076 pat3 = alloc((unsigned)(STRLEN(spat) + STRLEN(mpat) + STRLEN(epat) + 23));
15077 if (pat2 == NULL || pat3 == NULL)
15078 goto theend;
15079 sprintf((char *)pat2, "\\(%s\\m\\)\\|\\(%s\\m\\)", spat, epat);
15080 if (*mpat == NUL)
15081 STRCPY(pat3, pat2);
15082 else
15083 sprintf((char *)pat3, "\\(%s\\m\\)\\|\\(%s\\m\\)\\|\\(%s\\m\\)",
15084 spat, epat, mpat);
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015085 if (flags & SP_START)
15086 options |= SEARCH_START;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015087
Bram Moolenaar071d4272004-06-13 20:20:40 +000015088 save_cursor = curwin->w_cursor;
15089 pos = curwin->w_cursor;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000015090 clearpos(&firstpos);
15091 clearpos(&foundpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015092 pat = pat3;
15093 for (;;)
15094 {
15095 n = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000015096 options, RE_SEARCH, lnum_stop, &tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015097 if (n == FAIL || (firstpos.lnum != 0 && equalpos(pos, firstpos)))
15098 /* didn't find it or found the first match again: FAIL */
15099 break;
15100
15101 if (firstpos.lnum == 0)
15102 firstpos = pos;
Bram Moolenaarc9a2d2e2005-04-24 22:09:56 +000015103 if (equalpos(pos, foundpos))
15104 {
15105 /* Found the same position again. Can happen with a pattern that
15106 * has "\zs" at the end and searching backwards. Advance one
15107 * character and try again. */
15108 if (dir == BACKWARD)
15109 decl(&pos);
15110 else
15111 incl(&pos);
15112 }
15113 foundpos = pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015114
Bram Moolenaar92de73d2008-01-22 10:59:38 +000015115 /* clear the start flag to avoid getting stuck here */
15116 options &= ~SEARCH_START;
15117
Bram Moolenaar071d4272004-06-13 20:20:40 +000015118 /* If the skip pattern matches, ignore this match. */
15119 if (*skip != NUL)
15120 {
15121 save_pos = curwin->w_cursor;
15122 curwin->w_cursor = pos;
15123 r = eval_to_bool(skip, &err, NULL, FALSE);
15124 curwin->w_cursor = save_pos;
15125 if (err)
15126 {
15127 /* Evaluating {skip} caused an error, break here. */
15128 curwin->w_cursor = save_cursor;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015129 retval = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015130 break;
15131 }
15132 if (r)
15133 continue;
15134 }
15135
15136 if ((dir == BACKWARD && n == 3) || (dir == FORWARD && n == 2))
15137 {
15138 /* Found end when searching backwards or start when searching
15139 * forward: nested pair. */
15140 ++nest;
15141 pat = pat2; /* nested, don't search for middle */
15142 }
15143 else
15144 {
15145 /* Found end when searching forward or start when searching
15146 * backward: end of (nested) pair; or found middle in outer pair. */
15147 if (--nest == 1)
15148 pat = pat3; /* outer level, search for middle */
15149 }
15150
15151 if (nest == 0)
15152 {
15153 /* Found the match: return matchcount or line number. */
15154 if (flags & SP_RETCOUNT)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015155 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015156 else
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015157 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000015158 if (flags & SP_SETPCMARK)
15159 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000015160 curwin->w_cursor = pos;
15161 if (!(flags & SP_REPEAT))
15162 break;
15163 nest = 1; /* search for next unmatched */
15164 }
15165 }
15166
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015167 if (match_pos != NULL)
15168 {
15169 /* Store the match cursor position */
15170 match_pos->lnum = curwin->w_cursor.lnum;
15171 match_pos->col = curwin->w_cursor.col + 1;
15172 }
15173
Bram Moolenaar071d4272004-06-13 20:20:40 +000015174 /* If 'n' flag is used or search failed: restore cursor position. */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015175 if ((flags & SP_NOMOVE) || retval == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015176 curwin->w_cursor = save_cursor;
15177
15178theend:
15179 vim_free(pat2);
15180 vim_free(pat3);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015181 if (p_cpo == empty_option)
15182 p_cpo = save_cpo;
15183 else
15184 /* Darn, evaluating the {skip} expression changed the value. */
15185 free_string_option(save_cpo);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015186
15187 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015188}
15189
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015190/*
15191 * "searchpos()" function
15192 */
15193 static void
15194f_searchpos(argvars, rettv)
15195 typval_T *argvars;
15196 typval_T *rettv;
15197{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015198 pos_T match_pos;
15199 int lnum = 0;
15200 int col = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015201 int n;
15202 int flags = 0;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015203
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015204 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015205 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015206
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015207 n = search_cmn(argvars, &match_pos, &flags);
15208 if (n > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015209 {
15210 lnum = match_pos.lnum;
15211 col = match_pos.col;
15212 }
15213
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015214 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15215 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015216 if (flags & SP_SUBPAT)
15217 list_append_number(rettv->vval.v_list, (varnumber_T)n);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015218}
15219
15220
Bram Moolenaar0d660222005-01-07 21:51:51 +000015221 static void
15222f_server2client(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015223 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000015224 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015225{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015226#ifdef FEAT_CLIENTSERVER
15227 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015228 char_u *server = get_tv_string_chk(&argvars[0]);
15229 char_u *reply = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015230
Bram Moolenaar0d660222005-01-07 21:51:51 +000015231 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015232 if (server == NULL || reply == NULL)
15233 return;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015234 if (check_restricted() || check_secure())
15235 return;
15236# ifdef FEAT_X11
15237 if (check_connection() == FAIL)
15238 return;
15239# endif
15240
15241 if (serverSendReply(server, reply) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015242 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015243 EMSG(_("E258: Unable to send to client"));
15244 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015245 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015246 rettv->vval.v_number = 0;
15247#else
15248 rettv->vval.v_number = -1;
15249#endif
15250}
15251
Bram Moolenaar0d660222005-01-07 21:51:51 +000015252 static void
15253f_serverlist(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015254 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000015255 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015256{
15257 char_u *r = NULL;
15258
15259#ifdef FEAT_CLIENTSERVER
15260# ifdef WIN32
15261 r = serverGetVimNames();
15262# else
15263 make_connection();
15264 if (X_DISPLAY != NULL)
15265 r = serverGetVimNames(X_DISPLAY);
15266# endif
15267#endif
15268 rettv->v_type = VAR_STRING;
15269 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015270}
15271
15272/*
15273 * "setbufvar()" function
15274 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015275 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015276f_setbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015277 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015278 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015279{
15280 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015281 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015282 char_u *varname, *bufvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015283 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015284 char_u nbuf[NUMBUFLEN];
15285
15286 if (check_restricted() || check_secure())
15287 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015288 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
15289 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015290 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015291 varp = &argvars[2];
15292
15293 if (buf != NULL && varname != NULL && varp != NULL)
15294 {
15295 /* set curbuf to be our buf, temporarily */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015296 aucmd_prepbuf(&aco, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015297
15298 if (*varname == '&')
15299 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015300 long numval;
15301 char_u *strval;
15302 int error = FALSE;
15303
Bram Moolenaar071d4272004-06-13 20:20:40 +000015304 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015305 numval = get_tv_number_chk(varp, &error);
15306 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015307 if (!error && strval != NULL)
15308 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015309 }
15310 else
15311 {
15312 bufvarname = alloc((unsigned)STRLEN(varname) + 3);
15313 if (bufvarname != NULL)
15314 {
15315 STRCPY(bufvarname, "b:");
15316 STRCPY(bufvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015317 set_var(bufvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015318 vim_free(bufvarname);
15319 }
15320 }
15321
15322 /* reset notion of buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015323 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015324 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015325}
15326
15327/*
15328 * "setcmdpos()" function
15329 */
15330 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015331f_setcmdpos(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015332 typval_T *argvars;
15333 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015334{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015335 int pos = (int)get_tv_number(&argvars[0]) - 1;
15336
15337 if (pos >= 0)
15338 rettv->vval.v_number = set_cmdline_pos(pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015339}
15340
15341/*
15342 * "setline()" function
15343 */
15344 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015345f_setline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015346 typval_T *argvars;
15347 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015348{
15349 linenr_T lnum;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +000015350 char_u *line = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015351 list_T *l = NULL;
15352 listitem_T *li = NULL;
15353 long added = 0;
15354 linenr_T lcount = curbuf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015355
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015356 lnum = get_tv_lnum(&argvars[0]);
15357 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015358 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015359 l = argvars[1].vval.v_list;
15360 li = l->lv_first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015361 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015362 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015363 line = get_tv_string_chk(&argvars[1]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015364
Bram Moolenaar798b30b2009-04-22 10:56:16 +000015365 /* default result is zero == OK */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015366 for (;;)
15367 {
15368 if (l != NULL)
15369 {
15370 /* list argument, get next string */
15371 if (li == NULL)
15372 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015373 line = get_tv_string_chk(&li->li_tv);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015374 li = li->li_next;
15375 }
15376
15377 rettv->vval.v_number = 1; /* FAIL */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015378 if (line == NULL || lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015379 break;
15380 if (lnum <= curbuf->b_ml.ml_line_count)
15381 {
15382 /* existing line, replace it */
15383 if (u_savesub(lnum) == OK && ml_replace(lnum, line, TRUE) == OK)
15384 {
15385 changed_bytes(lnum, 0);
Bram Moolenaar87c19962007-04-26 08:54:21 +000015386 if (lnum == curwin->w_cursor.lnum)
15387 check_cursor_col();
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015388 rettv->vval.v_number = 0; /* OK */
15389 }
15390 }
15391 else if (added > 0 || u_save(lnum - 1, lnum) == OK)
15392 {
15393 /* lnum is one past the last line, append the line */
15394 ++added;
15395 if (ml_append(lnum - 1, line, (colnr_T)0, FALSE) == OK)
15396 rettv->vval.v_number = 0; /* OK */
15397 }
15398
15399 if (l == NULL) /* only one string argument */
15400 break;
15401 ++lnum;
15402 }
15403
15404 if (added > 0)
15405 appended_lines_mark(lcount, added);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015406}
15407
Bram Moolenaard9ff7d52008-03-20 12:23:49 +000015408static void set_qf_ll_list __ARGS((win_T *wp, typval_T *list_arg, typval_T *action_arg, typval_T *rettv));
15409
Bram Moolenaar071d4272004-06-13 20:20:40 +000015410/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015411 * Used by "setqflist()" and "setloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000015412 */
Bram Moolenaar2641f772005-03-25 21:58:17 +000015413 static void
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015414set_qf_ll_list(wp, list_arg, action_arg, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015415 win_T *wp UNUSED;
15416 typval_T *list_arg UNUSED;
15417 typval_T *action_arg UNUSED;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015418 typval_T *rettv;
15419{
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015420#ifdef FEAT_QUICKFIX
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015421 char_u *act;
15422 int action = ' ';
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015423#endif
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015424
Bram Moolenaar2641f772005-03-25 21:58:17 +000015425 rettv->vval.v_number = -1;
15426
15427#ifdef FEAT_QUICKFIX
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015428 if (list_arg->v_type != VAR_LIST)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015429 EMSG(_(e_listreq));
15430 else
15431 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015432 list_T *l = list_arg->vval.v_list;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015433
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015434 if (action_arg->v_type == VAR_STRING)
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015435 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015436 act = get_tv_string_chk(action_arg);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015437 if (act == NULL)
15438 return; /* type error; errmsg already given */
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015439 if (*act == 'a' || *act == 'r')
15440 action = *act;
15441 }
15442
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015443 if (l != NULL && set_errorlist(wp, l, action) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015444 rettv->vval.v_number = 0;
15445 }
15446#endif
15447}
15448
15449/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015450 * "setloclist()" function
15451 */
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015452 static void
15453f_setloclist(argvars, rettv)
15454 typval_T *argvars;
15455 typval_T *rettv;
15456{
15457 win_T *win;
15458
15459 rettv->vval.v_number = -1;
15460
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015461 win = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015462 if (win != NULL)
15463 set_qf_ll_list(win, &argvars[1], &argvars[2], rettv);
15464}
15465
15466/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000015467 * "setmatches()" function
15468 */
15469 static void
15470f_setmatches(argvars, rettv)
15471 typval_T *argvars;
15472 typval_T *rettv;
15473{
15474#ifdef FEAT_SEARCH_EXTRA
15475 list_T *l;
15476 listitem_T *li;
15477 dict_T *d;
15478
15479 rettv->vval.v_number = -1;
15480 if (argvars[0].v_type != VAR_LIST)
15481 {
15482 EMSG(_(e_listreq));
15483 return;
15484 }
15485 if ((l = argvars[0].vval.v_list) != NULL)
15486 {
15487
15488 /* To some extent make sure that we are dealing with a list from
15489 * "getmatches()". */
15490 li = l->lv_first;
15491 while (li != NULL)
15492 {
15493 if (li->li_tv.v_type != VAR_DICT
15494 || (d = li->li_tv.vval.v_dict) == NULL)
15495 {
15496 EMSG(_(e_invarg));
15497 return;
15498 }
15499 if (!(dict_find(d, (char_u *)"group", -1) != NULL
15500 && dict_find(d, (char_u *)"pattern", -1) != NULL
15501 && dict_find(d, (char_u *)"priority", -1) != NULL
15502 && dict_find(d, (char_u *)"id", -1) != NULL))
15503 {
15504 EMSG(_(e_invarg));
15505 return;
15506 }
15507 li = li->li_next;
15508 }
15509
15510 clear_matches(curwin);
15511 li = l->lv_first;
15512 while (li != NULL)
15513 {
15514 d = li->li_tv.vval.v_dict;
15515 match_add(curwin, get_dict_string(d, (char_u *)"group", FALSE),
15516 get_dict_string(d, (char_u *)"pattern", FALSE),
15517 (int)get_dict_number(d, (char_u *)"priority"),
15518 (int)get_dict_number(d, (char_u *)"id"));
15519 li = li->li_next;
15520 }
15521 rettv->vval.v_number = 0;
15522 }
15523#endif
15524}
15525
15526/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015527 * "setpos()" function
15528 */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015529 static void
15530f_setpos(argvars, rettv)
15531 typval_T *argvars;
15532 typval_T *rettv;
15533{
15534 pos_T pos;
15535 int fnum;
15536 char_u *name;
15537
Bram Moolenaar08250432008-02-13 11:42:46 +000015538 rettv->vval.v_number = -1;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015539 name = get_tv_string_chk(argvars);
15540 if (name != NULL)
15541 {
15542 if (list2fpos(&argvars[1], &pos, &fnum) == OK)
15543 {
15544 --pos.col;
Bram Moolenaar08250432008-02-13 11:42:46 +000015545 if (name[0] == '.' && name[1] == NUL)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015546 {
Bram Moolenaar08250432008-02-13 11:42:46 +000015547 /* set cursor */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015548 if (fnum == curbuf->b_fnum)
15549 {
15550 curwin->w_cursor = pos;
15551 check_cursor();
Bram Moolenaar08250432008-02-13 11:42:46 +000015552 rettv->vval.v_number = 0;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015553 }
15554 else
15555 EMSG(_(e_invarg));
15556 }
Bram Moolenaar08250432008-02-13 11:42:46 +000015557 else if (name[0] == '\'' && name[1] != NUL && name[2] == NUL)
15558 {
15559 /* set mark */
15560 if (setmark_pos(name[1], &pos, fnum) == OK)
15561 rettv->vval.v_number = 0;
15562 }
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015563 else
15564 EMSG(_(e_invarg));
15565 }
15566 }
15567}
15568
15569/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015570 * "setqflist()" function
15571 */
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015572 static void
15573f_setqflist(argvars, rettv)
15574 typval_T *argvars;
15575 typval_T *rettv;
15576{
15577 set_qf_ll_list(NULL, &argvars[0], &argvars[1], rettv);
15578}
15579
15580/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000015581 * "setreg()" function
15582 */
15583 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015584f_setreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015585 typval_T *argvars;
15586 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015587{
15588 int regname;
15589 char_u *strregname;
15590 char_u *stropt;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015591 char_u *strval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015592 int append;
15593 char_u yank_type;
15594 long block_len;
15595
15596 block_len = -1;
15597 yank_type = MAUTO;
15598 append = FALSE;
15599
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015600 strregname = get_tv_string_chk(argvars);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015601 rettv->vval.v_number = 1; /* FAIL is default */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015602
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015603 if (strregname == NULL)
15604 return; /* type error; errmsg already given */
15605 regname = *strregname;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015606 if (regname == 0 || regname == '@')
15607 regname = '"';
15608 else if (regname == '=')
15609 return;
15610
Bram Moolenaar49cd9572005-01-03 21:06:01 +000015611 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015612 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015613 stropt = get_tv_string_chk(&argvars[2]);
15614 if (stropt == NULL)
15615 return; /* type error */
15616 for (; *stropt != NUL; ++stropt)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015617 switch (*stropt)
15618 {
15619 case 'a': case 'A': /* append */
15620 append = TRUE;
15621 break;
15622 case 'v': case 'c': /* character-wise selection */
15623 yank_type = MCHAR;
15624 break;
15625 case 'V': case 'l': /* line-wise selection */
15626 yank_type = MLINE;
15627 break;
15628#ifdef FEAT_VISUAL
15629 case 'b': case Ctrl_V: /* block-wise selection */
15630 yank_type = MBLOCK;
15631 if (VIM_ISDIGIT(stropt[1]))
15632 {
15633 ++stropt;
15634 block_len = getdigits(&stropt) - 1;
15635 --stropt;
15636 }
15637 break;
15638#endif
15639 }
15640 }
15641
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015642 strval = get_tv_string_chk(&argvars[1]);
15643 if (strval != NULL)
15644 write_reg_contents_ex(regname, strval, -1,
Bram Moolenaar071d4272004-06-13 20:20:40 +000015645 append, yank_type, block_len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015646 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015647}
15648
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015649/*
15650 * "settabwinvar()" function
15651 */
15652 static void
15653f_settabwinvar(argvars, rettv)
15654 typval_T *argvars;
15655 typval_T *rettv;
15656{
15657 setwinvar(argvars, rettv, 1);
15658}
Bram Moolenaar071d4272004-06-13 20:20:40 +000015659
15660/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015661 * "setwinvar()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015662 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015663 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015664f_setwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015665 typval_T *argvars;
15666 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015667{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015668 setwinvar(argvars, rettv, 0);
15669}
15670
15671/*
15672 * "setwinvar()" and "settabwinvar()" functions
15673 */
15674 static void
15675setwinvar(argvars, rettv, off)
15676 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015677 typval_T *rettv UNUSED;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015678 int off;
15679{
Bram Moolenaar071d4272004-06-13 20:20:40 +000015680 win_T *win;
15681#ifdef FEAT_WINDOWS
15682 win_T *save_curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015683 tabpage_T *save_curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015684#endif
15685 char_u *varname, *winvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015686 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015687 char_u nbuf[NUMBUFLEN];
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015688 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015689
15690 if (check_restricted() || check_secure())
15691 return;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015692
15693#ifdef FEAT_WINDOWS
15694 if (off == 1)
15695 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
15696 else
15697 tp = curtab;
15698#endif
15699 win = find_win_by_nr(&argvars[off], tp);
15700 varname = get_tv_string_chk(&argvars[off + 1]);
15701 varp = &argvars[off + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015702
15703 if (win != NULL && varname != NULL && varp != NULL)
15704 {
15705#ifdef FEAT_WINDOWS
15706 /* set curwin to be our win, temporarily */
15707 save_curwin = curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015708 save_curtab = curtab;
15709 goto_tabpage_tp(tp);
15710 if (!win_valid(win))
15711 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015712 curwin = win;
15713 curbuf = curwin->w_buffer;
15714#endif
15715
15716 if (*varname == '&')
15717 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015718 long numval;
15719 char_u *strval;
15720 int error = FALSE;
15721
Bram Moolenaar071d4272004-06-13 20:20:40 +000015722 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015723 numval = get_tv_number_chk(varp, &error);
15724 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015725 if (!error && strval != NULL)
15726 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015727 }
15728 else
15729 {
15730 winvarname = alloc((unsigned)STRLEN(varname) + 3);
15731 if (winvarname != NULL)
15732 {
15733 STRCPY(winvarname, "w:");
15734 STRCPY(winvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015735 set_var(winvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015736 vim_free(winvarname);
15737 }
15738 }
15739
15740#ifdef FEAT_WINDOWS
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015741 /* Restore current tabpage and window, if still valid (autocomands can
15742 * make them invalid). */
15743 if (valid_tabpage(save_curtab))
15744 goto_tabpage_tp(save_curtab);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015745 if (win_valid(save_curwin))
15746 {
15747 curwin = save_curwin;
15748 curbuf = curwin->w_buffer;
15749 }
15750#endif
15751 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015752}
15753
15754/*
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015755 * "shellescape({string})" function
15756 */
15757 static void
15758f_shellescape(argvars, rettv)
15759 typval_T *argvars;
15760 typval_T *rettv;
15761{
Bram Moolenaar05bb9532008-07-04 09:44:11 +000015762 rettv->vval.v_string = vim_strsave_shellescape(
15763 get_tv_string(&argvars[0]), non_zero_arg(&argvars[1]));
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015764 rettv->v_type = VAR_STRING;
15765}
15766
15767/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015768 * "simplify()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015769 */
15770 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015771f_simplify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015772 typval_T *argvars;
15773 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015774{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015775 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015776
Bram Moolenaar0d660222005-01-07 21:51:51 +000015777 p = get_tv_string(&argvars[0]);
15778 rettv->vval.v_string = vim_strsave(p);
15779 simplify_filename(rettv->vval.v_string); /* simplify in place */
15780 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015781}
15782
Bram Moolenaar8c8de832008-06-24 22:58:06 +000015783#ifdef FEAT_FLOAT
15784/*
15785 * "sin()" function
15786 */
15787 static void
15788f_sin(argvars, rettv)
15789 typval_T *argvars;
15790 typval_T *rettv;
15791{
15792 float_T f;
15793
15794 rettv->v_type = VAR_FLOAT;
15795 if (get_float_arg(argvars, &f) == OK)
15796 rettv->vval.v_float = sin(f);
15797 else
15798 rettv->vval.v_float = 0.0;
15799}
15800#endif
15801
Bram Moolenaar0d660222005-01-07 21:51:51 +000015802static int
15803#ifdef __BORLANDC__
15804 _RTLENTRYF
15805#endif
15806 item_compare __ARGS((const void *s1, const void *s2));
15807static int
15808#ifdef __BORLANDC__
15809 _RTLENTRYF
15810#endif
15811 item_compare2 __ARGS((const void *s1, const void *s2));
15812
15813static int item_compare_ic;
15814static char_u *item_compare_func;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015815static int item_compare_func_err;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015816#define ITEM_COMPARE_FAIL 999
15817
Bram Moolenaar071d4272004-06-13 20:20:40 +000015818/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015819 * Compare functions for f_sort() below.
Bram Moolenaar071d4272004-06-13 20:20:40 +000015820 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015821 static int
15822#ifdef __BORLANDC__
15823_RTLENTRYF
15824#endif
15825item_compare(s1, s2)
15826 const void *s1;
15827 const void *s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015828{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015829 char_u *p1, *p2;
15830 char_u *tofree1, *tofree2;
15831 int res;
15832 char_u numbuf1[NUMBUFLEN];
15833 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015834
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000015835 p1 = tv2string(&(*(listitem_T **)s1)->li_tv, &tofree1, numbuf1, 0);
15836 p2 = tv2string(&(*(listitem_T **)s2)->li_tv, &tofree2, numbuf2, 0);
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000015837 if (p1 == NULL)
15838 p1 = (char_u *)"";
15839 if (p2 == NULL)
15840 p2 = (char_u *)"";
Bram Moolenaar0d660222005-01-07 21:51:51 +000015841 if (item_compare_ic)
15842 res = STRICMP(p1, p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015843 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015844 res = STRCMP(p1, p2);
15845 vim_free(tofree1);
15846 vim_free(tofree2);
15847 return res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015848}
15849
15850 static int
Bram Moolenaar0d660222005-01-07 21:51:51 +000015851#ifdef __BORLANDC__
15852_RTLENTRYF
Bram Moolenaar071d4272004-06-13 20:20:40 +000015853#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +000015854item_compare2(s1, s2)
15855 const void *s1;
15856 const void *s2;
15857{
15858 int res;
Bram Moolenaar33570922005-01-25 22:26:29 +000015859 typval_T rettv;
Bram Moolenaareb3593b2006-04-22 22:33:57 +000015860 typval_T argv[3];
Bram Moolenaar0d660222005-01-07 21:51:51 +000015861 int dummy;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015862
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015863 /* shortcut after failure in previous call; compare all items equal */
15864 if (item_compare_func_err)
15865 return 0;
15866
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015867 /* copy the values. This is needed to be able to set v_lock to VAR_FIXED
15868 * in the copy without changing the original list items. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015869 copy_tv(&(*(listitem_T **)s1)->li_tv, &argv[0]);
15870 copy_tv(&(*(listitem_T **)s2)->li_tv, &argv[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015871
15872 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000015873 res = call_func(item_compare_func, (int)STRLEN(item_compare_func),
Bram Moolenaare9a41262005-01-15 22:18:47 +000015874 &rettv, 2, argv, 0L, 0L, &dummy, TRUE, NULL);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015875 clear_tv(&argv[0]);
15876 clear_tv(&argv[1]);
15877
15878 if (res == FAIL)
15879 res = ITEM_COMPARE_FAIL;
15880 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015881 res = get_tv_number_chk(&rettv, &item_compare_func_err);
15882 if (item_compare_func_err)
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000015883 res = ITEM_COMPARE_FAIL; /* return value has wrong type */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015884 clear_tv(&rettv);
15885 return res;
15886}
15887
15888/*
15889 * "sort({list})" function
15890 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015891 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015892f_sort(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015893 typval_T *argvars;
15894 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015895{
Bram Moolenaar33570922005-01-25 22:26:29 +000015896 list_T *l;
15897 listitem_T *li;
15898 listitem_T **ptrs;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015899 long len;
15900 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015901
Bram Moolenaar0d660222005-01-07 21:51:51 +000015902 if (argvars[0].v_type != VAR_LIST)
15903 EMSG2(_(e_listarg), "sort()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000015904 else
15905 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015906 l = argvars[0].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015907 if (l == NULL || tv_check_lock(l->lv_lock, (char_u *)"sort()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000015908 return;
15909 rettv->vval.v_list = l;
15910 rettv->v_type = VAR_LIST;
15911 ++l->lv_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015912
Bram Moolenaar0d660222005-01-07 21:51:51 +000015913 len = list_len(l);
15914 if (len <= 1)
15915 return; /* short list sorts pretty quickly */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015916
Bram Moolenaar0d660222005-01-07 21:51:51 +000015917 item_compare_ic = FALSE;
15918 item_compare_func = NULL;
15919 if (argvars[1].v_type != VAR_UNKNOWN)
15920 {
15921 if (argvars[1].v_type == VAR_FUNC)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015922 item_compare_func = argvars[1].vval.v_string;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015923 else
15924 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015925 int error = FALSE;
15926
15927 i = get_tv_number_chk(&argvars[1], &error);
15928 if (error)
15929 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015930 if (i == 1)
15931 item_compare_ic = TRUE;
15932 else
15933 item_compare_func = get_tv_string(&argvars[1]);
15934 }
15935 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015936
Bram Moolenaar0d660222005-01-07 21:51:51 +000015937 /* Make an array with each entry pointing to an item in the List. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015938 ptrs = (listitem_T **)alloc((int)(len * sizeof(listitem_T *)));
Bram Moolenaar0d660222005-01-07 21:51:51 +000015939 if (ptrs == NULL)
15940 return;
15941 i = 0;
15942 for (li = l->lv_first; li != NULL; li = li->li_next)
15943 ptrs[i++] = li;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015944
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015945 item_compare_func_err = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015946 /* test the compare function */
15947 if (item_compare_func != NULL
15948 && item_compare2((void *)&ptrs[0], (void *)&ptrs[1])
15949 == ITEM_COMPARE_FAIL)
Bram Moolenaare49b69a2005-01-08 16:11:57 +000015950 EMSG(_("E702: Sort compare function failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000015951 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015952 {
15953 /* Sort the array with item pointers. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015954 qsort((void *)ptrs, (size_t)len, sizeof(listitem_T *),
Bram Moolenaar0d660222005-01-07 21:51:51 +000015955 item_compare_func == NULL ? item_compare : item_compare2);
15956
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015957 if (!item_compare_func_err)
15958 {
15959 /* Clear the List and append the items in the sorted order. */
Bram Moolenaar52514562008-04-01 11:12:09 +000015960 l->lv_first = l->lv_last = l->lv_idx_item = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015961 l->lv_len = 0;
15962 for (i = 0; i < len; ++i)
15963 list_append(l, ptrs[i]);
15964 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015965 }
15966
15967 vim_free(ptrs);
15968 }
15969}
15970
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015971/*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015972 * "soundfold({word})" function
15973 */
15974 static void
15975f_soundfold(argvars, rettv)
15976 typval_T *argvars;
15977 typval_T *rettv;
15978{
15979 char_u *s;
15980
15981 rettv->v_type = VAR_STRING;
15982 s = get_tv_string(&argvars[0]);
Bram Moolenaar3c56a962006-03-12 22:19:04 +000015983#ifdef FEAT_SPELL
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015984 rettv->vval.v_string = eval_soundfold(s);
15985#else
15986 rettv->vval.v_string = vim_strsave(s);
15987#endif
15988}
15989
15990/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015991 * "spellbadword()" function
15992 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015993 static void
15994f_spellbadword(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015995 typval_T *argvars UNUSED;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015996 typval_T *rettv;
15997{
Bram Moolenaar4463f292005-09-25 22:20:24 +000015998 char_u *word = (char_u *)"";
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000015999 hlf_T attr = HLF_COUNT;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000016000 int len = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016001
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016002 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar4463f292005-09-25 22:20:24 +000016003 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016004
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016005#ifdef FEAT_SPELL
Bram Moolenaar4463f292005-09-25 22:20:24 +000016006 if (argvars[0].v_type == VAR_UNKNOWN)
16007 {
16008 /* Find the start and length of the badly spelled word. */
16009 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, &attr);
16010 if (len != 0)
16011 word = ml_get_cursor();
16012 }
16013 else if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16014 {
16015 char_u *str = get_tv_string_chk(&argvars[0]);
16016 int capcol = -1;
16017
16018 if (str != NULL)
16019 {
16020 /* Check the argument for spelling. */
16021 while (*str != NUL)
16022 {
Bram Moolenaar4770d092006-01-12 23:22:24 +000016023 len = spell_check(curwin, str, &attr, &capcol, FALSE);
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016024 if (attr != HLF_COUNT)
Bram Moolenaar4463f292005-09-25 22:20:24 +000016025 {
16026 word = str;
16027 break;
16028 }
16029 str += len;
16030 }
16031 }
16032 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016033#endif
Bram Moolenaar4463f292005-09-25 22:20:24 +000016034
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016035 list_append_string(rettv->vval.v_list, word, len);
16036 list_append_string(rettv->vval.v_list, (char_u *)(
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016037 attr == HLF_SPB ? "bad" :
16038 attr == HLF_SPR ? "rare" :
16039 attr == HLF_SPL ? "local" :
16040 attr == HLF_SPC ? "caps" :
16041 ""), -1);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016042}
16043
16044/*
16045 * "spellsuggest()" function
16046 */
16047 static void
16048f_spellsuggest(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016049 typval_T *argvars UNUSED;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016050 typval_T *rettv;
16051{
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016052#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016053 char_u *str;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016054 int typeerr = FALSE;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016055 int maxcount;
16056 garray_T ga;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016057 int i;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016058 listitem_T *li;
16059 int need_capital = FALSE;
16060#endif
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016061
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016062 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016063 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016064
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016065#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016066 if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16067 {
16068 str = get_tv_string(&argvars[0]);
16069 if (argvars[1].v_type != VAR_UNKNOWN)
16070 {
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016071 maxcount = get_tv_number_chk(&argvars[1], &typeerr);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016072 if (maxcount <= 0)
16073 return;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016074 if (argvars[2].v_type != VAR_UNKNOWN)
16075 {
16076 need_capital = get_tv_number_chk(&argvars[2], &typeerr);
16077 if (typeerr)
16078 return;
16079 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016080 }
16081 else
16082 maxcount = 25;
16083
Bram Moolenaar4770d092006-01-12 23:22:24 +000016084 spell_suggest_list(&ga, str, maxcount, need_capital, FALSE);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016085
16086 for (i = 0; i < ga.ga_len; ++i)
16087 {
16088 str = ((char_u **)ga.ga_data)[i];
16089
16090 li = listitem_alloc();
16091 if (li == NULL)
16092 vim_free(str);
16093 else
16094 {
16095 li->li_tv.v_type = VAR_STRING;
16096 li->li_tv.v_lock = 0;
16097 li->li_tv.vval.v_string = str;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016098 list_append(rettv->vval.v_list, li);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016099 }
16100 }
16101 ga_clear(&ga);
16102 }
16103#endif
16104}
16105
Bram Moolenaar0d660222005-01-07 21:51:51 +000016106 static void
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000016107f_split(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016108 typval_T *argvars;
16109 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016110{
16111 char_u *str;
16112 char_u *end;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016113 char_u *pat = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016114 regmatch_T regmatch;
16115 char_u patbuf[NUMBUFLEN];
16116 char_u *save_cpo;
16117 int match;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016118 colnr_T col = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016119 int keepempty = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016120 int typeerr = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016121
16122 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
16123 save_cpo = p_cpo;
16124 p_cpo = (char_u *)"";
16125
16126 str = get_tv_string(&argvars[0]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016127 if (argvars[1].v_type != VAR_UNKNOWN)
16128 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016129 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16130 if (pat == NULL)
16131 typeerr = TRUE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016132 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016133 keepempty = get_tv_number_chk(&argvars[2], &typeerr);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016134 }
16135 if (pat == NULL || *pat == NUL)
16136 pat = (char_u *)"[\\x01- ]\\+";
Bram Moolenaar0d660222005-01-07 21:51:51 +000016137
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016138 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016139 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016140 if (typeerr)
16141 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016142
Bram Moolenaar0d660222005-01-07 21:51:51 +000016143 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
16144 if (regmatch.regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016145 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016146 regmatch.rm_ic = FALSE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016147 while (*str != NUL || keepempty)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016148 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016149 if (*str == NUL)
16150 match = FALSE; /* empty item at the end */
16151 else
16152 match = vim_regexec_nl(&regmatch, str, col);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016153 if (match)
16154 end = regmatch.startp[0];
16155 else
16156 end = str + STRLEN(str);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016157 if (keepempty || end > str || (rettv->vval.v_list->lv_len > 0
16158 && *str != NUL && match && end < regmatch.endp[0]))
Bram Moolenaar0d660222005-01-07 21:51:51 +000016159 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016160 if (list_append_string(rettv->vval.v_list, str,
16161 (int)(end - str)) == FAIL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016162 break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016163 }
16164 if (!match)
16165 break;
16166 /* Advance to just after the match. */
16167 if (regmatch.endp[0] > str)
16168 col = 0;
16169 else
16170 {
16171 /* Don't get stuck at the same match. */
16172#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000016173 col = (*mb_ptr2len)(regmatch.endp[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016174#else
16175 col = 1;
16176#endif
16177 }
16178 str = regmatch.endp[0];
16179 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016180
Bram Moolenaar0d660222005-01-07 21:51:51 +000016181 vim_free(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016182 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016183
Bram Moolenaar0d660222005-01-07 21:51:51 +000016184 p_cpo = save_cpo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016185}
16186
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016187#ifdef FEAT_FLOAT
16188/*
16189 * "sqrt()" function
16190 */
16191 static void
16192f_sqrt(argvars, rettv)
16193 typval_T *argvars;
16194 typval_T *rettv;
16195{
16196 float_T f;
16197
16198 rettv->v_type = VAR_FLOAT;
16199 if (get_float_arg(argvars, &f) == OK)
16200 rettv->vval.v_float = sqrt(f);
16201 else
16202 rettv->vval.v_float = 0.0;
16203}
16204
16205/*
16206 * "str2float()" function
16207 */
16208 static void
16209f_str2float(argvars, rettv)
16210 typval_T *argvars;
16211 typval_T *rettv;
16212{
16213 char_u *p = skipwhite(get_tv_string(&argvars[0]));
16214
16215 if (*p == '+')
16216 p = skipwhite(p + 1);
16217 (void)string2float(p, &rettv->vval.v_float);
16218 rettv->v_type = VAR_FLOAT;
16219}
16220#endif
16221
Bram Moolenaar2c932302006-03-18 21:42:09 +000016222/*
16223 * "str2nr()" function
16224 */
16225 static void
16226f_str2nr(argvars, rettv)
16227 typval_T *argvars;
16228 typval_T *rettv;
16229{
16230 int base = 10;
16231 char_u *p;
16232 long n;
16233
16234 if (argvars[1].v_type != VAR_UNKNOWN)
16235 {
16236 base = get_tv_number(&argvars[1]);
16237 if (base != 8 && base != 10 && base != 16)
16238 {
16239 EMSG(_(e_invarg));
16240 return;
16241 }
16242 }
16243
16244 p = skipwhite(get_tv_string(&argvars[0]));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016245 if (*p == '+')
16246 p = skipwhite(p + 1);
Bram Moolenaar2c932302006-03-18 21:42:09 +000016247 vim_str2nr(p, NULL, NULL, base == 8 ? 2 : 0, base == 16 ? 2 : 0, &n, NULL);
16248 rettv->vval.v_number = n;
16249}
16250
Bram Moolenaar071d4272004-06-13 20:20:40 +000016251#ifdef HAVE_STRFTIME
16252/*
16253 * "strftime({format}[, {time}])" function
16254 */
16255 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016256f_strftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016257 typval_T *argvars;
16258 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016259{
16260 char_u result_buf[256];
16261 struct tm *curtime;
16262 time_t seconds;
16263 char_u *p;
16264
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016265 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016266
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016267 p = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016268 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016269 seconds = time(NULL);
16270 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016271 seconds = (time_t)get_tv_number(&argvars[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016272 curtime = localtime(&seconds);
16273 /* MSVC returns NULL for an invalid value of seconds. */
16274 if (curtime == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016275 rettv->vval.v_string = vim_strsave((char_u *)_("(Invalid)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016276 else
16277 {
16278# ifdef FEAT_MBYTE
16279 vimconv_T conv;
16280 char_u *enc;
16281
16282 conv.vc_type = CONV_NONE;
16283 enc = enc_locale();
16284 convert_setup(&conv, p_enc, enc);
16285 if (conv.vc_type != CONV_NONE)
16286 p = string_convert(&conv, p, NULL);
16287# endif
16288 if (p != NULL)
16289 (void)strftime((char *)result_buf, sizeof(result_buf),
16290 (char *)p, curtime);
16291 else
16292 result_buf[0] = NUL;
16293
16294# ifdef FEAT_MBYTE
16295 if (conv.vc_type != CONV_NONE)
16296 vim_free(p);
16297 convert_setup(&conv, enc, p_enc);
16298 if (conv.vc_type != CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016299 rettv->vval.v_string = string_convert(&conv, result_buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016300 else
16301# endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016302 rettv->vval.v_string = vim_strsave(result_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016303
16304# ifdef FEAT_MBYTE
16305 /* Release conversion descriptors */
16306 convert_setup(&conv, NULL, NULL);
16307 vim_free(enc);
16308# endif
16309 }
16310}
16311#endif
16312
16313/*
16314 * "stridx()" function
16315 */
16316 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016317f_stridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016318 typval_T *argvars;
16319 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016320{
16321 char_u buf[NUMBUFLEN];
16322 char_u *needle;
16323 char_u *haystack;
Bram Moolenaar33570922005-01-25 22:26:29 +000016324 char_u *save_haystack;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016325 char_u *pos;
Bram Moolenaar33570922005-01-25 22:26:29 +000016326 int start_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016327
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016328 needle = get_tv_string_chk(&argvars[1]);
16329 save_haystack = haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar33570922005-01-25 22:26:29 +000016330 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016331 if (needle == NULL || haystack == NULL)
16332 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016333
Bram Moolenaar33570922005-01-25 22:26:29 +000016334 if (argvars[2].v_type != VAR_UNKNOWN)
16335 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016336 int error = FALSE;
16337
16338 start_idx = get_tv_number_chk(&argvars[2], &error);
16339 if (error || start_idx >= (int)STRLEN(haystack))
Bram Moolenaar33570922005-01-25 22:26:29 +000016340 return;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016341 if (start_idx >= 0)
16342 haystack += start_idx;
Bram Moolenaar33570922005-01-25 22:26:29 +000016343 }
16344
16345 pos = (char_u *)strstr((char *)haystack, (char *)needle);
16346 if (pos != NULL)
16347 rettv->vval.v_number = (varnumber_T)(pos - save_haystack);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016348}
16349
16350/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016351 * "string()" function
16352 */
16353 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016354f_string(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016355 typval_T *argvars;
16356 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016357{
16358 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000016359 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016360
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016361 rettv->v_type = VAR_STRING;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000016362 rettv->vval.v_string = tv2string(&argvars[0], &tofree, numbuf, 0);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016363 /* Make a copy if we have a value but it's not in allocated memory. */
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000016364 if (rettv->vval.v_string != NULL && tofree == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016365 rettv->vval.v_string = vim_strsave(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016366}
16367
16368/*
16369 * "strlen()" function
16370 */
16371 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016372f_strlen(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016373 typval_T *argvars;
16374 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016375{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016376 rettv->vval.v_number = (varnumber_T)(STRLEN(
16377 get_tv_string(&argvars[0])));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016378}
16379
16380/*
16381 * "strpart()" function
16382 */
16383 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016384f_strpart(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016385 typval_T *argvars;
16386 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016387{
16388 char_u *p;
16389 int n;
16390 int len;
16391 int slen;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016392 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016393
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016394 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016395 slen = (int)STRLEN(p);
16396
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016397 n = get_tv_number_chk(&argvars[1], &error);
16398 if (error)
16399 len = 0;
16400 else if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016401 len = get_tv_number(&argvars[2]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016402 else
16403 len = slen - n; /* default len: all bytes that are available. */
16404
16405 /*
16406 * Only return the overlap between the specified part and the actual
16407 * string.
16408 */
16409 if (n < 0)
16410 {
16411 len += n;
16412 n = 0;
16413 }
16414 else if (n > slen)
16415 n = slen;
16416 if (len < 0)
16417 len = 0;
16418 else if (n + len > slen)
16419 len = slen - n;
16420
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016421 rettv->v_type = VAR_STRING;
16422 rettv->vval.v_string = vim_strnsave(p + n, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016423}
16424
16425/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016426 * "strridx()" function
16427 */
16428 static void
16429f_strridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016430 typval_T *argvars;
16431 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016432{
16433 char_u buf[NUMBUFLEN];
16434 char_u *needle;
16435 char_u *haystack;
16436 char_u *rest;
16437 char_u *lastmatch = NULL;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016438 int haystack_len, end_idx;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016439
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016440 needle = get_tv_string_chk(&argvars[1]);
16441 haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016442
16443 rettv->vval.v_number = -1;
16444 if (needle == NULL || haystack == NULL)
16445 return; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016446
16447 haystack_len = (int)STRLEN(haystack);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016448 if (argvars[2].v_type != VAR_UNKNOWN)
16449 {
16450 /* Third argument: upper limit for index */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016451 end_idx = get_tv_number_chk(&argvars[2], NULL);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016452 if (end_idx < 0)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016453 return; /* can never find a match */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016454 }
16455 else
16456 end_idx = haystack_len;
16457
Bram Moolenaar0d660222005-01-07 21:51:51 +000016458 if (*needle == NUL)
Bram Moolenaar05159a02005-02-26 23:04:13 +000016459 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016460 /* Empty string matches past the end. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016461 lastmatch = haystack + end_idx;
16462 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016463 else
Bram Moolenaar532c7802005-01-27 14:44:31 +000016464 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016465 for (rest = haystack; *rest != '\0'; ++rest)
16466 {
16467 rest = (char_u *)strstr((char *)rest, (char *)needle);
Bram Moolenaar532c7802005-01-27 14:44:31 +000016468 if (rest == NULL || rest > haystack + end_idx)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016469 break;
16470 lastmatch = rest;
16471 }
Bram Moolenaar532c7802005-01-27 14:44:31 +000016472 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016473
16474 if (lastmatch == NULL)
16475 rettv->vval.v_number = -1;
16476 else
16477 rettv->vval.v_number = (varnumber_T)(lastmatch - haystack);
16478}
16479
16480/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016481 * "strtrans()" function
16482 */
16483 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016484f_strtrans(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016485 typval_T *argvars;
16486 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016487{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016488 rettv->v_type = VAR_STRING;
16489 rettv->vval.v_string = transstr(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016490}
16491
16492/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016493 * "submatch()" function
16494 */
16495 static void
16496f_submatch(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016497 typval_T *argvars;
16498 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016499{
16500 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016501 rettv->vval.v_string =
16502 reg_submatch((int)get_tv_number_chk(&argvars[0], NULL));
Bram Moolenaar0d660222005-01-07 21:51:51 +000016503}
16504
16505/*
16506 * "substitute()" function
16507 */
16508 static void
16509f_substitute(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016510 typval_T *argvars;
16511 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016512{
16513 char_u patbuf[NUMBUFLEN];
16514 char_u subbuf[NUMBUFLEN];
16515 char_u flagsbuf[NUMBUFLEN];
16516
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016517 char_u *str = get_tv_string_chk(&argvars[0]);
16518 char_u *pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16519 char_u *sub = get_tv_string_buf_chk(&argvars[2], subbuf);
16520 char_u *flg = get_tv_string_buf_chk(&argvars[3], flagsbuf);
16521
Bram Moolenaar0d660222005-01-07 21:51:51 +000016522 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016523 if (str == NULL || pat == NULL || sub == NULL || flg == NULL)
16524 rettv->vval.v_string = NULL;
16525 else
16526 rettv->vval.v_string = do_string_sub(str, pat, sub, flg);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016527}
16528
16529/*
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016530 * "synID(lnum, col, trans)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000016531 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016532 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016533f_synID(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016534 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016535 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016536{
16537 int id = 0;
16538#ifdef FEAT_SYN_HL
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016539 long lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016540 long col;
16541 int trans;
Bram Moolenaar92124a32005-06-17 22:03:40 +000016542 int transerr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016543
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016544 lnum = get_tv_lnum(argvars); /* -1 on type error */
16545 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16546 trans = get_tv_number_chk(&argvars[2], &transerr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016547
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016548 if (!transerr && lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016549 && col >= 0 && col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016550 id = syn_get_id(curwin, lnum, (colnr_T)col, trans, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016551#endif
16552
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016553 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016554}
16555
16556/*
16557 * "synIDattr(id, what [, mode])" function
16558 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016559 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016560f_synIDattr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016561 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016562 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016563{
16564 char_u *p = NULL;
16565#ifdef FEAT_SYN_HL
16566 int id;
16567 char_u *what;
16568 char_u *mode;
16569 char_u modebuf[NUMBUFLEN];
16570 int modec;
16571
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016572 id = get_tv_number(&argvars[0]);
16573 what = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016574 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016575 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016576 mode = get_tv_string_buf(&argvars[2], modebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016577 modec = TOLOWER_ASC(mode[0]);
16578 if (modec != 't' && modec != 'c'
16579#ifdef FEAT_GUI
16580 && modec != 'g'
16581#endif
16582 )
16583 modec = 0; /* replace invalid with current */
16584 }
16585 else
16586 {
16587#ifdef FEAT_GUI
16588 if (gui.in_use)
16589 modec = 'g';
16590 else
16591#endif
16592 if (t_colors > 1)
16593 modec = 'c';
16594 else
16595 modec = 't';
16596 }
16597
16598
16599 switch (TOLOWER_ASC(what[0]))
16600 {
16601 case 'b':
16602 if (TOLOWER_ASC(what[1]) == 'g') /* bg[#] */
16603 p = highlight_color(id, what, modec);
16604 else /* bold */
16605 p = highlight_has_attr(id, HL_BOLD, modec);
16606 break;
16607
16608 case 'f': /* fg[#] */
16609 p = highlight_color(id, what, modec);
16610 break;
16611
16612 case 'i':
16613 if (TOLOWER_ASC(what[1]) == 'n') /* inverse */
16614 p = highlight_has_attr(id, HL_INVERSE, modec);
16615 else /* italic */
16616 p = highlight_has_attr(id, HL_ITALIC, modec);
16617 break;
16618
16619 case 'n': /* name */
16620 p = get_highlight_name(NULL, id - 1);
16621 break;
16622
16623 case 'r': /* reverse */
16624 p = highlight_has_attr(id, HL_INVERSE, modec);
16625 break;
16626
Bram Moolenaar6f507d62008-11-28 10:16:05 +000016627 case 's':
16628 if (TOLOWER_ASC(what[1]) == 'p') /* sp[#] */
16629 p = highlight_color(id, what, modec);
16630 else /* standout */
16631 p = highlight_has_attr(id, HL_STANDOUT, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016632 break;
16633
Bram Moolenaar5b743bf2005-03-15 22:50:43 +000016634 case 'u':
16635 if (STRLEN(what) <= 5 || TOLOWER_ASC(what[5]) != 'c')
16636 /* underline */
16637 p = highlight_has_attr(id, HL_UNDERLINE, modec);
16638 else
16639 /* undercurl */
16640 p = highlight_has_attr(id, HL_UNDERCURL, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016641 break;
16642 }
16643
16644 if (p != NULL)
16645 p = vim_strsave(p);
16646#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016647 rettv->v_type = VAR_STRING;
16648 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016649}
16650
16651/*
16652 * "synIDtrans(id)" function
16653 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016654 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016655f_synIDtrans(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016656 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016657 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016658{
16659 int id;
16660
16661#ifdef FEAT_SYN_HL
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016662 id = get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016663
16664 if (id > 0)
16665 id = syn_get_final_id(id);
16666 else
16667#endif
16668 id = 0;
16669
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016670 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016671}
16672
16673/*
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016674 * "synstack(lnum, col)" function
16675 */
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016676 static void
16677f_synstack(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016678 typval_T *argvars UNUSED;
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016679 typval_T *rettv;
16680{
16681#ifdef FEAT_SYN_HL
16682 long lnum;
16683 long col;
16684 int i;
16685 int id;
16686#endif
16687
16688 rettv->v_type = VAR_LIST;
16689 rettv->vval.v_list = NULL;
16690
16691#ifdef FEAT_SYN_HL
16692 lnum = get_tv_lnum(argvars); /* -1 on type error */
16693 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16694
16695 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar6cad8bd2008-09-10 13:39:10 +000016696 && col >= 0 && (col == 0 || col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016697 && rettv_list_alloc(rettv) != FAIL)
16698 {
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016699 (void)syn_get_id(curwin, lnum, (colnr_T)col, FALSE, NULL, TRUE);
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016700 for (i = 0; ; ++i)
16701 {
16702 id = syn_get_stack_item(i);
16703 if (id < 0)
16704 break;
16705 if (list_append_number(rettv->vval.v_list, id) == FAIL)
16706 break;
16707 }
16708 }
16709#endif
16710}
16711
16712/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016713 * "system()" function
16714 */
16715 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016716f_system(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016717 typval_T *argvars;
16718 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016719{
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016720 char_u *res = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016721 char_u *p;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016722 char_u *infile = NULL;
16723 char_u buf[NUMBUFLEN];
16724 int err = FALSE;
16725 FILE *fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016726
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016727 if (check_restricted() || check_secure())
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016728 goto done;
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016729
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016730 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016731 {
16732 /*
16733 * Write the string to a temp file, to be used for input of the shell
16734 * command.
16735 */
16736 if ((infile = vim_tempname('i')) == NULL)
16737 {
16738 EMSG(_(e_notmp));
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016739 goto done;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016740 }
16741
16742 fd = mch_fopen((char *)infile, WRITEBIN);
16743 if (fd == NULL)
16744 {
16745 EMSG2(_(e_notopen), infile);
16746 goto done;
16747 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016748 p = get_tv_string_buf_chk(&argvars[1], buf);
16749 if (p == NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016750 {
16751 fclose(fd);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016752 goto done; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016753 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016754 if (fwrite(p, STRLEN(p), 1, fd) != 1)
16755 err = TRUE;
16756 if (fclose(fd) != 0)
16757 err = TRUE;
16758 if (err)
16759 {
16760 EMSG(_("E677: Error writing temp file"));
16761 goto done;
16762 }
16763 }
16764
Bram Moolenaare580b0c2006-03-21 21:33:03 +000016765 res = get_cmd_output(get_tv_string(&argvars[0]), infile,
16766 SHELL_SILENT | SHELL_COOKED);
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016767
Bram Moolenaar071d4272004-06-13 20:20:40 +000016768#ifdef USE_CR
16769 /* translate <CR> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016770 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016771 {
16772 char_u *s;
16773
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016774 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016775 {
16776 if (*s == CAR)
16777 *s = NL;
16778 }
16779 }
16780#else
16781# ifdef USE_CRNL
16782 /* translate <CR><NL> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016783 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016784 {
16785 char_u *s, *d;
16786
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016787 d = res;
16788 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016789 {
16790 if (s[0] == CAR && s[1] == NL)
16791 ++s;
16792 *d++ = *s;
16793 }
16794 *d = NUL;
16795 }
16796# endif
16797#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016798
16799done:
16800 if (infile != NULL)
16801 {
16802 mch_remove(infile);
16803 vim_free(infile);
16804 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016805 rettv->v_type = VAR_STRING;
16806 rettv->vval.v_string = res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016807}
16808
16809/*
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016810 * "tabpagebuflist()" function
16811 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016812 static void
16813f_tabpagebuflist(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016814 typval_T *argvars UNUSED;
16815 typval_T *rettv UNUSED;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016816{
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016817#ifdef FEAT_WINDOWS
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016818 tabpage_T *tp;
16819 win_T *wp = NULL;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016820
16821 if (argvars[0].v_type == VAR_UNKNOWN)
16822 wp = firstwin;
16823 else
16824 {
16825 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16826 if (tp != NULL)
Bram Moolenaar238a5642006-02-21 22:12:05 +000016827 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016828 }
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016829 if (wp != NULL && rettv_list_alloc(rettv) != FAIL)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016830 {
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016831 for (; wp != NULL; wp = wp->w_next)
16832 if (list_append_number(rettv->vval.v_list,
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016833 wp->w_buffer->b_fnum) == FAIL)
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016834 break;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016835 }
16836#endif
16837}
16838
16839
16840/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016841 * "tabpagenr()" function
16842 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016843 static void
16844f_tabpagenr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016845 typval_T *argvars UNUSED;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016846 typval_T *rettv;
16847{
16848 int nr = 1;
16849#ifdef FEAT_WINDOWS
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016850 char_u *arg;
16851
16852 if (argvars[0].v_type != VAR_UNKNOWN)
16853 {
16854 arg = get_tv_string_chk(&argvars[0]);
16855 nr = 0;
16856 if (arg != NULL)
16857 {
16858 if (STRCMP(arg, "$") == 0)
Bram Moolenaara5621492006-02-25 21:55:24 +000016859 nr = tabpage_index(NULL) - 1;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016860 else
16861 EMSG2(_(e_invexpr2), arg);
16862 }
16863 }
16864 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +000016865 nr = tabpage_index(curtab);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016866#endif
16867 rettv->vval.v_number = nr;
16868}
16869
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016870
16871#ifdef FEAT_WINDOWS
16872static int get_winnr __ARGS((tabpage_T *tp, typval_T *argvar));
16873
16874/*
16875 * Common code for tabpagewinnr() and winnr().
16876 */
16877 static int
16878get_winnr(tp, argvar)
16879 tabpage_T *tp;
16880 typval_T *argvar;
16881{
16882 win_T *twin;
16883 int nr = 1;
16884 win_T *wp;
16885 char_u *arg;
16886
16887 twin = (tp == curtab) ? curwin : tp->tp_curwin;
16888 if (argvar->v_type != VAR_UNKNOWN)
16889 {
16890 arg = get_tv_string_chk(argvar);
16891 if (arg == NULL)
16892 nr = 0; /* type error; errmsg already given */
16893 else if (STRCMP(arg, "$") == 0)
16894 twin = (tp == curtab) ? lastwin : tp->tp_lastwin;
16895 else if (STRCMP(arg, "#") == 0)
16896 {
16897 twin = (tp == curtab) ? prevwin : tp->tp_prevwin;
16898 if (twin == NULL)
16899 nr = 0;
16900 }
16901 else
16902 {
16903 EMSG2(_(e_invexpr2), arg);
16904 nr = 0;
16905 }
16906 }
16907
16908 if (nr > 0)
16909 for (wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
16910 wp != twin; wp = wp->w_next)
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016911 {
16912 if (wp == NULL)
16913 {
16914 /* didn't find it in this tabpage */
16915 nr = 0;
16916 break;
16917 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016918 ++nr;
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016919 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016920 return nr;
16921}
16922#endif
16923
16924/*
16925 * "tabpagewinnr()" function
16926 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016927 static void
16928f_tabpagewinnr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016929 typval_T *argvars UNUSED;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016930 typval_T *rettv;
16931{
16932 int nr = 1;
16933#ifdef FEAT_WINDOWS
16934 tabpage_T *tp;
16935
16936 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16937 if (tp == NULL)
16938 nr = 0;
16939 else
16940 nr = get_winnr(tp, &argvars[1]);
16941#endif
16942 rettv->vval.v_number = nr;
16943}
16944
16945
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016946/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016947 * "tagfiles()" function
16948 */
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016949 static void
16950f_tagfiles(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016951 typval_T *argvars UNUSED;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016952 typval_T *rettv;
16953{
16954 char_u fname[MAXPATHL + 1];
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016955 tagname_T tn;
16956 int first;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016957
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016958 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016959 return;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016960
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016961 for (first = TRUE; ; first = FALSE)
16962 if (get_tagfname(&tn, first, fname) == FAIL
16963 || list_append_string(rettv->vval.v_list, fname, -1) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016964 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016965 tagname_free(&tn);
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016966}
16967
16968/*
Bram Moolenaare2ac10d2005-03-07 23:26:06 +000016969 * "taglist()" function
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016970 */
16971 static void
16972f_taglist(argvars, rettv)
16973 typval_T *argvars;
16974 typval_T *rettv;
16975{
16976 char_u *tag_pattern;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016977
16978 tag_pattern = get_tv_string(&argvars[0]);
16979
16980 rettv->vval.v_number = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016981 if (*tag_pattern == NUL)
16982 return;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016983
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016984 if (rettv_list_alloc(rettv) == OK)
16985 (void)get_tags(rettv->vval.v_list, tag_pattern);
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016986}
16987
16988/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016989 * "tempname()" function
16990 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016991 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016992f_tempname(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016993 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016994 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016995{
16996 static int x = 'A';
16997
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016998 rettv->v_type = VAR_STRING;
16999 rettv->vval.v_string = vim_tempname(x);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017000
17001 /* Advance 'x' to use A-Z and 0-9, so that there are at least 34 different
17002 * names. Skip 'I' and 'O', they are used for shell redirection. */
17003 do
17004 {
17005 if (x == 'Z')
17006 x = '0';
17007 else if (x == '9')
17008 x = 'A';
17009 else
17010 {
17011#ifdef EBCDIC
17012 if (x == 'I')
17013 x = 'J';
17014 else if (x == 'R')
17015 x = 'S';
17016 else
17017#endif
17018 ++x;
17019 }
17020 } while (x == 'I' || x == 'O');
17021}
17022
17023/*
Bram Moolenaard52d9742005-08-21 22:20:28 +000017024 * "test(list)" function: Just checking the walls...
17025 */
Bram Moolenaard52d9742005-08-21 22:20:28 +000017026 static void
17027f_test(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017028 typval_T *argvars UNUSED;
17029 typval_T *rettv UNUSED;
Bram Moolenaard52d9742005-08-21 22:20:28 +000017030{
17031 /* Used for unit testing. Change the code below to your liking. */
17032#if 0
17033 listitem_T *li;
17034 list_T *l;
17035 char_u *bad, *good;
17036
17037 if (argvars[0].v_type != VAR_LIST)
17038 return;
17039 l = argvars[0].vval.v_list;
17040 if (l == NULL)
17041 return;
17042 li = l->lv_first;
17043 if (li == NULL)
17044 return;
17045 bad = get_tv_string(&li->li_tv);
17046 li = li->li_next;
17047 if (li == NULL)
17048 return;
17049 good = get_tv_string(&li->li_tv);
17050 rettv->vval.v_number = test_edit_score(bad, good);
17051#endif
17052}
17053
17054/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017055 * "tolower(string)" function
17056 */
17057 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017058f_tolower(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017059 typval_T *argvars;
17060 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017061{
17062 char_u *p;
17063
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017064 p = vim_strsave(get_tv_string(&argvars[0]));
17065 rettv->v_type = VAR_STRING;
17066 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017067
17068 if (p != NULL)
17069 while (*p != NUL)
17070 {
17071#ifdef FEAT_MBYTE
17072 int l;
17073
17074 if (enc_utf8)
17075 {
17076 int c, lc;
17077
17078 c = utf_ptr2char(p);
17079 lc = utf_tolower(c);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017080 l = utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017081 /* TODO: reallocate string when byte count changes. */
17082 if (utf_char2len(lc) == l)
17083 utf_char2bytes(lc, p);
17084 p += l;
17085 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017086 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017087 p += l; /* skip multi-byte character */
17088 else
17089#endif
17090 {
17091 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
17092 ++p;
17093 }
17094 }
17095}
17096
17097/*
17098 * "toupper(string)" function
17099 */
17100 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017101f_toupper(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017102 typval_T *argvars;
17103 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017104{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017105 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017106 rettv->vval.v_string = strup_save(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000017107}
17108
17109/*
Bram Moolenaar8299df92004-07-10 09:47:34 +000017110 * "tr(string, fromstr, tostr)" function
17111 */
17112 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017113f_tr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017114 typval_T *argvars;
17115 typval_T *rettv;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017116{
17117 char_u *instr;
17118 char_u *fromstr;
17119 char_u *tostr;
17120 char_u *p;
17121#ifdef FEAT_MBYTE
Bram Moolenaar342337a2005-07-21 21:11:17 +000017122 int inlen;
17123 int fromlen;
17124 int tolen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017125 int idx;
17126 char_u *cpstr;
17127 int cplen;
17128 int first = TRUE;
17129#endif
17130 char_u buf[NUMBUFLEN];
17131 char_u buf2[NUMBUFLEN];
17132 garray_T ga;
17133
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017134 instr = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017135 fromstr = get_tv_string_buf_chk(&argvars[1], buf);
17136 tostr = get_tv_string_buf_chk(&argvars[2], buf2);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017137
17138 /* Default return value: empty string. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017139 rettv->v_type = VAR_STRING;
17140 rettv->vval.v_string = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017141 if (fromstr == NULL || tostr == NULL)
17142 return; /* type error; errmsg already given */
Bram Moolenaar8299df92004-07-10 09:47:34 +000017143 ga_init2(&ga, (int)sizeof(char), 80);
17144
17145#ifdef FEAT_MBYTE
17146 if (!has_mbyte)
17147#endif
17148 /* not multi-byte: fromstr and tostr must be the same length */
17149 if (STRLEN(fromstr) != STRLEN(tostr))
17150 {
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017151#ifdef FEAT_MBYTE
Bram Moolenaar8299df92004-07-10 09:47:34 +000017152error:
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017153#endif
Bram Moolenaar8299df92004-07-10 09:47:34 +000017154 EMSG2(_(e_invarg2), fromstr);
17155 ga_clear(&ga);
17156 return;
17157 }
17158
17159 /* fromstr and tostr have to contain the same number of chars */
17160 while (*instr != NUL)
17161 {
17162#ifdef FEAT_MBYTE
17163 if (has_mbyte)
17164 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017165 inlen = (*mb_ptr2len)(instr);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017166 cpstr = instr;
17167 cplen = inlen;
17168 idx = 0;
17169 for (p = fromstr; *p != NUL; p += fromlen)
17170 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017171 fromlen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017172 if (fromlen == inlen && STRNCMP(instr, p, inlen) == 0)
17173 {
17174 for (p = tostr; *p != NUL; p += tolen)
17175 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017176 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017177 if (idx-- == 0)
17178 {
17179 cplen = tolen;
17180 cpstr = p;
17181 break;
17182 }
17183 }
17184 if (*p == NUL) /* tostr is shorter than fromstr */
17185 goto error;
17186 break;
17187 }
17188 ++idx;
17189 }
17190
17191 if (first && cpstr == instr)
17192 {
17193 /* Check that fromstr and tostr have the same number of
17194 * (multi-byte) characters. Done only once when a character
17195 * of instr doesn't appear in fromstr. */
17196 first = FALSE;
17197 for (p = tostr; *p != NUL; p += tolen)
17198 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017199 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017200 --idx;
17201 }
17202 if (idx != 0)
17203 goto error;
17204 }
17205
17206 ga_grow(&ga, cplen);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000017207 mch_memmove((char *)ga.ga_data + ga.ga_len, cpstr, (size_t)cplen);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017208 ga.ga_len += cplen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017209
17210 instr += inlen;
17211 }
17212 else
17213#endif
17214 {
17215 /* When not using multi-byte chars we can do it faster. */
17216 p = vim_strchr(fromstr, *instr);
17217 if (p != NULL)
17218 ga_append(&ga, tostr[p - fromstr]);
17219 else
17220 ga_append(&ga, *instr);
17221 ++instr;
17222 }
17223 }
17224
Bram Moolenaar61b974b2006-12-05 09:32:29 +000017225 /* add a terminating NUL */
17226 ga_grow(&ga, 1);
17227 ga_append(&ga, NUL);
17228
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017229 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017230}
17231
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017232#ifdef FEAT_FLOAT
17233/*
17234 * "trunc({float})" function
17235 */
17236 static void
17237f_trunc(argvars, rettv)
17238 typval_T *argvars;
17239 typval_T *rettv;
17240{
17241 float_T f;
17242
17243 rettv->v_type = VAR_FLOAT;
17244 if (get_float_arg(argvars, &f) == OK)
17245 /* trunc() is not in C90, use floor() or ceil() instead. */
17246 rettv->vval.v_float = f > 0 ? floor(f) : ceil(f);
17247 else
17248 rettv->vval.v_float = 0.0;
17249}
17250#endif
17251
Bram Moolenaar8299df92004-07-10 09:47:34 +000017252/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017253 * "type(expr)" function
17254 */
17255 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017256f_type(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017257 typval_T *argvars;
17258 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017259{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017260 int n;
17261
17262 switch (argvars[0].v_type)
17263 {
17264 case VAR_NUMBER: n = 0; break;
17265 case VAR_STRING: n = 1; break;
17266 case VAR_FUNC: n = 2; break;
17267 case VAR_LIST: n = 3; break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000017268 case VAR_DICT: n = 4; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017269#ifdef FEAT_FLOAT
17270 case VAR_FLOAT: n = 5; break;
17271#endif
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017272 default: EMSG2(_(e_intern2), "f_type()"); n = 0; break;
17273 }
17274 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017275}
17276
17277/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000017278 * "values(dict)" function
17279 */
17280 static void
17281f_values(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017282 typval_T *argvars;
17283 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000017284{
17285 dict_list(argvars, rettv, 1);
17286}
17287
17288/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017289 * "virtcol(string)" function
17290 */
17291 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017292f_virtcol(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017293 typval_T *argvars;
17294 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017295{
17296 colnr_T vcol = 0;
17297 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017298 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017299
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017300 fp = var2fpos(&argvars[0], FALSE, &fnum);
17301 if (fp != NULL && fp->lnum <= curbuf->b_ml.ml_line_count
17302 && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017303 {
17304 getvvcol(curwin, fp, NULL, NULL, &vcol);
17305 ++vcol;
17306 }
17307
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017308 rettv->vval.v_number = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017309}
17310
17311/*
17312 * "visualmode()" function
17313 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017314 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017315f_visualmode(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017316 typval_T *argvars UNUSED;
17317 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017318{
17319#ifdef FEAT_VISUAL
17320 char_u str[2];
17321
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017322 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017323 str[0] = curbuf->b_visual_mode_eval;
17324 str[1] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017325 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017326
17327 /* A non-zero number or non-empty string argument: reset mode. */
Bram Moolenaar05bb9532008-07-04 09:44:11 +000017328 if (non_zero_arg(&argvars[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +000017329 curbuf->b_visual_mode_eval = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017330#endif
17331}
17332
17333/*
17334 * "winbufnr(nr)" function
17335 */
17336 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017337f_winbufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017338 typval_T *argvars;
17339 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017340{
17341 win_T *wp;
17342
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017343 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017344 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017345 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017346 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017347 rettv->vval.v_number = wp->w_buffer->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017348}
17349
17350/*
17351 * "wincol()" function
17352 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017353 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017354f_wincol(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017355 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017356 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017357{
17358 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017359 rettv->vval.v_number = curwin->w_wcol + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017360}
17361
17362/*
17363 * "winheight(nr)" function
17364 */
17365 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017366f_winheight(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017367 typval_T *argvars;
17368 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017369{
17370 win_T *wp;
17371
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017372 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017373 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017374 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017375 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017376 rettv->vval.v_number = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017377}
17378
17379/*
17380 * "winline()" function
17381 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017382 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017383f_winline(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017384 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017385 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017386{
17387 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017388 rettv->vval.v_number = curwin->w_wrow + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017389}
17390
17391/*
17392 * "winnr()" function
17393 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017394 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017395f_winnr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017396 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017397 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017398{
17399 int nr = 1;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017400
Bram Moolenaar071d4272004-06-13 20:20:40 +000017401#ifdef FEAT_WINDOWS
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017402 nr = get_winnr(curtab, &argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017403#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017404 rettv->vval.v_number = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017405}
17406
17407/*
17408 * "winrestcmd()" function
17409 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017410 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017411f_winrestcmd(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017412 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017413 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017414{
17415#ifdef FEAT_WINDOWS
17416 win_T *wp;
17417 int winnr = 1;
17418 garray_T ga;
17419 char_u buf[50];
17420
17421 ga_init2(&ga, (int)sizeof(char), 70);
17422 for (wp = firstwin; wp != NULL; wp = wp->w_next)
17423 {
17424 sprintf((char *)buf, "%dresize %d|", winnr, wp->w_height);
17425 ga_concat(&ga, buf);
17426# ifdef FEAT_VERTSPLIT
17427 sprintf((char *)buf, "vert %dresize %d|", winnr, wp->w_width);
17428 ga_concat(&ga, buf);
17429# endif
17430 ++winnr;
17431 }
Bram Moolenaar269ec652004-07-29 08:43:53 +000017432 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017433
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017434 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017435#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017436 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017437#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017438 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017439}
17440
17441/*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017442 * "winrestview()" function
17443 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017444 static void
17445f_winrestview(argvars, rettv)
17446 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017447 typval_T *rettv UNUSED;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017448{
17449 dict_T *dict;
17450
17451 if (argvars[0].v_type != VAR_DICT
17452 || (dict = argvars[0].vval.v_dict) == NULL)
17453 EMSG(_(e_invarg));
17454 else
17455 {
17456 curwin->w_cursor.lnum = get_dict_number(dict, (char_u *)"lnum");
17457 curwin->w_cursor.col = get_dict_number(dict, (char_u *)"col");
17458#ifdef FEAT_VIRTUALEDIT
17459 curwin->w_cursor.coladd = get_dict_number(dict, (char_u *)"coladd");
17460#endif
17461 curwin->w_curswant = get_dict_number(dict, (char_u *)"curswant");
Bram Moolenaar362e1a32006-03-06 23:29:24 +000017462 curwin->w_set_curswant = FALSE;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017463
Bram Moolenaar6f11a412006-09-06 20:16:42 +000017464 set_topline(curwin, get_dict_number(dict, (char_u *)"topline"));
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017465#ifdef FEAT_DIFF
17466 curwin->w_topfill = get_dict_number(dict, (char_u *)"topfill");
17467#endif
17468 curwin->w_leftcol = get_dict_number(dict, (char_u *)"leftcol");
17469 curwin->w_skipcol = get_dict_number(dict, (char_u *)"skipcol");
17470
17471 check_cursor();
17472 changed_cline_bef_curs();
17473 invalidate_botline();
17474 redraw_later(VALID);
17475
17476 if (curwin->w_topline == 0)
17477 curwin->w_topline = 1;
17478 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
17479 curwin->w_topline = curbuf->b_ml.ml_line_count;
17480#ifdef FEAT_DIFF
17481 check_topfill(curwin, TRUE);
17482#endif
17483 }
17484}
17485
17486/*
17487 * "winsaveview()" function
17488 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017489 static void
17490f_winsaveview(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017491 typval_T *argvars UNUSED;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017492 typval_T *rettv;
17493{
17494 dict_T *dict;
17495
17496 dict = dict_alloc();
17497 if (dict == NULL)
17498 return;
17499 rettv->v_type = VAR_DICT;
17500 rettv->vval.v_dict = dict;
17501 ++dict->dv_refcount;
17502
17503 dict_add_nr_str(dict, "lnum", (long)curwin->w_cursor.lnum, NULL);
17504 dict_add_nr_str(dict, "col", (long)curwin->w_cursor.col, NULL);
17505#ifdef FEAT_VIRTUALEDIT
17506 dict_add_nr_str(dict, "coladd", (long)curwin->w_cursor.coladd, NULL);
17507#endif
Bram Moolenaar9af1ba92006-08-29 19:55:53 +000017508 update_curswant();
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017509 dict_add_nr_str(dict, "curswant", (long)curwin->w_curswant, NULL);
17510
17511 dict_add_nr_str(dict, "topline", (long)curwin->w_topline, NULL);
17512#ifdef FEAT_DIFF
17513 dict_add_nr_str(dict, "topfill", (long)curwin->w_topfill, NULL);
17514#endif
17515 dict_add_nr_str(dict, "leftcol", (long)curwin->w_leftcol, NULL);
17516 dict_add_nr_str(dict, "skipcol", (long)curwin->w_skipcol, NULL);
17517}
17518
17519/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017520 * "winwidth(nr)" function
17521 */
17522 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017523f_winwidth(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017524 typval_T *argvars;
17525 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017526{
17527 win_T *wp;
17528
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017529 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017530 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017531 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017532 else
17533#ifdef FEAT_VERTSPLIT
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017534 rettv->vval.v_number = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017535#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017536 rettv->vval.v_number = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017537#endif
17538}
17539
Bram Moolenaar071d4272004-06-13 20:20:40 +000017540/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017541 * "writefile()" function
17542 */
17543 static void
17544f_writefile(argvars, rettv)
17545 typval_T *argvars;
17546 typval_T *rettv;
17547{
17548 int binary = FALSE;
17549 char_u *fname;
17550 FILE *fd;
17551 listitem_T *li;
17552 char_u *s;
17553 int ret = 0;
17554 int c;
17555
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000017556 if (check_restricted() || check_secure())
17557 return;
17558
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017559 if (argvars[0].v_type != VAR_LIST)
17560 {
17561 EMSG2(_(e_listarg), "writefile()");
17562 return;
17563 }
17564 if (argvars[0].vval.v_list == NULL)
17565 return;
17566
17567 if (argvars[2].v_type != VAR_UNKNOWN
17568 && STRCMP(get_tv_string(&argvars[2]), "b") == 0)
17569 binary = TRUE;
17570
17571 /* Always open the file in binary mode, library functions have a mind of
17572 * their own about CR-LF conversion. */
17573 fname = get_tv_string(&argvars[1]);
17574 if (*fname == NUL || (fd = mch_fopen((char *)fname, WRITEBIN)) == NULL)
17575 {
17576 EMSG2(_(e_notcreate), *fname == NUL ? (char_u *)_("<empty>") : fname);
17577 ret = -1;
17578 }
17579 else
17580 {
17581 for (li = argvars[0].vval.v_list->lv_first; li != NULL;
17582 li = li->li_next)
17583 {
17584 for (s = get_tv_string(&li->li_tv); *s != NUL; ++s)
17585 {
17586 if (*s == '\n')
17587 c = putc(NUL, fd);
17588 else
17589 c = putc(*s, fd);
17590 if (c == EOF)
17591 {
17592 ret = -1;
17593 break;
17594 }
17595 }
17596 if (!binary || li->li_next != NULL)
17597 if (putc('\n', fd) == EOF)
17598 {
17599 ret = -1;
17600 break;
17601 }
17602 if (ret < 0)
17603 {
17604 EMSG(_(e_write));
17605 break;
17606 }
17607 }
17608 fclose(fd);
17609 }
17610
17611 rettv->vval.v_number = ret;
17612}
17613
17614/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017615 * Translate a String variable into a position.
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017616 * Returns NULL when there is an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017617 */
17618 static pos_T *
Bram Moolenaar477933c2007-07-17 14:32:23 +000017619var2fpos(varp, dollar_lnum, fnum)
Bram Moolenaar33570922005-01-25 22:26:29 +000017620 typval_T *varp;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017621 int dollar_lnum; /* TRUE when $ is last line */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017622 int *fnum; /* set to fnum for '0, 'A, etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017623{
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017624 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017625 static pos_T pos;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017626 pos_T *pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017627
Bram Moolenaara5525202006-03-02 22:52:09 +000017628 /* Argument can be [lnum, col, coladd]. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017629 if (varp->v_type == VAR_LIST)
17630 {
17631 list_T *l;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017632 int len;
Bram Moolenaara5525202006-03-02 22:52:09 +000017633 int error = FALSE;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017634 listitem_T *li;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017635
17636 l = varp->vval.v_list;
17637 if (l == NULL)
17638 return NULL;
17639
17640 /* Get the line number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017641 pos.lnum = list_find_nr(l, 0L, &error);
17642 if (error || pos.lnum <= 0 || pos.lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017643 return NULL; /* invalid line number */
17644
17645 /* Get the column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017646 pos.col = list_find_nr(l, 1L, &error);
17647 if (error)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017648 return NULL;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017649 len = (long)STRLEN(ml_get(pos.lnum));
Bram Moolenaar477933c2007-07-17 14:32:23 +000017650
17651 /* We accept "$" for the column number: last column. */
17652 li = list_find(l, 1L);
17653 if (li != NULL && li->li_tv.v_type == VAR_STRING
17654 && li->li_tv.vval.v_string != NULL
17655 && STRCMP(li->li_tv.vval.v_string, "$") == 0)
17656 pos.col = len + 1;
17657
Bram Moolenaara5525202006-03-02 22:52:09 +000017658 /* Accept a position up to the NUL after the line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000017659 if (pos.col == 0 || (int)pos.col > len + 1)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017660 return NULL; /* invalid column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017661 --pos.col;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017662
Bram Moolenaara5525202006-03-02 22:52:09 +000017663#ifdef FEAT_VIRTUALEDIT
17664 /* Get the virtual offset. Defaults to zero. */
17665 pos.coladd = list_find_nr(l, 2L, &error);
17666 if (error)
17667 pos.coladd = 0;
17668#endif
17669
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017670 return &pos;
17671 }
17672
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017673 name = get_tv_string_chk(varp);
17674 if (name == NULL)
17675 return NULL;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017676 if (name[0] == '.') /* cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017677 return &curwin->w_cursor;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017678#ifdef FEAT_VISUAL
17679 if (name[0] == 'v' && name[1] == NUL) /* Visual start */
17680 {
17681 if (VIsual_active)
17682 return &VIsual;
17683 return &curwin->w_cursor;
17684 }
17685#endif
17686 if (name[0] == '\'') /* mark */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017687 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017688 pp = getmark_fnum(name[1], FALSE, fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017689 if (pp == NULL || pp == (pos_T *)-1 || pp->lnum <= 0)
17690 return NULL;
17691 return pp;
17692 }
Bram Moolenaara5525202006-03-02 22:52:09 +000017693
17694#ifdef FEAT_VIRTUALEDIT
17695 pos.coladd = 0;
17696#endif
17697
Bram Moolenaar477933c2007-07-17 14:32:23 +000017698 if (name[0] == 'w' && dollar_lnum)
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017699 {
17700 pos.col = 0;
17701 if (name[1] == '0') /* "w0": first visible line */
17702 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017703 update_topline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017704 pos.lnum = curwin->w_topline;
17705 return &pos;
17706 }
17707 else if (name[1] == '$') /* "w$": last visible line */
17708 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017709 validate_botline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017710 pos.lnum = curwin->w_botline - 1;
17711 return &pos;
17712 }
17713 }
17714 else if (name[0] == '$') /* last column or line */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017715 {
Bram Moolenaar477933c2007-07-17 14:32:23 +000017716 if (dollar_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017717 {
17718 pos.lnum = curbuf->b_ml.ml_line_count;
17719 pos.col = 0;
17720 }
17721 else
17722 {
17723 pos.lnum = curwin->w_cursor.lnum;
17724 pos.col = (colnr_T)STRLEN(ml_get_curline());
17725 }
17726 return &pos;
17727 }
17728 return NULL;
17729}
17730
17731/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017732 * Convert list in "arg" into a position and optional file number.
17733 * When "fnump" is NULL there is no file number, only 3 items.
17734 * Note that the column is passed on as-is, the caller may want to decrement
17735 * it to use 1 for the first column.
17736 * Return FAIL when conversion is not possible, doesn't check the position for
17737 * validity.
17738 */
17739 static int
17740list2fpos(arg, posp, fnump)
17741 typval_T *arg;
17742 pos_T *posp;
17743 int *fnump;
17744{
17745 list_T *l = arg->vval.v_list;
17746 long i = 0;
17747 long n;
17748
Bram Moolenaarbde35262006-07-23 20:12:24 +000017749 /* List must be: [fnum, lnum, col, coladd], where "fnum" is only there
17750 * when "fnump" isn't NULL and "coladd" is optional. */
17751 if (arg->v_type != VAR_LIST
17752 || l == NULL
17753 || l->lv_len < (fnump == NULL ? 2 : 3)
17754 || l->lv_len > (fnump == NULL ? 3 : 4))
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017755 return FAIL;
17756
17757 if (fnump != NULL)
17758 {
17759 n = list_find_nr(l, i++, NULL); /* fnum */
17760 if (n < 0)
17761 return FAIL;
17762 if (n == 0)
17763 n = curbuf->b_fnum; /* current buffer */
17764 *fnump = n;
17765 }
17766
17767 n = list_find_nr(l, i++, NULL); /* lnum */
17768 if (n < 0)
17769 return FAIL;
17770 posp->lnum = n;
17771
17772 n = list_find_nr(l, i++, NULL); /* col */
17773 if (n < 0)
17774 return FAIL;
17775 posp->col = n;
17776
17777#ifdef FEAT_VIRTUALEDIT
17778 n = list_find_nr(l, i, NULL);
17779 if (n < 0)
Bram Moolenaarbde35262006-07-23 20:12:24 +000017780 posp->coladd = 0;
17781 else
17782 posp->coladd = n;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017783#endif
17784
17785 return OK;
17786}
17787
17788/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017789 * Get the length of an environment variable name.
17790 * Advance "arg" to the first character after the name.
17791 * Return 0 for error.
17792 */
17793 static int
17794get_env_len(arg)
17795 char_u **arg;
17796{
17797 char_u *p;
17798 int len;
17799
17800 for (p = *arg; vim_isIDc(*p); ++p)
17801 ;
17802 if (p == *arg) /* no name found */
17803 return 0;
17804
17805 len = (int)(p - *arg);
17806 *arg = p;
17807 return len;
17808}
17809
17810/*
17811 * Get the length of the name of a function or internal variable.
17812 * "arg" is advanced to the first non-white character after the name.
17813 * Return 0 if something is wrong.
17814 */
17815 static int
17816get_id_len(arg)
17817 char_u **arg;
17818{
17819 char_u *p;
17820 int len;
17821
17822 /* Find the end of the name. */
17823 for (p = *arg; eval_isnamec(*p); ++p)
17824 ;
17825 if (p == *arg) /* no name found */
17826 return 0;
17827
17828 len = (int)(p - *arg);
17829 *arg = skipwhite(p);
17830
17831 return len;
17832}
17833
17834/*
Bram Moolenaara7043832005-01-21 11:56:39 +000017835 * Get the length of the name of a variable or function.
17836 * Only the name is recognized, does not handle ".key" or "[idx]".
Bram Moolenaar071d4272004-06-13 20:20:40 +000017837 * "arg" is advanced to the first non-white character after the name.
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017838 * Return -1 if curly braces expansion failed.
17839 * Return 0 if something else is wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017840 * If the name contains 'magic' {}'s, expand them and return the
17841 * expanded name in an allocated string via 'alias' - caller must free.
17842 */
17843 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017844get_name_len(arg, alias, evaluate, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017845 char_u **arg;
17846 char_u **alias;
17847 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017848 int verbose;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017849{
17850 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017851 char_u *p;
17852 char_u *expr_start;
17853 char_u *expr_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017854
17855 *alias = NULL; /* default to no alias */
17856
17857 if ((*arg)[0] == K_SPECIAL && (*arg)[1] == KS_EXTRA
17858 && (*arg)[2] == (int)KE_SNR)
17859 {
17860 /* hard coded <SNR>, already translated */
17861 *arg += 3;
17862 return get_id_len(arg) + 3;
17863 }
17864 len = eval_fname_script(*arg);
17865 if (len > 0)
17866 {
17867 /* literal "<SID>", "s:" or "<SNR>" */
17868 *arg += len;
17869 }
17870
Bram Moolenaar071d4272004-06-13 20:20:40 +000017871 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017872 * Find the end of the name; check for {} construction.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017873 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017874 p = find_name_end(*arg, &expr_start, &expr_end,
17875 len > 0 ? 0 : FNE_CHECK_START);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017876 if (expr_start != NULL)
17877 {
17878 char_u *temp_string;
17879
17880 if (!evaluate)
17881 {
17882 len += (int)(p - *arg);
17883 *arg = skipwhite(p);
17884 return len;
17885 }
17886
17887 /*
17888 * Include any <SID> etc in the expanded string:
17889 * Thus the -len here.
17890 */
17891 temp_string = make_expanded_name(*arg - len, expr_start, expr_end, p);
17892 if (temp_string == NULL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017893 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017894 *alias = temp_string;
17895 *arg = skipwhite(p);
17896 return (int)STRLEN(temp_string);
17897 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017898
17899 len += get_id_len(arg);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017900 if (len == 0 && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017901 EMSG2(_(e_invexpr2), *arg);
17902
17903 return len;
17904}
17905
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017906/*
17907 * Find the end of a variable or function name, taking care of magic braces.
17908 * If "expr_start" is not NULL then "expr_start" and "expr_end" are set to the
17909 * start and end of the first magic braces item.
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017910 * "flags" can have FNE_INCL_BR and FNE_CHECK_START.
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017911 * Return a pointer to just after the name. Equal to "arg" if there is no
17912 * valid name.
17913 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017914 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017915find_name_end(arg, expr_start, expr_end, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017916 char_u *arg;
17917 char_u **expr_start;
17918 char_u **expr_end;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017919 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017920{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017921 int mb_nest = 0;
17922 int br_nest = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017923 char_u *p;
17924
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017925 if (expr_start != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017926 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017927 *expr_start = NULL;
17928 *expr_end = NULL;
17929 }
17930
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017931 /* Quick check for valid starting character. */
17932 if ((flags & FNE_CHECK_START) && !eval_isnamec1(*arg) && *arg != '{')
17933 return arg;
17934
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017935 for (p = arg; *p != NUL
17936 && (eval_isnamec(*p)
Bram Moolenaare9a41262005-01-15 22:18:47 +000017937 || *p == '{'
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017938 || ((flags & FNE_INCL_BR) && (*p == '[' || *p == '.'))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017939 || mb_nest != 0
Bram Moolenaar8af24422005-08-08 22:06:28 +000017940 || br_nest != 0); mb_ptr_adv(p))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017941 {
Bram Moolenaar8af24422005-08-08 22:06:28 +000017942 if (*p == '\'')
17943 {
17944 /* skip over 'string' to avoid counting [ and ] inside it. */
17945 for (p = p + 1; *p != NUL && *p != '\''; mb_ptr_adv(p))
17946 ;
17947 if (*p == NUL)
17948 break;
17949 }
17950 else if (*p == '"')
17951 {
17952 /* skip over "str\"ing" to avoid counting [ and ] inside it. */
17953 for (p = p + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
17954 if (*p == '\\' && p[1] != NUL)
17955 ++p;
17956 if (*p == NUL)
17957 break;
17958 }
17959
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017960 if (mb_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017961 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017962 if (*p == '[')
17963 ++br_nest;
17964 else if (*p == ']')
17965 --br_nest;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017966 }
Bram Moolenaar8af24422005-08-08 22:06:28 +000017967
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017968 if (br_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017969 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017970 if (*p == '{')
17971 {
17972 mb_nest++;
17973 if (expr_start != NULL && *expr_start == NULL)
17974 *expr_start = p;
17975 }
17976 else if (*p == '}')
17977 {
17978 mb_nest--;
17979 if (expr_start != NULL && mb_nest == 0 && *expr_end == NULL)
17980 *expr_end = p;
17981 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017982 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017983 }
17984
17985 return p;
17986}
17987
17988/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017989 * Expands out the 'magic' {}'s in a variable/function name.
17990 * Note that this can call itself recursively, to deal with
17991 * constructs like foo{bar}{baz}{bam}
17992 * The four pointer arguments point to "foo{expre}ss{ion}bar"
17993 * "in_start" ^
17994 * "expr_start" ^
17995 * "expr_end" ^
17996 * "in_end" ^
17997 *
17998 * Returns a new allocated string, which the caller must free.
17999 * Returns NULL for failure.
18000 */
18001 static char_u *
18002make_expanded_name(in_start, expr_start, expr_end, in_end)
18003 char_u *in_start;
18004 char_u *expr_start;
18005 char_u *expr_end;
18006 char_u *in_end;
18007{
18008 char_u c1;
18009 char_u *retval = NULL;
18010 char_u *temp_result;
18011 char_u *nextcmd = NULL;
18012
18013 if (expr_end == NULL || in_end == NULL)
18014 return NULL;
18015 *expr_start = NUL;
18016 *expr_end = NUL;
18017 c1 = *in_end;
18018 *in_end = NUL;
18019
Bram Moolenaar362e1a32006-03-06 23:29:24 +000018020 temp_result = eval_to_string(expr_start + 1, &nextcmd, FALSE);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018021 if (temp_result != NULL && nextcmd == NULL)
18022 {
18023 retval = alloc((unsigned)(STRLEN(temp_result) + (expr_start - in_start)
18024 + (in_end - expr_end) + 1));
18025 if (retval != NULL)
18026 {
18027 STRCPY(retval, in_start);
18028 STRCAT(retval, temp_result);
18029 STRCAT(retval, expr_end + 1);
18030 }
18031 }
18032 vim_free(temp_result);
18033
18034 *in_end = c1; /* put char back for error messages */
18035 *expr_start = '{';
18036 *expr_end = '}';
18037
18038 if (retval != NULL)
18039 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018040 temp_result = find_name_end(retval, &expr_start, &expr_end, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018041 if (expr_start != NULL)
18042 {
18043 /* Further expansion! */
18044 temp_result = make_expanded_name(retval, expr_start,
18045 expr_end, temp_result);
18046 vim_free(retval);
18047 retval = temp_result;
18048 }
18049 }
18050
18051 return retval;
18052}
18053
18054/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018055 * Return TRUE if character "c" can be used in a variable or function name.
Bram Moolenaare9a41262005-01-15 22:18:47 +000018056 * Does not include '{' or '}' for magic braces.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018057 */
18058 static int
18059eval_isnamec(c)
18060 int c;
18061{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018062 return (ASCII_ISALNUM(c) || c == '_' || c == ':' || c == AUTOLOAD_CHAR);
18063}
18064
18065/*
18066 * Return TRUE if character "c" can be used as the first character in a
18067 * variable or function name (excluding '{' and '}').
18068 */
18069 static int
18070eval_isnamec1(c)
18071 int c;
18072{
18073 return (ASCII_ISALPHA(c) || c == '_');
Bram Moolenaar071d4272004-06-13 20:20:40 +000018074}
18075
18076/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018077 * Set number v: variable to "val".
18078 */
18079 void
18080set_vim_var_nr(idx, val)
18081 int idx;
18082 long val;
18083{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018084 vimvars[idx].vv_nr = val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018085}
18086
18087/*
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018088 * Get number v: variable value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018089 */
18090 long
18091get_vim_var_nr(idx)
18092 int idx;
18093{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018094 return vimvars[idx].vv_nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018095}
18096
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018097/*
18098 * Get string v: variable value. Uses a static buffer, can only be used once.
18099 */
18100 char_u *
18101get_vim_var_str(idx)
18102 int idx;
18103{
18104 return get_tv_string(&vimvars[idx].vv_tv);
18105}
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018106
Bram Moolenaar071d4272004-06-13 20:20:40 +000018107/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018108 * Get List v: variable value. Caller must take care of reference count when
18109 * needed.
18110 */
18111 list_T *
18112get_vim_var_list(idx)
18113 int idx;
18114{
18115 return vimvars[idx].vv_list;
18116}
18117
18118/*
Bram Moolenaarda9591e2009-09-30 13:17:02 +000018119 * Set v:char to character "c".
18120 */
18121 void
18122set_vim_var_char(c)
18123 int c;
18124{
18125#ifdef FEAT_MBYTE
18126 char_u buf[MB_MAXBYTES];
18127#else
18128 char_u buf[2];
18129#endif
18130
18131#ifdef FEAT_MBYTE
18132 if (has_mbyte)
18133 buf[(*mb_char2bytes)(c, buf)] = NUL;
18134 else
18135#endif
18136 {
18137 buf[0] = c;
18138 buf[1] = NUL;
18139 }
18140 set_vim_var_string(VV_CHAR, buf, -1);
18141}
18142
18143/*
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018144 * Set v:count to "count" and v:count1 to "count1".
18145 * When "set_prevcount" is TRUE first set v:prevcount from v:count.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018146 */
18147 void
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018148set_vcount(count, count1, set_prevcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018149 long count;
18150 long count1;
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018151 int set_prevcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018152{
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018153 if (set_prevcount)
18154 vimvars[VV_PREVCOUNT].vv_nr = vimvars[VV_COUNT].vv_nr;
Bram Moolenaare9a41262005-01-15 22:18:47 +000018155 vimvars[VV_COUNT].vv_nr = count;
18156 vimvars[VV_COUNT1].vv_nr = count1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018157}
18158
18159/*
18160 * Set string v: variable to a copy of "val".
18161 */
18162 void
18163set_vim_var_string(idx, val, len)
18164 int idx;
18165 char_u *val;
18166 int len; /* length of "val" to use or -1 (whole string) */
18167{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018168 /* Need to do this (at least) once, since we can't initialize a union.
18169 * Will always be invoked when "v:progname" is set. */
18170 vimvars[VV_VERSION].vv_nr = VIM_VERSION_100;
18171
Bram Moolenaare9a41262005-01-15 22:18:47 +000018172 vim_free(vimvars[idx].vv_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018173 if (val == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018174 vimvars[idx].vv_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018175 else if (len == -1)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018176 vimvars[idx].vv_str = vim_strsave(val);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018177 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000018178 vimvars[idx].vv_str = vim_strnsave(val, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018179}
18180
18181/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018182 * Set List v: variable to "val".
18183 */
18184 void
18185set_vim_var_list(idx, val)
18186 int idx;
18187 list_T *val;
18188{
18189 list_unref(vimvars[idx].vv_list);
18190 vimvars[idx].vv_list = val;
18191 if (val != NULL)
18192 ++val->lv_refcount;
18193}
18194
18195/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018196 * Set v:register if needed.
18197 */
18198 void
18199set_reg_var(c)
18200 int c;
18201{
18202 char_u regname;
18203
18204 if (c == 0 || c == ' ')
18205 regname = '"';
18206 else
18207 regname = c;
18208 /* Avoid free/alloc when the value is already right. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000018209 if (vimvars[VV_REG].vv_str == NULL || vimvars[VV_REG].vv_str[0] != c)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018210 set_vim_var_string(VV_REG, &regname, 1);
18211}
18212
18213/*
18214 * Get or set v:exception. If "oldval" == NULL, return the current value.
18215 * Otherwise, restore the value to "oldval" and return NULL.
18216 * Must always be called in pairs to save and restore v:exception! Does not
18217 * take care of memory allocations.
18218 */
18219 char_u *
18220v_exception(oldval)
18221 char_u *oldval;
18222{
18223 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018224 return vimvars[VV_EXCEPTION].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018225
Bram Moolenaare9a41262005-01-15 22:18:47 +000018226 vimvars[VV_EXCEPTION].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018227 return NULL;
18228}
18229
18230/*
18231 * Get or set v:throwpoint. If "oldval" == NULL, return the current value.
18232 * Otherwise, restore the value to "oldval" and return NULL.
18233 * Must always be called in pairs to save and restore v:throwpoint! Does not
18234 * take care of memory allocations.
18235 */
18236 char_u *
18237v_throwpoint(oldval)
18238 char_u *oldval;
18239{
18240 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018241 return vimvars[VV_THROWPOINT].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018242
Bram Moolenaare9a41262005-01-15 22:18:47 +000018243 vimvars[VV_THROWPOINT].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018244 return NULL;
18245}
18246
18247#if defined(FEAT_AUTOCMD) || defined(PROTO)
18248/*
18249 * Set v:cmdarg.
18250 * If "eap" != NULL, use "eap" to generate the value and return the old value.
18251 * If "oldarg" != NULL, restore the value to "oldarg" and return NULL.
18252 * Must always be called in pairs!
18253 */
18254 char_u *
18255set_cmdarg(eap, oldarg)
18256 exarg_T *eap;
18257 char_u *oldarg;
18258{
18259 char_u *oldval;
18260 char_u *newval;
18261 unsigned len;
18262
Bram Moolenaare9a41262005-01-15 22:18:47 +000018263 oldval = vimvars[VV_CMDARG].vv_str;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018264 if (eap == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018265 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018266 vim_free(oldval);
Bram Moolenaare9a41262005-01-15 22:18:47 +000018267 vimvars[VV_CMDARG].vv_str = oldarg;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018268 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018269 }
18270
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018271 if (eap->force_bin == FORCE_BIN)
18272 len = 6;
18273 else if (eap->force_bin == FORCE_NOBIN)
18274 len = 8;
18275 else
18276 len = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018277
18278 if (eap->read_edit)
18279 len += 7;
18280
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018281 if (eap->force_ff != 0)
18282 len += (unsigned)STRLEN(eap->cmd + eap->force_ff) + 6;
18283# ifdef FEAT_MBYTE
18284 if (eap->force_enc != 0)
18285 len += (unsigned)STRLEN(eap->cmd + eap->force_enc) + 7;
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018286 if (eap->bad_char != 0)
18287 len += (unsigned)STRLEN(eap->cmd + eap->bad_char) + 7;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018288# endif
18289
18290 newval = alloc(len + 1);
18291 if (newval == NULL)
18292 return NULL;
18293
18294 if (eap->force_bin == FORCE_BIN)
18295 sprintf((char *)newval, " ++bin");
18296 else if (eap->force_bin == FORCE_NOBIN)
18297 sprintf((char *)newval, " ++nobin");
18298 else
18299 *newval = NUL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018300
18301 if (eap->read_edit)
18302 STRCAT(newval, " ++edit");
18303
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018304 if (eap->force_ff != 0)
18305 sprintf((char *)newval + STRLEN(newval), " ++ff=%s",
18306 eap->cmd + eap->force_ff);
18307# ifdef FEAT_MBYTE
18308 if (eap->force_enc != 0)
18309 sprintf((char *)newval + STRLEN(newval), " ++enc=%s",
18310 eap->cmd + eap->force_enc);
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018311 if (eap->bad_char != 0)
18312 sprintf((char *)newval + STRLEN(newval), " ++bad=%s",
18313 eap->cmd + eap->bad_char);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018314# endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000018315 vimvars[VV_CMDARG].vv_str = newval;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018316 return oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018317}
18318#endif
18319
18320/*
18321 * Get the value of internal variable "name".
18322 * Return OK or FAIL.
18323 */
18324 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018325get_var_tv(name, len, rettv, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018326 char_u *name;
18327 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +000018328 typval_T *rettv; /* NULL when only checking existence */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018329 int verbose; /* may give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018330{
18331 int ret = OK;
Bram Moolenaar33570922005-01-25 22:26:29 +000018332 typval_T *tv = NULL;
18333 typval_T atv;
18334 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018335 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018336
18337 /* truncate the name, so that we can use strcmp() */
18338 cc = name[len];
18339 name[len] = NUL;
18340
18341 /*
18342 * Check for "b:changedtick".
18343 */
18344 if (STRCMP(name, "b:changedtick") == 0)
18345 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000018346 atv.v_type = VAR_NUMBER;
18347 atv.vval.v_number = curbuf->b_changedtick;
18348 tv = &atv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018349 }
18350
18351 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018352 * Check for user-defined variables.
18353 */
18354 else
18355 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018356 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018357 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018358 tv = &v->di_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018359 }
18360
Bram Moolenaare9a41262005-01-15 22:18:47 +000018361 if (tv == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018362 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018363 if (rettv != NULL && verbose)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018364 EMSG2(_(e_undefvar), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018365 ret = FAIL;
18366 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018367 else if (rettv != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018368 copy_tv(tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018369
18370 name[len] = cc;
18371
18372 return ret;
18373}
18374
18375/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018376 * Handle expr[expr], expr[expr:expr] subscript and .name lookup.
18377 * Also handle function call with Funcref variable: func(expr)
18378 * Can all be combined: dict.func(expr)[idx]['func'](expr)
18379 */
18380 static int
18381handle_subscript(arg, rettv, evaluate, verbose)
18382 char_u **arg;
18383 typval_T *rettv;
18384 int evaluate; /* do more than finding the end */
18385 int verbose; /* give error messages */
18386{
18387 int ret = OK;
18388 dict_T *selfdict = NULL;
18389 char_u *s;
18390 int len;
Bram Moolenaard9fba312005-06-26 22:34:35 +000018391 typval_T functv;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018392
18393 while (ret == OK
18394 && (**arg == '['
18395 || (**arg == '.' && rettv->v_type == VAR_DICT)
18396 || (**arg == '(' && rettv->v_type == VAR_FUNC))
18397 && !vim_iswhite(*(*arg - 1)))
18398 {
18399 if (**arg == '(')
18400 {
Bram Moolenaard9fba312005-06-26 22:34:35 +000018401 /* need to copy the funcref so that we can clear rettv */
18402 functv = *rettv;
18403 rettv->v_type = VAR_UNKNOWN;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018404
18405 /* Invoke the function. Recursive! */
Bram Moolenaard9fba312005-06-26 22:34:35 +000018406 s = functv.vval.v_string;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018407 ret = get_func_tv(s, (int)STRLEN(s), rettv, arg,
Bram Moolenaard9fba312005-06-26 22:34:35 +000018408 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
18409 &len, evaluate, selfdict);
18410
18411 /* Clear the funcref afterwards, so that deleting it while
18412 * evaluating the arguments is possible (see test55). */
18413 clear_tv(&functv);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018414
18415 /* Stop the expression evaluation when immediately aborting on
18416 * error, or when an interrupt occurred or an exception was thrown
18417 * but not caught. */
18418 if (aborting())
18419 {
18420 if (ret == OK)
18421 clear_tv(rettv);
18422 ret = FAIL;
18423 }
18424 dict_unref(selfdict);
18425 selfdict = NULL;
18426 }
18427 else /* **arg == '[' || **arg == '.' */
18428 {
18429 dict_unref(selfdict);
18430 if (rettv->v_type == VAR_DICT)
18431 {
18432 selfdict = rettv->vval.v_dict;
18433 if (selfdict != NULL)
18434 ++selfdict->dv_refcount;
18435 }
18436 else
18437 selfdict = NULL;
18438 if (eval_index(arg, rettv, evaluate, verbose) == FAIL)
18439 {
18440 clear_tv(rettv);
18441 ret = FAIL;
18442 }
18443 }
18444 }
18445 dict_unref(selfdict);
18446 return ret;
18447}
18448
18449/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018450 * Allocate memory for a variable type-value, and make it empty (0 or NULL
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018451 * value).
18452 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018453 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018454alloc_tv()
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018455{
Bram Moolenaar33570922005-01-25 22:26:29 +000018456 return (typval_T *)alloc_clear((unsigned)sizeof(typval_T));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018457}
18458
18459/*
18460 * Allocate memory for a variable type-value, and assign a string to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018461 * The string "s" must have been allocated, it is consumed.
18462 * Return NULL for out of memory, the variable otherwise.
18463 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018464 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018465alloc_string_tv(s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018466 char_u *s;
18467{
Bram Moolenaar33570922005-01-25 22:26:29 +000018468 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018469
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018470 rettv = alloc_tv();
18471 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018472 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018473 rettv->v_type = VAR_STRING;
18474 rettv->vval.v_string = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018475 }
18476 else
18477 vim_free(s);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018478 return rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018479}
18480
18481/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018482 * Free the memory for a variable type-value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018483 */
Bram Moolenaar4770d092006-01-12 23:22:24 +000018484 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018485free_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018486 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018487{
18488 if (varp != NULL)
18489 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018490 switch (varp->v_type)
18491 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018492 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018493 func_unref(varp->vval.v_string);
18494 /*FALLTHROUGH*/
18495 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018496 vim_free(varp->vval.v_string);
18497 break;
18498 case VAR_LIST:
18499 list_unref(varp->vval.v_list);
18500 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018501 case VAR_DICT:
18502 dict_unref(varp->vval.v_dict);
18503 break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000018504 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018505#ifdef FEAT_FLOAT
18506 case VAR_FLOAT:
18507#endif
Bram Moolenaar758711c2005-02-02 23:11:38 +000018508 case VAR_UNKNOWN:
18509 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018510 default:
Bram Moolenaar758711c2005-02-02 23:11:38 +000018511 EMSG2(_(e_intern2), "free_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018512 break;
18513 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018514 vim_free(varp);
18515 }
18516}
18517
18518/*
18519 * Free the memory for a variable value and set the value to NULL or 0.
18520 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018521 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018522clear_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018523 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018524{
18525 if (varp != NULL)
18526 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018527 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018528 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018529 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018530 func_unref(varp->vval.v_string);
18531 /*FALLTHROUGH*/
18532 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018533 vim_free(varp->vval.v_string);
18534 varp->vval.v_string = NULL;
18535 break;
18536 case VAR_LIST:
18537 list_unref(varp->vval.v_list);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018538 varp->vval.v_list = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018539 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018540 case VAR_DICT:
18541 dict_unref(varp->vval.v_dict);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018542 varp->vval.v_dict = NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018543 break;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018544 case VAR_NUMBER:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018545 varp->vval.v_number = 0;
18546 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018547#ifdef FEAT_FLOAT
18548 case VAR_FLOAT:
18549 varp->vval.v_float = 0.0;
18550 break;
18551#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018552 case VAR_UNKNOWN:
18553 break;
18554 default:
18555 EMSG2(_(e_intern2), "clear_tv()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000018556 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018557 varp->v_lock = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018558 }
18559}
18560
18561/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018562 * Set the value of a variable to NULL without freeing items.
18563 */
18564 static void
18565init_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018566 typval_T *varp;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018567{
18568 if (varp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018569 vim_memset(varp, 0, sizeof(typval_T));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018570}
18571
18572/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018573 * Get the number value of a variable.
18574 * If it is a String variable, uses vim_str2nr().
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018575 * For incompatible types, return 0.
18576 * get_tv_number_chk() is similar to get_tv_number(), but informs the
18577 * caller of incompatible types: it sets *denote to TRUE if "denote"
18578 * is not NULL or returns -1 otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018579 */
18580 static long
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018581get_tv_number(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018582 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018583{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018584 int error = FALSE;
18585
18586 return get_tv_number_chk(varp, &error); /* return 0L on error */
18587}
18588
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018589 long
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018590get_tv_number_chk(varp, denote)
18591 typval_T *varp;
18592 int *denote;
18593{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018594 long n = 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018595
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018596 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018597 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018598 case VAR_NUMBER:
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018599 return (long)(varp->vval.v_number);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018600#ifdef FEAT_FLOAT
18601 case VAR_FLOAT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018602 EMSG(_("E805: Using a Float as a Number"));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018603 break;
18604#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018605 case VAR_FUNC:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018606 EMSG(_("E703: Using a Funcref as a Number"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018607 break;
18608 case VAR_STRING:
18609 if (varp->vval.v_string != NULL)
18610 vim_str2nr(varp->vval.v_string, NULL, NULL,
18611 TRUE, TRUE, &n, NULL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018612 return n;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018613 case VAR_LIST:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018614 EMSG(_("E745: Using a List as a Number"));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018615 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018616 case VAR_DICT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018617 EMSG(_("E728: Using a Dictionary as a Number"));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018618 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018619 default:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018620 EMSG2(_(e_intern2), "get_tv_number()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018621 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018622 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018623 if (denote == NULL) /* useful for values that must be unsigned */
18624 n = -1;
18625 else
18626 *denote = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018627 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018628}
18629
18630/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018631 * Get the lnum from the first argument.
18632 * Also accepts ".", "$", etc., but that only works for the current buffer.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018633 * Returns -1 on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018634 */
18635 static linenr_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018636get_tv_lnum(argvars)
Bram Moolenaar33570922005-01-25 22:26:29 +000018637 typval_T *argvars;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018638{
Bram Moolenaar33570922005-01-25 22:26:29 +000018639 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018640 linenr_T lnum;
18641
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018642 lnum = get_tv_number_chk(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018643 if (lnum == 0) /* no valid number, try using line() */
18644 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018645 rettv.v_type = VAR_NUMBER;
18646 f_line(argvars, &rettv);
18647 lnum = rettv.vval.v_number;
18648 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018649 }
18650 return lnum;
18651}
18652
18653/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018654 * Get the lnum from the first argument.
18655 * Also accepts "$", then "buf" is used.
18656 * Returns 0 on error.
18657 */
18658 static linenr_T
18659get_tv_lnum_buf(argvars, buf)
18660 typval_T *argvars;
18661 buf_T *buf;
18662{
18663 if (argvars[0].v_type == VAR_STRING
18664 && argvars[0].vval.v_string != NULL
18665 && argvars[0].vval.v_string[0] == '$'
18666 && buf != NULL)
18667 return buf->b_ml.ml_line_count;
18668 return get_tv_number_chk(&argvars[0], NULL);
18669}
18670
18671/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018672 * Get the string value of a variable.
18673 * If it is a Number variable, the number is converted into a string.
Bram Moolenaara7043832005-01-21 11:56:39 +000018674 * get_tv_string() uses a single, static buffer. YOU CAN ONLY USE IT ONCE!
18675 * get_tv_string_buf() uses a given buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018676 * If the String variable has never been set, return an empty string.
18677 * Never returns NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018678 * get_tv_string_chk() and get_tv_string_buf_chk() are similar, but return
18679 * NULL on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018680 */
18681 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018682get_tv_string(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018683 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018684{
18685 static char_u mybuf[NUMBUFLEN];
18686
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018687 return get_tv_string_buf(varp, mybuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018688}
18689
18690 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018691get_tv_string_buf(varp, buf)
Bram Moolenaar33570922005-01-25 22:26:29 +000018692 typval_T *varp;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018693 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018694{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018695 char_u *res = get_tv_string_buf_chk(varp, buf);
18696
18697 return res != NULL ? res : (char_u *)"";
18698}
18699
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018700 char_u *
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018701get_tv_string_chk(varp)
18702 typval_T *varp;
18703{
18704 static char_u mybuf[NUMBUFLEN];
18705
18706 return get_tv_string_buf_chk(varp, mybuf);
18707}
18708
18709 static char_u *
18710get_tv_string_buf_chk(varp, buf)
18711 typval_T *varp;
18712 char_u *buf;
18713{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018714 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018715 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018716 case VAR_NUMBER:
18717 sprintf((char *)buf, "%ld", (long)varp->vval.v_number);
18718 return buf;
18719 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018720 EMSG(_("E729: using Funcref as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018721 break;
18722 case VAR_LIST:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018723 EMSG(_("E730: using List as a String"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000018724 break;
18725 case VAR_DICT:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018726 EMSG(_("E731: using Dictionary as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018727 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018728#ifdef FEAT_FLOAT
18729 case VAR_FLOAT:
18730 EMSG(_("E806: using Float as a String"));
18731 break;
18732#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018733 case VAR_STRING:
18734 if (varp->vval.v_string != NULL)
18735 return varp->vval.v_string;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018736 return (char_u *)"";
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018737 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018738 EMSG2(_(e_intern2), "get_tv_string_buf()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018739 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018740 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018741 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018742}
18743
18744/*
18745 * Find variable "name" in the list of variables.
18746 * Return a pointer to it if found, NULL if not found.
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018747 * Careful: "a:0" variables don't have a name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018748 * When "htp" is not NULL we are writing to the variable, set "htp" to the
Bram Moolenaar33570922005-01-25 22:26:29 +000018749 * hashtab_T used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018750 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018751 static dictitem_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018752find_var(name, htp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018753 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000018754 hashtab_T **htp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018755{
Bram Moolenaar071d4272004-06-13 20:20:40 +000018756 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000018757 hashtab_T *ht;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018758
Bram Moolenaara7043832005-01-21 11:56:39 +000018759 ht = find_var_ht(name, &varname);
18760 if (htp != NULL)
18761 *htp = ht;
18762 if (ht == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018763 return NULL;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018764 return find_var_in_ht(ht, varname, htp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018765}
18766
18767/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018768 * Find variable "varname" in hashtab "ht".
Bram Moolenaara7043832005-01-21 11:56:39 +000018769 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018770 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018771 static dictitem_T *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018772find_var_in_ht(ht, varname, writing)
Bram Moolenaar33570922005-01-25 22:26:29 +000018773 hashtab_T *ht;
Bram Moolenaara7043832005-01-21 11:56:39 +000018774 char_u *varname;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018775 int writing;
Bram Moolenaara7043832005-01-21 11:56:39 +000018776{
Bram Moolenaar33570922005-01-25 22:26:29 +000018777 hashitem_T *hi;
18778
18779 if (*varname == NUL)
18780 {
18781 /* Must be something like "s:", otherwise "ht" would be NULL. */
18782 switch (varname[-2])
18783 {
18784 case 's': return &SCRIPT_SV(current_SID).sv_var;
18785 case 'g': return &globvars_var;
18786 case 'v': return &vimvars_var;
18787 case 'b': return &curbuf->b_bufvar;
18788 case 'w': return &curwin->w_winvar;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018789#ifdef FEAT_WINDOWS
18790 case 't': return &curtab->tp_winvar;
18791#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000018792 case 'l': return current_funccal == NULL
18793 ? NULL : &current_funccal->l_vars_var;
18794 case 'a': return current_funccal == NULL
18795 ? NULL : &current_funccal->l_avars_var;
Bram Moolenaar33570922005-01-25 22:26:29 +000018796 }
18797 return NULL;
18798 }
Bram Moolenaara7043832005-01-21 11:56:39 +000018799
18800 hi = hash_find(ht, varname);
18801 if (HASHITEM_EMPTY(hi))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018802 {
18803 /* For global variables we may try auto-loading the script. If it
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018804 * worked find the variable again. Don't auto-load a script if it was
18805 * loaded already, otherwise it would be loaded every time when
18806 * checking if a function name is a Funcref variable. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018807 if (ht == &globvarht && !writing
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018808 && script_autoload(varname, FALSE) && !aborting())
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018809 hi = hash_find(ht, varname);
18810 if (HASHITEM_EMPTY(hi))
18811 return NULL;
18812 }
Bram Moolenaar33570922005-01-25 22:26:29 +000018813 return HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000018814}
18815
18816/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018817 * Find the hashtab used for a variable name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018818 * Set "varname" to the start of name without ':'.
18819 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018820 static hashtab_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018821find_var_ht(name, varname)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018822 char_u *name;
18823 char_u **varname;
18824{
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018825 hashitem_T *hi;
18826
Bram Moolenaar071d4272004-06-13 20:20:40 +000018827 if (name[1] != ':')
18828 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018829 /* The name must not start with a colon or #. */
18830 if (name[0] == ':' || name[0] == AUTOLOAD_CHAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018831 return NULL;
18832 *varname = name;
Bram Moolenaar532c7802005-01-27 14:44:31 +000018833
18834 /* "version" is "v:version" in all scopes */
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018835 hi = hash_find(&compat_hashtab, name);
18836 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar532c7802005-01-27 14:44:31 +000018837 return &compat_hashtab;
18838
Bram Moolenaar071d4272004-06-13 20:20:40 +000018839 if (current_funccal == NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018840 return &globvarht; /* global variable */
18841 return &current_funccal->l_vars.dv_hashtab; /* l: variable */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018842 }
18843 *varname = name + 2;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018844 if (*name == 'g') /* global variable */
18845 return &globvarht;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018846 /* There must be no ':' or '#' in the rest of the name, unless g: is used
18847 */
18848 if (vim_strchr(name + 2, ':') != NULL
18849 || vim_strchr(name + 2, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018850 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018851 if (*name == 'b') /* buffer variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018852 return &curbuf->b_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018853 if (*name == 'w') /* window variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018854 return &curwin->w_vars.dv_hashtab;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018855#ifdef FEAT_WINDOWS
18856 if (*name == 't') /* tab page variable */
18857 return &curtab->tp_vars.dv_hashtab;
18858#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000018859 if (*name == 'v') /* v: variable */
18860 return &vimvarht;
18861 if (*name == 'a' && current_funccal != NULL) /* function argument */
18862 return &current_funccal->l_avars.dv_hashtab;
18863 if (*name == 'l' && current_funccal != NULL) /* local function variable */
18864 return &current_funccal->l_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018865 if (*name == 's' /* script variable */
18866 && current_SID > 0 && current_SID <= ga_scripts.ga_len)
18867 return &SCRIPT_VARS(current_SID);
18868 return NULL;
18869}
18870
18871/*
18872 * Get the string value of a (global/local) variable.
18873 * Returns NULL when it doesn't exist.
18874 */
18875 char_u *
18876get_var_value(name)
18877 char_u *name;
18878{
Bram Moolenaar33570922005-01-25 22:26:29 +000018879 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018880
Bram Moolenaara7043832005-01-21 11:56:39 +000018881 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018882 if (v == NULL)
18883 return NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000018884 return get_tv_string(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018885}
18886
18887/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018888 * Allocate a new hashtab for a sourced script. It will be used while
Bram Moolenaar071d4272004-06-13 20:20:40 +000018889 * sourcing this script and when executing functions defined in the script.
18890 */
18891 void
18892new_script_vars(id)
18893 scid_T id;
18894{
Bram Moolenaara7043832005-01-21 11:56:39 +000018895 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +000018896 hashtab_T *ht;
18897 scriptvar_T *sv;
Bram Moolenaara7043832005-01-21 11:56:39 +000018898
Bram Moolenaar071d4272004-06-13 20:20:40 +000018899 if (ga_grow(&ga_scripts, (int)(id - ga_scripts.ga_len)) == OK)
18900 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018901 /* Re-allocating ga_data means that an ht_array pointing to
18902 * ht_smallarray becomes invalid. We can recognize this: ht_mask is
Bram Moolenaar33570922005-01-25 22:26:29 +000018903 * at its init value. Also reset "v_dict", it's always the same. */
Bram Moolenaara7043832005-01-21 11:56:39 +000018904 for (i = 1; i <= ga_scripts.ga_len; ++i)
18905 {
18906 ht = &SCRIPT_VARS(i);
18907 if (ht->ht_mask == HT_INIT_SIZE - 1)
18908 ht->ht_array = ht->ht_smallarray;
Bram Moolenaar33570922005-01-25 22:26:29 +000018909 sv = &SCRIPT_SV(i);
18910 sv->sv_var.di_tv.vval.v_dict = &sv->sv_dict;
Bram Moolenaara7043832005-01-21 11:56:39 +000018911 }
18912
Bram Moolenaar071d4272004-06-13 20:20:40 +000018913 while (ga_scripts.ga_len < id)
18914 {
Bram Moolenaar33570922005-01-25 22:26:29 +000018915 sv = &SCRIPT_SV(ga_scripts.ga_len + 1);
18916 init_var_dict(&sv->sv_dict, &sv->sv_var);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018917 ++ga_scripts.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018918 }
18919 }
18920}
18921
18922/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018923 * Initialize dictionary "dict" as a scope and set variable "dict_var" to
18924 * point to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018925 */
18926 void
Bram Moolenaar33570922005-01-25 22:26:29 +000018927init_var_dict(dict, dict_var)
18928 dict_T *dict;
18929 dictitem_T *dict_var;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018930{
Bram Moolenaar33570922005-01-25 22:26:29 +000018931 hash_init(&dict->dv_hashtab);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000018932 dict->dv_refcount = DO_NOT_FREE_CNT;
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +000018933 dict->dv_copyID = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000018934 dict_var->di_tv.vval.v_dict = dict;
18935 dict_var->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018936 dict_var->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000018937 dict_var->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
18938 dict_var->di_key[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018939}
18940
18941/*
18942 * Clean up a list of internal variables.
Bram Moolenaar33570922005-01-25 22:26:29 +000018943 * Frees all allocated variables and the value they contain.
18944 * Clears hashtab "ht", does not free it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018945 */
18946 void
Bram Moolenaara7043832005-01-21 11:56:39 +000018947vars_clear(ht)
Bram Moolenaar33570922005-01-25 22:26:29 +000018948 hashtab_T *ht;
18949{
18950 vars_clear_ext(ht, TRUE);
18951}
18952
18953/*
18954 * Like vars_clear(), but only free the value if "free_val" is TRUE.
18955 */
18956 static void
18957vars_clear_ext(ht, free_val)
18958 hashtab_T *ht;
18959 int free_val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018960{
Bram Moolenaara7043832005-01-21 11:56:39 +000018961 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000018962 hashitem_T *hi;
18963 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018964
Bram Moolenaar33570922005-01-25 22:26:29 +000018965 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018966 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +000018967 for (hi = ht->ht_array; todo > 0; ++hi)
18968 {
18969 if (!HASHITEM_EMPTY(hi))
18970 {
18971 --todo;
18972
Bram Moolenaar33570922005-01-25 22:26:29 +000018973 /* Free the variable. Don't remove it from the hashtab,
Bram Moolenaara7043832005-01-21 11:56:39 +000018974 * ht_array might change then. hash_clear() takes care of it
18975 * later. */
Bram Moolenaar33570922005-01-25 22:26:29 +000018976 v = HI2DI(hi);
18977 if (free_val)
18978 clear_tv(&v->di_tv);
18979 if ((v->di_flags & DI_FLAGS_FIX) == 0)
18980 vim_free(v);
Bram Moolenaara7043832005-01-21 11:56:39 +000018981 }
18982 }
18983 hash_clear(ht);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000018984 ht->ht_used = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018985}
18986
Bram Moolenaara7043832005-01-21 11:56:39 +000018987/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018988 * Delete a variable from hashtab "ht" at item "hi".
18989 * Clear the variable value and free the dictitem.
Bram Moolenaara7043832005-01-21 11:56:39 +000018990 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018991 static void
Bram Moolenaara7043832005-01-21 11:56:39 +000018992delete_var(ht, hi)
Bram Moolenaar33570922005-01-25 22:26:29 +000018993 hashtab_T *ht;
18994 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018995{
Bram Moolenaar33570922005-01-25 22:26:29 +000018996 dictitem_T *di = HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000018997
18998 hash_remove(ht, hi);
Bram Moolenaar33570922005-01-25 22:26:29 +000018999 clear_tv(&di->di_tv);
19000 vim_free(di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019001}
19002
19003/*
19004 * List the value of one internal variable.
19005 */
19006 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019007list_one_var(v, prefix, first)
Bram Moolenaar33570922005-01-25 22:26:29 +000019008 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019009 char_u *prefix;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019010 int *first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019011{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019012 char_u *tofree;
19013 char_u *s;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019014 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019015
Bram Moolenaar2c2398c2009-06-03 11:22:45 +000019016 current_copyID += COPYID_INC;
19017 s = echo_string(&v->di_tv, &tofree, numbuf, current_copyID);
Bram Moolenaar33570922005-01-25 22:26:29 +000019018 list_one_var_a(prefix, v->di_key, v->di_tv.v_type,
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019019 s == NULL ? (char_u *)"" : s, first);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019020 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019021}
19022
Bram Moolenaar071d4272004-06-13 20:20:40 +000019023 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019024list_one_var_a(prefix, name, type, string, first)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019025 char_u *prefix;
19026 char_u *name;
19027 int type;
19028 char_u *string;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019029 int *first; /* when TRUE clear rest of screen and set to FALSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019030{
Bram Moolenaar31859182007-08-14 20:41:13 +000019031 /* don't use msg() or msg_attr() to avoid overwriting "v:statusmsg" */
19032 msg_start();
19033 msg_puts(prefix);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019034 if (name != NULL) /* "a:" vars don't have a name stored */
19035 msg_puts(name);
19036 msg_putchar(' ');
19037 msg_advance(22);
19038 if (type == VAR_NUMBER)
19039 msg_putchar('#');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019040 else if (type == VAR_FUNC)
19041 msg_putchar('*');
19042 else if (type == VAR_LIST)
19043 {
19044 msg_putchar('[');
19045 if (*string == '[')
19046 ++string;
19047 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000019048 else if (type == VAR_DICT)
19049 {
19050 msg_putchar('{');
19051 if (*string == '{')
19052 ++string;
19053 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019054 else
19055 msg_putchar(' ');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019056
Bram Moolenaar071d4272004-06-13 20:20:40 +000019057 msg_outtrans(string);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019058
19059 if (type == VAR_FUNC)
19060 msg_puts((char_u *)"()");
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019061 if (*first)
19062 {
19063 msg_clr_eos();
19064 *first = FALSE;
19065 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019066}
19067
19068/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019069 * Set variable "name" to value in "tv".
Bram Moolenaar071d4272004-06-13 20:20:40 +000019070 * If the variable already exists, the value is updated.
19071 * Otherwise the variable is created.
19072 */
19073 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019074set_var(name, tv, copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019075 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000019076 typval_T *tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019077 int copy; /* make copy of value in "tv" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019078{
Bram Moolenaar33570922005-01-25 22:26:29 +000019079 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019080 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000019081 hashtab_T *ht;
Bram Moolenaar92124a32005-06-17 22:03:40 +000019082 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019083
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019084 if (tv->v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019085 {
19086 if (!(vim_strchr((char_u *)"wbs", name[0]) != NULL && name[1] == ':')
19087 && !ASCII_ISUPPER((name[0] != NUL && name[1] == ':')
19088 ? name[2] : name[0]))
19089 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019090 EMSG2(_("E704: Funcref variable name must start with a capital: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019091 return;
19092 }
19093 if (function_exists(name))
19094 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000019095 EMSG2(_("E705: Variable name conflicts with existing function: %s"),
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019096 name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019097 return;
19098 }
19099 }
19100
Bram Moolenaara7043832005-01-21 11:56:39 +000019101 ht = find_var_ht(name, &varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019102 if (ht == NULL || *varname == NUL)
Bram Moolenaara7043832005-01-21 11:56:39 +000019103 {
Bram Moolenaar92124a32005-06-17 22:03:40 +000019104 EMSG2(_(e_illvar), name);
Bram Moolenaara7043832005-01-21 11:56:39 +000019105 return;
19106 }
19107
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019108 v = find_var_in_ht(ht, varname, TRUE);
Bram Moolenaar33570922005-01-25 22:26:29 +000019109 if (v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019110 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019111 /* existing variable, need to clear the value */
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019112 if (var_check_ro(v->di_flags, name)
19113 || tv_check_lock(v->di_tv.v_lock, name))
Bram Moolenaar33570922005-01-25 22:26:29 +000019114 return;
19115 if (v->di_tv.v_type != tv->v_type
19116 && !((v->di_tv.v_type == VAR_STRING
19117 || v->di_tv.v_type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019118 && (tv->v_type == VAR_STRING
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019119 || tv->v_type == VAR_NUMBER))
19120#ifdef FEAT_FLOAT
19121 && !((v->di_tv.v_type == VAR_NUMBER
19122 || v->di_tv.v_type == VAR_FLOAT)
19123 && (tv->v_type == VAR_NUMBER
19124 || tv->v_type == VAR_FLOAT))
19125#endif
19126 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019127 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019128 EMSG2(_("E706: Variable type mismatch for: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019129 return;
19130 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019131
19132 /*
Bram Moolenaar758711c2005-02-02 23:11:38 +000019133 * Handle setting internal v: variables separately: we don't change
19134 * the type.
Bram Moolenaar33570922005-01-25 22:26:29 +000019135 */
19136 if (ht == &vimvarht)
19137 {
19138 if (v->di_tv.v_type == VAR_STRING)
19139 {
19140 vim_free(v->di_tv.vval.v_string);
19141 if (copy || tv->v_type != VAR_STRING)
19142 v->di_tv.vval.v_string = vim_strsave(get_tv_string(tv));
19143 else
19144 {
19145 /* Take over the string to avoid an extra alloc/free. */
19146 v->di_tv.vval.v_string = tv->vval.v_string;
19147 tv->vval.v_string = NULL;
19148 }
19149 }
19150 else if (v->di_tv.v_type != VAR_NUMBER)
19151 EMSG2(_(e_intern2), "set_var()");
19152 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019153 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019154 v->di_tv.vval.v_number = get_tv_number(tv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019155 if (STRCMP(varname, "searchforward") == 0)
19156 set_search_direction(v->di_tv.vval.v_number ? '/' : '?');
19157 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019158 return;
19159 }
19160
19161 clear_tv(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019162 }
19163 else /* add a new variable */
19164 {
Bram Moolenaar5fcc3fe2006-06-22 15:35:14 +000019165 /* Can't add "v:" variable. */
19166 if (ht == &vimvarht)
19167 {
19168 EMSG2(_(e_illvar), name);
19169 return;
19170 }
19171
Bram Moolenaar92124a32005-06-17 22:03:40 +000019172 /* Make sure the variable name is valid. */
19173 for (p = varname; *p != NUL; ++p)
Bram Moolenaara5792f52005-11-23 21:25:05 +000019174 if (!eval_isnamec1(*p) && (p == varname || !VIM_ISDIGIT(*p))
19175 && *p != AUTOLOAD_CHAR)
Bram Moolenaar92124a32005-06-17 22:03:40 +000019176 {
19177 EMSG2(_(e_illvar), varname);
19178 return;
19179 }
19180
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019181 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
19182 + STRLEN(varname)));
Bram Moolenaara7043832005-01-21 11:56:39 +000019183 if (v == NULL)
19184 return;
Bram Moolenaar33570922005-01-25 22:26:29 +000019185 STRCPY(v->di_key, varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019186 if (hash_add(ht, DI2HIKEY(v)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019187 {
Bram Moolenaara7043832005-01-21 11:56:39 +000019188 vim_free(v);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019189 return;
19190 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019191 v->di_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019192 }
Bram Moolenaara7043832005-01-21 11:56:39 +000019193
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019194 if (copy || tv->v_type == VAR_NUMBER || tv->v_type == VAR_FLOAT)
Bram Moolenaar33570922005-01-25 22:26:29 +000019195 copy_tv(tv, &v->di_tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019196 else
19197 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019198 v->di_tv = *tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019199 v->di_tv.v_lock = 0;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019200 init_tv(tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019201 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019202}
19203
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019204/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019205 * Return TRUE if di_flags "flags" indicates variable "name" is read-only.
Bram Moolenaar33570922005-01-25 22:26:29 +000019206 * Also give an error message.
19207 */
19208 static int
19209var_check_ro(flags, name)
19210 int flags;
19211 char_u *name;
19212{
19213 if (flags & DI_FLAGS_RO)
19214 {
19215 EMSG2(_(e_readonlyvar), name);
19216 return TRUE;
19217 }
19218 if ((flags & DI_FLAGS_RO_SBX) && sandbox)
19219 {
19220 EMSG2(_(e_readonlysbx), name);
19221 return TRUE;
19222 }
19223 return FALSE;
19224}
19225
19226/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019227 * Return TRUE if di_flags "flags" indicates variable "name" is fixed.
19228 * Also give an error message.
19229 */
19230 static int
19231var_check_fixed(flags, name)
19232 int flags;
19233 char_u *name;
19234{
19235 if (flags & DI_FLAGS_FIX)
19236 {
19237 EMSG2(_("E795: Cannot delete variable %s"), name);
19238 return TRUE;
19239 }
19240 return FALSE;
19241}
19242
19243/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019244 * Return TRUE if typeval "tv" is set to be locked (immutable).
19245 * Also give an error message, using "name".
19246 */
19247 static int
19248tv_check_lock(lock, name)
19249 int lock;
19250 char_u *name;
19251{
19252 if (lock & VAR_LOCKED)
19253 {
19254 EMSG2(_("E741: Value is locked: %s"),
19255 name == NULL ? (char_u *)_("Unknown") : name);
19256 return TRUE;
19257 }
19258 if (lock & VAR_FIXED)
19259 {
19260 EMSG2(_("E742: Cannot change value of %s"),
19261 name == NULL ? (char_u *)_("Unknown") : name);
19262 return TRUE;
19263 }
19264 return FALSE;
19265}
19266
19267/*
Bram Moolenaar33570922005-01-25 22:26:29 +000019268 * Copy the values from typval_T "from" to typval_T "to".
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019269 * When needed allocates string or increases reference count.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019270 * Does not make a copy of a list or dict but copies the reference!
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000019271 * It is OK for "from" and "to" to point to the same item. This is used to
19272 * make a copy later.
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019273 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019274 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019275copy_tv(from, to)
Bram Moolenaar33570922005-01-25 22:26:29 +000019276 typval_T *from;
19277 typval_T *to;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019278{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019279 to->v_type = from->v_type;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019280 to->v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019281 switch (from->v_type)
19282 {
19283 case VAR_NUMBER:
19284 to->vval.v_number = from->vval.v_number;
19285 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019286#ifdef FEAT_FLOAT
19287 case VAR_FLOAT:
19288 to->vval.v_float = from->vval.v_float;
19289 break;
19290#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019291 case VAR_STRING:
19292 case VAR_FUNC:
19293 if (from->vval.v_string == NULL)
19294 to->vval.v_string = NULL;
19295 else
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019296 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019297 to->vval.v_string = vim_strsave(from->vval.v_string);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019298 if (from->v_type == VAR_FUNC)
19299 func_ref(to->vval.v_string);
19300 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019301 break;
19302 case VAR_LIST:
19303 if (from->vval.v_list == NULL)
19304 to->vval.v_list = NULL;
19305 else
19306 {
19307 to->vval.v_list = from->vval.v_list;
19308 ++to->vval.v_list->lv_refcount;
19309 }
19310 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000019311 case VAR_DICT:
19312 if (from->vval.v_dict == NULL)
19313 to->vval.v_dict = NULL;
19314 else
19315 {
19316 to->vval.v_dict = from->vval.v_dict;
19317 ++to->vval.v_dict->dv_refcount;
19318 }
19319 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019320 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019321 EMSG2(_(e_intern2), "copy_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019322 break;
19323 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019324}
19325
19326/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000019327 * Make a copy of an item.
19328 * Lists and Dictionaries are also copied. A deep copy if "deep" is set.
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019329 * For deepcopy() "copyID" is zero for a full copy or the ID for when a
19330 * reference to an already copied list/dict can be used.
19331 * Returns FAIL or OK.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019332 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019333 static int
19334item_copy(from, to, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +000019335 typval_T *from;
19336 typval_T *to;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019337 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019338 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019339{
19340 static int recurse = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019341 int ret = OK;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019342
Bram Moolenaar33570922005-01-25 22:26:29 +000019343 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +000019344 {
19345 EMSG(_("E698: variable nested too deep for making a copy"));
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019346 return FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019347 }
19348 ++recurse;
19349
19350 switch (from->v_type)
19351 {
19352 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019353#ifdef FEAT_FLOAT
19354 case VAR_FLOAT:
19355#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000019356 case VAR_STRING:
19357 case VAR_FUNC:
19358 copy_tv(from, to);
19359 break;
19360 case VAR_LIST:
19361 to->v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019362 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019363 if (from->vval.v_list == NULL)
19364 to->vval.v_list = NULL;
19365 else if (copyID != 0 && from->vval.v_list->lv_copyID == copyID)
19366 {
19367 /* use the copy made earlier */
19368 to->vval.v_list = from->vval.v_list->lv_copylist;
19369 ++to->vval.v_list->lv_refcount;
19370 }
19371 else
19372 to->vval.v_list = list_copy(from->vval.v_list, deep, copyID);
19373 if (to->vval.v_list == NULL)
19374 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019375 break;
19376 case VAR_DICT:
19377 to->v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019378 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019379 if (from->vval.v_dict == NULL)
19380 to->vval.v_dict = NULL;
19381 else if (copyID != 0 && from->vval.v_dict->dv_copyID == copyID)
19382 {
19383 /* use the copy made earlier */
19384 to->vval.v_dict = from->vval.v_dict->dv_copydict;
19385 ++to->vval.v_dict->dv_refcount;
19386 }
19387 else
19388 to->vval.v_dict = dict_copy(from->vval.v_dict, deep, copyID);
19389 if (to->vval.v_dict == NULL)
19390 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019391 break;
19392 default:
19393 EMSG2(_(e_intern2), "item_copy()");
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019394 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019395 }
19396 --recurse;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019397 return ret;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019398}
19399
19400/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000019401 * ":echo expr1 ..." print each argument separated with a space, add a
19402 * newline at the end.
19403 * ":echon expr1 ..." print each argument plain.
19404 */
19405 void
19406ex_echo(eap)
19407 exarg_T *eap;
19408{
19409 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019410 typval_T rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019411 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019412 char_u *p;
19413 int needclr = TRUE;
19414 int atstart = TRUE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019415 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000019416
19417 if (eap->skip)
19418 ++emsg_skip;
19419 while (*arg != NUL && *arg != '|' && *arg != '\n' && !got_int)
19420 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019421 /* If eval1() causes an error message the text from the command may
19422 * still need to be cleared. E.g., "echo 22,44". */
19423 need_clr_eos = needclr;
19424
Bram Moolenaar071d4272004-06-13 20:20:40 +000019425 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019426 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019427 {
19428 /*
19429 * Report the invalid expression unless the expression evaluation
19430 * has been cancelled due to an aborting error, an interrupt, or an
19431 * exception.
19432 */
19433 if (!aborting())
19434 EMSG2(_(e_invexpr2), p);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019435 need_clr_eos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019436 break;
19437 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019438 need_clr_eos = FALSE;
19439
Bram Moolenaar071d4272004-06-13 20:20:40 +000019440 if (!eap->skip)
19441 {
19442 if (atstart)
19443 {
19444 atstart = FALSE;
19445 /* Call msg_start() after eval1(), evaluating the expression
19446 * may cause a message to appear. */
19447 if (eap->cmdidx == CMD_echo)
19448 msg_start();
19449 }
19450 else if (eap->cmdidx == CMD_echo)
19451 msg_puts_attr((char_u *)" ", echo_attr);
Bram Moolenaar2c2398c2009-06-03 11:22:45 +000019452 current_copyID += COPYID_INC;
19453 p = echo_string(&rettv, &tofree, numbuf, current_copyID);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019454 if (p != NULL)
19455 for ( ; *p != NUL && !got_int; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019456 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019457 if (*p == '\n' || *p == '\r' || *p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019458 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019459 if (*p != TAB && needclr)
19460 {
19461 /* remove any text still there from the command */
19462 msg_clr_eos();
19463 needclr = FALSE;
19464 }
19465 msg_putchar_attr(*p, echo_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019466 }
19467 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019468 {
19469#ifdef FEAT_MBYTE
19470 if (has_mbyte)
19471 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000019472 int i = (*mb_ptr2len)(p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019473
19474 (void)msg_outtrans_len_attr(p, i, echo_attr);
19475 p += i - 1;
19476 }
19477 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000019478#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019479 (void)msg_outtrans_len_attr(p, 1, echo_attr);
19480 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019481 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019482 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019483 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019484 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019485 arg = skipwhite(arg);
19486 }
19487 eap->nextcmd = check_nextcmd(arg);
19488
19489 if (eap->skip)
19490 --emsg_skip;
19491 else
19492 {
19493 /* remove text that may still be there from the command */
19494 if (needclr)
19495 msg_clr_eos();
19496 if (eap->cmdidx == CMD_echo)
19497 msg_end();
19498 }
19499}
19500
19501/*
19502 * ":echohl {name}".
19503 */
19504 void
19505ex_echohl(eap)
19506 exarg_T *eap;
19507{
19508 int id;
19509
19510 id = syn_name2id(eap->arg);
19511 if (id == 0)
19512 echo_attr = 0;
19513 else
19514 echo_attr = syn_id2attr(id);
19515}
19516
19517/*
19518 * ":execute expr1 ..." execute the result of an expression.
19519 * ":echomsg expr1 ..." Print a message
19520 * ":echoerr expr1 ..." Print an error
19521 * Each gets spaces around each argument and a newline at the end for
19522 * echo commands
19523 */
19524 void
19525ex_execute(eap)
19526 exarg_T *eap;
19527{
19528 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019529 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019530 int ret = OK;
19531 char_u *p;
19532 garray_T ga;
19533 int len;
19534 int save_did_emsg;
19535
19536 ga_init2(&ga, 1, 80);
19537
19538 if (eap->skip)
19539 ++emsg_skip;
19540 while (*arg != NUL && *arg != '|' && *arg != '\n')
19541 {
19542 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019543 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019544 {
19545 /*
19546 * Report the invalid expression unless the expression evaluation
19547 * has been cancelled due to an aborting error, an interrupt, or an
19548 * exception.
19549 */
19550 if (!aborting())
19551 EMSG2(_(e_invexpr2), p);
19552 ret = FAIL;
19553 break;
19554 }
19555
19556 if (!eap->skip)
19557 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019558 p = get_tv_string(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019559 len = (int)STRLEN(p);
19560 if (ga_grow(&ga, len + 2) == FAIL)
19561 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019562 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019563 ret = FAIL;
19564 break;
19565 }
19566 if (ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019567 ((char_u *)(ga.ga_data))[ga.ga_len++] = ' ';
Bram Moolenaar071d4272004-06-13 20:20:40 +000019568 STRCPY((char_u *)(ga.ga_data) + ga.ga_len, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019569 ga.ga_len += len;
19570 }
19571
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019572 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019573 arg = skipwhite(arg);
19574 }
19575
19576 if (ret != FAIL && ga.ga_data != NULL)
19577 {
19578 if (eap->cmdidx == CMD_echomsg)
Bram Moolenaar4770d092006-01-12 23:22:24 +000019579 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000019580 MSG_ATTR(ga.ga_data, echo_attr);
Bram Moolenaar4770d092006-01-12 23:22:24 +000019581 out_flush();
19582 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019583 else if (eap->cmdidx == CMD_echoerr)
19584 {
19585 /* We don't want to abort following commands, restore did_emsg. */
19586 save_did_emsg = did_emsg;
19587 EMSG((char_u *)ga.ga_data);
19588 if (!force_abort)
19589 did_emsg = save_did_emsg;
19590 }
19591 else if (eap->cmdidx == CMD_execute)
19592 do_cmdline((char_u *)ga.ga_data,
19593 eap->getline, eap->cookie, DOCMD_NOWAIT|DOCMD_VERBOSE);
19594 }
19595
19596 ga_clear(&ga);
19597
19598 if (eap->skip)
19599 --emsg_skip;
19600
19601 eap->nextcmd = check_nextcmd(arg);
19602}
19603
19604/*
19605 * Skip over the name of an option: "&option", "&g:option" or "&l:option".
19606 * "arg" points to the "&" or '+' when called, to "option" when returning.
19607 * Returns NULL when no option name found. Otherwise pointer to the char
19608 * after the option name.
19609 */
19610 static char_u *
19611find_option_end(arg, opt_flags)
19612 char_u **arg;
19613 int *opt_flags;
19614{
19615 char_u *p = *arg;
19616
19617 ++p;
19618 if (*p == 'g' && p[1] == ':')
19619 {
19620 *opt_flags = OPT_GLOBAL;
19621 p += 2;
19622 }
19623 else if (*p == 'l' && p[1] == ':')
19624 {
19625 *opt_flags = OPT_LOCAL;
19626 p += 2;
19627 }
19628 else
19629 *opt_flags = 0;
19630
19631 if (!ASCII_ISALPHA(*p))
19632 return NULL;
19633 *arg = p;
19634
19635 if (p[0] == 't' && p[1] == '_' && p[2] != NUL && p[3] != NUL)
19636 p += 4; /* termcap option */
19637 else
19638 while (ASCII_ISALPHA(*p))
19639 ++p;
19640 return p;
19641}
19642
19643/*
19644 * ":function"
19645 */
19646 void
19647ex_function(eap)
19648 exarg_T *eap;
19649{
19650 char_u *theline;
19651 int j;
19652 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019653 int saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019654 char_u *name = NULL;
19655 char_u *p;
19656 char_u *arg;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019657 char_u *line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019658 garray_T newargs;
19659 garray_T newlines;
19660 int varargs = FALSE;
19661 int mustend = FALSE;
19662 int flags = 0;
19663 ufunc_T *fp;
19664 int indent;
19665 int nesting;
19666 char_u *skip_until = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000019667 dictitem_T *v;
19668 funcdict_T fudi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019669 static int func_nr = 0; /* number for nameless function */
19670 int paren;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019671 hashtab_T *ht;
19672 int todo;
19673 hashitem_T *hi;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019674 int sourcing_lnum_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019675
19676 /*
19677 * ":function" without argument: list functions.
19678 */
19679 if (ends_excmd(*eap->arg))
19680 {
19681 if (!eap->skip)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019682 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019683 todo = (int)func_hashtab.ht_used;
Bram Moolenaar038eb0e2005-02-27 22:43:26 +000019684 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019685 {
19686 if (!HASHITEM_EMPTY(hi))
19687 {
19688 --todo;
19689 fp = HI2UF(hi);
19690 if (!isdigit(*fp->uf_name))
19691 list_func_head(fp, FALSE);
19692 }
19693 }
19694 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019695 eap->nextcmd = check_nextcmd(eap->arg);
19696 return;
19697 }
19698
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019699 /*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019700 * ":function /pat": list functions matching pattern.
19701 */
19702 if (*eap->arg == '/')
19703 {
19704 p = skip_regexp(eap->arg + 1, '/', TRUE, NULL);
19705 if (!eap->skip)
19706 {
19707 regmatch_T regmatch;
19708
19709 c = *p;
19710 *p = NUL;
19711 regmatch.regprog = vim_regcomp(eap->arg + 1, RE_MAGIC);
19712 *p = c;
19713 if (regmatch.regprog != NULL)
19714 {
19715 regmatch.rm_ic = p_ic;
19716
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019717 todo = (int)func_hashtab.ht_used;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019718 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
19719 {
19720 if (!HASHITEM_EMPTY(hi))
19721 {
19722 --todo;
19723 fp = HI2UF(hi);
19724 if (!isdigit(*fp->uf_name)
19725 && vim_regexec(&regmatch, fp->uf_name, 0))
19726 list_func_head(fp, FALSE);
19727 }
19728 }
Bram Moolenaar69f2d5a2009-04-22 14:10:39 +000019729 vim_free(regmatch.regprog);
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019730 }
19731 }
19732 if (*p == '/')
19733 ++p;
19734 eap->nextcmd = check_nextcmd(p);
19735 return;
19736 }
19737
19738 /*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019739 * Get the function name. There are these situations:
19740 * func normal function name
19741 * "name" == func, "fudi.fd_dict" == NULL
19742 * dict.func new dictionary entry
19743 * "name" == NULL, "fudi.fd_dict" set,
19744 * "fudi.fd_di" == NULL, "fudi.fd_newkey" == func
19745 * dict.func existing dict entry with a Funcref
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019746 * "name" == func, "fudi.fd_dict" set,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019747 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19748 * dict.func existing dict entry that's not a Funcref
19749 * "name" == NULL, "fudi.fd_dict" set,
19750 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19751 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019752 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019753 name = trans_function_name(&p, eap->skip, 0, &fudi);
19754 paren = (vim_strchr(p, '(') != NULL);
19755 if (name == NULL && (fudi.fd_dict == NULL || !paren) && !eap->skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019756 {
19757 /*
19758 * Return on an invalid expression in braces, unless the expression
19759 * evaluation has been cancelled due to an aborting error, an
19760 * interrupt, or an exception.
19761 */
19762 if (!aborting())
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019763 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000019764 if (!eap->skip && fudi.fd_newkey != NULL)
19765 EMSG2(_(e_dictkey), fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019766 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019767 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019768 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019769 else
19770 eap->skip = TRUE;
19771 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000019772
Bram Moolenaar071d4272004-06-13 20:20:40 +000019773 /* An error in a function call during evaluation of an expression in magic
19774 * braces should not cause the function not to be defined. */
19775 saved_did_emsg = did_emsg;
19776 did_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019777
19778 /*
19779 * ":function func" with only function name: list function.
19780 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019781 if (!paren)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019782 {
19783 if (!ends_excmd(*skipwhite(p)))
19784 {
19785 EMSG(_(e_trailing));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019786 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019787 }
19788 eap->nextcmd = check_nextcmd(p);
19789 if (eap->nextcmd != NULL)
19790 *p = NUL;
19791 if (!eap->skip && !got_int)
19792 {
19793 fp = find_func(name);
19794 if (fp != NULL)
19795 {
19796 list_func_head(fp, TRUE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019797 for (j = 0; j < fp->uf_lines.ga_len && !got_int; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019798 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019799 if (FUNCLINE(fp, j) == NULL)
19800 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019801 msg_putchar('\n');
19802 msg_outnum((long)(j + 1));
19803 if (j < 9)
19804 msg_putchar(' ');
19805 if (j < 99)
19806 msg_putchar(' ');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019807 msg_prt_line(FUNCLINE(fp, j), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019808 out_flush(); /* show a line at a time */
19809 ui_breakcheck();
19810 }
19811 if (!got_int)
19812 {
19813 msg_putchar('\n');
19814 msg_puts((char_u *)" endfunction");
19815 }
19816 }
19817 else
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +000019818 emsg_funcname(N_("E123: Undefined function: %s"), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019819 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019820 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019821 }
19822
19823 /*
19824 * ":function name(arg1, arg2)" Define function.
19825 */
19826 p = skipwhite(p);
19827 if (*p != '(')
19828 {
19829 if (!eap->skip)
19830 {
19831 EMSG2(_("E124: Missing '(': %s"), eap->arg);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019832 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019833 }
19834 /* attempt to continue by skipping some text */
19835 if (vim_strchr(p, '(') != NULL)
19836 p = vim_strchr(p, '(');
19837 }
19838 p = skipwhite(p + 1);
19839
19840 ga_init2(&newargs, (int)sizeof(char_u *), 3);
19841 ga_init2(&newlines, (int)sizeof(char_u *), 3);
19842
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019843 if (!eap->skip)
19844 {
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019845 /* Check the name of the function. Unless it's a dictionary function
19846 * (that we are overwriting). */
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019847 if (name != NULL)
19848 arg = name;
19849 else
19850 arg = fudi.fd_newkey;
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019851 if (arg != NULL && (fudi.fd_di == NULL
19852 || fudi.fd_di->di_tv.v_type != VAR_FUNC))
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019853 {
19854 if (*arg == K_SPECIAL)
19855 j = 3;
19856 else
19857 j = 0;
19858 while (arg[j] != NUL && (j == 0 ? eval_isnamec1(arg[j])
19859 : eval_isnamec(arg[j])))
19860 ++j;
19861 if (arg[j] != NUL)
Bram Moolenaarb67cc162009-02-04 15:27:06 +000019862 emsg_funcname((char *)e_invarg2, arg);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019863 }
19864 }
19865
Bram Moolenaar071d4272004-06-13 20:20:40 +000019866 /*
19867 * Isolate the arguments: "arg1, arg2, ...)"
19868 */
19869 while (*p != ')')
19870 {
19871 if (p[0] == '.' && p[1] == '.' && p[2] == '.')
19872 {
19873 varargs = TRUE;
19874 p += 3;
19875 mustend = TRUE;
19876 }
19877 else
19878 {
19879 arg = p;
19880 while (ASCII_ISALNUM(*p) || *p == '_')
19881 ++p;
19882 if (arg == p || isdigit(*arg)
19883 || (p - arg == 9 && STRNCMP(arg, "firstline", 9) == 0)
19884 || (p - arg == 8 && STRNCMP(arg, "lastline", 8) == 0))
19885 {
19886 if (!eap->skip)
19887 EMSG2(_("E125: Illegal argument: %s"), arg);
19888 break;
19889 }
19890 if (ga_grow(&newargs, 1) == FAIL)
19891 goto erret;
19892 c = *p;
19893 *p = NUL;
19894 arg = vim_strsave(arg);
19895 if (arg == NULL)
19896 goto erret;
19897 ((char_u **)(newargs.ga_data))[newargs.ga_len] = arg;
19898 *p = c;
19899 newargs.ga_len++;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019900 if (*p == ',')
19901 ++p;
19902 else
19903 mustend = TRUE;
19904 }
19905 p = skipwhite(p);
19906 if (mustend && *p != ')')
19907 {
19908 if (!eap->skip)
19909 EMSG2(_(e_invarg2), eap->arg);
19910 break;
19911 }
19912 }
19913 ++p; /* skip the ')' */
19914
Bram Moolenaare9a41262005-01-15 22:18:47 +000019915 /* find extra arguments "range", "dict" and "abort" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019916 for (;;)
19917 {
19918 p = skipwhite(p);
19919 if (STRNCMP(p, "range", 5) == 0)
19920 {
19921 flags |= FC_RANGE;
19922 p += 5;
19923 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000019924 else if (STRNCMP(p, "dict", 4) == 0)
19925 {
19926 flags |= FC_DICT;
19927 p += 4;
19928 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019929 else if (STRNCMP(p, "abort", 5) == 0)
19930 {
19931 flags |= FC_ABORT;
19932 p += 5;
19933 }
19934 else
19935 break;
19936 }
19937
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019938 /* When there is a line break use what follows for the function body.
19939 * Makes 'exe "func Test()\n...\nendfunc"' work. */
19940 if (*p == '\n')
19941 line_arg = p + 1;
19942 else if (*p != NUL && *p != '"' && !eap->skip && !did_emsg)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019943 EMSG(_(e_trailing));
19944
19945 /*
19946 * Read the body of the function, until ":endfunction" is found.
19947 */
19948 if (KeyTyped)
19949 {
19950 /* Check if the function already exists, don't let the user type the
19951 * whole function before telling him it doesn't work! For a script we
19952 * need to skip the body to be able to find what follows. */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019953 if (!eap->skip && !eap->forceit)
19954 {
19955 if (fudi.fd_dict != NULL && fudi.fd_newkey == NULL)
19956 EMSG(_(e_funcdict));
19957 else if (name != NULL && find_func(name) != NULL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019958 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019959 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019960
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019961 if (!eap->skip && did_emsg)
19962 goto erret;
19963
Bram Moolenaar071d4272004-06-13 20:20:40 +000019964 msg_putchar('\n'); /* don't overwrite the function name */
19965 cmdline_row = msg_row;
19966 }
19967
19968 indent = 2;
19969 nesting = 0;
19970 for (;;)
19971 {
19972 msg_scroll = TRUE;
19973 need_wait_return = FALSE;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019974 sourcing_lnum_off = sourcing_lnum;
19975
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019976 if (line_arg != NULL)
19977 {
19978 /* Use eap->arg, split up in parts by line breaks. */
19979 theline = line_arg;
19980 p = vim_strchr(theline, '\n');
19981 if (p == NULL)
19982 line_arg += STRLEN(line_arg);
19983 else
19984 {
19985 *p = NUL;
19986 line_arg = p + 1;
19987 }
19988 }
19989 else if (eap->getline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019990 theline = getcmdline(':', 0L, indent);
19991 else
19992 theline = eap->getline(':', eap->cookie, indent);
19993 if (KeyTyped)
19994 lines_left = Rows - 1;
19995 if (theline == NULL)
19996 {
19997 EMSG(_("E126: Missing :endfunction"));
19998 goto erret;
19999 }
20000
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020001 /* Detect line continuation: sourcing_lnum increased more than one. */
20002 if (sourcing_lnum > sourcing_lnum_off + 1)
20003 sourcing_lnum_off = sourcing_lnum - sourcing_lnum_off - 1;
20004 else
20005 sourcing_lnum_off = 0;
20006
Bram Moolenaar071d4272004-06-13 20:20:40 +000020007 if (skip_until != NULL)
20008 {
20009 /* between ":append" and "." and between ":python <<EOF" and "EOF"
20010 * don't check for ":endfunc". */
20011 if (STRCMP(theline, skip_until) == 0)
20012 {
20013 vim_free(skip_until);
20014 skip_until = NULL;
20015 }
20016 }
20017 else
20018 {
20019 /* skip ':' and blanks*/
20020 for (p = theline; vim_iswhite(*p) || *p == ':'; ++p)
20021 ;
20022
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020023 /* Check for "endfunction". */
20024 if (checkforcmd(&p, "endfunction", 4) && nesting-- == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020025 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020026 if (line_arg == NULL)
20027 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020028 break;
20029 }
20030
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020031 /* Increase indent inside "if", "while", "for" and "try", decrease
Bram Moolenaar071d4272004-06-13 20:20:40 +000020032 * at "end". */
20033 if (indent > 2 && STRNCMP(p, "end", 3) == 0)
20034 indent -= 2;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020035 else if (STRNCMP(p, "if", 2) == 0
20036 || STRNCMP(p, "wh", 2) == 0
20037 || STRNCMP(p, "for", 3) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000020038 || STRNCMP(p, "try", 3) == 0)
20039 indent += 2;
20040
20041 /* Check for defining a function inside this function. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020042 if (checkforcmd(&p, "function", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020043 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020044 if (*p == '!')
20045 p = skipwhite(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020046 p += eval_fname_script(p);
20047 if (ASCII_ISALPHA(*p))
20048 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020049 vim_free(trans_function_name(&p, TRUE, 0, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020050 if (*skipwhite(p) == '(')
20051 {
20052 ++nesting;
20053 indent += 2;
20054 }
20055 }
20056 }
20057
20058 /* Check for ":append" or ":insert". */
20059 p = skip_range(p, NULL);
20060 if ((p[0] == 'a' && (!ASCII_ISALPHA(p[1]) || p[1] == 'p'))
20061 || (p[0] == 'i'
20062 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'n'
20063 && (!ASCII_ISALPHA(p[2]) || (p[2] == 's'))))))
20064 skip_until = vim_strsave((char_u *)".");
20065
20066 /* Check for ":python <<EOF", ":tcl <<EOF", etc. */
20067 arg = skipwhite(skiptowhite(p));
20068 if (arg[0] == '<' && arg[1] =='<'
20069 && ((p[0] == 'p' && p[1] == 'y'
20070 && (!ASCII_ISALPHA(p[2]) || p[2] == 't'))
20071 || (p[0] == 'p' && p[1] == 'e'
20072 && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
20073 || (p[0] == 't' && p[1] == 'c'
20074 && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
20075 || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
20076 && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
Bram Moolenaar325b7a22004-07-05 15:58:32 +000020077 || (p[0] == 'm' && p[1] == 'z'
20078 && (!ASCII_ISALPHA(p[2]) || p[2] == 's'))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020079 ))
20080 {
20081 /* ":python <<" continues until a dot, like ":append" */
20082 p = skipwhite(arg + 2);
20083 if (*p == NUL)
20084 skip_until = vim_strsave((char_u *)".");
20085 else
20086 skip_until = vim_strsave(p);
20087 }
20088 }
20089
20090 /* Add the line to the function. */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020091 if (ga_grow(&newlines, 1 + sourcing_lnum_off) == FAIL)
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020092 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020093 if (line_arg == NULL)
20094 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020095 goto erret;
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020096 }
20097
20098 /* Copy the line to newly allocated memory. get_one_sourceline()
20099 * allocates 250 bytes per line, this saves 80% on average. The cost
20100 * is an extra alloc/free. */
20101 p = vim_strsave(theline);
20102 if (p != NULL)
20103 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020104 if (line_arg == NULL)
20105 vim_free(theline);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020106 theline = p;
20107 }
20108
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020109 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = theline;
20110
20111 /* Add NULL lines for continuation lines, so that the line count is
20112 * equal to the index in the growarray. */
20113 while (sourcing_lnum_off-- > 0)
20114 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = NULL;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020115
20116 /* Check for end of eap->arg. */
20117 if (line_arg != NULL && *line_arg == NUL)
20118 line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020119 }
20120
20121 /* Don't define the function when skipping commands or when an error was
20122 * detected. */
20123 if (eap->skip || did_emsg)
20124 goto erret;
20125
20126 /*
20127 * If there are no errors, add the function
20128 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020129 if (fudi.fd_dict == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020130 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020131 v = find_var(name, &ht);
Bram Moolenaar33570922005-01-25 22:26:29 +000020132 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020133 {
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +000020134 emsg_funcname(N_("E707: Function name conflicts with variable: %s"),
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020135 name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020136 goto erret;
20137 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020138
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020139 fp = find_func(name);
20140 if (fp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020141 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020142 if (!eap->forceit)
20143 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020144 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020145 goto erret;
20146 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020147 if (fp->uf_calls > 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020148 {
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +000020149 emsg_funcname(N_("E127: Cannot redefine function %s: It is in use"),
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020150 name);
20151 goto erret;
20152 }
20153 /* redefine existing function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020154 ga_clear_strings(&(fp->uf_args));
20155 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020156 vim_free(name);
20157 name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020158 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020159 }
20160 else
20161 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020162 char numbuf[20];
20163
20164 fp = NULL;
20165 if (fudi.fd_newkey == NULL && !eap->forceit)
20166 {
20167 EMSG(_(e_funcdict));
20168 goto erret;
20169 }
Bram Moolenaar758711c2005-02-02 23:11:38 +000020170 if (fudi.fd_di == NULL)
20171 {
20172 /* Can't add a function to a locked dictionary */
20173 if (tv_check_lock(fudi.fd_dict->dv_lock, eap->arg))
20174 goto erret;
20175 }
20176 /* Can't change an existing function if it is locked */
20177 else if (tv_check_lock(fudi.fd_di->di_tv.v_lock, eap->arg))
20178 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020179
20180 /* Give the function a sequential number. Can only be used with a
20181 * Funcref! */
20182 vim_free(name);
20183 sprintf(numbuf, "%d", ++func_nr);
20184 name = vim_strsave((char_u *)numbuf);
20185 if (name == NULL)
20186 goto erret;
20187 }
20188
20189 if (fp == NULL)
20190 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020191 if (fudi.fd_dict == NULL && vim_strchr(name, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020192 {
20193 int slen, plen;
20194 char_u *scriptname;
20195
20196 /* Check that the autoload name matches the script name. */
20197 j = FAIL;
20198 if (sourcing_name != NULL)
20199 {
20200 scriptname = autoload_name(name);
20201 if (scriptname != NULL)
20202 {
20203 p = vim_strchr(scriptname, '/');
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020204 plen = (int)STRLEN(p);
20205 slen = (int)STRLEN(sourcing_name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020206 if (slen > plen && fnamecmp(p,
20207 sourcing_name + slen - plen) == 0)
20208 j = OK;
20209 vim_free(scriptname);
20210 }
20211 }
20212 if (j == FAIL)
20213 {
20214 EMSG2(_("E746: Function name does not match script file name: %s"), name);
20215 goto erret;
20216 }
20217 }
20218
20219 fp = (ufunc_T *)alloc((unsigned)(sizeof(ufunc_T) + STRLEN(name)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020220 if (fp == NULL)
20221 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020222
20223 if (fudi.fd_dict != NULL)
20224 {
20225 if (fudi.fd_di == NULL)
20226 {
20227 /* add new dict entry */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020228 fudi.fd_di = dictitem_alloc(fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020229 if (fudi.fd_di == NULL)
20230 {
20231 vim_free(fp);
20232 goto erret;
20233 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020234 if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
20235 {
20236 vim_free(fudi.fd_di);
Bram Moolenaar0a5fd8b2006-08-16 20:02:22 +000020237 vim_free(fp);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020238 goto erret;
20239 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020240 }
20241 else
20242 /* overwrite existing dict entry */
20243 clear_tv(&fudi.fd_di->di_tv);
20244 fudi.fd_di->di_tv.v_type = VAR_FUNC;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000020245 fudi.fd_di->di_tv.v_lock = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020246 fudi.fd_di->di_tv.vval.v_string = vim_strsave(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020247 fp->uf_refcount = 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000020248
20249 /* behave like "dict" was used */
20250 flags |= FC_DICT;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020251 }
20252
Bram Moolenaar071d4272004-06-13 20:20:40 +000020253 /* insert the new function in the function list */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020254 STRCPY(fp->uf_name, name);
20255 hash_add(&func_hashtab, UF2HIKEY(fp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020256 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020257 fp->uf_args = newargs;
20258 fp->uf_lines = newlines;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020259#ifdef FEAT_PROFILE
20260 fp->uf_tml_count = NULL;
20261 fp->uf_tml_total = NULL;
20262 fp->uf_tml_self = NULL;
20263 fp->uf_profiling = FALSE;
20264 if (prof_def_func())
20265 func_do_profile(fp);
20266#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020267 fp->uf_varargs = varargs;
20268 fp->uf_flags = flags;
20269 fp->uf_calls = 0;
20270 fp->uf_script_ID = current_SID;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020271 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020272
20273erret:
Bram Moolenaar071d4272004-06-13 20:20:40 +000020274 ga_clear_strings(&newargs);
20275 ga_clear_strings(&newlines);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020276ret_free:
20277 vim_free(skip_until);
20278 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020279 vim_free(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020280 did_emsg |= saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020281}
20282
20283/*
20284 * Get a function name, translating "<SID>" and "<SNR>".
Bram Moolenaara7043832005-01-21 11:56:39 +000020285 * Also handles a Funcref in a List or Dictionary.
Bram Moolenaar071d4272004-06-13 20:20:40 +000020286 * Returns the function name in allocated memory, or NULL for failure.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020287 * flags:
20288 * TFN_INT: internal function name OK
20289 * TFN_QUIET: be quiet
Bram Moolenaar071d4272004-06-13 20:20:40 +000020290 * Advances "pp" to just after the function name (if no error).
20291 */
20292 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020293trans_function_name(pp, skip, flags, fdp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020294 char_u **pp;
20295 int skip; /* only find the end, don't evaluate */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020296 int flags;
Bram Moolenaar33570922005-01-25 22:26:29 +000020297 funcdict_T *fdp; /* return: info about dictionary used */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020298{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020299 char_u *name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020300 char_u *start;
20301 char_u *end;
20302 int lead;
20303 char_u sid_buf[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +000020304 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +000020305 lval_T lv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020306
20307 if (fdp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000020308 vim_memset(fdp, 0, sizeof(funcdict_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020309 start = *pp;
Bram Moolenaara7043832005-01-21 11:56:39 +000020310
20311 /* Check for hard coded <SNR>: already translated function ID (from a user
20312 * command). */
20313 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA
20314 && (*pp)[2] == (int)KE_SNR)
20315 {
20316 *pp += 3;
20317 len = get_id_len(pp) + 3;
20318 return vim_strnsave(start, len);
20319 }
20320
20321 /* A name starting with "<SID>" or "<SNR>" is local to a script. But
20322 * don't skip over "s:", get_lval() needs it for "s:dict.func". */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020323 lead = eval_fname_script(start);
Bram Moolenaara7043832005-01-21 11:56:39 +000020324 if (lead > 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020325 start += lead;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020326
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020327 end = get_lval(start, NULL, &lv, FALSE, skip, flags & TFN_QUIET,
20328 lead > 2 ? 0 : FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020329 if (end == start)
20330 {
20331 if (!skip)
20332 EMSG(_("E129: Function name required"));
20333 goto theend;
20334 }
Bram Moolenaara7043832005-01-21 11:56:39 +000020335 if (end == NULL || (lv.ll_tv != NULL && (lead > 2 || lv.ll_range)))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020336 {
20337 /*
20338 * Report an invalid expression in braces, unless the expression
20339 * evaluation has been cancelled due to an aborting error, an
20340 * interrupt, or an exception.
20341 */
20342 if (!aborting())
20343 {
20344 if (end != NULL)
20345 EMSG2(_(e_invarg2), start);
20346 }
20347 else
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020348 *pp = find_name_end(start, NULL, NULL, FNE_INCL_BR);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020349 goto theend;
20350 }
20351
20352 if (lv.ll_tv != NULL)
20353 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020354 if (fdp != NULL)
20355 {
20356 fdp->fd_dict = lv.ll_dict;
20357 fdp->fd_newkey = lv.ll_newkey;
20358 lv.ll_newkey = NULL;
20359 fdp->fd_di = lv.ll_di;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020360 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020361 if (lv.ll_tv->v_type == VAR_FUNC && lv.ll_tv->vval.v_string != NULL)
20362 {
20363 name = vim_strsave(lv.ll_tv->vval.v_string);
20364 *pp = end;
20365 }
20366 else
20367 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020368 if (!skip && !(flags & TFN_QUIET) && (fdp == NULL
20369 || lv.ll_dict == NULL || fdp->fd_newkey == NULL))
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020370 EMSG(_(e_funcref));
20371 else
20372 *pp = end;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020373 name = NULL;
20374 }
20375 goto theend;
20376 }
20377
20378 if (lv.ll_name == NULL)
20379 {
20380 /* Error found, but continue after the function name. */
20381 *pp = end;
20382 goto theend;
20383 }
20384
Bram Moolenaar33e1a802007-09-06 12:26:44 +000020385 /* Check if the name is a Funcref. If so, use the value. */
20386 if (lv.ll_exp_name != NULL)
20387 {
20388 len = (int)STRLEN(lv.ll_exp_name);
20389 name = deref_func_name(lv.ll_exp_name, &len);
20390 if (name == lv.ll_exp_name)
20391 name = NULL;
20392 }
20393 else
20394 {
20395 len = (int)(end - *pp);
20396 name = deref_func_name(*pp, &len);
20397 if (name == *pp)
20398 name = NULL;
20399 }
20400 if (name != NULL)
20401 {
20402 name = vim_strsave(name);
20403 *pp = end;
20404 goto theend;
20405 }
20406
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020407 if (lv.ll_exp_name != NULL)
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020408 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020409 len = (int)STRLEN(lv.ll_exp_name);
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020410 if (lead <= 2 && lv.ll_name == lv.ll_exp_name
20411 && STRNCMP(lv.ll_name, "s:", 2) == 0)
20412 {
20413 /* When there was "s:" already or the name expanded to get a
20414 * leading "s:" then remove it. */
20415 lv.ll_name += 2;
20416 len -= 2;
20417 lead = 2;
20418 }
20419 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020420 else
Bram Moolenaara7043832005-01-21 11:56:39 +000020421 {
20422 if (lead == 2) /* skip over "s:" */
20423 lv.ll_name += 2;
20424 len = (int)(end - lv.ll_name);
20425 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020426
20427 /*
20428 * Copy the function name to allocated memory.
20429 * Accept <SID>name() inside a script, translate into <SNR>123_name().
20430 * Accept <SNR>123_name() outside a script.
20431 */
20432 if (skip)
20433 lead = 0; /* do nothing */
20434 else if (lead > 0)
20435 {
20436 lead = 3;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000020437 if ((lv.ll_exp_name != NULL && eval_fname_sid(lv.ll_exp_name))
20438 || eval_fname_sid(*pp))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020439 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +000020440 /* It's "s:" or "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020441 if (current_SID <= 0)
20442 {
20443 EMSG(_(e_usingsid));
20444 goto theend;
20445 }
20446 sprintf((char *)sid_buf, "%ld_", (long)current_SID);
20447 lead += (int)STRLEN(sid_buf);
20448 }
20449 }
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020450 else if (!(flags & TFN_INT) && builtin_function(lv.ll_name))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020451 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020452 EMSG2(_("E128: Function name must start with a capital or contain a colon: %s"), lv.ll_name);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020453 goto theend;
20454 }
20455 name = alloc((unsigned)(len + lead + 1));
20456 if (name != NULL)
20457 {
20458 if (lead > 0)
20459 {
20460 name[0] = K_SPECIAL;
20461 name[1] = KS_EXTRA;
20462 name[2] = (int)KE_SNR;
Bram Moolenaara7043832005-01-21 11:56:39 +000020463 if (lead > 3) /* If it's "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020464 STRCPY(name + 3, sid_buf);
20465 }
20466 mch_memmove(name + lead, lv.ll_name, (size_t)len);
20467 name[len + lead] = NUL;
20468 }
20469 *pp = end;
20470
20471theend:
20472 clear_lval(&lv);
20473 return name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020474}
20475
20476/*
20477 * Return 5 if "p" starts with "<SID>" or "<SNR>" (ignoring case).
20478 * Return 2 if "p" starts with "s:".
20479 * Return 0 otherwise.
20480 */
20481 static int
20482eval_fname_script(p)
20483 char_u *p;
20484{
20485 if (p[0] == '<' && (STRNICMP(p + 1, "SID>", 4) == 0
20486 || STRNICMP(p + 1, "SNR>", 4) == 0))
20487 return 5;
20488 if (p[0] == 's' && p[1] == ':')
20489 return 2;
20490 return 0;
20491}
20492
20493/*
20494 * Return TRUE if "p" starts with "<SID>" or "s:".
20495 * Only works if eval_fname_script() returned non-zero for "p"!
20496 */
20497 static int
20498eval_fname_sid(p)
20499 char_u *p;
20500{
20501 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I');
20502}
20503
20504/*
20505 * List the head of the function: "name(arg1, arg2)".
20506 */
20507 static void
20508list_func_head(fp, indent)
20509 ufunc_T *fp;
20510 int indent;
20511{
20512 int j;
20513
20514 msg_start();
20515 if (indent)
20516 MSG_PUTS(" ");
20517 MSG_PUTS("function ");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020518 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020519 {
20520 MSG_PUTS_ATTR("<SNR>", hl_attr(HLF_8));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020521 msg_puts(fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020522 }
20523 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020524 msg_puts(fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020525 msg_putchar('(');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020526 for (j = 0; j < fp->uf_args.ga_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020527 {
20528 if (j)
20529 MSG_PUTS(", ");
20530 msg_puts(FUNCARG(fp, j));
20531 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020532 if (fp->uf_varargs)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020533 {
20534 if (j)
20535 MSG_PUTS(", ");
20536 MSG_PUTS("...");
20537 }
20538 msg_putchar(')');
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000020539 msg_clr_eos();
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000020540 if (p_verbose > 0)
20541 last_set_msg(fp->uf_script_ID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020542}
20543
20544/*
20545 * Find a function by name, return pointer to it in ufuncs.
20546 * Return NULL for unknown function.
20547 */
20548 static ufunc_T *
20549find_func(name)
20550 char_u *name;
20551{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020552 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020553
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020554 hi = hash_find(&func_hashtab, name);
20555 if (!HASHITEM_EMPTY(hi))
20556 return HI2UF(hi);
20557 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020558}
20559
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020560#if defined(EXITFREE) || defined(PROTO)
20561 void
20562free_all_functions()
20563{
20564 hashitem_T *hi;
20565
20566 /* Need to start all over every time, because func_free() may change the
20567 * hash table. */
20568 while (func_hashtab.ht_used > 0)
20569 for (hi = func_hashtab.ht_array; ; ++hi)
20570 if (!HASHITEM_EMPTY(hi))
20571 {
20572 func_free(HI2UF(hi));
20573 break;
20574 }
20575}
20576#endif
20577
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020578/*
20579 * Return TRUE if a function "name" exists.
20580 */
20581 static int
20582function_exists(name)
20583 char_u *name;
20584{
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020585 char_u *nm = name;
20586 char_u *p;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020587 int n = FALSE;
20588
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020589 p = trans_function_name(&nm, FALSE, TFN_INT|TFN_QUIET, NULL);
Bram Moolenaar79783442006-05-05 21:18:03 +000020590 nm = skipwhite(nm);
20591
20592 /* Only accept "funcname", "funcname ", "funcname (..." and
20593 * "funcname(...", not "funcname!...". */
20594 if (p != NULL && (*nm == NUL || *nm == '('))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020595 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020596 if (builtin_function(p))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020597 n = (find_internal_func(p) >= 0);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020598 else
20599 n = (find_func(p) != NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020600 }
Bram Moolenaar79783442006-05-05 21:18:03 +000020601 vim_free(p);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020602 return n;
20603}
20604
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020605/*
20606 * Return TRUE if "name" looks like a builtin function name: starts with a
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020607 * lower case letter and doesn't contain a ':' or AUTOLOAD_CHAR.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020608 */
20609 static int
20610builtin_function(name)
20611 char_u *name;
20612{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020613 return ASCII_ISLOWER(name[0]) && vim_strchr(name, ':') == NULL
20614 && vim_strchr(name, AUTOLOAD_CHAR) == NULL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020615}
20616
Bram Moolenaar05159a02005-02-26 23:04:13 +000020617#if defined(FEAT_PROFILE) || defined(PROTO)
20618/*
20619 * Start profiling function "fp".
20620 */
20621 static void
20622func_do_profile(fp)
20623 ufunc_T *fp;
20624{
20625 fp->uf_tm_count = 0;
20626 profile_zero(&fp->uf_tm_self);
20627 profile_zero(&fp->uf_tm_total);
20628 if (fp->uf_tml_count == NULL)
20629 fp->uf_tml_count = (int *)alloc_clear((unsigned)
20630 (sizeof(int) * fp->uf_lines.ga_len));
20631 if (fp->uf_tml_total == NULL)
20632 fp->uf_tml_total = (proftime_T *)alloc_clear((unsigned)
20633 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20634 if (fp->uf_tml_self == NULL)
20635 fp->uf_tml_self = (proftime_T *)alloc_clear((unsigned)
20636 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20637 fp->uf_tml_idx = -1;
20638 if (fp->uf_tml_count == NULL || fp->uf_tml_total == NULL
20639 || fp->uf_tml_self == NULL)
20640 return; /* out of memory */
20641
20642 fp->uf_profiling = TRUE;
20643}
20644
20645/*
20646 * Dump the profiling results for all functions in file "fd".
20647 */
20648 void
20649func_dump_profile(fd)
20650 FILE *fd;
20651{
20652 hashitem_T *hi;
20653 int todo;
20654 ufunc_T *fp;
20655 int i;
Bram Moolenaar73830342005-02-28 22:48:19 +000020656 ufunc_T **sorttab;
20657 int st_len = 0;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020658
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020659 todo = (int)func_hashtab.ht_used;
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020660 if (todo == 0)
20661 return; /* nothing to dump */
20662
Bram Moolenaar73830342005-02-28 22:48:19 +000020663 sorttab = (ufunc_T **)alloc((unsigned)(sizeof(ufunc_T) * todo));
20664
Bram Moolenaar05159a02005-02-26 23:04:13 +000020665 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
20666 {
20667 if (!HASHITEM_EMPTY(hi))
20668 {
20669 --todo;
20670 fp = HI2UF(hi);
20671 if (fp->uf_profiling)
20672 {
Bram Moolenaar73830342005-02-28 22:48:19 +000020673 if (sorttab != NULL)
20674 sorttab[st_len++] = fp;
20675
Bram Moolenaar05159a02005-02-26 23:04:13 +000020676 if (fp->uf_name[0] == K_SPECIAL)
20677 fprintf(fd, "FUNCTION <SNR>%s()\n", fp->uf_name + 3);
20678 else
20679 fprintf(fd, "FUNCTION %s()\n", fp->uf_name);
20680 if (fp->uf_tm_count == 1)
20681 fprintf(fd, "Called 1 time\n");
20682 else
20683 fprintf(fd, "Called %d times\n", fp->uf_tm_count);
20684 fprintf(fd, "Total time: %s\n", profile_msg(&fp->uf_tm_total));
20685 fprintf(fd, " Self time: %s\n", profile_msg(&fp->uf_tm_self));
20686 fprintf(fd, "\n");
20687 fprintf(fd, "count total (s) self (s)\n");
20688
20689 for (i = 0; i < fp->uf_lines.ga_len; ++i)
20690 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020691 if (FUNCLINE(fp, i) == NULL)
20692 continue;
Bram Moolenaar73830342005-02-28 22:48:19 +000020693 prof_func_line(fd, fp->uf_tml_count[i],
20694 &fp->uf_tml_total[i], &fp->uf_tml_self[i], TRUE);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020695 fprintf(fd, "%s\n", FUNCLINE(fp, i));
20696 }
20697 fprintf(fd, "\n");
20698 }
20699 }
20700 }
Bram Moolenaar73830342005-02-28 22:48:19 +000020701
20702 if (sorttab != NULL && st_len > 0)
20703 {
20704 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20705 prof_total_cmp);
20706 prof_sort_list(fd, sorttab, st_len, "TOTAL", FALSE);
20707 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20708 prof_self_cmp);
20709 prof_sort_list(fd, sorttab, st_len, "SELF", TRUE);
20710 }
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020711
20712 vim_free(sorttab);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020713}
Bram Moolenaar73830342005-02-28 22:48:19 +000020714
20715 static void
20716prof_sort_list(fd, sorttab, st_len, title, prefer_self)
20717 FILE *fd;
20718 ufunc_T **sorttab;
20719 int st_len;
20720 char *title;
20721 int prefer_self; /* when equal print only self time */
20722{
20723 int i;
20724 ufunc_T *fp;
20725
20726 fprintf(fd, "FUNCTIONS SORTED ON %s TIME\n", title);
20727 fprintf(fd, "count total (s) self (s) function\n");
20728 for (i = 0; i < 20 && i < st_len; ++i)
20729 {
20730 fp = sorttab[i];
20731 prof_func_line(fd, fp->uf_tm_count, &fp->uf_tm_total, &fp->uf_tm_self,
20732 prefer_self);
20733 if (fp->uf_name[0] == K_SPECIAL)
20734 fprintf(fd, " <SNR>%s()\n", fp->uf_name + 3);
20735 else
20736 fprintf(fd, " %s()\n", fp->uf_name);
20737 }
20738 fprintf(fd, "\n");
20739}
20740
20741/*
20742 * Print the count and times for one function or function line.
20743 */
20744 static void
20745prof_func_line(fd, count, total, self, prefer_self)
20746 FILE *fd;
20747 int count;
20748 proftime_T *total;
20749 proftime_T *self;
20750 int prefer_self; /* when equal print only self time */
20751{
20752 if (count > 0)
20753 {
20754 fprintf(fd, "%5d ", count);
20755 if (prefer_self && profile_equal(total, self))
20756 fprintf(fd, " ");
20757 else
20758 fprintf(fd, "%s ", profile_msg(total));
20759 if (!prefer_self && profile_equal(total, self))
20760 fprintf(fd, " ");
20761 else
20762 fprintf(fd, "%s ", profile_msg(self));
20763 }
20764 else
20765 fprintf(fd, " ");
20766}
20767
20768/*
20769 * Compare function for total time sorting.
20770 */
20771 static int
20772#ifdef __BORLANDC__
20773_RTLENTRYF
20774#endif
20775prof_total_cmp(s1, s2)
20776 const void *s1;
20777 const void *s2;
20778{
20779 ufunc_T *p1, *p2;
20780
20781 p1 = *(ufunc_T **)s1;
20782 p2 = *(ufunc_T **)s2;
20783 return profile_cmp(&p1->uf_tm_total, &p2->uf_tm_total);
20784}
20785
20786/*
20787 * Compare function for self time sorting.
20788 */
20789 static int
20790#ifdef __BORLANDC__
20791_RTLENTRYF
20792#endif
20793prof_self_cmp(s1, s2)
20794 const void *s1;
20795 const void *s2;
20796{
20797 ufunc_T *p1, *p2;
20798
20799 p1 = *(ufunc_T **)s1;
20800 p2 = *(ufunc_T **)s2;
20801 return profile_cmp(&p1->uf_tm_self, &p2->uf_tm_self);
20802}
20803
Bram Moolenaar05159a02005-02-26 23:04:13 +000020804#endif
20805
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020806/*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020807 * If "name" has a package name try autoloading the script for it.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020808 * Return TRUE if a package was loaded.
20809 */
20810 static int
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020811script_autoload(name, reload)
20812 char_u *name;
20813 int reload; /* load script again when already loaded */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020814{
20815 char_u *p;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020816 char_u *scriptname, *tofree;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020817 int ret = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020818 int i;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020819
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020820 /* If there is no '#' after name[0] there is no package name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020821 p = vim_strchr(name, AUTOLOAD_CHAR);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020822 if (p == NULL || p == name)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020823 return FALSE;
20824
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020825 tofree = scriptname = autoload_name(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020826
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020827 /* Find the name in the list of previously loaded package names. Skip
20828 * "autoload/", it's always the same. */
20829 for (i = 0; i < ga_loaded.ga_len; ++i)
20830 if (STRCMP(((char_u **)ga_loaded.ga_data)[i] + 9, scriptname + 9) == 0)
20831 break;
20832 if (!reload && i < ga_loaded.ga_len)
20833 ret = FALSE; /* was loaded already */
20834 else
20835 {
20836 /* Remember the name if it wasn't loaded already. */
20837 if (i == ga_loaded.ga_len && ga_grow(&ga_loaded, 1) == OK)
20838 {
20839 ((char_u **)ga_loaded.ga_data)[ga_loaded.ga_len++] = scriptname;
20840 tofree = NULL;
20841 }
20842
20843 /* Try loading the package from $VIMRUNTIME/autoload/<name>.vim */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +000020844 if (source_runtime(scriptname, FALSE) == OK)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020845 ret = TRUE;
20846 }
20847
20848 vim_free(tofree);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020849 return ret;
20850}
20851
20852/*
20853 * Return the autoload script name for a function or variable name.
20854 * Returns NULL when out of memory.
20855 */
20856 static char_u *
20857autoload_name(name)
20858 char_u *name;
20859{
20860 char_u *p;
20861 char_u *scriptname;
20862
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020863 /* Get the script file name: replace '#' with '/', append ".vim". */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020864 scriptname = alloc((unsigned)(STRLEN(name) + 14));
20865 if (scriptname == NULL)
20866 return FALSE;
20867 STRCPY(scriptname, "autoload/");
20868 STRCAT(scriptname, name);
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020869 *vim_strrchr(scriptname, AUTOLOAD_CHAR) = NUL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020870 STRCAT(scriptname, ".vim");
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020871 while ((p = vim_strchr(scriptname, AUTOLOAD_CHAR)) != NULL)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020872 *p = '/';
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020873 return scriptname;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020874}
20875
Bram Moolenaar071d4272004-06-13 20:20:40 +000020876#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
20877
20878/*
20879 * Function given to ExpandGeneric() to obtain the list of user defined
20880 * function names.
20881 */
20882 char_u *
20883get_user_func_name(xp, idx)
20884 expand_T *xp;
20885 int idx;
20886{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020887 static long_u done;
20888 static hashitem_T *hi;
20889 ufunc_T *fp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020890
20891 if (idx == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020892 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020893 done = 0;
20894 hi = func_hashtab.ht_array;
20895 }
20896 if (done < func_hashtab.ht_used)
20897 {
20898 if (done++ > 0)
20899 ++hi;
20900 while (HASHITEM_EMPTY(hi))
20901 ++hi;
20902 fp = HI2UF(hi);
20903
20904 if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
20905 return fp->uf_name; /* prevents overflow */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020906
20907 cat_func_name(IObuff, fp);
20908 if (xp->xp_context != EXPAND_USER_FUNC)
20909 {
20910 STRCAT(IObuff, "(");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020911 if (!fp->uf_varargs && fp->uf_args.ga_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020912 STRCAT(IObuff, ")");
20913 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020914 return IObuff;
20915 }
20916 return NULL;
20917}
20918
20919#endif /* FEAT_CMDL_COMPL */
20920
20921/*
20922 * Copy the function name of "fp" to buffer "buf".
20923 * "buf" must be able to hold the function name plus three bytes.
20924 * Takes care of script-local function names.
20925 */
20926 static void
20927cat_func_name(buf, fp)
20928 char_u *buf;
20929 ufunc_T *fp;
20930{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020931 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020932 {
20933 STRCPY(buf, "<SNR>");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020934 STRCAT(buf, fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020935 }
20936 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020937 STRCPY(buf, fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020938}
20939
20940/*
20941 * ":delfunction {name}"
20942 */
20943 void
20944ex_delfunction(eap)
20945 exarg_T *eap;
20946{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020947 ufunc_T *fp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020948 char_u *p;
20949 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000020950 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020951
20952 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020953 name = trans_function_name(&p, eap->skip, 0, &fudi);
20954 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020955 if (name == NULL)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020956 {
20957 if (fudi.fd_dict != NULL && !eap->skip)
20958 EMSG(_(e_funcref));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020959 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020960 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020961 if (!ends_excmd(*skipwhite(p)))
20962 {
20963 vim_free(name);
20964 EMSG(_(e_trailing));
20965 return;
20966 }
20967 eap->nextcmd = check_nextcmd(p);
20968 if (eap->nextcmd != NULL)
20969 *p = NUL;
20970
20971 if (!eap->skip)
20972 fp = find_func(name);
20973 vim_free(name);
20974
20975 if (!eap->skip)
20976 {
20977 if (fp == NULL)
20978 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000020979 EMSG2(_(e_nofunc), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020980 return;
20981 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020982 if (fp->uf_calls > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020983 {
20984 EMSG2(_("E131: Cannot delete function %s: It is in use"), eap->arg);
20985 return;
20986 }
20987
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020988 if (fudi.fd_dict != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020989 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020990 /* Delete the dict item that refers to the function, it will
20991 * invoke func_unref() and possibly delete the function. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020992 dictitem_remove(fudi.fd_dict, fudi.fd_di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020993 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020994 else
20995 func_free(fp);
20996 }
20997}
20998
20999/*
21000 * Free a function and remove it from the list of functions.
21001 */
21002 static void
21003func_free(fp)
21004 ufunc_T *fp;
21005{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021006 hashitem_T *hi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021007
21008 /* clear this function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021009 ga_clear_strings(&(fp->uf_args));
21010 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar05159a02005-02-26 23:04:13 +000021011#ifdef FEAT_PROFILE
21012 vim_free(fp->uf_tml_count);
21013 vim_free(fp->uf_tml_total);
21014 vim_free(fp->uf_tml_self);
21015#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021016
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021017 /* remove the function from the function hashtable */
21018 hi = hash_find(&func_hashtab, UF2HIKEY(fp));
21019 if (HASHITEM_EMPTY(hi))
21020 EMSG2(_(e_intern2), "func_free()");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021021 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021022 hash_remove(&func_hashtab, hi);
21023
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021024 vim_free(fp);
21025}
21026
21027/*
21028 * Unreference a Function: decrement the reference count and free it when it
21029 * becomes zero. Only for numbered functions.
21030 */
21031 static void
21032func_unref(name)
21033 char_u *name;
21034{
21035 ufunc_T *fp;
21036
21037 if (name != NULL && isdigit(*name))
21038 {
21039 fp = find_func(name);
21040 if (fp == NULL)
21041 EMSG2(_(e_intern2), "func_unref()");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021042 else if (--fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021043 {
21044 /* Only delete it when it's not being used. Otherwise it's done
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021045 * when "uf_calls" becomes zero. */
21046 if (fp->uf_calls == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021047 func_free(fp);
21048 }
21049 }
21050}
21051
21052/*
21053 * Count a reference to a Function.
21054 */
21055 static void
21056func_ref(name)
21057 char_u *name;
21058{
21059 ufunc_T *fp;
21060
21061 if (name != NULL && isdigit(*name))
21062 {
21063 fp = find_func(name);
21064 if (fp == NULL)
21065 EMSG2(_(e_intern2), "func_ref()");
21066 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021067 ++fp->uf_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021068 }
21069}
21070
21071/*
21072 * Call a user function.
21073 */
21074 static void
Bram Moolenaare9a41262005-01-15 22:18:47 +000021075call_user_func(fp, argcount, argvars, rettv, firstline, lastline, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021076 ufunc_T *fp; /* pointer to function */
21077 int argcount; /* nr of args */
Bram Moolenaar33570922005-01-25 22:26:29 +000021078 typval_T *argvars; /* arguments */
21079 typval_T *rettv; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021080 linenr_T firstline; /* first line of range */
21081 linenr_T lastline; /* last line of range */
Bram Moolenaar33570922005-01-25 22:26:29 +000021082 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021083{
Bram Moolenaar33570922005-01-25 22:26:29 +000021084 char_u *save_sourcing_name;
21085 linenr_T save_sourcing_lnum;
21086 scid_T save_current_SID;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021087 funccall_T *fc;
Bram Moolenaar33570922005-01-25 22:26:29 +000021088 int save_did_emsg;
21089 static int depth = 0;
21090 dictitem_T *v;
21091 int fixvar_idx = 0; /* index in fixvar[] */
21092 int i;
21093 int ai;
21094 char_u numbuf[NUMBUFLEN];
21095 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021096#ifdef FEAT_PROFILE
21097 proftime_T wait_start;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021098 proftime_T call_start;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021099#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021100
21101 /* If depth of calling is getting too high, don't execute the function */
21102 if (depth >= p_mfd)
21103 {
21104 EMSG(_("E132: Function call depth is higher than 'maxfuncdepth'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021105 rettv->v_type = VAR_NUMBER;
21106 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021107 return;
21108 }
21109 ++depth;
21110
21111 line_breakcheck(); /* check for CTRL-C hit */
21112
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021113 fc = (funccall_T *)alloc(sizeof(funccall_T));
21114 fc->caller = current_funccal;
21115 current_funccal = fc;
21116 fc->func = fp;
21117 fc->rettv = rettv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021118 rettv->vval.v_number = 0;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021119 fc->linenr = 0;
21120 fc->returned = FALSE;
21121 fc->level = ex_nesting_level;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021122 /* Check if this function has a breakpoint. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021123 fc->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0);
21124 fc->dbg_tick = debug_tick;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021125
Bram Moolenaar33570922005-01-25 22:26:29 +000021126 /*
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021127 * Note about using fc->fixvar[]: This is an array of FIXVAR_CNT variables
Bram Moolenaar33570922005-01-25 22:26:29 +000021128 * with names up to VAR_SHORT_LEN long. This avoids having to alloc/free
21129 * each argument variable and saves a lot of time.
21130 */
21131 /*
21132 * Init l: variables.
21133 */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021134 init_var_dict(&fc->l_vars, &fc->l_vars_var);
Bram Moolenaara7043832005-01-21 11:56:39 +000021135 if (selfdict != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000021136 {
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021137 /* Set l:self to "selfdict". Use "name" to avoid a warning from
21138 * some compiler that checks the destination size. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021139 v = &fc->fixvar[fixvar_idx++].var;
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021140 name = v->di_key;
21141 STRCPY(name, "self");
Bram Moolenaar33570922005-01-25 22:26:29 +000021142 v->di_flags = DI_FLAGS_RO + DI_FLAGS_FIX;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021143 hash_add(&fc->l_vars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaar33570922005-01-25 22:26:29 +000021144 v->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021145 v->di_tv.v_lock = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000021146 v->di_tv.vval.v_dict = selfdict;
21147 ++selfdict->dv_refcount;
21148 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000021149
Bram Moolenaar33570922005-01-25 22:26:29 +000021150 /*
21151 * Init a: variables.
21152 * Set a:0 to "argcount".
21153 * Set a:000 to a list with room for the "..." arguments.
21154 */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021155 init_var_dict(&fc->l_avars, &fc->l_avars_var);
21156 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "0",
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021157 (varnumber_T)(argcount - fp->uf_args.ga_len));
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021158 /* Use "name" to avoid a warning from some compiler that checks the
21159 * destination size. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021160 v = &fc->fixvar[fixvar_idx++].var;
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021161 name = v->di_key;
21162 STRCPY(name, "000");
Bram Moolenaar33570922005-01-25 22:26:29 +000021163 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021164 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaar33570922005-01-25 22:26:29 +000021165 v->di_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021166 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021167 v->di_tv.vval.v_list = &fc->l_varlist;
21168 vim_memset(&fc->l_varlist, 0, sizeof(list_T));
21169 fc->l_varlist.lv_refcount = DO_NOT_FREE_CNT;
21170 fc->l_varlist.lv_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021171
21172 /*
21173 * Set a:firstline to "firstline" and a:lastline to "lastline".
21174 * Set a:name to named arguments.
21175 * Set a:N to the "..." arguments.
21176 */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021177 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "firstline",
Bram Moolenaar33570922005-01-25 22:26:29 +000021178 (varnumber_T)firstline);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021179 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "lastline",
Bram Moolenaar33570922005-01-25 22:26:29 +000021180 (varnumber_T)lastline);
21181 for (i = 0; i < argcount; ++i)
21182 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021183 ai = i - fp->uf_args.ga_len;
Bram Moolenaar33570922005-01-25 22:26:29 +000021184 if (ai < 0)
21185 /* named argument a:name */
21186 name = FUNCARG(fp, i);
21187 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000021188 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021189 /* "..." argument a:1, a:2, etc. */
21190 sprintf((char *)numbuf, "%d", ai + 1);
21191 name = numbuf;
21192 }
21193 if (fixvar_idx < FIXVAR_CNT && STRLEN(name) <= VAR_SHORT_LEN)
21194 {
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021195 v = &fc->fixvar[fixvar_idx++].var;
Bram Moolenaar33570922005-01-25 22:26:29 +000021196 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21197 }
21198 else
21199 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021200 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
21201 + STRLEN(name)));
Bram Moolenaar33570922005-01-25 22:26:29 +000021202 if (v == NULL)
21203 break;
21204 v->di_flags = DI_FLAGS_RO;
21205 }
21206 STRCPY(v->di_key, name);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021207 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaar33570922005-01-25 22:26:29 +000021208
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021209 /* Note: the values are copied directly to avoid alloc/free.
21210 * "argvars" must have VAR_FIXED for v_lock. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021211 v->di_tv = argvars[i];
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021212 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021213
21214 if (ai >= 0 && ai < MAX_FUNC_ARGS)
21215 {
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021216 list_append(&fc->l_varlist, &fc->l_listitems[ai]);
21217 fc->l_listitems[ai].li_tv = argvars[i];
21218 fc->l_listitems[ai].li_tv.v_lock = VAR_FIXED;
Bram Moolenaare9a41262005-01-15 22:18:47 +000021219 }
21220 }
21221
Bram Moolenaar071d4272004-06-13 20:20:40 +000021222 /* Don't redraw while executing the function. */
21223 ++RedrawingDisabled;
21224 save_sourcing_name = sourcing_name;
21225 save_sourcing_lnum = sourcing_lnum;
21226 sourcing_lnum = 1;
21227 sourcing_name = alloc((unsigned)((save_sourcing_name == NULL ? 0
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021228 : STRLEN(save_sourcing_name)) + STRLEN(fp->uf_name) + 13));
Bram Moolenaar071d4272004-06-13 20:20:40 +000021229 if (sourcing_name != NULL)
21230 {
21231 if (save_sourcing_name != NULL
21232 && STRNCMP(save_sourcing_name, "function ", 9) == 0)
21233 sprintf((char *)sourcing_name, "%s..", save_sourcing_name);
21234 else
21235 STRCPY(sourcing_name, "function ");
21236 cat_func_name(sourcing_name + STRLEN(sourcing_name), fp);
21237
21238 if (p_verbose >= 12)
21239 {
21240 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021241 verbose_enter_scroll();
21242
Bram Moolenaar555b2802005-05-19 21:08:39 +000021243 smsg((char_u *)_("calling %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021244 if (p_verbose >= 14)
21245 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021246 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021247 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021248 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021249 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021250
21251 msg_puts((char_u *)"(");
21252 for (i = 0; i < argcount; ++i)
21253 {
21254 if (i > 0)
21255 msg_puts((char_u *)", ");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000021256 if (argvars[i].v_type == VAR_NUMBER)
21257 msg_outnum((long)argvars[i].vval.v_number);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021258 else
21259 {
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021260 s = tv2string(&argvars[i], &tofree, numbuf2, 0);
21261 if (s != NULL)
21262 {
21263 trunc_string(s, buf, MSG_BUF_CLEN);
21264 msg_puts(buf);
21265 vim_free(tofree);
21266 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021267 }
21268 }
21269 msg_puts((char_u *)")");
21270 }
21271 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021272
21273 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021274 --no_wait_return;
21275 }
21276 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021277#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021278 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021279 {
21280 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
21281 func_do_profile(fp);
21282 if (fp->uf_profiling
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021283 || (fc->caller != NULL && fc->caller->func->uf_profiling))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021284 {
21285 ++fp->uf_tm_count;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021286 profile_start(&call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021287 profile_zero(&fp->uf_tm_children);
21288 }
21289 script_prof_save(&wait_start);
21290 }
21291#endif
21292
Bram Moolenaar071d4272004-06-13 20:20:40 +000021293 save_current_SID = current_SID;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021294 current_SID = fp->uf_script_ID;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021295 save_did_emsg = did_emsg;
21296 did_emsg = FALSE;
21297
21298 /* call do_cmdline() to execute the lines */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021299 do_cmdline(NULL, get_func_line, (void *)fc,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021300 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
21301
21302 --RedrawingDisabled;
21303
21304 /* when the function was aborted because of an error, return -1 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021305 if ((did_emsg && (fp->uf_flags & FC_ABORT)) || rettv->v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021306 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021307 clear_tv(rettv);
21308 rettv->v_type = VAR_NUMBER;
21309 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021310 }
21311
Bram Moolenaar05159a02005-02-26 23:04:13 +000021312#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021313 if (do_profiling == PROF_YES && (fp->uf_profiling
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021314 || (fc->caller != NULL && fc->caller->func->uf_profiling)))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021315 {
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021316 profile_end(&call_start);
21317 profile_sub_wait(&wait_start, &call_start);
21318 profile_add(&fp->uf_tm_total, &call_start);
21319 profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021320 if (fc->caller != NULL && fc->caller->func->uf_profiling)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021321 {
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021322 profile_add(&fc->caller->func->uf_tm_children, &call_start);
21323 profile_add(&fc->caller->func->uf_tml_children, &call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021324 }
21325 }
21326#endif
21327
Bram Moolenaar071d4272004-06-13 20:20:40 +000021328 /* when being verbose, mention the return value */
21329 if (p_verbose >= 12)
21330 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021331 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021332 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021333
Bram Moolenaar071d4272004-06-13 20:20:40 +000021334 if (aborting())
Bram Moolenaar555b2802005-05-19 21:08:39 +000021335 smsg((char_u *)_("%s aborted"), sourcing_name);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021336 else if (fc->rettv->v_type == VAR_NUMBER)
Bram Moolenaar555b2802005-05-19 21:08:39 +000021337 smsg((char_u *)_("%s returning #%ld"), sourcing_name,
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021338 (long)fc->rettv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +000021339 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000021340 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000021341 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021342 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021343 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021344 char_u *s;
Bram Moolenaar758711c2005-02-02 23:11:38 +000021345
Bram Moolenaar555b2802005-05-19 21:08:39 +000021346 /* The value may be very long. Skip the middle part, so that we
21347 * have some idea how it starts and ends. smsg() would always
21348 * truncate it at the end. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021349 s = tv2string(fc->rettv, &tofree, numbuf2, 0);
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021350 if (s != NULL)
21351 {
21352 trunc_string(s, buf, MSG_BUF_CLEN);
21353 smsg((char_u *)_("%s returning %s"), sourcing_name, buf);
21354 vim_free(tofree);
21355 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021356 }
21357 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021358
21359 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021360 --no_wait_return;
21361 }
21362
21363 vim_free(sourcing_name);
21364 sourcing_name = save_sourcing_name;
21365 sourcing_lnum = save_sourcing_lnum;
21366 current_SID = save_current_SID;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021367#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021368 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021369 script_prof_restore(&wait_start);
21370#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021371
21372 if (p_verbose >= 12 && sourcing_name != NULL)
21373 {
21374 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021375 verbose_enter_scroll();
21376
Bram Moolenaar555b2802005-05-19 21:08:39 +000021377 smsg((char_u *)_("continuing in %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021378 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021379
21380 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021381 --no_wait_return;
21382 }
21383
21384 did_emsg |= save_did_emsg;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021385 current_funccal = fc->caller;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021386 --depth;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021387
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +000021388 /* If the a:000 list and the l: and a: dicts are not referenced we can
21389 * free the funccall_T and what's in it. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021390 if (fc->l_varlist.lv_refcount == DO_NOT_FREE_CNT
21391 && fc->l_vars.dv_refcount == DO_NOT_FREE_CNT
21392 && fc->l_avars.dv_refcount == DO_NOT_FREE_CNT)
21393 {
21394 free_funccal(fc, FALSE);
21395 }
21396 else
21397 {
21398 hashitem_T *hi;
21399 listitem_T *li;
21400 int todo;
21401
21402 /* "fc" is still in use. This can happen when returning "a:000" or
21403 * assigning "l:" to a global variable.
21404 * Link "fc" in the list for garbage collection later. */
21405 fc->caller = previous_funccal;
21406 previous_funccal = fc;
21407
21408 /* Make a copy of the a: variables, since we didn't do that above. */
21409 todo = (int)fc->l_avars.dv_hashtab.ht_used;
21410 for (hi = fc->l_avars.dv_hashtab.ht_array; todo > 0; ++hi)
21411 {
21412 if (!HASHITEM_EMPTY(hi))
21413 {
21414 --todo;
21415 v = HI2DI(hi);
21416 copy_tv(&v->di_tv, &v->di_tv);
21417 }
21418 }
21419
21420 /* Make a copy of the a:000 items, since we didn't do that above. */
21421 for (li = fc->l_varlist.lv_first; li != NULL; li = li->li_next)
21422 copy_tv(&li->li_tv, &li->li_tv);
21423 }
21424}
21425
21426/*
21427 * Return TRUE if items in "fc" do not have "copyID". That means they are not
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +000021428 * referenced from anywhere that is in use.
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021429 */
21430 static int
21431can_free_funccal(fc, copyID)
21432 funccall_T *fc;
21433 int copyID;
21434{
21435 return (fc->l_varlist.lv_copyID != copyID
21436 && fc->l_vars.dv_copyID != copyID
21437 && fc->l_avars.dv_copyID != copyID);
21438}
21439
21440/*
21441 * Free "fc" and what it contains.
21442 */
21443 static void
21444free_funccal(fc, free_val)
21445 funccall_T *fc;
21446 int free_val; /* a: vars were allocated */
21447{
21448 listitem_T *li;
21449
21450 /* The a: variables typevals may not have been allocated, only free the
21451 * allocated variables. */
21452 vars_clear_ext(&fc->l_avars.dv_hashtab, free_val);
21453
21454 /* free all l: variables */
21455 vars_clear(&fc->l_vars.dv_hashtab);
21456
21457 /* Free the a:000 variables if they were allocated. */
21458 if (free_val)
21459 for (li = fc->l_varlist.lv_first; li != NULL; li = li->li_next)
21460 clear_tv(&li->li_tv);
21461
21462 vim_free(fc);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021463}
21464
21465/*
Bram Moolenaar33570922005-01-25 22:26:29 +000021466 * Add a number variable "name" to dict "dp" with value "nr".
21467 */
21468 static void
21469add_nr_var(dp, v, name, nr)
21470 dict_T *dp;
21471 dictitem_T *v;
21472 char *name;
21473 varnumber_T nr;
21474{
21475 STRCPY(v->di_key, name);
21476 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21477 hash_add(&dp->dv_hashtab, DI2HIKEY(v));
21478 v->di_tv.v_type = VAR_NUMBER;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021479 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021480 v->di_tv.vval.v_number = nr;
21481}
21482
21483/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000021484 * ":return [expr]"
21485 */
21486 void
21487ex_return(eap)
21488 exarg_T *eap;
21489{
21490 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000021491 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021492 int returning = FALSE;
21493
21494 if (current_funccal == NULL)
21495 {
21496 EMSG(_("E133: :return not inside a function"));
21497 return;
21498 }
21499
21500 if (eap->skip)
21501 ++emsg_skip;
21502
21503 eap->nextcmd = NULL;
21504 if ((*arg != NUL && *arg != '|' && *arg != '\n')
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021505 && eval0(arg, &rettv, &eap->nextcmd, !eap->skip) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021506 {
21507 if (!eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021508 returning = do_return(eap, FALSE, TRUE, &rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021509 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021510 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021511 }
21512 /* It's safer to return also on error. */
21513 else if (!eap->skip)
21514 {
21515 /*
21516 * Return unless the expression evaluation has been cancelled due to an
21517 * aborting error, an interrupt, or an exception.
21518 */
21519 if (!aborting())
21520 returning = do_return(eap, FALSE, TRUE, NULL);
21521 }
21522
21523 /* When skipping or the return gets pending, advance to the next command
21524 * in this line (!returning). Otherwise, ignore the rest of the line.
21525 * Following lines will be ignored by get_func_line(). */
21526 if (returning)
21527 eap->nextcmd = NULL;
21528 else if (eap->nextcmd == NULL) /* no argument */
21529 eap->nextcmd = check_nextcmd(arg);
21530
21531 if (eap->skip)
21532 --emsg_skip;
21533}
21534
21535/*
21536 * Return from a function. Possibly makes the return pending. Also called
21537 * for a pending return at the ":endtry" or after returning from an extra
21538 * do_cmdline(). "reanimate" is used in the latter case. "is_cmd" is set
Bram Moolenaar33570922005-01-25 22:26:29 +000021539 * when called due to a ":return" command. "rettv" may point to a typval_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021540 * with the return rettv. Returns TRUE when the return can be carried out,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021541 * FALSE when the return gets pending.
21542 */
21543 int
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021544do_return(eap, reanimate, is_cmd, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021545 exarg_T *eap;
21546 int reanimate;
21547 int is_cmd;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021548 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021549{
21550 int idx;
21551 struct condstack *cstack = eap->cstack;
21552
21553 if (reanimate)
21554 /* Undo the return. */
21555 current_funccal->returned = FALSE;
21556
21557 /*
21558 * Cleanup (and inactivate) conditionals, but stop when a try conditional
21559 * not in its finally clause (which then is to be executed next) is found.
21560 * In this case, make the ":return" pending for execution at the ":endtry".
21561 * Otherwise, return normally.
21562 */
21563 idx = cleanup_conditionals(eap->cstack, 0, TRUE);
21564 if (idx >= 0)
21565 {
21566 cstack->cs_pending[idx] = CSTP_RETURN;
21567
21568 if (!is_cmd && !reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021569 /* A pending return again gets pending. "rettv" points to an
21570 * allocated variable with the rettv of the original ":return"'s
Bram Moolenaar071d4272004-06-13 20:20:40 +000021571 * argument if present or is NULL else. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021572 cstack->cs_rettv[idx] = rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021573 else
21574 {
21575 /* When undoing a return in order to make it pending, get the stored
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021576 * return rettv. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021577 if (reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021578 rettv = current_funccal->rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021579
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021580 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021581 {
21582 /* Store the value of the pending return. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021583 if ((cstack->cs_rettv[idx] = alloc_tv()) != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000021584 *(typval_T *)cstack->cs_rettv[idx] = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021585 else
21586 EMSG(_(e_outofmem));
21587 }
21588 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021589 cstack->cs_rettv[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021590
21591 if (reanimate)
21592 {
21593 /* The pending return value could be overwritten by a ":return"
21594 * without argument in a finally clause; reset the default
21595 * return value. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021596 current_funccal->rettv->v_type = VAR_NUMBER;
21597 current_funccal->rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021598 }
21599 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021600 report_make_pending(CSTP_RETURN, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021601 }
21602 else
21603 {
21604 current_funccal->returned = TRUE;
21605
21606 /* If the return is carried out now, store the return value. For
21607 * a return immediately after reanimation, the value is already
21608 * there. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021609 if (!reanimate && rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021610 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021611 clear_tv(current_funccal->rettv);
Bram Moolenaar33570922005-01-25 22:26:29 +000021612 *current_funccal->rettv = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021613 if (!is_cmd)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021614 vim_free(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021615 }
21616 }
21617
21618 return idx < 0;
21619}
21620
21621/*
21622 * Free the variable with a pending return value.
21623 */
21624 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021625discard_pending_return(rettv)
21626 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021627{
Bram Moolenaar33570922005-01-25 22:26:29 +000021628 free_tv((typval_T *)rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021629}
21630
21631/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021632 * Generate a return command for producing the value of "rettv". The result
Bram Moolenaar071d4272004-06-13 20:20:40 +000021633 * is an allocated string. Used by report_pending() for verbose messages.
21634 */
21635 char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021636get_return_cmd(rettv)
21637 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021638{
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021639 char_u *s = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021640 char_u *tofree = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021641 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021642
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021643 if (rettv != NULL)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021644 s = echo_string((typval_T *)rettv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021645 if (s == NULL)
21646 s = (char_u *)"";
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021647
21648 STRCPY(IObuff, ":return ");
21649 STRNCPY(IObuff + 8, s, IOSIZE - 8);
21650 if (STRLEN(s) + 8 >= IOSIZE)
21651 STRCPY(IObuff + IOSIZE - 4, "...");
21652 vim_free(tofree);
21653 return vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021654}
21655
21656/*
21657 * Get next function line.
21658 * Called by do_cmdline() to get the next line.
21659 * Returns allocated string, or NULL for end of function.
21660 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021661 char_u *
21662get_func_line(c, cookie, indent)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000021663 int c UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021664 void *cookie;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000021665 int indent UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021666{
Bram Moolenaar33570922005-01-25 22:26:29 +000021667 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021668 ufunc_T *fp = fcp->func;
21669 char_u *retval;
21670 garray_T *gap; /* growarray with function lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021671
21672 /* If breakpoints have been added/deleted need to check for it. */
21673 if (fcp->dbg_tick != debug_tick)
21674 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021675 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021676 sourcing_lnum);
21677 fcp->dbg_tick = debug_tick;
21678 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021679#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021680 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021681 func_line_end(cookie);
21682#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021683
Bram Moolenaar05159a02005-02-26 23:04:13 +000021684 gap = &fp->uf_lines;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021685 if (((fp->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
21686 || fcp->returned)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021687 retval = NULL;
21688 else
21689 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021690 /* Skip NULL lines (continuation lines). */
21691 while (fcp->linenr < gap->ga_len
21692 && ((char_u **)(gap->ga_data))[fcp->linenr] == NULL)
21693 ++fcp->linenr;
21694 if (fcp->linenr >= gap->ga_len)
21695 retval = NULL;
21696 else
21697 {
21698 retval = vim_strsave(((char_u **)(gap->ga_data))[fcp->linenr++]);
21699 sourcing_lnum = fcp->linenr;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021700#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021701 if (do_profiling == PROF_YES)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021702 func_line_start(cookie);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021703#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021704 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021705 }
21706
21707 /* Did we encounter a breakpoint? */
21708 if (fcp->breakpoint != 0 && fcp->breakpoint <= sourcing_lnum)
21709 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021710 dbg_breakpoint(fp->uf_name, sourcing_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021711 /* Find next breakpoint. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000021712 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021713 sourcing_lnum);
21714 fcp->dbg_tick = debug_tick;
21715 }
21716
21717 return retval;
21718}
21719
Bram Moolenaar05159a02005-02-26 23:04:13 +000021720#if defined(FEAT_PROFILE) || defined(PROTO)
21721/*
21722 * Called when starting to read a function line.
21723 * "sourcing_lnum" must be correct!
21724 * When skipping lines it may not actually be executed, but we won't find out
21725 * until later and we need to store the time now.
21726 */
21727 void
21728func_line_start(cookie)
21729 void *cookie;
21730{
21731 funccall_T *fcp = (funccall_T *)cookie;
21732 ufunc_T *fp = fcp->func;
21733
21734 if (fp->uf_profiling && sourcing_lnum >= 1
21735 && sourcing_lnum <= fp->uf_lines.ga_len)
21736 {
21737 fp->uf_tml_idx = sourcing_lnum - 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021738 /* Skip continuation lines. */
21739 while (fp->uf_tml_idx > 0 && FUNCLINE(fp, fp->uf_tml_idx) == NULL)
21740 --fp->uf_tml_idx;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021741 fp->uf_tml_execed = FALSE;
21742 profile_start(&fp->uf_tml_start);
21743 profile_zero(&fp->uf_tml_children);
21744 profile_get_wait(&fp->uf_tml_wait);
21745 }
21746}
21747
21748/*
21749 * Called when actually executing a function line.
21750 */
21751 void
21752func_line_exec(cookie)
21753 void *cookie;
21754{
21755 funccall_T *fcp = (funccall_T *)cookie;
21756 ufunc_T *fp = fcp->func;
21757
21758 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21759 fp->uf_tml_execed = TRUE;
21760}
21761
21762/*
21763 * Called when done with a function line.
21764 */
21765 void
21766func_line_end(cookie)
21767 void *cookie;
21768{
21769 funccall_T *fcp = (funccall_T *)cookie;
21770 ufunc_T *fp = fcp->func;
21771
21772 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21773 {
21774 if (fp->uf_tml_execed)
21775 {
21776 ++fp->uf_tml_count[fp->uf_tml_idx];
21777 profile_end(&fp->uf_tml_start);
21778 profile_sub_wait(&fp->uf_tml_wait, &fp->uf_tml_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021779 profile_add(&fp->uf_tml_total[fp->uf_tml_idx], &fp->uf_tml_start);
Bram Moolenaar1056d982006-03-09 22:37:52 +000021780 profile_self(&fp->uf_tml_self[fp->uf_tml_idx], &fp->uf_tml_start,
21781 &fp->uf_tml_children);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021782 }
21783 fp->uf_tml_idx = -1;
21784 }
21785}
21786#endif
21787
Bram Moolenaar071d4272004-06-13 20:20:40 +000021788/*
21789 * Return TRUE if the currently active function should be ended, because a
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021790 * return was encountered or an error occurred. Used inside a ":while".
Bram Moolenaar071d4272004-06-13 20:20:40 +000021791 */
21792 int
21793func_has_ended(cookie)
21794 void *cookie;
21795{
Bram Moolenaar33570922005-01-25 22:26:29 +000021796 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021797
21798 /* Ignore the "abort" flag if the abortion behavior has been changed due to
21799 * an error inside a try conditional. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021800 return (((fcp->func->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
Bram Moolenaar071d4272004-06-13 20:20:40 +000021801 || fcp->returned);
21802}
21803
21804/*
21805 * return TRUE if cookie indicates a function which "abort"s on errors.
21806 */
21807 int
21808func_has_abort(cookie)
21809 void *cookie;
21810{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021811 return ((funccall_T *)cookie)->func->uf_flags & FC_ABORT;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021812}
21813
21814#if defined(FEAT_VIMINFO) || defined(FEAT_SESSION)
21815typedef enum
21816{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021817 VAR_FLAVOUR_DEFAULT, /* doesn't start with uppercase */
21818 VAR_FLAVOUR_SESSION, /* starts with uppercase, some lower */
21819 VAR_FLAVOUR_VIMINFO /* all uppercase */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021820} var_flavour_T;
21821
21822static var_flavour_T var_flavour __ARGS((char_u *varname));
21823
21824 static var_flavour_T
21825var_flavour(varname)
21826 char_u *varname;
21827{
21828 char_u *p = varname;
21829
21830 if (ASCII_ISUPPER(*p))
21831 {
21832 while (*(++p))
21833 if (ASCII_ISLOWER(*p))
21834 return VAR_FLAVOUR_SESSION;
21835 return VAR_FLAVOUR_VIMINFO;
21836 }
21837 else
21838 return VAR_FLAVOUR_DEFAULT;
21839}
21840#endif
21841
21842#if defined(FEAT_VIMINFO) || defined(PROTO)
21843/*
21844 * Restore global vars that start with a capital from the viminfo file
21845 */
21846 int
21847read_viminfo_varlist(virp, writing)
21848 vir_T *virp;
21849 int writing;
21850{
21851 char_u *tab;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021852 int type = VAR_NUMBER;
Bram Moolenaar33570922005-01-25 22:26:29 +000021853 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021854
21855 if (!writing && (find_viminfo_parameter('!') != NULL))
21856 {
21857 tab = vim_strchr(virp->vir_line + 1, '\t');
21858 if (tab != NULL)
21859 {
21860 *tab++ = '\0'; /* isolate the variable name */
21861 if (*tab == 'S') /* string var */
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021862 type = VAR_STRING;
21863#ifdef FEAT_FLOAT
21864 else if (*tab == 'F')
21865 type = VAR_FLOAT;
21866#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021867
21868 tab = vim_strchr(tab, '\t');
21869 if (tab != NULL)
21870 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021871 tv.v_type = type;
21872 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021873 tv.vval.v_string = viminfo_readstring(virp,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021874 (int)(tab - virp->vir_line + 1), TRUE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021875#ifdef FEAT_FLOAT
21876 else if (type == VAR_FLOAT)
21877 (void)string2float(tab + 1, &tv.vval.v_float);
21878#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021879 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021880 tv.vval.v_number = atol((char *)tab + 1);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021881 set_var(virp->vir_line + 1, &tv, FALSE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021882 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021883 vim_free(tv.vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021884 }
21885 }
21886 }
21887
21888 return viminfo_readline(virp);
21889}
21890
21891/*
21892 * Write global vars that start with a capital to the viminfo file
21893 */
21894 void
21895write_viminfo_varlist(fp)
21896 FILE *fp;
21897{
Bram Moolenaar33570922005-01-25 22:26:29 +000021898 hashitem_T *hi;
21899 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021900 int todo;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021901 char *s;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021902 char_u *p;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021903 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021904 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021905
21906 if (find_viminfo_parameter('!') == NULL)
21907 return;
21908
21909 fprintf(fp, _("\n# global variables:\n"));
Bram Moolenaara7043832005-01-21 11:56:39 +000021910
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021911 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021912 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021913 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021914 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021915 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021916 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021917 this_var = HI2DI(hi);
21918 if (var_flavour(this_var->di_key) == VAR_FLAVOUR_VIMINFO)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021919 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021920 switch (this_var->di_tv.v_type)
Bram Moolenaara7043832005-01-21 11:56:39 +000021921 {
21922 case VAR_STRING: s = "STR"; break;
21923 case VAR_NUMBER: s = "NUM"; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021924#ifdef FEAT_FLOAT
21925 case VAR_FLOAT: s = "FLO"; break;
21926#endif
Bram Moolenaara7043832005-01-21 11:56:39 +000021927 default: continue;
21928 }
Bram Moolenaar33570922005-01-25 22:26:29 +000021929 fprintf(fp, "!%s\t%s\t", this_var->di_key, s);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021930 p = echo_string(&this_var->di_tv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021931 if (p != NULL)
21932 viminfo_writestring(fp, p);
Bram Moolenaara7043832005-01-21 11:56:39 +000021933 vim_free(tofree);
21934 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021935 }
21936 }
21937}
21938#endif
21939
21940#if defined(FEAT_SESSION) || defined(PROTO)
21941 int
21942store_session_globals(fd)
21943 FILE *fd;
21944{
Bram Moolenaar33570922005-01-25 22:26:29 +000021945 hashitem_T *hi;
21946 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021947 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021948 char_u *p, *t;
21949
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021950 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021951 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021952 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021953 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021954 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021955 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021956 this_var = HI2DI(hi);
21957 if ((this_var->di_tv.v_type == VAR_NUMBER
21958 || this_var->di_tv.v_type == VAR_STRING)
21959 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021960 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021961 /* Escape special characters with a backslash. Turn a LF and
21962 * CR into \n and \r. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021963 p = vim_strsave_escaped(get_tv_string(&this_var->di_tv),
Bram Moolenaara7043832005-01-21 11:56:39 +000021964 (char_u *)"\\\"\n\r");
21965 if (p == NULL) /* out of memory */
21966 break;
21967 for (t = p; *t != NUL; ++t)
21968 if (*t == '\n')
21969 *t = 'n';
21970 else if (*t == '\r')
21971 *t = 'r';
21972 if ((fprintf(fd, "let %s = %c%s%c",
Bram Moolenaar33570922005-01-25 22:26:29 +000021973 this_var->di_key,
21974 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21975 : ' ',
21976 p,
21977 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21978 : ' ') < 0)
Bram Moolenaara7043832005-01-21 11:56:39 +000021979 || put_eol(fd) == FAIL)
21980 {
21981 vim_free(p);
21982 return FAIL;
21983 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021984 vim_free(p);
21985 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021986#ifdef FEAT_FLOAT
21987 else if (this_var->di_tv.v_type == VAR_FLOAT
21988 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
21989 {
21990 float_T f = this_var->di_tv.vval.v_float;
21991 int sign = ' ';
21992
21993 if (f < 0)
21994 {
21995 f = -f;
21996 sign = '-';
21997 }
21998 if ((fprintf(fd, "let %s = %c&%f",
21999 this_var->di_key, sign, f) < 0)
22000 || put_eol(fd) == FAIL)
22001 return FAIL;
22002 }
22003#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000022004 }
22005 }
22006 return OK;
22007}
22008#endif
22009
Bram Moolenaar661b1822005-07-28 22:36:45 +000022010/*
22011 * Display script name where an item was last set.
22012 * Should only be invoked when 'verbose' is non-zero.
22013 */
22014 void
22015last_set_msg(scriptID)
22016 scid_T scriptID;
22017{
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000022018 char_u *p;
22019
Bram Moolenaar661b1822005-07-28 22:36:45 +000022020 if (scriptID != 0)
22021 {
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000022022 p = home_replace_save(NULL, get_scriptname(scriptID));
22023 if (p != NULL)
22024 {
22025 verbose_enter();
22026 MSG_PUTS(_("\n\tLast set from "));
22027 MSG_PUTS(p);
22028 vim_free(p);
22029 verbose_leave();
22030 }
Bram Moolenaar661b1822005-07-28 22:36:45 +000022031 }
22032}
22033
Bram Moolenaard812df62008-11-09 12:46:09 +000022034/*
22035 * List v:oldfiles in a nice way.
22036 */
Bram Moolenaard812df62008-11-09 12:46:09 +000022037 void
22038ex_oldfiles(eap)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000022039 exarg_T *eap UNUSED;
Bram Moolenaard812df62008-11-09 12:46:09 +000022040{
22041 list_T *l = vimvars[VV_OLDFILES].vv_list;
22042 listitem_T *li;
22043 int nr = 0;
22044
22045 if (l == NULL)
22046 msg((char_u *)_("No old files"));
22047 else
22048 {
22049 msg_start();
22050 msg_scroll = TRUE;
22051 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
22052 {
22053 msg_outnum((long)++nr);
22054 MSG_PUTS(": ");
22055 msg_outtrans(get_tv_string(&li->li_tv));
22056 msg_putchar('\n');
22057 out_flush(); /* output one line at a time */
22058 ui_breakcheck();
22059 }
22060 /* Assume "got_int" was set to truncate the listing. */
22061 got_int = FALSE;
22062
22063#ifdef FEAT_BROWSE_CMD
22064 if (cmdmod.browse)
22065 {
22066 quit_more = FALSE;
22067 nr = prompt_for_number(FALSE);
22068 msg_starthere();
22069 if (nr > 0)
22070 {
22071 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
22072 (long)nr);
22073
22074 if (p != NULL)
22075 {
22076 p = expand_env_save(p);
22077 eap->arg = p;
22078 eap->cmdidx = CMD_edit;
22079 cmdmod.browse = FALSE;
22080 do_exedit(eap, NULL);
22081 vim_free(p);
22082 }
22083 }
22084 }
22085#endif
22086 }
22087}
22088
Bram Moolenaar071d4272004-06-13 20:20:40 +000022089#endif /* FEAT_EVAL */
22090
Bram Moolenaar071d4272004-06-13 20:20:40 +000022091
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022092#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022093
22094#ifdef WIN3264
22095/*
22096 * Functions for ":8" filename modifier: get 8.3 version of a filename.
22097 */
22098static int get_short_pathname __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22099static int shortpath_for_invalid_fname __ARGS((char_u **fname, char_u **bufp, int *fnamelen));
22100static int shortpath_for_partial __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22101
22102/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022103 * Get the short path (8.3) for the filename in "fnamep".
22104 * Only works for a valid file name.
22105 * When the path gets longer "fnamep" is changed and the allocated buffer
22106 * is put in "bufp".
22107 * *fnamelen is the length of "fnamep" and set to 0 for a nonexistent path.
22108 * Returns OK on success, FAIL on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022109 */
22110 static int
22111get_short_pathname(fnamep, bufp, fnamelen)
22112 char_u **fnamep;
22113 char_u **bufp;
22114 int *fnamelen;
22115{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022116 int l, len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022117 char_u *newbuf;
22118
22119 len = *fnamelen;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022120 l = GetShortPathName(*fnamep, *fnamep, len);
22121 if (l > len - 1)
22122 {
22123 /* If that doesn't work (not enough space), then save the string
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022124 * and try again with a new buffer big enough. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022125 newbuf = vim_strnsave(*fnamep, l);
22126 if (newbuf == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022127 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022128
22129 vim_free(*bufp);
22130 *fnamep = *bufp = newbuf;
22131
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022132 /* Really should always succeed, as the buffer is big enough. */
22133 l = GetShortPathName(*fnamep, *fnamep, l+1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022134 }
22135
22136 *fnamelen = l;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022137 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022138}
22139
22140/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022141 * Get the short path (8.3) for the filename in "fname". The converted
22142 * path is returned in "bufp".
22143 *
22144 * Some of the directories specified in "fname" may not exist. This function
22145 * will shorten the existing directories at the beginning of the path and then
22146 * append the remaining non-existing path.
22147 *
22148 * fname - Pointer to the filename to shorten. On return, contains the
22149 * pointer to the shortened pathname
22150 * bufp - Pointer to an allocated buffer for the filename.
22151 * fnamelen - Length of the filename pointed to by fname
22152 *
22153 * Returns OK on success (or nothing done) and FAIL on failure (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +000022154 */
22155 static int
22156shortpath_for_invalid_fname(fname, bufp, fnamelen)
22157 char_u **fname;
22158 char_u **bufp;
22159 int *fnamelen;
22160{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022161 char_u *short_fname, *save_fname, *pbuf_unused;
22162 char_u *endp, *save_endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022163 char_u ch;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022164 int old_len, len;
22165 int new_len, sfx_len;
22166 int retval = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022167
22168 /* Make a copy */
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022169 old_len = *fnamelen;
22170 save_fname = vim_strnsave(*fname, old_len);
22171 pbuf_unused = NULL;
22172 short_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022173
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022174 endp = save_fname + old_len - 1; /* Find the end of the copy */
22175 save_endp = endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022176
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022177 /*
22178 * Try shortening the supplied path till it succeeds by removing one
22179 * directory at a time from the tail of the path.
22180 */
22181 len = 0;
22182 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022183 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022184 /* go back one path-separator */
22185 while (endp > save_fname && !after_pathsep(save_fname, endp + 1))
22186 --endp;
22187 if (endp <= save_fname)
22188 break; /* processed the complete path */
22189
22190 /*
22191 * Replace the path separator with a NUL and try to shorten the
22192 * resulting path.
22193 */
22194 ch = *endp;
22195 *endp = 0;
22196 short_fname = save_fname;
Bram Moolenaarc236c162008-07-13 17:41:49 +000022197 len = (int)STRLEN(short_fname) + 1;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022198 if (get_short_pathname(&short_fname, &pbuf_unused, &len) == FAIL)
22199 {
22200 retval = FAIL;
22201 goto theend;
22202 }
22203 *endp = ch; /* preserve the string */
22204
22205 if (len > 0)
22206 break; /* successfully shortened the path */
22207
22208 /* failed to shorten the path. Skip the path separator */
22209 --endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022210 }
22211
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022212 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022213 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022214 /*
22215 * Succeeded in shortening the path. Now concatenate the shortened
22216 * path with the remaining path at the tail.
22217 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022218
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022219 /* Compute the length of the new path. */
22220 sfx_len = (int)(save_endp - endp) + 1;
22221 new_len = len + sfx_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022222
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022223 *fnamelen = new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022224 vim_free(*bufp);
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022225 if (new_len > old_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022226 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022227 /* There is not enough space in the currently allocated string,
22228 * copy it to a buffer big enough. */
22229 *fname = *bufp = vim_strnsave(short_fname, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022230 if (*fname == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022231 {
22232 retval = FAIL;
22233 goto theend;
22234 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022235 }
22236 else
22237 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022238 /* Transfer short_fname to the main buffer (it's big enough),
22239 * unless get_short_pathname() did its work in-place. */
22240 *fname = *bufp = save_fname;
22241 if (short_fname != save_fname)
22242 vim_strncpy(save_fname, short_fname, len);
22243 save_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022244 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022245
22246 /* concat the not-shortened part of the path */
22247 vim_strncpy(*fname + len, endp, sfx_len);
22248 (*fname)[new_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022249 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022250
22251theend:
22252 vim_free(pbuf_unused);
22253 vim_free(save_fname);
22254
22255 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022256}
22257
22258/*
22259 * Get a pathname for a partial path.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022260 * Returns OK for success, FAIL for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022261 */
22262 static int
22263shortpath_for_partial(fnamep, bufp, fnamelen)
22264 char_u **fnamep;
22265 char_u **bufp;
22266 int *fnamelen;
22267{
22268 int sepcount, len, tflen;
22269 char_u *p;
22270 char_u *pbuf, *tfname;
22271 int hasTilde;
22272
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022273 /* Count up the path separators from the RHS.. so we know which part
22274 * of the path to return. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022275 sepcount = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022276 for (p = *fnamep; p < *fnamep + *fnamelen; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022277 if (vim_ispathsep(*p))
22278 ++sepcount;
22279
22280 /* Need full path first (use expand_env() to remove a "~/") */
22281 hasTilde = (**fnamep == '~');
22282 if (hasTilde)
22283 pbuf = tfname = expand_env_save(*fnamep);
22284 else
22285 pbuf = tfname = FullName_save(*fnamep, FALSE);
22286
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000022287 len = tflen = (int)STRLEN(tfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022288
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022289 if (get_short_pathname(&tfname, &pbuf, &len) == FAIL)
22290 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022291
22292 if (len == 0)
22293 {
22294 /* Don't have a valid filename, so shorten the rest of the
22295 * path if we can. This CAN give us invalid 8.3 filenames, but
22296 * there's not a lot of point in guessing what it might be.
22297 */
22298 len = tflen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022299 if (shortpath_for_invalid_fname(&tfname, &pbuf, &len) == FAIL)
22300 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022301 }
22302
22303 /* Count the paths backward to find the beginning of the desired string. */
22304 for (p = tfname + len - 1; p >= tfname; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022305 {
22306#ifdef FEAT_MBYTE
22307 if (has_mbyte)
22308 p -= mb_head_off(tfname, p);
22309#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000022310 if (vim_ispathsep(*p))
22311 {
22312 if (sepcount == 0 || (hasTilde && sepcount == 1))
22313 break;
22314 else
22315 sepcount --;
22316 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022317 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022318 if (hasTilde)
22319 {
22320 --p;
22321 if (p >= tfname)
22322 *p = '~';
22323 else
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022324 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022325 }
22326 else
22327 ++p;
22328
22329 /* Copy in the string - p indexes into tfname - allocated at pbuf */
22330 vim_free(*bufp);
22331 *fnamelen = (int)STRLEN(p);
22332 *bufp = pbuf;
22333 *fnamep = p;
22334
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022335 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022336}
22337#endif /* WIN3264 */
22338
22339/*
22340 * Adjust a filename, according to a string of modifiers.
22341 * *fnamep must be NUL terminated when called. When returning, the length is
22342 * determined by *fnamelen.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022343 * Returns VALID_ flags or -1 for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022344 * When there is an error, *fnamep is set to NULL.
22345 */
22346 int
22347modify_fname(src, usedlen, fnamep, bufp, fnamelen)
22348 char_u *src; /* string with modifiers */
22349 int *usedlen; /* characters after src that are used */
22350 char_u **fnamep; /* file name so far */
22351 char_u **bufp; /* buffer for allocated file name or NULL */
22352 int *fnamelen; /* length of fnamep */
22353{
22354 int valid = 0;
22355 char_u *tail;
22356 char_u *s, *p, *pbuf;
22357 char_u dirname[MAXPATHL];
22358 int c;
22359 int has_fullname = 0;
22360#ifdef WIN3264
22361 int has_shortname = 0;
22362#endif
22363
22364repeat:
22365 /* ":p" - full path/file_name */
22366 if (src[*usedlen] == ':' && src[*usedlen + 1] == 'p')
22367 {
22368 has_fullname = 1;
22369
22370 valid |= VALID_PATH;
22371 *usedlen += 2;
22372
22373 /* Expand "~/path" for all systems and "~user/path" for Unix and VMS */
22374 if ((*fnamep)[0] == '~'
22375#if !defined(UNIX) && !(defined(VMS) && defined(USER_HOME))
22376 && ((*fnamep)[1] == '/'
22377# ifdef BACKSLASH_IN_FILENAME
22378 || (*fnamep)[1] == '\\'
22379# endif
22380 || (*fnamep)[1] == NUL)
22381
22382#endif
22383 )
22384 {
22385 *fnamep = expand_env_save(*fnamep);
22386 vim_free(*bufp); /* free any allocated file name */
22387 *bufp = *fnamep;
22388 if (*fnamep == NULL)
22389 return -1;
22390 }
22391
22392 /* When "/." or "/.." is used: force expansion to get rid of it. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022393 for (p = *fnamep; *p != NUL; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022394 {
22395 if (vim_ispathsep(*p)
22396 && p[1] == '.'
22397 && (p[2] == NUL
22398 || vim_ispathsep(p[2])
22399 || (p[2] == '.'
22400 && (p[3] == NUL || vim_ispathsep(p[3])))))
22401 break;
22402 }
22403
22404 /* FullName_save() is slow, don't use it when not needed. */
22405 if (*p != NUL || !vim_isAbsName(*fnamep))
22406 {
22407 *fnamep = FullName_save(*fnamep, *p != NUL);
22408 vim_free(*bufp); /* free any allocated file name */
22409 *bufp = *fnamep;
22410 if (*fnamep == NULL)
22411 return -1;
22412 }
22413
22414 /* Append a path separator to a directory. */
22415 if (mch_isdir(*fnamep))
22416 {
22417 /* Make room for one or two extra characters. */
22418 *fnamep = vim_strnsave(*fnamep, (int)STRLEN(*fnamep) + 2);
22419 vim_free(*bufp); /* free any allocated file name */
22420 *bufp = *fnamep;
22421 if (*fnamep == NULL)
22422 return -1;
22423 add_pathsep(*fnamep);
22424 }
22425 }
22426
22427 /* ":." - path relative to the current directory */
22428 /* ":~" - path relative to the home directory */
22429 /* ":8" - shortname path - postponed till after */
22430 while (src[*usedlen] == ':'
22431 && ((c = src[*usedlen + 1]) == '.' || c == '~' || c == '8'))
22432 {
22433 *usedlen += 2;
22434 if (c == '8')
22435 {
22436#ifdef WIN3264
22437 has_shortname = 1; /* Postpone this. */
22438#endif
22439 continue;
22440 }
22441 pbuf = NULL;
22442 /* Need full path first (use expand_env() to remove a "~/") */
22443 if (!has_fullname)
22444 {
22445 if (c == '.' && **fnamep == '~')
22446 p = pbuf = expand_env_save(*fnamep);
22447 else
22448 p = pbuf = FullName_save(*fnamep, FALSE);
22449 }
22450 else
22451 p = *fnamep;
22452
22453 has_fullname = 0;
22454
22455 if (p != NULL)
22456 {
22457 if (c == '.')
22458 {
22459 mch_dirname(dirname, MAXPATHL);
22460 s = shorten_fname(p, dirname);
22461 if (s != NULL)
22462 {
22463 *fnamep = s;
22464 if (pbuf != NULL)
22465 {
22466 vim_free(*bufp); /* free any allocated file name */
22467 *bufp = pbuf;
22468 pbuf = NULL;
22469 }
22470 }
22471 }
22472 else
22473 {
22474 home_replace(NULL, p, dirname, MAXPATHL, TRUE);
22475 /* Only replace it when it starts with '~' */
22476 if (*dirname == '~')
22477 {
22478 s = vim_strsave(dirname);
22479 if (s != NULL)
22480 {
22481 *fnamep = s;
22482 vim_free(*bufp);
22483 *bufp = s;
22484 }
22485 }
22486 }
22487 vim_free(pbuf);
22488 }
22489 }
22490
22491 tail = gettail(*fnamep);
22492 *fnamelen = (int)STRLEN(*fnamep);
22493
22494 /* ":h" - head, remove "/file_name", can be repeated */
22495 /* Don't remove the first "/" or "c:\" */
22496 while (src[*usedlen] == ':' && src[*usedlen + 1] == 'h')
22497 {
22498 valid |= VALID_HEAD;
22499 *usedlen += 2;
22500 s = get_past_head(*fnamep);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022501 while (tail > s && after_pathsep(s, tail))
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022502 mb_ptr_back(*fnamep, tail);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022503 *fnamelen = (int)(tail - *fnamep);
22504#ifdef VMS
22505 if (*fnamelen > 0)
22506 *fnamelen += 1; /* the path separator is part of the path */
22507#endif
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022508 if (*fnamelen == 0)
22509 {
22510 /* Result is empty. Turn it into "." to make ":cd %:h" work. */
22511 p = vim_strsave((char_u *)".");
22512 if (p == NULL)
22513 return -1;
22514 vim_free(*bufp);
22515 *bufp = *fnamep = tail = p;
22516 *fnamelen = 1;
22517 }
22518 else
22519 {
22520 while (tail > s && !after_pathsep(s, tail))
22521 mb_ptr_back(*fnamep, tail);
22522 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022523 }
22524
22525 /* ":8" - shortname */
22526 if (src[*usedlen] == ':' && src[*usedlen + 1] == '8')
22527 {
22528 *usedlen += 2;
22529#ifdef WIN3264
22530 has_shortname = 1;
22531#endif
22532 }
22533
22534#ifdef WIN3264
22535 /* Check shortname after we have done 'heads' and before we do 'tails'
22536 */
22537 if (has_shortname)
22538 {
22539 pbuf = NULL;
22540 /* Copy the string if it is shortened by :h */
22541 if (*fnamelen < (int)STRLEN(*fnamep))
22542 {
22543 p = vim_strnsave(*fnamep, *fnamelen);
22544 if (p == 0)
22545 return -1;
22546 vim_free(*bufp);
22547 *bufp = *fnamep = p;
22548 }
22549
22550 /* Split into two implementations - makes it easier. First is where
22551 * there isn't a full name already, second is where there is.
22552 */
22553 if (!has_fullname && !vim_isAbsName(*fnamep))
22554 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022555 if (shortpath_for_partial(fnamep, bufp, fnamelen) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022556 return -1;
22557 }
22558 else
22559 {
22560 int l;
22561
22562 /* Simple case, already have the full-name
22563 * Nearly always shorter, so try first time. */
22564 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022565 if (get_short_pathname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022566 return -1;
22567
22568 if (l == 0)
22569 {
22570 /* Couldn't find the filename.. search the paths.
22571 */
22572 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022573 if (shortpath_for_invalid_fname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022574 return -1;
22575 }
22576 *fnamelen = l;
22577 }
22578 }
22579#endif /* WIN3264 */
22580
22581 /* ":t" - tail, just the basename */
22582 if (src[*usedlen] == ':' && src[*usedlen + 1] == 't')
22583 {
22584 *usedlen += 2;
22585 *fnamelen -= (int)(tail - *fnamep);
22586 *fnamep = tail;
22587 }
22588
22589 /* ":e" - extension, can be repeated */
22590 /* ":r" - root, without extension, can be repeated */
22591 while (src[*usedlen] == ':'
22592 && (src[*usedlen + 1] == 'e' || src[*usedlen + 1] == 'r'))
22593 {
22594 /* find a '.' in the tail:
22595 * - for second :e: before the current fname
22596 * - otherwise: The last '.'
22597 */
22598 if (src[*usedlen + 1] == 'e' && *fnamep > tail)
22599 s = *fnamep - 2;
22600 else
22601 s = *fnamep + *fnamelen - 1;
22602 for ( ; s > tail; --s)
22603 if (s[0] == '.')
22604 break;
22605 if (src[*usedlen + 1] == 'e') /* :e */
22606 {
22607 if (s > tail)
22608 {
22609 *fnamelen += (int)(*fnamep - (s + 1));
22610 *fnamep = s + 1;
22611#ifdef VMS
22612 /* cut version from the extension */
22613 s = *fnamep + *fnamelen - 1;
22614 for ( ; s > *fnamep; --s)
22615 if (s[0] == ';')
22616 break;
22617 if (s > *fnamep)
22618 *fnamelen = s - *fnamep;
22619#endif
22620 }
22621 else if (*fnamep <= tail)
22622 *fnamelen = 0;
22623 }
22624 else /* :r */
22625 {
22626 if (s > tail) /* remove one extension */
22627 *fnamelen = (int)(s - *fnamep);
22628 }
22629 *usedlen += 2;
22630 }
22631
22632 /* ":s?pat?foo?" - substitute */
22633 /* ":gs?pat?foo?" - global substitute */
22634 if (src[*usedlen] == ':'
22635 && (src[*usedlen + 1] == 's'
22636 || (src[*usedlen + 1] == 'g' && src[*usedlen + 2] == 's')))
22637 {
22638 char_u *str;
22639 char_u *pat;
22640 char_u *sub;
22641 int sep;
22642 char_u *flags;
22643 int didit = FALSE;
22644
22645 flags = (char_u *)"";
22646 s = src + *usedlen + 2;
22647 if (src[*usedlen + 1] == 'g')
22648 {
22649 flags = (char_u *)"g";
22650 ++s;
22651 }
22652
22653 sep = *s++;
22654 if (sep)
22655 {
22656 /* find end of pattern */
22657 p = vim_strchr(s, sep);
22658 if (p != NULL)
22659 {
22660 pat = vim_strnsave(s, (int)(p - s));
22661 if (pat != NULL)
22662 {
22663 s = p + 1;
22664 /* find end of substitution */
22665 p = vim_strchr(s, sep);
22666 if (p != NULL)
22667 {
22668 sub = vim_strnsave(s, (int)(p - s));
22669 str = vim_strnsave(*fnamep, *fnamelen);
22670 if (sub != NULL && str != NULL)
22671 {
22672 *usedlen = (int)(p + 1 - src);
22673 s = do_string_sub(str, pat, sub, flags);
22674 if (s != NULL)
22675 {
22676 *fnamep = s;
22677 *fnamelen = (int)STRLEN(s);
22678 vim_free(*bufp);
22679 *bufp = s;
22680 didit = TRUE;
22681 }
22682 }
22683 vim_free(sub);
22684 vim_free(str);
22685 }
22686 vim_free(pat);
22687 }
22688 }
22689 /* after using ":s", repeat all the modifiers */
22690 if (didit)
22691 goto repeat;
22692 }
22693 }
22694
22695 return valid;
22696}
22697
22698/*
22699 * Perform a substitution on "str" with pattern "pat" and substitute "sub".
22700 * "flags" can be "g" to do a global substitute.
22701 * Returns an allocated string, NULL for error.
22702 */
22703 char_u *
22704do_string_sub(str, pat, sub, flags)
22705 char_u *str;
22706 char_u *pat;
22707 char_u *sub;
22708 char_u *flags;
22709{
22710 int sublen;
22711 regmatch_T regmatch;
22712 int i;
22713 int do_all;
22714 char_u *tail;
22715 garray_T ga;
22716 char_u *ret;
22717 char_u *save_cpo;
22718
22719 /* Make 'cpoptions' empty, so that the 'l' flag doesn't work here */
22720 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022721 p_cpo = empty_option;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022722
22723 ga_init2(&ga, 1, 200);
22724
22725 do_all = (flags[0] == 'g');
22726
22727 regmatch.rm_ic = p_ic;
22728 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
22729 if (regmatch.regprog != NULL)
22730 {
22731 tail = str;
22732 while (vim_regexec_nl(&regmatch, str, (colnr_T)(tail - str)))
22733 {
22734 /*
22735 * Get some space for a temporary buffer to do the substitution
22736 * into. It will contain:
22737 * - The text up to where the match is.
22738 * - The substituted text.
22739 * - The text after the match.
22740 */
22741 sublen = vim_regsub(&regmatch, sub, tail, FALSE, TRUE, FALSE);
22742 if (ga_grow(&ga, (int)(STRLEN(tail) + sublen -
22743 (regmatch.endp[0] - regmatch.startp[0]))) == FAIL)
22744 {
22745 ga_clear(&ga);
22746 break;
22747 }
22748
22749 /* copy the text up to where the match is */
22750 i = (int)(regmatch.startp[0] - tail);
22751 mch_memmove((char_u *)ga.ga_data + ga.ga_len, tail, (size_t)i);
22752 /* add the substituted text */
22753 (void)vim_regsub(&regmatch, sub, (char_u *)ga.ga_data
22754 + ga.ga_len + i, TRUE, TRUE, FALSE);
22755 ga.ga_len += i + sublen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022756 /* avoid getting stuck on a match with an empty string */
22757 if (tail == regmatch.endp[0])
22758 {
22759 if (*tail == NUL)
22760 break;
22761 *((char_u *)ga.ga_data + ga.ga_len) = *tail++;
22762 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022763 }
22764 else
22765 {
22766 tail = regmatch.endp[0];
22767 if (*tail == NUL)
22768 break;
22769 }
22770 if (!do_all)
22771 break;
22772 }
22773
22774 if (ga.ga_data != NULL)
22775 STRCPY((char *)ga.ga_data + ga.ga_len, tail);
22776
22777 vim_free(regmatch.regprog);
22778 }
22779
22780 ret = vim_strsave(ga.ga_data == NULL ? str : (char_u *)ga.ga_data);
22781 ga_clear(&ga);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022782 if (p_cpo == empty_option)
22783 p_cpo = save_cpo;
22784 else
22785 /* Darn, evaluating {sub} expression changed the value. */
22786 free_string_option(save_cpo);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022787
22788 return ret;
22789}
22790
22791#endif /* defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) */