blob: f9babb3fc5ec311d6de3ce6505af4ab50166a39f [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));
Bram Moolenaar4463f292005-09-25 22:20:24 +0000436static int list_append_number __ARGS((list_T *l, varnumber_T n));
Bram Moolenaar33570922005-01-25 22:26:29 +0000437static int list_insert_tv __ARGS((list_T *l, typval_T *tv, listitem_T *item));
438static int list_extend __ARGS((list_T *l1, list_T *l2, listitem_T *bef));
439static int list_concat __ARGS((list_T *l1, list_T *l2, typval_T *tv));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000440static list_T *list_copy __ARGS((list_T *orig, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000441static void list_remove __ARGS((list_T *l, listitem_T *item, listitem_T *item2));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000442static char_u *list2string __ARGS((typval_T *tv, int copyID));
443static int list_join __ARGS((garray_T *gap, list_T *l, char_u *sep, int echo, int copyID));
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +0000444static int free_unref_items __ARGS((int copyID));
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000445static void set_ref_in_ht __ARGS((hashtab_T *ht, int copyID));
446static void set_ref_in_list __ARGS((list_T *l, int copyID));
447static void set_ref_in_item __ARGS((typval_T *tv, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000448static void dict_unref __ARGS((dict_T *d));
Bram Moolenaar685295c2006-10-15 20:37:38 +0000449static void dict_free __ARGS((dict_T *d, int recurse));
Bram Moolenaar33570922005-01-25 22:26:29 +0000450static dictitem_T *dictitem_copy __ARGS((dictitem_T *org));
451static void dictitem_remove __ARGS((dict_T *dict, dictitem_T *item));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000452static dict_T *dict_copy __ARGS((dict_T *orig, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000453static long dict_len __ARGS((dict_T *d));
454static dictitem_T *dict_find __ARGS((dict_T *d, char_u *key, int len));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000455static char_u *dict2string __ARGS((typval_T *tv, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000456static int get_dict_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000457static char_u *echo_string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
458static char_u *tv2string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000459static char_u *string_quote __ARGS((char_u *str, int function));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000460#ifdef FEAT_FLOAT
461static int string2float __ARGS((char_u *text, float_T *value));
462#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000463static int get_env_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
464static int find_internal_func __ARGS((char_u *name));
465static char_u *deref_func_name __ARGS((char_u *name, int *lenp));
466static int get_func_tv __ARGS((char_u *name, int len, typval_T *rettv, char_u **arg, linenr_T firstline, linenr_T lastline, int *doesrange, int evaluate, dict_T *selfdict));
467static int call_func __ARGS((char_u *name, int len, typval_T *rettv, int argcount, typval_T *argvars, linenr_T firstline, linenr_T lastline, int *doesrange, int evaluate, dict_T *selfdict));
Bram Moolenaar89d40322006-08-29 15:30:07 +0000468static void emsg_funcname __ARGS((char *ermsg, char_u *name));
Bram Moolenaar05bb9532008-07-04 09:44:11 +0000469static int non_zero_arg __ARGS((typval_T *argvars));
Bram Moolenaar33570922005-01-25 22:26:29 +0000470
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000471#ifdef FEAT_FLOAT
472static void f_abs __ARGS((typval_T *argvars, typval_T *rettv));
473#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000474static void f_add __ARGS((typval_T *argvars, typval_T *rettv));
475static void f_append __ARGS((typval_T *argvars, typval_T *rettv));
476static void f_argc __ARGS((typval_T *argvars, typval_T *rettv));
477static void f_argidx __ARGS((typval_T *argvars, typval_T *rettv));
478static void f_argv __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000479#ifdef FEAT_FLOAT
480static void f_atan __ARGS((typval_T *argvars, typval_T *rettv));
481#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000482static void f_browse __ARGS((typval_T *argvars, typval_T *rettv));
483static void f_browsedir __ARGS((typval_T *argvars, typval_T *rettv));
484static void f_bufexists __ARGS((typval_T *argvars, typval_T *rettv));
485static void f_buflisted __ARGS((typval_T *argvars, typval_T *rettv));
486static void f_bufloaded __ARGS((typval_T *argvars, typval_T *rettv));
487static void f_bufname __ARGS((typval_T *argvars, typval_T *rettv));
488static void f_bufnr __ARGS((typval_T *argvars, typval_T *rettv));
489static void f_bufwinnr __ARGS((typval_T *argvars, typval_T *rettv));
490static void f_byte2line __ARGS((typval_T *argvars, typval_T *rettv));
491static void f_byteidx __ARGS((typval_T *argvars, typval_T *rettv));
492static void f_call __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000493#ifdef FEAT_FLOAT
494static void f_ceil __ARGS((typval_T *argvars, typval_T *rettv));
495#endif
Bram Moolenaarf0acfce2006-03-17 23:21:19 +0000496static void f_changenr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000497static void f_char2nr __ARGS((typval_T *argvars, typval_T *rettv));
498static void f_cindent __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000499static void f_clearmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000500static void f_col __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar572cb562005-08-05 21:35:02 +0000501#if defined(FEAT_INS_EXPAND)
Bram Moolenaarade00832006-03-10 21:46:58 +0000502static void f_complete __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar572cb562005-08-05 21:35:02 +0000503static void f_complete_add __ARGS((typval_T *argvars, typval_T *rettv));
504static void f_complete_check __ARGS((typval_T *argvars, typval_T *rettv));
505#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000506static void f_confirm __ARGS((typval_T *argvars, typval_T *rettv));
507static void f_copy __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000508#ifdef FEAT_FLOAT
509static void f_cos __ARGS((typval_T *argvars, typval_T *rettv));
510#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000511static void f_count __ARGS((typval_T *argvars, typval_T *rettv));
512static void f_cscope_connection __ARGS((typval_T *argvars, typval_T *rettv));
513static void f_cursor __ARGS((typval_T *argsvars, typval_T *rettv));
514static void f_deepcopy __ARGS((typval_T *argvars, typval_T *rettv));
515static void f_delete __ARGS((typval_T *argvars, typval_T *rettv));
516static void f_did_filetype __ARGS((typval_T *argvars, typval_T *rettv));
517static void f_diff_filler __ARGS((typval_T *argvars, typval_T *rettv));
518static void f_diff_hlID __ARGS((typval_T *argvars, typval_T *rettv));
519static void f_empty __ARGS((typval_T *argvars, typval_T *rettv));
520static void f_escape __ARGS((typval_T *argvars, typval_T *rettv));
521static void f_eval __ARGS((typval_T *argvars, typval_T *rettv));
522static void f_eventhandler __ARGS((typval_T *argvars, typval_T *rettv));
523static void f_executable __ARGS((typval_T *argvars, typval_T *rettv));
524static void f_exists __ARGS((typval_T *argvars, typval_T *rettv));
525static void f_expand __ARGS((typval_T *argvars, typval_T *rettv));
526static void f_extend __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000527static void f_feedkeys __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000528static void f_filereadable __ARGS((typval_T *argvars, typval_T *rettv));
529static void f_filewritable __ARGS((typval_T *argvars, typval_T *rettv));
530static void f_filter __ARGS((typval_T *argvars, typval_T *rettv));
531static void f_finddir __ARGS((typval_T *argvars, typval_T *rettv));
532static void f_findfile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000533#ifdef FEAT_FLOAT
534static void f_float2nr __ARGS((typval_T *argvars, typval_T *rettv));
535static void f_floor __ARGS((typval_T *argvars, typval_T *rettv));
536#endif
Bram Moolenaaraebaf892008-05-28 14:49:58 +0000537static void f_fnameescape __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000538static void f_fnamemodify __ARGS((typval_T *argvars, typval_T *rettv));
539static void f_foldclosed __ARGS((typval_T *argvars, typval_T *rettv));
540static void f_foldclosedend __ARGS((typval_T *argvars, typval_T *rettv));
541static void f_foldlevel __ARGS((typval_T *argvars, typval_T *rettv));
542static void f_foldtext __ARGS((typval_T *argvars, typval_T *rettv));
543static void f_foldtextresult __ARGS((typval_T *argvars, typval_T *rettv));
544static void f_foreground __ARGS((typval_T *argvars, typval_T *rettv));
545static void f_function __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000546static void f_garbagecollect __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000547static void f_get __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar80fc0432005-07-20 22:06:07 +0000548static void f_getbufline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000549static void f_getbufvar __ARGS((typval_T *argvars, typval_T *rettv));
550static void f_getchar __ARGS((typval_T *argvars, typval_T *rettv));
551static void f_getcharmod __ARGS((typval_T *argvars, typval_T *rettv));
552static void f_getcmdline __ARGS((typval_T *argvars, typval_T *rettv));
553static void f_getcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000554static void f_getcmdtype __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000555static void f_getcwd __ARGS((typval_T *argvars, typval_T *rettv));
556static void f_getfontname __ARGS((typval_T *argvars, typval_T *rettv));
557static void f_getfperm __ARGS((typval_T *argvars, typval_T *rettv));
558static void f_getfsize __ARGS((typval_T *argvars, typval_T *rettv));
559static void f_getftime __ARGS((typval_T *argvars, typval_T *rettv));
560static void f_getftype __ARGS((typval_T *argvars, typval_T *rettv));
561static void f_getline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000562static void f_getmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar18081e32008-02-20 19:11:07 +0000563static void f_getpid __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaara5525202006-03-02 22:52:09 +0000564static void f_getpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2641f772005-03-25 21:58:17 +0000565static void f_getqflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000566static void f_getreg __ARGS((typval_T *argvars, typval_T *rettv));
567static void f_getregtype __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000568static void f_gettabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000569static void f_getwinposx __ARGS((typval_T *argvars, typval_T *rettv));
570static void f_getwinposy __ARGS((typval_T *argvars, typval_T *rettv));
571static void f_getwinvar __ARGS((typval_T *argvars, typval_T *rettv));
572static void f_glob __ARGS((typval_T *argvars, typval_T *rettv));
573static void f_globpath __ARGS((typval_T *argvars, typval_T *rettv));
574static void f_has __ARGS((typval_T *argvars, typval_T *rettv));
575static void f_has_key __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard267b9c2007-04-26 15:06:45 +0000576static void f_haslocaldir __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000577static void f_hasmapto __ARGS((typval_T *argvars, typval_T *rettv));
578static void f_histadd __ARGS((typval_T *argvars, typval_T *rettv));
579static void f_histdel __ARGS((typval_T *argvars, typval_T *rettv));
580static void f_histget __ARGS((typval_T *argvars, typval_T *rettv));
581static void f_histnr __ARGS((typval_T *argvars, typval_T *rettv));
582static void f_hlID __ARGS((typval_T *argvars, typval_T *rettv));
583static void f_hlexists __ARGS((typval_T *argvars, typval_T *rettv));
584static void f_hostname __ARGS((typval_T *argvars, typval_T *rettv));
585static void f_iconv __ARGS((typval_T *argvars, typval_T *rettv));
586static void f_indent __ARGS((typval_T *argvars, typval_T *rettv));
587static void f_index __ARGS((typval_T *argvars, typval_T *rettv));
588static void f_input __ARGS((typval_T *argvars, typval_T *rettv));
589static void f_inputdialog __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6efa2b32005-09-10 19:26:26 +0000590static void f_inputlist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000591static void f_inputrestore __ARGS((typval_T *argvars, typval_T *rettv));
592static void f_inputsave __ARGS((typval_T *argvars, typval_T *rettv));
593static void f_inputsecret __ARGS((typval_T *argvars, typval_T *rettv));
594static void f_insert __ARGS((typval_T *argvars, typval_T *rettv));
595static void f_isdirectory __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000596static void f_islocked __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000597static void f_items __ARGS((typval_T *argvars, typval_T *rettv));
598static void f_join __ARGS((typval_T *argvars, typval_T *rettv));
599static void f_keys __ARGS((typval_T *argvars, typval_T *rettv));
600static void f_last_buffer_nr __ARGS((typval_T *argvars, typval_T *rettv));
601static void f_len __ARGS((typval_T *argvars, typval_T *rettv));
602static void f_libcall __ARGS((typval_T *argvars, typval_T *rettv));
603static void f_libcallnr __ARGS((typval_T *argvars, typval_T *rettv));
604static void f_line __ARGS((typval_T *argvars, typval_T *rettv));
605static void f_line2byte __ARGS((typval_T *argvars, typval_T *rettv));
606static void f_lispindent __ARGS((typval_T *argvars, typval_T *rettv));
607static void f_localtime __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000608#ifdef FEAT_FLOAT
609static void f_log10 __ARGS((typval_T *argvars, typval_T *rettv));
610#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000611static void f_map __ARGS((typval_T *argvars, typval_T *rettv));
612static void f_maparg __ARGS((typval_T *argvars, typval_T *rettv));
613static void f_mapcheck __ARGS((typval_T *argvars, typval_T *rettv));
614static void f_match __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000615static void f_matchadd __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000616static void f_matcharg __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000617static void f_matchdelete __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000618static void f_matchend __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000619static void f_matchlist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000620static void f_matchstr __ARGS((typval_T *argvars, typval_T *rettv));
621static void f_max __ARGS((typval_T *argvars, typval_T *rettv));
622static void f_min __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000623#ifdef vim_mkdir
624static void f_mkdir __ARGS((typval_T *argvars, typval_T *rettv));
625#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000626static void f_mode __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar7e506b62010-01-19 15:55:06 +0100627#ifdef FEAT_MZSCHEME
628static void f_mzeval __ARGS((typval_T *argvars, typval_T *rettv));
629#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000630static void f_nextnonblank __ARGS((typval_T *argvars, typval_T *rettv));
631static void f_nr2char __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000632static void f_pathshorten __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000633#ifdef FEAT_FLOAT
634static void f_pow __ARGS((typval_T *argvars, typval_T *rettv));
635#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000636static void f_prevnonblank __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000637static void f_printf __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000638static void f_pumvisible __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000639static void f_range __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000640static void f_readfile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaare580b0c2006-03-21 21:33:03 +0000641static void f_reltime __ARGS((typval_T *argvars, typval_T *rettv));
642static void f_reltimestr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000643static void f_remote_expr __ARGS((typval_T *argvars, typval_T *rettv));
644static void f_remote_foreground __ARGS((typval_T *argvars, typval_T *rettv));
645static void f_remote_peek __ARGS((typval_T *argvars, typval_T *rettv));
646static void f_remote_read __ARGS((typval_T *argvars, typval_T *rettv));
647static void f_remote_send __ARGS((typval_T *argvars, typval_T *rettv));
648static void f_remove __ARGS((typval_T *argvars, typval_T *rettv));
649static void f_rename __ARGS((typval_T *argvars, typval_T *rettv));
650static void f_repeat __ARGS((typval_T *argvars, typval_T *rettv));
651static void f_resolve __ARGS((typval_T *argvars, typval_T *rettv));
652static void f_reverse __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000653#ifdef FEAT_FLOAT
654static void f_round __ARGS((typval_T *argvars, typval_T *rettv));
655#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000656static void f_search __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaardd2436f2005-09-05 22:14:46 +0000657static void f_searchdecl __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000658static void f_searchpair __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000659static void f_searchpairpos __ARGS((typval_T *argvars, typval_T *rettv));
660static void f_searchpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000661static void f_server2client __ARGS((typval_T *argvars, typval_T *rettv));
662static void f_serverlist __ARGS((typval_T *argvars, typval_T *rettv));
663static void f_setbufvar __ARGS((typval_T *argvars, typval_T *rettv));
664static void f_setcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
665static void f_setline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000666static void f_setloclist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000667static void f_setmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar0e34f622006-03-03 23:00:03 +0000668static void f_setpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2641f772005-03-25 21:58:17 +0000669static void f_setqflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000670static void f_setreg __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000671static void f_settabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000672static void f_setwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar60a495f2006-10-03 12:44:42 +0000673static void f_shellescape __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000674static void f_simplify __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000675#ifdef FEAT_FLOAT
676static void f_sin __ARGS((typval_T *argvars, typval_T *rettv));
677#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000678static void f_sort __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +0000679static void f_soundfold __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000680static void f_spellbadword __ARGS((typval_T *argvars, typval_T *rettv));
681static void f_spellsuggest __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000682static void f_split __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000683#ifdef FEAT_FLOAT
684static void f_sqrt __ARGS((typval_T *argvars, typval_T *rettv));
685static void f_str2float __ARGS((typval_T *argvars, typval_T *rettv));
686#endif
Bram Moolenaar2c932302006-03-18 21:42:09 +0000687static void f_str2nr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000688#ifdef HAVE_STRFTIME
689static void f_strftime __ARGS((typval_T *argvars, typval_T *rettv));
690#endif
691static void f_stridx __ARGS((typval_T *argvars, typval_T *rettv));
692static void f_string __ARGS((typval_T *argvars, typval_T *rettv));
693static void f_strlen __ARGS((typval_T *argvars, typval_T *rettv));
694static void f_strpart __ARGS((typval_T *argvars, typval_T *rettv));
695static void f_strridx __ARGS((typval_T *argvars, typval_T *rettv));
696static void f_strtrans __ARGS((typval_T *argvars, typval_T *rettv));
697static void f_submatch __ARGS((typval_T *argvars, typval_T *rettv));
698static void f_substitute __ARGS((typval_T *argvars, typval_T *rettv));
699static void f_synID __ARGS((typval_T *argvars, typval_T *rettv));
700static void f_synIDattr __ARGS((typval_T *argvars, typval_T *rettv));
701static void f_synIDtrans __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar9d188ab2008-01-10 21:24:39 +0000702static void f_synstack __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000703static void f_system __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000704static void f_tabpagebuflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000705static void f_tabpagenr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000706static void f_tabpagewinnr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000707static void f_taglist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard43b6cf2005-09-09 19:53:42 +0000708static void f_tagfiles __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000709static void f_tempname __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard52d9742005-08-21 22:20:28 +0000710static void f_test __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000711static void f_tolower __ARGS((typval_T *argvars, typval_T *rettv));
712static void f_toupper __ARGS((typval_T *argvars, typval_T *rettv));
713static void f_tr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000714#ifdef FEAT_FLOAT
715static void f_trunc __ARGS((typval_T *argvars, typval_T *rettv));
716#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000717static void f_type __ARGS((typval_T *argvars, typval_T *rettv));
718static void f_values __ARGS((typval_T *argvars, typval_T *rettv));
719static void f_virtcol __ARGS((typval_T *argvars, typval_T *rettv));
720static void f_visualmode __ARGS((typval_T *argvars, typval_T *rettv));
721static void f_winbufnr __ARGS((typval_T *argvars, typval_T *rettv));
722static void f_wincol __ARGS((typval_T *argvars, typval_T *rettv));
723static void f_winheight __ARGS((typval_T *argvars, typval_T *rettv));
724static void f_winline __ARGS((typval_T *argvars, typval_T *rettv));
725static void f_winnr __ARGS((typval_T *argvars, typval_T *rettv));
726static void f_winrestcmd __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar768b8c42006-03-04 21:58:33 +0000727static void f_winrestview __ARGS((typval_T *argvars, typval_T *rettv));
728static void f_winsaveview __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000729static void f_winwidth __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000730static void f_writefile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000731
Bram Moolenaar0e34f622006-03-03 23:00:03 +0000732static int list2fpos __ARGS((typval_T *arg, pos_T *posp, int *fnump));
Bram Moolenaar477933c2007-07-17 14:32:23 +0000733static pos_T *var2fpos __ARGS((typval_T *varp, int dollar_lnum, int *fnum));
Bram Moolenaar33570922005-01-25 22:26:29 +0000734static int get_env_len __ARGS((char_u **arg));
735static int get_id_len __ARGS((char_u **arg));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000736static int get_name_len __ARGS((char_u **arg, char_u **alias, int evaluate, int verbose));
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000737static char_u *find_name_end __ARGS((char_u *arg, char_u **expr_start, char_u **expr_end, int flags));
738#define FNE_INCL_BR 1 /* find_name_end(): include [] in name */
739#define FNE_CHECK_START 2 /* find_name_end(): check name starts with
740 valid character */
Bram Moolenaara40058a2005-07-11 22:42:07 +0000741static char_u * make_expanded_name __ARGS((char_u *in_start, char_u *expr_start, char_u *expr_end, char_u *in_end));
Bram Moolenaar33570922005-01-25 22:26:29 +0000742static int eval_isnamec __ARGS((int c));
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000743static int eval_isnamec1 __ARGS((int c));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000744static int get_var_tv __ARGS((char_u *name, int len, typval_T *rettv, int verbose));
745static int handle_subscript __ARGS((char_u **arg, typval_T *rettv, int evaluate, int verbose));
Bram Moolenaar33570922005-01-25 22:26:29 +0000746static typval_T *alloc_tv __ARGS((void));
747static typval_T *alloc_string_tv __ARGS((char_u *string));
Bram Moolenaar33570922005-01-25 22:26:29 +0000748static void init_tv __ARGS((typval_T *varp));
749static long get_tv_number __ARGS((typval_T *varp));
750static linenr_T get_tv_lnum __ARGS((typval_T *argvars));
Bram Moolenaar661b1822005-07-28 22:36:45 +0000751static linenr_T get_tv_lnum_buf __ARGS((typval_T *argvars, buf_T *buf));
Bram Moolenaar33570922005-01-25 22:26:29 +0000752static char_u *get_tv_string __ARGS((typval_T *varp));
753static char_u *get_tv_string_buf __ARGS((typval_T *varp, char_u *buf));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000754static char_u *get_tv_string_buf_chk __ARGS((typval_T *varp, char_u *buf));
Bram Moolenaar33570922005-01-25 22:26:29 +0000755static dictitem_T *find_var __ARGS((char_u *name, hashtab_T **htp));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000756static dictitem_T *find_var_in_ht __ARGS((hashtab_T *ht, char_u *varname, int writing));
Bram Moolenaar33570922005-01-25 22:26:29 +0000757static hashtab_T *find_var_ht __ARGS((char_u *name, char_u **varname));
758static void vars_clear_ext __ARGS((hashtab_T *ht, int free_val));
759static void delete_var __ARGS((hashtab_T *ht, hashitem_T *hi));
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000760static void list_one_var __ARGS((dictitem_T *v, char_u *prefix, int *first));
761static void list_one_var_a __ARGS((char_u *prefix, char_u *name, int type, char_u *string, int *first));
Bram Moolenaar33570922005-01-25 22:26:29 +0000762static void set_var __ARGS((char_u *name, typval_T *varp, int copy));
763static int var_check_ro __ARGS((int flags, char_u *name));
Bram Moolenaar4e957af2006-09-02 11:41:07 +0000764static int var_check_fixed __ARGS((int flags, char_u *name));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000765static int tv_check_lock __ARGS((int lock, char_u *name));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000766static int item_copy __ARGS((typval_T *from, typval_T *to, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000767static char_u *find_option_end __ARGS((char_u **arg, int *opt_flags));
768static char_u *trans_function_name __ARGS((char_u **pp, int skip, int flags, funcdict_T *fd));
769static int eval_fname_script __ARGS((char_u *p));
770static int eval_fname_sid __ARGS((char_u *p));
771static void list_func_head __ARGS((ufunc_T *fp, int indent));
Bram Moolenaar33570922005-01-25 22:26:29 +0000772static ufunc_T *find_func __ARGS((char_u *name));
773static int function_exists __ARGS((char_u *name));
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000774static int builtin_function __ARGS((char_u *name));
Bram Moolenaar05159a02005-02-26 23:04:13 +0000775#ifdef FEAT_PROFILE
776static void func_do_profile __ARGS((ufunc_T *fp));
Bram Moolenaar73830342005-02-28 22:48:19 +0000777static void prof_sort_list __ARGS((FILE *fd, ufunc_T **sorttab, int st_len, char *title, int prefer_self));
778static void prof_func_line __ARGS((FILE *fd, int count, proftime_T *total, proftime_T *self, int prefer_self));
779static int
780# ifdef __BORLANDC__
781 _RTLENTRYF
782# endif
783 prof_total_cmp __ARGS((const void *s1, const void *s2));
784static int
785# ifdef __BORLANDC__
786 _RTLENTRYF
787# endif
788 prof_self_cmp __ARGS((const void *s1, const void *s2));
Bram Moolenaar05159a02005-02-26 23:04:13 +0000789#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000790static int script_autoload __ARGS((char_u *name, int reload));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000791static char_u *autoload_name __ARGS((char_u *name));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000792static void cat_func_name __ARGS((char_u *buf, ufunc_T *fp));
Bram Moolenaar33570922005-01-25 22:26:29 +0000793static void func_free __ARGS((ufunc_T *fp));
794static void func_unref __ARGS((char_u *name));
795static void func_ref __ARGS((char_u *name));
796static void call_user_func __ARGS((ufunc_T *fp, int argcount, typval_T *argvars, typval_T *rettv, linenr_T firstline, linenr_T lastline, dict_T *selfdict));
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +0000797static int can_free_funccal __ARGS((funccall_T *fc, int copyID)) ;
798static void free_funccal __ARGS((funccall_T *fc, int free_val));
Bram Moolenaar33570922005-01-25 22:26:29 +0000799static void add_nr_var __ARGS((dict_T *dp, dictitem_T *v, char *name, varnumber_T nr));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000800static win_T *find_win_by_nr __ARGS((typval_T *vp, tabpage_T *tp));
801static void getwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000802static int searchpair_cmn __ARGS((typval_T *argvars, pos_T *match_pos));
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000803static int search_cmn __ARGS((typval_T *argvars, pos_T *match_pos, int *flagsp));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000804static void setwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
Bram Moolenaar33570922005-01-25 22:26:29 +0000805
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000806/* Character used as separated in autoload function/variable names. */
807#define AUTOLOAD_CHAR '#'
808
Bram Moolenaar33570922005-01-25 22:26:29 +0000809/*
810 * Initialize the global and v: variables.
Bram Moolenaara7043832005-01-21 11:56:39 +0000811 */
812 void
813eval_init()
814{
Bram Moolenaar33570922005-01-25 22:26:29 +0000815 int i;
816 struct vimvar *p;
817
818 init_var_dict(&globvardict, &globvars_var);
819 init_var_dict(&vimvardict, &vimvars_var);
Bram Moolenaar532c7802005-01-27 14:44:31 +0000820 hash_init(&compat_hashtab);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000821 hash_init(&func_hashtab);
Bram Moolenaar33570922005-01-25 22:26:29 +0000822
823 for (i = 0; i < VV_LEN; ++i)
824 {
825 p = &vimvars[i];
826 STRCPY(p->vv_di.di_key, p->vv_name);
827 if (p->vv_flags & VV_RO)
828 p->vv_di.di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
829 else if (p->vv_flags & VV_RO_SBX)
830 p->vv_di.di_flags = DI_FLAGS_RO_SBX | DI_FLAGS_FIX;
831 else
832 p->vv_di.di_flags = DI_FLAGS_FIX;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000833
834 /* add to v: scope dict, unless the value is not always available */
835 if (p->vv_type != VAR_UNKNOWN)
836 hash_add(&vimvarht, p->vv_di.di_key);
Bram Moolenaar33570922005-01-25 22:26:29 +0000837 if (p->vv_flags & VV_COMPAT)
Bram Moolenaar532c7802005-01-27 14:44:31 +0000838 /* add to compat scope dict */
839 hash_add(&compat_hashtab, p->vv_di.di_key);
Bram Moolenaar33570922005-01-25 22:26:29 +0000840 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000841 set_vim_var_nr(VV_SEARCHFORWARD, 1L);
Bram Moolenaara7043832005-01-21 11:56:39 +0000842}
843
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000844#if defined(EXITFREE) || defined(PROTO)
845 void
846eval_clear()
847{
848 int i;
849 struct vimvar *p;
850
851 for (i = 0; i < VV_LEN; ++i)
852 {
853 p = &vimvars[i];
854 if (p->vv_di.di_tv.v_type == VAR_STRING)
Bram Moolenaard9fba312005-06-26 22:34:35 +0000855 {
Bram Moolenaar12193212008-11-09 16:22:01 +0000856 vim_free(p->vv_str);
857 p->vv_str = NULL;
Bram Moolenaard812df62008-11-09 12:46:09 +0000858 }
859 else if (p->vv_di.di_tv.v_type == VAR_LIST)
860 {
861 list_unref(p->vv_list);
862 p->vv_list = NULL;
Bram Moolenaard9fba312005-06-26 22:34:35 +0000863 }
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000864 }
865 hash_clear(&vimvarht);
Bram Moolenaar0f71c6d2008-11-12 14:29:28 +0000866 hash_init(&vimvarht); /* garbage_collect() will access it */
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000867 hash_clear(&compat_hashtab);
868
869 /* script-local variables */
870 for (i = 1; i <= ga_scripts.ga_len; ++i)
871 vars_clear(&SCRIPT_VARS(i));
872 ga_clear(&ga_scripts);
Bram Moolenaard9fba312005-06-26 22:34:35 +0000873 free_scriptnames();
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000874
875 /* global variables */
876 vars_clear(&globvarht);
Bram Moolenaard9fba312005-06-26 22:34:35 +0000877
Bram Moolenaaraa35dd12006-04-29 22:03:41 +0000878 /* autoloaded script names */
879 ga_clear_strings(&ga_loaded);
880
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000881 /* unreferenced lists and dicts */
882 (void)garbage_collect();
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000883
884 /* functions */
885 free_all_functions();
886 hash_clear(&func_hashtab);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000887}
888#endif
889
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000890/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 * Return the name of the executed function.
892 */
893 char_u *
894func_name(cookie)
895 void *cookie;
896{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000897 return ((funccall_T *)cookie)->func->uf_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898}
899
900/*
901 * Return the address holding the next breakpoint line for a funccall cookie.
902 */
903 linenr_T *
904func_breakpoint(cookie)
905 void *cookie;
906{
Bram Moolenaar33570922005-01-25 22:26:29 +0000907 return &((funccall_T *)cookie)->breakpoint;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908}
909
910/*
911 * Return the address holding the debug tick for a funccall cookie.
912 */
913 int *
914func_dbg_tick(cookie)
915 void *cookie;
916{
Bram Moolenaar33570922005-01-25 22:26:29 +0000917 return &((funccall_T *)cookie)->dbg_tick;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918}
919
920/*
921 * Return the nesting level for a funccall cookie.
922 */
923 int
924func_level(cookie)
925 void *cookie;
926{
Bram Moolenaar33570922005-01-25 22:26:29 +0000927 return ((funccall_T *)cookie)->level;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928}
929
930/* pointer to funccal for currently active function */
Bram Moolenaar33570922005-01-25 22:26:29 +0000931funccall_T *current_funccal = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +0000933/* pointer to list of previously used funccal, still around because some
934 * item in it is still being used. */
935funccall_T *previous_funccal = NULL;
936
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937/*
938 * Return TRUE when a function was ended by a ":return" command.
939 */
940 int
941current_func_returned()
942{
943 return current_funccal->returned;
944}
945
946
947/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948 * Set an internal variable to a string value. Creates the variable if it does
949 * not already exist.
950 */
951 void
952set_internal_string_var(name, value)
953 char_u *name;
954 char_u *value;
955{
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000956 char_u *val;
Bram Moolenaar33570922005-01-25 22:26:29 +0000957 typval_T *tvp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958
959 val = vim_strsave(value);
960 if (val != NULL)
961 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +0000962 tvp = alloc_string_tv(val);
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000963 if (tvp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000965 set_var(name, tvp, FALSE);
Bram Moolenaarc70646c2005-01-04 21:52:38 +0000966 free_tv(tvp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967 }
968 }
969}
970
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000971static lval_T *redir_lval = NULL;
Bram Moolenaar863b53b2007-01-14 14:28:34 +0000972static garray_T redir_ga; /* only valid when redir_lval is not NULL */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000973static char_u *redir_endp = NULL;
974static char_u *redir_varname = NULL;
975
976/*
977 * Start recording command output to a variable
978 * Returns OK if successfully completed the setup. FAIL otherwise.
979 */
980 int
981var_redir_start(name, append)
982 char_u *name;
983 int append; /* append to an existing variable */
984{
985 int save_emsg;
986 int err;
987 typval_T tv;
988
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +0000989 /* Catch a bad name early. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000990 if (!eval_isnamec1(*name))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000991 {
992 EMSG(_(e_invarg));
993 return FAIL;
994 }
995
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +0000996 /* Make a copy of the name, it is used in redir_lval until redir ends. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000997 redir_varname = vim_strsave(name);
998 if (redir_varname == NULL)
999 return FAIL;
1000
1001 redir_lval = (lval_T *)alloc_clear((unsigned)sizeof(lval_T));
1002 if (redir_lval == NULL)
1003 {
1004 var_redir_stop();
1005 return FAIL;
1006 }
1007
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001008 /* The output is stored in growarray "redir_ga" until redirection ends. */
1009 ga_init2(&redir_ga, (int)sizeof(char), 500);
1010
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001011 /* Parse the variable name (can be a dict or list entry). */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00001012 redir_endp = get_lval(redir_varname, NULL, redir_lval, FALSE, FALSE, FALSE,
1013 FNE_CHECK_START);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001014 if (redir_endp == NULL || redir_lval->ll_name == NULL || *redir_endp != NUL)
1015 {
1016 if (redir_endp != NULL && *redir_endp != NUL)
1017 /* Trailing characters are present after the variable name */
1018 EMSG(_(e_trailing));
1019 else
1020 EMSG(_(e_invarg));
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001021 redir_endp = NULL; /* don't store a value, only cleanup */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001022 var_redir_stop();
1023 return FAIL;
1024 }
1025
1026 /* check if we can write to the variable: set it to or append an empty
1027 * string */
1028 save_emsg = did_emsg;
1029 did_emsg = FALSE;
1030 tv.v_type = VAR_STRING;
1031 tv.vval.v_string = (char_u *)"";
1032 if (append)
1033 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)".");
1034 else
1035 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)"=");
1036 err = did_emsg;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00001037 did_emsg |= save_emsg;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001038 if (err)
1039 {
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001040 redir_endp = NULL; /* don't store a value, only cleanup */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001041 var_redir_stop();
1042 return FAIL;
1043 }
1044 if (redir_lval->ll_newkey != NULL)
1045 {
1046 /* Dictionary item was created, don't do it again. */
1047 vim_free(redir_lval->ll_newkey);
1048 redir_lval->ll_newkey = NULL;
1049 }
1050
1051 return OK;
1052}
1053
1054/*
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001055 * Append "value[value_len]" to the variable set by var_redir_start().
1056 * The actual appending is postponed until redirection ends, because the value
1057 * appended may in fact be the string we write to, changing it may cause freed
1058 * memory to be used:
1059 * :redir => foo
1060 * :let foo
1061 * :redir END
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001062 */
1063 void
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001064var_redir_str(value, value_len)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001065 char_u *value;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001066 int value_len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001067{
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001068 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001069
1070 if (redir_lval == NULL)
1071 return;
1072
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001073 if (value_len == -1)
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001074 len = (int)STRLEN(value); /* Append the entire string */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001075 else
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001076 len = value_len; /* Append only "value_len" characters */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001077
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001078 if (ga_grow(&redir_ga, len) == OK)
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001079 {
1080 mch_memmove((char *)redir_ga.ga_data + redir_ga.ga_len, value, len);
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001081 redir_ga.ga_len += len;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001082 }
1083 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001084 var_redir_stop();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001085}
1086
1087/*
1088 * Stop redirecting command output to a variable.
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001089 * Frees the allocated memory.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001090 */
1091 void
1092var_redir_stop()
1093{
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001094 typval_T tv;
1095
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001096 if (redir_lval != NULL)
1097 {
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001098 /* If there was no error: assign the text to the variable. */
1099 if (redir_endp != NULL)
1100 {
1101 ga_append(&redir_ga, NUL); /* Append the trailing NUL. */
1102 tv.v_type = VAR_STRING;
1103 tv.vval.v_string = redir_ga.ga_data;
1104 set_var_lval(redir_lval, redir_endp, &tv, FALSE, (char_u *)".");
1105 }
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001106
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001107 /* free the collected output */
1108 vim_free(redir_ga.ga_data);
1109 redir_ga.ga_data = NULL;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001110
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001111 clear_lval(redir_lval);
1112 vim_free(redir_lval);
1113 redir_lval = NULL;
1114 }
1115 vim_free(redir_varname);
1116 redir_varname = NULL;
1117}
1118
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119# if defined(FEAT_MBYTE) || defined(PROTO)
1120 int
1121eval_charconvert(enc_from, enc_to, fname_from, fname_to)
1122 char_u *enc_from;
1123 char_u *enc_to;
1124 char_u *fname_from;
1125 char_u *fname_to;
1126{
1127 int err = FALSE;
1128
1129 set_vim_var_string(VV_CC_FROM, enc_from, -1);
1130 set_vim_var_string(VV_CC_TO, enc_to, -1);
1131 set_vim_var_string(VV_FNAME_IN, fname_from, -1);
1132 set_vim_var_string(VV_FNAME_OUT, fname_to, -1);
1133 if (eval_to_bool(p_ccv, &err, NULL, FALSE))
1134 err = TRUE;
1135 set_vim_var_string(VV_CC_FROM, NULL, -1);
1136 set_vim_var_string(VV_CC_TO, NULL, -1);
1137 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1138 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1139
1140 if (err)
1141 return FAIL;
1142 return OK;
1143}
1144# endif
1145
1146# if defined(FEAT_POSTSCRIPT) || defined(PROTO)
1147 int
1148eval_printexpr(fname, args)
1149 char_u *fname;
1150 char_u *args;
1151{
1152 int err = FALSE;
1153
1154 set_vim_var_string(VV_FNAME_IN, fname, -1);
1155 set_vim_var_string(VV_CMDARG, args, -1);
1156 if (eval_to_bool(p_pexpr, &err, NULL, FALSE))
1157 err = TRUE;
1158 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1159 set_vim_var_string(VV_CMDARG, NULL, -1);
1160
1161 if (err)
1162 {
1163 mch_remove(fname);
1164 return FAIL;
1165 }
1166 return OK;
1167}
1168# endif
1169
1170# if defined(FEAT_DIFF) || defined(PROTO)
1171 void
1172eval_diff(origfile, newfile, outfile)
1173 char_u *origfile;
1174 char_u *newfile;
1175 char_u *outfile;
1176{
1177 int err = FALSE;
1178
1179 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1180 set_vim_var_string(VV_FNAME_NEW, newfile, -1);
1181 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1182 (void)eval_to_bool(p_dex, &err, NULL, FALSE);
1183 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1184 set_vim_var_string(VV_FNAME_NEW, NULL, -1);
1185 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1186}
1187
1188 void
1189eval_patch(origfile, difffile, outfile)
1190 char_u *origfile;
1191 char_u *difffile;
1192 char_u *outfile;
1193{
1194 int err;
1195
1196 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1197 set_vim_var_string(VV_FNAME_DIFF, difffile, -1);
1198 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1199 (void)eval_to_bool(p_pex, &err, NULL, FALSE);
1200 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1201 set_vim_var_string(VV_FNAME_DIFF, NULL, -1);
1202 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1203}
1204# endif
1205
1206/*
1207 * Top level evaluation function, returning a boolean.
1208 * Sets "error" to TRUE if there was an error.
1209 * Return TRUE or FALSE.
1210 */
1211 int
1212eval_to_bool(arg, error, nextcmd, skip)
1213 char_u *arg;
1214 int *error;
1215 char_u **nextcmd;
1216 int skip; /* only parse, don't execute */
1217{
Bram Moolenaar33570922005-01-25 22:26:29 +00001218 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 int retval = FALSE;
1220
1221 if (skip)
1222 ++emsg_skip;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001223 if (eval0(arg, &tv, nextcmd, !skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224 *error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 else
1226 {
1227 *error = FALSE;
1228 if (!skip)
1229 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001230 retval = (get_tv_number_chk(&tv, error) != 0);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001231 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 }
1233 }
1234 if (skip)
1235 --emsg_skip;
1236
1237 return retval;
1238}
1239
1240/*
1241 * Top level evaluation function, returning a string. If "skip" is TRUE,
1242 * only parsing to "nextcmd" is done, without reporting errors. Return
1243 * pointer to allocated memory, or NULL for failure or when "skip" is TRUE.
1244 */
1245 char_u *
1246eval_to_string_skip(arg, nextcmd, skip)
1247 char_u *arg;
1248 char_u **nextcmd;
1249 int skip; /* only parse, don't execute */
1250{
Bram Moolenaar33570922005-01-25 22:26:29 +00001251 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252 char_u *retval;
1253
1254 if (skip)
1255 ++emsg_skip;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001256 if (eval0(arg, &tv, nextcmd, !skip) == FAIL || skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 retval = NULL;
1258 else
1259 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001260 retval = vim_strsave(get_tv_string(&tv));
1261 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 }
1263 if (skip)
1264 --emsg_skip;
1265
1266 return retval;
1267}
1268
1269/*
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001270 * Skip over an expression at "*pp".
1271 * Return FAIL for an error, OK otherwise.
1272 */
1273 int
1274skip_expr(pp)
1275 char_u **pp;
1276{
Bram Moolenaar33570922005-01-25 22:26:29 +00001277 typval_T rettv;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001278
1279 *pp = skipwhite(*pp);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001280 return eval1(pp, &rettv, FALSE);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001281}
1282
1283/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284 * Top level evaluation function, returning a string.
Bram Moolenaara85fb752008-09-07 11:55:43 +00001285 * When "convert" is TRUE convert a List into a sequence of lines and convert
1286 * a Float to a String.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 * Return pointer to allocated memory, or NULL for failure.
1288 */
1289 char_u *
Bram Moolenaara85fb752008-09-07 11:55:43 +00001290eval_to_string(arg, nextcmd, convert)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291 char_u *arg;
1292 char_u **nextcmd;
Bram Moolenaara85fb752008-09-07 11:55:43 +00001293 int convert;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294{
Bram Moolenaar33570922005-01-25 22:26:29 +00001295 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296 char_u *retval;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001297 garray_T ga;
Bram Moolenaar798b30b2009-04-22 10:56:16 +00001298#ifdef FEAT_FLOAT
Bram Moolenaara85fb752008-09-07 11:55:43 +00001299 char_u numbuf[NUMBUFLEN];
Bram Moolenaar798b30b2009-04-22 10:56:16 +00001300#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001302 if (eval0(arg, &tv, nextcmd, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 retval = NULL;
1304 else
1305 {
Bram Moolenaara85fb752008-09-07 11:55:43 +00001306 if (convert && tv.v_type == VAR_LIST)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001307 {
1308 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001309 if (tv.vval.v_list != NULL)
1310 list_join(&ga, tv.vval.v_list, (char_u *)"\n", TRUE, 0);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001311 ga_append(&ga, NUL);
1312 retval = (char_u *)ga.ga_data;
1313 }
Bram Moolenaara85fb752008-09-07 11:55:43 +00001314#ifdef FEAT_FLOAT
1315 else if (convert && tv.v_type == VAR_FLOAT)
1316 {
1317 vim_snprintf((char *)numbuf, NUMBUFLEN, "%g", tv.vval.v_float);
1318 retval = vim_strsave(numbuf);
1319 }
1320#endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001321 else
1322 retval = vim_strsave(get_tv_string(&tv));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001323 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 }
1325
1326 return retval;
1327}
1328
1329/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001330 * Call eval_to_string() without using current local variables and using
1331 * textlock. When "use_sandbox" is TRUE use the sandbox.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 */
1333 char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001334eval_to_string_safe(arg, nextcmd, use_sandbox)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 char_u *arg;
1336 char_u **nextcmd;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001337 int use_sandbox;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338{
1339 char_u *retval;
1340 void *save_funccalp;
1341
1342 save_funccalp = save_funccal();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001343 if (use_sandbox)
1344 ++sandbox;
1345 ++textlock;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001346 retval = eval_to_string(arg, nextcmd, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001347 if (use_sandbox)
1348 --sandbox;
1349 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 restore_funccal(save_funccalp);
1351 return retval;
1352}
1353
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354/*
1355 * Top level evaluation function, returning a number.
1356 * Evaluates "expr" silently.
1357 * Returns -1 for an error.
1358 */
1359 int
1360eval_to_number(expr)
1361 char_u *expr;
1362{
Bram Moolenaar33570922005-01-25 22:26:29 +00001363 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 int retval;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00001365 char_u *p = skipwhite(expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366
1367 ++emsg_off;
1368
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001369 if (eval1(&p, &rettv, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 retval = -1;
1371 else
1372 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001373 retval = get_tv_number_chk(&rettv, NULL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001374 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 }
1376 --emsg_off;
1377
1378 return retval;
1379}
1380
Bram Moolenaara40058a2005-07-11 22:42:07 +00001381/*
1382 * Prepare v: variable "idx" to be used.
1383 * Save the current typeval in "save_tv".
1384 * When not used yet add the variable to the v: hashtable.
1385 */
1386 static void
1387prepare_vimvar(idx, save_tv)
1388 int idx;
1389 typval_T *save_tv;
1390{
1391 *save_tv = vimvars[idx].vv_tv;
1392 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1393 hash_add(&vimvarht, vimvars[idx].vv_di.di_key);
1394}
1395
1396/*
1397 * Restore v: variable "idx" to typeval "save_tv".
1398 * When no longer defined, remove the variable from the v: hashtable.
1399 */
1400 static void
1401restore_vimvar(idx, save_tv)
1402 int idx;
1403 typval_T *save_tv;
1404{
1405 hashitem_T *hi;
1406
Bram Moolenaara40058a2005-07-11 22:42:07 +00001407 vimvars[idx].vv_tv = *save_tv;
1408 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1409 {
1410 hi = hash_find(&vimvarht, vimvars[idx].vv_di.di_key);
1411 if (HASHITEM_EMPTY(hi))
1412 EMSG2(_(e_intern2), "restore_vimvar()");
1413 else
1414 hash_remove(&vimvarht, hi);
1415 }
1416}
1417
Bram Moolenaar3c56a962006-03-12 22:19:04 +00001418#if defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001419/*
1420 * Evaluate an expression to a list with suggestions.
1421 * For the "expr:" part of 'spellsuggest'.
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001422 * Returns NULL when there is an error.
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001423 */
1424 list_T *
1425eval_spell_expr(badword, expr)
1426 char_u *badword;
1427 char_u *expr;
1428{
1429 typval_T save_val;
1430 typval_T rettv;
1431 list_T *list = NULL;
1432 char_u *p = skipwhite(expr);
1433
1434 /* Set "v:val" to the bad word. */
1435 prepare_vimvar(VV_VAL, &save_val);
1436 vimvars[VV_VAL].vv_type = VAR_STRING;
1437 vimvars[VV_VAL].vv_str = badword;
1438 if (p_verbose == 0)
1439 ++emsg_off;
1440
1441 if (eval1(&p, &rettv, TRUE) == OK)
1442 {
1443 if (rettv.v_type != VAR_LIST)
1444 clear_tv(&rettv);
1445 else
1446 list = rettv.vval.v_list;
1447 }
1448
1449 if (p_verbose == 0)
1450 --emsg_off;
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001451 restore_vimvar(VV_VAL, &save_val);
1452
1453 return list;
1454}
1455
1456/*
1457 * "list" is supposed to contain two items: a word and a number. Return the
1458 * word in "pp" and the number as the return value.
1459 * Return -1 if anything isn't right.
1460 * Used to get the good word and score from the eval_spell_expr() result.
1461 */
1462 int
1463get_spellword(list, pp)
1464 list_T *list;
1465 char_u **pp;
1466{
1467 listitem_T *li;
1468
1469 li = list->lv_first;
1470 if (li == NULL)
1471 return -1;
1472 *pp = get_tv_string(&li->li_tv);
1473
1474 li = li->li_next;
1475 if (li == NULL)
1476 return -1;
1477 return get_tv_number(&li->li_tv);
1478}
1479#endif
1480
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001481/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001482 * Top level evaluation function.
1483 * Returns an allocated typval_T with the result.
1484 * Returns NULL when there is an error.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001485 */
1486 typval_T *
1487eval_expr(arg, nextcmd)
1488 char_u *arg;
1489 char_u **nextcmd;
1490{
1491 typval_T *tv;
1492
1493 tv = (typval_T *)alloc(sizeof(typval_T));
Bram Moolenaar4770d092006-01-12 23:22:24 +00001494 if (tv != NULL && eval0(arg, tv, nextcmd, TRUE) == FAIL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001495 {
1496 vim_free(tv);
Bram Moolenaar4770d092006-01-12 23:22:24 +00001497 tv = NULL;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001498 }
1499
1500 return tv;
1501}
1502
1503
Bram Moolenaar4f688582007-07-24 12:34:30 +00001504#if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) \
1505 || defined(FEAT_COMPL_FUNC) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506/*
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001507 * Call some vimL function and return the result in "*rettv".
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001508 * Uses argv[argc] for the function arguments. Only Number and String
1509 * arguments are currently supported.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001510 * Returns OK or FAIL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511 */
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001512 static int
1513call_vim_function(func, argc, argv, safe, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 char_u *func;
1515 int argc;
1516 char_u **argv;
1517 int safe; /* use the sandbox */
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001518 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519{
Bram Moolenaar33570922005-01-25 22:26:29 +00001520 typval_T *argvars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 long n;
1522 int len;
1523 int i;
1524 int doesrange;
1525 void *save_funccalp = NULL;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001526 int ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001528 argvars = (typval_T *)alloc((unsigned)((argc + 1) * sizeof(typval_T)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529 if (argvars == NULL)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001530 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531
1532 for (i = 0; i < argc; i++)
1533 {
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001534 /* Pass a NULL or empty argument as an empty string */
1535 if (argv[i] == NULL || *argv[i] == NUL)
1536 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001537 argvars[i].v_type = VAR_STRING;
1538 argvars[i].vval.v_string = (char_u *)"";
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001539 continue;
1540 }
1541
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542 /* Recognize a number argument, the others must be strings. */
1543 vim_str2nr(argv[i], NULL, &len, TRUE, TRUE, &n, NULL);
1544 if (len != 0 && len == (int)STRLEN(argv[i]))
1545 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001546 argvars[i].v_type = VAR_NUMBER;
1547 argvars[i].vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 }
1549 else
1550 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001551 argvars[i].v_type = VAR_STRING;
1552 argvars[i].vval.v_string = argv[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 }
1554 }
1555
1556 if (safe)
1557 {
1558 save_funccalp = save_funccal();
1559 ++sandbox;
1560 }
1561
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001562 rettv->v_type = VAR_UNKNOWN; /* clear_tv() uses this */
1563 ret = call_func(func, (int)STRLEN(func), rettv, argc, argvars,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001565 &doesrange, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 if (safe)
1567 {
1568 --sandbox;
1569 restore_funccal(save_funccalp);
1570 }
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001571 vim_free(argvars);
1572
1573 if (ret == FAIL)
1574 clear_tv(rettv);
1575
1576 return ret;
1577}
1578
Bram Moolenaar4f688582007-07-24 12:34:30 +00001579# if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) || defined(PROTO)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001580/*
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001581 * Call vimL function "func" and return the result as a string.
1582 * Returns NULL when calling the function fails.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001583 * Uses argv[argc] for the function arguments.
1584 */
1585 void *
1586call_func_retstr(func, argc, argv, safe)
1587 char_u *func;
1588 int argc;
1589 char_u **argv;
1590 int safe; /* use the sandbox */
1591{
1592 typval_T rettv;
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001593 char_u *retval;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001594
1595 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1596 return NULL;
1597
1598 retval = vim_strsave(get_tv_string(&rettv));
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001599 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 return retval;
1601}
Bram Moolenaar4f688582007-07-24 12:34:30 +00001602# endif
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001603
Bram Moolenaar4f688582007-07-24 12:34:30 +00001604# if defined(FEAT_COMPL_FUNC) || defined(PROTO)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001605/*
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001606 * Call vimL function "func" and return the result as a number.
1607 * Returns -1 when calling the function fails.
1608 * Uses argv[argc] for the function arguments.
1609 */
1610 long
1611call_func_retnr(func, argc, argv, safe)
1612 char_u *func;
1613 int argc;
1614 char_u **argv;
1615 int safe; /* use the sandbox */
1616{
1617 typval_T rettv;
1618 long retval;
1619
1620 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1621 return -1;
1622
1623 retval = get_tv_number_chk(&rettv, NULL);
1624 clear_tv(&rettv);
1625 return retval;
1626}
Bram Moolenaar4f688582007-07-24 12:34:30 +00001627# endif
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001628
1629/*
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001630 * Call vimL function "func" and return the result as a List.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001631 * Uses argv[argc] for the function arguments.
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001632 * Returns NULL when there is something wrong.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001633 */
1634 void *
1635call_func_retlist(func, argc, argv, safe)
1636 char_u *func;
1637 int argc;
1638 char_u **argv;
1639 int safe; /* use the sandbox */
1640{
1641 typval_T rettv;
1642
1643 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1644 return NULL;
1645
1646 if (rettv.v_type != VAR_LIST)
1647 {
1648 clear_tv(&rettv);
1649 return NULL;
1650 }
1651
1652 return rettv.vval.v_list;
1653}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654#endif
1655
Bram Moolenaar4f688582007-07-24 12:34:30 +00001656
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657/*
1658 * Save the current function call pointer, and set it to NULL.
1659 * Used when executing autocommands and for ":source".
1660 */
1661 void *
1662save_funccal()
1663{
Bram Moolenaar05159a02005-02-26 23:04:13 +00001664 funccall_T *fc = current_funccal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 current_funccal = NULL;
1667 return (void *)fc;
1668}
1669
1670 void
Bram Moolenaar05159a02005-02-26 23:04:13 +00001671restore_funccal(vfc)
1672 void *vfc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673{
Bram Moolenaar05159a02005-02-26 23:04:13 +00001674 funccall_T *fc = (funccall_T *)vfc;
1675
1676 current_funccal = fc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677}
1678
Bram Moolenaar05159a02005-02-26 23:04:13 +00001679#if defined(FEAT_PROFILE) || defined(PROTO)
1680/*
1681 * Prepare profiling for entering a child or something else that is not
1682 * counted for the script/function itself.
1683 * Should always be called in pair with prof_child_exit().
1684 */
1685 void
1686prof_child_enter(tm)
1687 proftime_T *tm; /* place to store waittime */
1688{
1689 funccall_T *fc = current_funccal;
1690
1691 if (fc != NULL && fc->func->uf_profiling)
1692 profile_start(&fc->prof_child);
1693 script_prof_save(tm);
1694}
1695
1696/*
1697 * Take care of time spent in a child.
1698 * Should always be called after prof_child_enter().
1699 */
1700 void
1701prof_child_exit(tm)
1702 proftime_T *tm; /* where waittime was stored */
1703{
1704 funccall_T *fc = current_funccal;
1705
1706 if (fc != NULL && fc->func->uf_profiling)
1707 {
1708 profile_end(&fc->prof_child);
1709 profile_sub_wait(tm, &fc->prof_child); /* don't count waiting time */
1710 profile_add(&fc->func->uf_tm_children, &fc->prof_child);
1711 profile_add(&fc->func->uf_tml_children, &fc->prof_child);
1712 }
1713 script_prof_restore(tm);
1714}
1715#endif
1716
1717
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718#ifdef FEAT_FOLDING
1719/*
1720 * Evaluate 'foldexpr'. Returns the foldlevel, and any character preceding
1721 * it in "*cp". Doesn't give error messages.
1722 */
1723 int
1724eval_foldexpr(arg, cp)
1725 char_u *arg;
1726 int *cp;
1727{
Bram Moolenaar33570922005-01-25 22:26:29 +00001728 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 int retval;
1730 char_u *s;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001731 int use_sandbox = was_set_insecurely((char_u *)"foldexpr",
1732 OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733
1734 ++emsg_off;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001735 if (use_sandbox)
1736 ++sandbox;
1737 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738 *cp = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001739 if (eval0(arg, &tv, NULL, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 retval = 0;
1741 else
1742 {
1743 /* If the result is a number, just return the number. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001744 if (tv.v_type == VAR_NUMBER)
1745 retval = tv.vval.v_number;
Bram Moolenaar758711c2005-02-02 23:11:38 +00001746 else if (tv.v_type != VAR_STRING || tv.vval.v_string == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747 retval = 0;
1748 else
1749 {
1750 /* If the result is a string, check if there is a non-digit before
1751 * the number. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001752 s = tv.vval.v_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 if (!VIM_ISDIGIT(*s) && *s != '-')
1754 *cp = *s++;
1755 retval = atol((char *)s);
1756 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001757 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 }
1759 --emsg_off;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001760 if (use_sandbox)
1761 --sandbox;
1762 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763
1764 return retval;
1765}
1766#endif
1767
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001769 * ":let" list all variable values
1770 * ":let var1 var2" list variable values
1771 * ":let var = expr" assignment command.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001772 * ":let var += expr" assignment command.
1773 * ":let var -= expr" assignment command.
1774 * ":let var .= expr" assignment command.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001775 * ":let [var1, var2] = expr" unpack list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 */
1777 void
1778ex_let(eap)
1779 exarg_T *eap;
1780{
1781 char_u *arg = eap->arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001782 char_u *expr = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00001783 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 int i;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001785 int var_count = 0;
1786 int semicolon = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001787 char_u op[2];
Bram Moolenaardb552d602006-03-23 22:59:57 +00001788 char_u *argend;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001789 int first = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790
Bram Moolenaardb552d602006-03-23 22:59:57 +00001791 argend = skip_var_list(arg, &var_count, &semicolon);
1792 if (argend == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001793 return;
Bram Moolenaar76b92b22006-03-24 22:46:53 +00001794 if (argend > arg && argend[-1] == '.') /* for var.='str' */
1795 --argend;
Bram Moolenaardb552d602006-03-23 22:59:57 +00001796 expr = vim_strchr(argend, '=');
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001797 if (expr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00001799 /*
1800 * ":let" without "=": list variables
1801 */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001802 if (*arg == '[')
1803 EMSG(_(e_invarg));
1804 else if (!ends_excmd(*arg))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001805 /* ":let var1 var2" */
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001806 arg = list_arg_vars(eap, arg, &first);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001807 else if (!eap->skip)
Bram Moolenaara7043832005-01-21 11:56:39 +00001808 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001809 /* ":let" */
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001810 list_glob_vars(&first);
1811 list_buf_vars(&first);
1812 list_win_vars(&first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001813#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001814 list_tab_vars(&first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001815#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001816 list_script_vars(&first);
1817 list_func_vars(&first);
1818 list_vim_vars(&first);
Bram Moolenaara7043832005-01-21 11:56:39 +00001819 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820 eap->nextcmd = check_nextcmd(arg);
1821 }
1822 else
1823 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001824 op[0] = '=';
1825 op[1] = NUL;
Bram Moolenaardb552d602006-03-23 22:59:57 +00001826 if (expr > argend)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001827 {
1828 if (vim_strchr((char_u *)"+-.", expr[-1]) != NULL)
1829 op[0] = expr[-1]; /* +=, -= or .= */
1830 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001831 expr = skipwhite(expr + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001832
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 if (eap->skip)
1834 ++emsg_skip;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001835 i = eval0(expr, &rettv, &eap->nextcmd, !eap->skip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836 if (eap->skip)
1837 {
1838 if (i != FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001839 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 --emsg_skip;
1841 }
1842 else if (i != FAIL)
1843 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001844 (void)ex_let_vars(eap->arg, &rettv, FALSE, semicolon, var_count,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001845 op);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001846 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 }
1848 }
1849}
1850
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001851/*
1852 * Assign the typevalue "tv" to the variable or variables at "arg_start".
1853 * Handles both "var" with any type and "[var, var; var]" with a list type.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001854 * When "nextchars" is not NULL it points to a string with characters that
1855 * must appear after the variable(s). Use "+", "-" or "." for add, subtract
1856 * or concatenate.
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001857 * Returns OK or FAIL;
1858 */
1859 static int
1860ex_let_vars(arg_start, tv, copy, semicolon, var_count, nextchars)
1861 char_u *arg_start;
Bram Moolenaar33570922005-01-25 22:26:29 +00001862 typval_T *tv;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001863 int copy; /* copy values from "tv", don't move */
1864 int semicolon; /* from skip_var_list() */
1865 int var_count; /* from skip_var_list() */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001866 char_u *nextchars;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001867{
1868 char_u *arg = arg_start;
Bram Moolenaar33570922005-01-25 22:26:29 +00001869 list_T *l;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001870 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +00001871 listitem_T *item;
1872 typval_T ltv;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001873
1874 if (*arg != '[')
1875 {
1876 /*
1877 * ":let var = expr" or ":for var in list"
1878 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001879 if (ex_let_one(arg, tv, copy, nextchars, nextchars) == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001880 return FAIL;
1881 return OK;
1882 }
1883
1884 /*
1885 * ":let [v1, v2] = list" or ":for [v1, v2] in listlist"
1886 */
Bram Moolenaar758711c2005-02-02 23:11:38 +00001887 if (tv->v_type != VAR_LIST || (l = tv->vval.v_list) == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001888 {
1889 EMSG(_(e_listreq));
1890 return FAIL;
1891 }
1892
1893 i = list_len(l);
1894 if (semicolon == 0 && var_count < i)
1895 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00001896 EMSG(_("E687: Less targets than List items"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001897 return FAIL;
1898 }
1899 if (var_count - semicolon > i)
1900 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00001901 EMSG(_("E688: More targets than List items"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001902 return FAIL;
1903 }
1904
1905 item = l->lv_first;
1906 while (*arg != ']')
1907 {
1908 arg = skipwhite(arg + 1);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001909 arg = ex_let_one(arg, &item->li_tv, TRUE, (char_u *)",;]", nextchars);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001910 item = item->li_next;
1911 if (arg == NULL)
1912 return FAIL;
1913
1914 arg = skipwhite(arg);
1915 if (*arg == ';')
1916 {
1917 /* Put the rest of the list (may be empty) in the var after ';'.
1918 * Create a new list for this. */
1919 l = list_alloc();
1920 if (l == NULL)
1921 return FAIL;
1922 while (item != NULL)
1923 {
1924 list_append_tv(l, &item->li_tv);
1925 item = item->li_next;
1926 }
1927
1928 ltv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00001929 ltv.v_lock = 0;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001930 ltv.vval.v_list = l;
1931 l->lv_refcount = 1;
1932
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001933 arg = ex_let_one(skipwhite(arg + 1), &ltv, FALSE,
1934 (char_u *)"]", nextchars);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001935 clear_tv(&ltv);
1936 if (arg == NULL)
1937 return FAIL;
1938 break;
1939 }
1940 else if (*arg != ',' && *arg != ']')
1941 {
1942 EMSG2(_(e_intern2), "ex_let_vars()");
1943 return FAIL;
1944 }
1945 }
1946
1947 return OK;
1948}
1949
1950/*
1951 * Skip over assignable variable "var" or list of variables "[var, var]".
1952 * Used for ":let varvar = expr" and ":for varvar in expr".
1953 * For "[var, var]" increment "*var_count" for each variable.
1954 * for "[var, var; var]" set "semicolon".
1955 * Return NULL for an error.
1956 */
1957 static char_u *
1958skip_var_list(arg, var_count, semicolon)
1959 char_u *arg;
1960 int *var_count;
1961 int *semicolon;
1962{
1963 char_u *p, *s;
1964
1965 if (*arg == '[')
1966 {
1967 /* "[var, var]": find the matching ']'. */
1968 p = arg;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001969 for (;;)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001970 {
1971 p = skipwhite(p + 1); /* skip whites after '[', ';' or ',' */
1972 s = skip_var_one(p);
1973 if (s == p)
1974 {
1975 EMSG2(_(e_invarg2), p);
1976 return NULL;
1977 }
1978 ++*var_count;
1979
1980 p = skipwhite(s);
1981 if (*p == ']')
1982 break;
1983 else if (*p == ';')
1984 {
1985 if (*semicolon == 1)
1986 {
1987 EMSG(_("Double ; in list of variables"));
1988 return NULL;
1989 }
1990 *semicolon = 1;
1991 }
1992 else if (*p != ',')
1993 {
1994 EMSG2(_(e_invarg2), p);
1995 return NULL;
1996 }
1997 }
1998 return p + 1;
1999 }
2000 else
2001 return skip_var_one(arg);
2002}
2003
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002004/*
Bram Moolenaarbae0c162007-05-10 19:30:25 +00002005 * Skip one (assignable) variable name, including @r, $VAR, &option, d.key,
Bram Moolenaar92124a32005-06-17 22:03:40 +00002006 * l[idx].
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002007 */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002008 static char_u *
2009skip_var_one(arg)
2010 char_u *arg;
2011{
Bram Moolenaar92124a32005-06-17 22:03:40 +00002012 if (*arg == '@' && arg[1] != NUL)
2013 return arg + 2;
2014 return find_name_end(*arg == '$' || *arg == '&' ? arg + 1 : arg,
2015 NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002016}
2017
Bram Moolenaara7043832005-01-21 11:56:39 +00002018/*
Bram Moolenaar33570922005-01-25 22:26:29 +00002019 * List variables for hashtab "ht" with prefix "prefix".
2020 * If "empty" is TRUE also list NULL strings as empty strings.
Bram Moolenaara7043832005-01-21 11:56:39 +00002021 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002022 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002023list_hashtable_vars(ht, prefix, empty, first)
Bram Moolenaar33570922005-01-25 22:26:29 +00002024 hashtab_T *ht;
Bram Moolenaara7043832005-01-21 11:56:39 +00002025 char_u *prefix;
Bram Moolenaar33570922005-01-25 22:26:29 +00002026 int empty;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002027 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002028{
Bram Moolenaar33570922005-01-25 22:26:29 +00002029 hashitem_T *hi;
2030 dictitem_T *di;
Bram Moolenaara7043832005-01-21 11:56:39 +00002031 int todo;
2032
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002033 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +00002034 for (hi = ht->ht_array; todo > 0 && !got_int; ++hi)
2035 {
2036 if (!HASHITEM_EMPTY(hi))
2037 {
2038 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00002039 di = HI2DI(hi);
2040 if (empty || di->di_tv.v_type != VAR_STRING
2041 || di->di_tv.vval.v_string != NULL)
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002042 list_one_var(di, prefix, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002043 }
2044 }
2045}
2046
2047/*
2048 * List global variables.
2049 */
2050 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002051list_glob_vars(first)
2052 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002053{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002054 list_hashtable_vars(&globvarht, (char_u *)"", TRUE, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002055}
2056
2057/*
2058 * List buffer variables.
2059 */
2060 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002061list_buf_vars(first)
2062 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002063{
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002064 char_u numbuf[NUMBUFLEN];
2065
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002066 list_hashtable_vars(&curbuf->b_vars.dv_hashtab, (char_u *)"b:",
2067 TRUE, first);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002068
2069 sprintf((char *)numbuf, "%ld", (long)curbuf->b_changedtick);
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002070 list_one_var_a((char_u *)"b:", (char_u *)"changedtick", VAR_NUMBER,
2071 numbuf, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002072}
2073
2074/*
2075 * List window variables.
2076 */
2077 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002078list_win_vars(first)
2079 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002080{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002081 list_hashtable_vars(&curwin->w_vars.dv_hashtab,
2082 (char_u *)"w:", TRUE, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002083}
2084
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002085#ifdef FEAT_WINDOWS
2086/*
2087 * List tab page variables.
2088 */
2089 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002090list_tab_vars(first)
2091 int *first;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002092{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002093 list_hashtable_vars(&curtab->tp_vars.dv_hashtab,
2094 (char_u *)"t:", TRUE, first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002095}
2096#endif
2097
Bram Moolenaara7043832005-01-21 11:56:39 +00002098/*
2099 * List Vim variables.
2100 */
2101 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002102list_vim_vars(first)
2103 int *first;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002104{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002105 list_hashtable_vars(&vimvarht, (char_u *)"v:", FALSE, first);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002106}
2107
2108/*
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002109 * List script-local variables, if there is a script.
2110 */
2111 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002112list_script_vars(first)
2113 int *first;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002114{
2115 if (current_SID > 0 && current_SID <= ga_scripts.ga_len)
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002116 list_hashtable_vars(&SCRIPT_VARS(current_SID),
2117 (char_u *)"s:", FALSE, first);
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002118}
2119
2120/*
2121 * List function variables, if there is a function.
2122 */
2123 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002124list_func_vars(first)
2125 int *first;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002126{
2127 if (current_funccal != NULL)
2128 list_hashtable_vars(&current_funccal->l_vars.dv_hashtab,
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002129 (char_u *)"l:", FALSE, first);
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002130}
2131
2132/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002133 * List variables in "arg".
2134 */
2135 static char_u *
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002136list_arg_vars(eap, arg, first)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002137 exarg_T *eap;
2138 char_u *arg;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002139 int *first;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002140{
2141 int error = FALSE;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002142 int len;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002143 char_u *name;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002144 char_u *name_start;
2145 char_u *arg_subsc;
2146 char_u *tofree;
2147 typval_T tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002148
2149 while (!ends_excmd(*arg) && !got_int)
2150 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002151 if (error || eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002152 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002153 arg = find_name_end(arg, NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002154 if (!vim_iswhite(*arg) && !ends_excmd(*arg))
2155 {
2156 emsg_severe = TRUE;
2157 EMSG(_(e_trailing));
2158 break;
2159 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002160 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002161 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002162 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002163 /* get_name_len() takes care of expanding curly braces */
2164 name_start = name = arg;
2165 len = get_name_len(&arg, &tofree, TRUE, TRUE);
2166 if (len <= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002167 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002168 /* This is mainly to keep test 49 working: when expanding
2169 * curly braces fails overrule the exception error message. */
2170 if (len < 0 && !aborting())
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002171 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002172 emsg_severe = TRUE;
2173 EMSG2(_(e_invarg2), arg);
2174 break;
2175 }
2176 error = TRUE;
2177 }
2178 else
2179 {
2180 if (tofree != NULL)
2181 name = tofree;
2182 if (get_var_tv(name, len, &tv, TRUE) == FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002183 error = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002184 else
2185 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002186 /* handle d.key, l[idx], f(expr) */
2187 arg_subsc = arg;
2188 if (handle_subscript(&arg, &tv, TRUE, TRUE) == FAIL)
Bram Moolenaara7043832005-01-21 11:56:39 +00002189 error = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002190 else
Bram Moolenaara7043832005-01-21 11:56:39 +00002191 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002192 if (arg == arg_subsc && len == 2 && name[1] == ':')
Bram Moolenaara7043832005-01-21 11:56:39 +00002193 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002194 switch (*name)
Bram Moolenaara7043832005-01-21 11:56:39 +00002195 {
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002196 case 'g': list_glob_vars(first); break;
2197 case 'b': list_buf_vars(first); break;
2198 case 'w': list_win_vars(first); break;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002199#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002200 case 't': list_tab_vars(first); break;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002201#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002202 case 'v': list_vim_vars(first); break;
2203 case 's': list_script_vars(first); break;
2204 case 'l': list_func_vars(first); break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002205 default:
2206 EMSG2(_("E738: Can't list variables for %s"), name);
Bram Moolenaara7043832005-01-21 11:56:39 +00002207 }
Bram Moolenaara7043832005-01-21 11:56:39 +00002208 }
2209 else
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002210 {
2211 char_u numbuf[NUMBUFLEN];
2212 char_u *tf;
2213 int c;
2214 char_u *s;
2215
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002216 s = echo_string(&tv, &tf, numbuf, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002217 c = *arg;
2218 *arg = NUL;
2219 list_one_var_a((char_u *)"",
2220 arg == arg_subsc ? name : name_start,
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002221 tv.v_type,
2222 s == NULL ? (char_u *)"" : s,
2223 first);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002224 *arg = c;
2225 vim_free(tf);
2226 }
2227 clear_tv(&tv);
Bram Moolenaara7043832005-01-21 11:56:39 +00002228 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002229 }
2230 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002231
2232 vim_free(tofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002233 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002234
2235 arg = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002236 }
2237
2238 return arg;
2239}
2240
2241/*
2242 * Set one item of ":let var = expr" or ":let [v1, v2] = list" to its value.
2243 * Returns a pointer to the char just after the var name.
2244 * Returns NULL if there is an error.
2245 */
2246 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002247ex_let_one(arg, tv, copy, endchars, op)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002248 char_u *arg; /* points to variable name */
Bram Moolenaar33570922005-01-25 22:26:29 +00002249 typval_T *tv; /* value to assign to variable */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002250 int copy; /* copy value from "tv" */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002251 char_u *endchars; /* valid chars after variable name or NULL */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002252 char_u *op; /* "+", "-", "." or NULL*/
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002253{
2254 int c1;
2255 char_u *name;
2256 char_u *p;
2257 char_u *arg_end = NULL;
2258 int len;
2259 int opt_flags;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002260 char_u *tofree = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002261
2262 /*
2263 * ":let $VAR = expr": Set environment variable.
2264 */
2265 if (*arg == '$')
2266 {
2267 /* Find the end of the name. */
2268 ++arg;
2269 name = arg;
2270 len = get_env_len(&arg);
2271 if (len == 0)
2272 EMSG2(_(e_invarg2), name - 1);
2273 else
2274 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002275 if (op != NULL && (*op == '+' || *op == '-'))
2276 EMSG2(_(e_letwrong), op);
2277 else if (endchars != NULL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002278 && vim_strchr(endchars, *skipwhite(arg)) == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002279 EMSG(_(e_letunexp));
2280 else
2281 {
2282 c1 = name[len];
2283 name[len] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002284 p = get_tv_string_chk(tv);
2285 if (p != NULL && op != NULL && *op == '.')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002286 {
2287 int mustfree = FALSE;
2288 char_u *s = vim_getenv(name, &mustfree);
2289
2290 if (s != NULL)
2291 {
2292 p = tofree = concat_str(s, p);
2293 if (mustfree)
2294 vim_free(s);
2295 }
2296 }
2297 if (p != NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002298 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002299 vim_setenv(name, p);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002300 if (STRICMP(name, "HOME") == 0)
2301 init_homedir();
2302 else if (didset_vim && STRICMP(name, "VIM") == 0)
2303 didset_vim = FALSE;
2304 else if (didset_vimruntime
2305 && STRICMP(name, "VIMRUNTIME") == 0)
2306 didset_vimruntime = FALSE;
2307 arg_end = arg;
2308 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002309 name[len] = c1;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002310 vim_free(tofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002311 }
2312 }
2313 }
2314
2315 /*
2316 * ":let &option = expr": Set option value.
2317 * ":let &l:option = expr": Set local option value.
2318 * ":let &g:option = expr": Set global option value.
2319 */
2320 else if (*arg == '&')
2321 {
2322 /* Find the end of the name. */
2323 p = find_option_end(&arg, &opt_flags);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002324 if (p == NULL || (endchars != NULL
2325 && vim_strchr(endchars, *skipwhite(p)) == NULL))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002326 EMSG(_(e_letunexp));
2327 else
2328 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002329 long n;
2330 int opt_type;
2331 long numval;
2332 char_u *stringval = NULL;
2333 char_u *s;
2334
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002335 c1 = *p;
2336 *p = NUL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002337
2338 n = get_tv_number(tv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002339 s = get_tv_string_chk(tv); /* != NULL if number or string */
2340 if (s != NULL && op != NULL && *op != '=')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002341 {
2342 opt_type = get_option_value(arg, &numval,
2343 &stringval, opt_flags);
2344 if ((opt_type == 1 && *op == '.')
2345 || (opt_type == 0 && *op != '.'))
2346 EMSG2(_(e_letwrong), op);
2347 else
2348 {
2349 if (opt_type == 1) /* number */
2350 {
2351 if (*op == '+')
2352 n = numval + n;
2353 else
2354 n = numval - n;
2355 }
2356 else if (opt_type == 0 && stringval != NULL) /* string */
2357 {
2358 s = concat_str(stringval, s);
2359 vim_free(stringval);
2360 stringval = s;
2361 }
2362 }
2363 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002364 if (s != NULL)
2365 {
2366 set_option_value(arg, n, s, opt_flags);
2367 arg_end = p;
2368 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002369 *p = c1;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002370 vim_free(stringval);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002371 }
2372 }
2373
2374 /*
2375 * ":let @r = expr": Set register contents.
2376 */
2377 else if (*arg == '@')
2378 {
2379 ++arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002380 if (op != NULL && (*op == '+' || *op == '-'))
2381 EMSG2(_(e_letwrong), op);
2382 else if (endchars != NULL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002383 && vim_strchr(endchars, *skipwhite(arg + 1)) == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002384 EMSG(_(e_letunexp));
2385 else
2386 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002387 char_u *ptofree = NULL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002388 char_u *s;
2389
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002390 p = get_tv_string_chk(tv);
2391 if (p != NULL && op != NULL && *op == '.')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002392 {
Bram Moolenaar92124a32005-06-17 22:03:40 +00002393 s = get_reg_contents(*arg == '@' ? '"' : *arg, TRUE, TRUE);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002394 if (s != NULL)
2395 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002396 p = ptofree = concat_str(s, p);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002397 vim_free(s);
2398 }
2399 }
2400 if (p != NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002401 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002402 write_reg_contents(*arg == '@' ? '"' : *arg, p, -1, FALSE);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002403 arg_end = arg + 1;
2404 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002405 vim_free(ptofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002406 }
2407 }
2408
2409 /*
2410 * ":let var = expr": Set internal variable.
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002411 * ":let {expr} = expr": Idem, name made with curly braces
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002412 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002413 else if (eval_isnamec1(*arg) || *arg == '{')
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002414 {
Bram Moolenaar33570922005-01-25 22:26:29 +00002415 lval_T lv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002416
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002417 p = get_lval(arg, tv, &lv, FALSE, FALSE, FALSE, FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002418 if (p != NULL && lv.ll_name != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002419 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002420 if (endchars != NULL && vim_strchr(endchars, *skipwhite(p)) == NULL)
2421 EMSG(_(e_letunexp));
2422 else
2423 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002424 set_var_lval(&lv, p, tv, copy, op);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002425 arg_end = p;
2426 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002427 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002428 clear_lval(&lv);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002429 }
2430
2431 else
2432 EMSG2(_(e_invarg2), arg);
2433
2434 return arg_end;
2435}
2436
2437/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00002438 * If "arg" is equal to "b:changedtick" give an error and return TRUE.
2439 */
2440 static int
2441check_changedtick(arg)
2442 char_u *arg;
2443{
2444 if (STRNCMP(arg, "b:changedtick", 13) == 0 && !eval_isnamec(arg[13]))
2445 {
2446 EMSG2(_(e_readonlyvar), arg);
2447 return TRUE;
2448 }
2449 return FALSE;
2450}
2451
2452/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002453 * Get an lval: variable, Dict item or List item that can be assigned a value
2454 * to: "name", "na{me}", "name[expr]", "name[expr:expr]", "name[expr][expr]",
2455 * "name.key", "name.key[expr]" etc.
2456 * Indexing only works if "name" is an existing List or Dictionary.
2457 * "name" points to the start of the name.
2458 * If "rettv" is not NULL it points to the value to be assigned.
2459 * "unlet" is TRUE for ":unlet": slightly different behavior when something is
2460 * wrong; must end in space or cmd separator.
2461 *
2462 * Returns a pointer to just after the name, including indexes.
Bram Moolenaara7043832005-01-21 11:56:39 +00002463 * When an evaluation error occurs "lp->ll_name" is NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002464 * Returns NULL for a parsing error. Still need to free items in "lp"!
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002465 */
2466 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002467get_lval(name, rettv, lp, unlet, skip, quiet, fne_flags)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002468 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +00002469 typval_T *rettv;
2470 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002471 int unlet;
2472 int skip;
2473 int quiet; /* don't give error messages */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002474 int fne_flags; /* flags for find_name_end() */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002475{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002476 char_u *p;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002477 char_u *expr_start, *expr_end;
2478 int cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00002479 dictitem_T *v;
2480 typval_T var1;
2481 typval_T var2;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002482 int empty1 = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00002483 listitem_T *ni;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002484 char_u *key = NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002485 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +00002486 hashtab_T *ht;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002487
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002488 /* Clear everything in "lp". */
Bram Moolenaar33570922005-01-25 22:26:29 +00002489 vim_memset(lp, 0, sizeof(lval_T));
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002490
2491 if (skip)
2492 {
2493 /* When skipping just find the end of the name. */
2494 lp->ll_name = name;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002495 return find_name_end(name, NULL, NULL, FNE_INCL_BR | fne_flags);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002496 }
2497
2498 /* Find the end of the name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002499 p = find_name_end(name, &expr_start, &expr_end, fne_flags);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002500 if (expr_start != NULL)
2501 {
2502 /* Don't expand the name when we already know there is an error. */
2503 if (unlet && !vim_iswhite(*p) && !ends_excmd(*p)
2504 && *p != '[' && *p != '.')
2505 {
2506 EMSG(_(e_trailing));
2507 return NULL;
2508 }
2509
2510 lp->ll_exp_name = make_expanded_name(name, expr_start, expr_end, p);
2511 if (lp->ll_exp_name == NULL)
2512 {
2513 /* Report an invalid expression in braces, unless the
2514 * expression evaluation has been cancelled due to an
2515 * aborting error, an interrupt, or an exception. */
2516 if (!aborting() && !quiet)
2517 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002518 emsg_severe = TRUE;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002519 EMSG2(_(e_invarg2), name);
2520 return NULL;
2521 }
2522 }
2523 lp->ll_name = lp->ll_exp_name;
2524 }
2525 else
2526 lp->ll_name = name;
2527
2528 /* Without [idx] or .key we are done. */
2529 if ((*p != '[' && *p != '.') || lp->ll_name == NULL)
2530 return p;
2531
2532 cc = *p;
2533 *p = NUL;
Bram Moolenaara7043832005-01-21 11:56:39 +00002534 v = find_var(lp->ll_name, &ht);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002535 if (v == NULL && !quiet)
2536 EMSG2(_(e_undefvar), lp->ll_name);
2537 *p = cc;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002538 if (v == NULL)
2539 return NULL;
2540
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002541 /*
2542 * Loop until no more [idx] or .key is following.
2543 */
Bram Moolenaar33570922005-01-25 22:26:29 +00002544 lp->ll_tv = &v->di_tv;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002545 while (*p == '[' || (*p == '.' && lp->ll_tv->v_type == VAR_DICT))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002546 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002547 if (!(lp->ll_tv->v_type == VAR_LIST && lp->ll_tv->vval.v_list != NULL)
2548 && !(lp->ll_tv->v_type == VAR_DICT
2549 && lp->ll_tv->vval.v_dict != NULL))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002550 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002551 if (!quiet)
2552 EMSG(_("E689: Can only index a List or Dictionary"));
2553 return NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002554 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002555 if (lp->ll_range)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002556 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002557 if (!quiet)
2558 EMSG(_("E708: [:] must come last"));
2559 return NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002560 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002561
Bram Moolenaar8c711452005-01-14 21:53:12 +00002562 len = -1;
2563 if (*p == '.')
2564 {
2565 key = p + 1;
2566 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
2567 ;
2568 if (len == 0)
2569 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002570 if (!quiet)
2571 EMSG(_(e_emptykey));
2572 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002573 }
2574 p = key + len;
2575 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002576 else
2577 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002578 /* Get the index [expr] or the first index [expr: ]. */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002579 p = skipwhite(p + 1);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002580 if (*p == ':')
2581 empty1 = TRUE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002582 else
2583 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002584 empty1 = FALSE;
2585 if (eval1(&p, &var1, TRUE) == FAIL) /* recursive! */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002586 return NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002587 if (get_tv_string_chk(&var1) == NULL)
2588 {
2589 /* not a number or string */
2590 clear_tv(&var1);
2591 return NULL;
2592 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002593 }
2594
2595 /* Optionally get the second index [ :expr]. */
2596 if (*p == ':')
2597 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002598 if (lp->ll_tv->v_type == VAR_DICT)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002599 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002600 if (!quiet)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002601 EMSG(_(e_dictrange));
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002602 if (!empty1)
2603 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002604 return NULL;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002605 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002606 if (rettv != NULL && (rettv->v_type != VAR_LIST
2607 || rettv->vval.v_list == NULL))
Bram Moolenaar8c711452005-01-14 21:53:12 +00002608 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002609 if (!quiet)
2610 EMSG(_("E709: [:] requires a List value"));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002611 if (!empty1)
2612 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002613 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002614 }
2615 p = skipwhite(p + 1);
2616 if (*p == ']')
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002617 lp->ll_empty2 = TRUE;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002618 else
2619 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002620 lp->ll_empty2 = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002621 if (eval1(&p, &var2, TRUE) == FAIL) /* recursive! */
2622 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002623 if (!empty1)
2624 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002625 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002626 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002627 if (get_tv_string_chk(&var2) == NULL)
2628 {
2629 /* not a number or string */
2630 if (!empty1)
2631 clear_tv(&var1);
2632 clear_tv(&var2);
2633 return NULL;
2634 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002635 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002636 lp->ll_range = TRUE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002637 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002638 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002639 lp->ll_range = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002640
Bram Moolenaar8c711452005-01-14 21:53:12 +00002641 if (*p != ']')
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002642 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002643 if (!quiet)
2644 EMSG(_(e_missbrac));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002645 if (!empty1)
2646 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002647 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002648 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002649 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002650 }
2651
2652 /* Skip to past ']'. */
2653 ++p;
2654 }
2655
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002656 if (lp->ll_tv->v_type == VAR_DICT)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002657 {
2658 if (len == -1)
2659 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002660 /* "[key]": get key from "var1" */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002661 key = get_tv_string(&var1); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002662 if (*key == NUL)
2663 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002664 if (!quiet)
2665 EMSG(_(e_emptykey));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002666 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002667 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002668 }
2669 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002670 lp->ll_list = NULL;
2671 lp->ll_dict = lp->ll_tv->vval.v_dict;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002672 lp->ll_di = dict_find(lp->ll_dict, key, len);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002673 if (lp->ll_di == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002674 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002675 /* Key does not exist in dict: may need to add it. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002676 if (*p == '[' || *p == '.' || unlet)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002677 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002678 if (!quiet)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002679 EMSG2(_(e_dictkey), key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002680 if (len == -1)
2681 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002682 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002683 }
2684 if (len == -1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002685 lp->ll_newkey = vim_strsave(key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002686 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002687 lp->ll_newkey = vim_strnsave(key, len);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002688 if (len == -1)
2689 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002690 if (lp->ll_newkey == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002691 p = NULL;
2692 break;
2693 }
2694 if (len == -1)
2695 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002696 lp->ll_tv = &lp->ll_di->di_tv;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002697 }
2698 else
2699 {
2700 /*
2701 * Get the number and item for the only or first index of the List.
2702 */
2703 if (empty1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002704 lp->ll_n1 = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002705 else
2706 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002707 lp->ll_n1 = get_tv_number(&var1); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002708 clear_tv(&var1);
2709 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002710 lp->ll_dict = NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002711 lp->ll_list = lp->ll_tv->vval.v_list;
2712 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2713 if (lp->ll_li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002714 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002715 if (lp->ll_n1 < 0)
2716 {
2717 lp->ll_n1 = 0;
2718 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2719 }
2720 }
2721 if (lp->ll_li == NULL)
2722 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002723 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002724 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002725 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002726 }
2727
2728 /*
2729 * May need to find the item or absolute index for the second
2730 * index of a range.
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002731 * When no index given: "lp->ll_empty2" is TRUE.
2732 * Otherwise "lp->ll_n2" is set to the second index.
Bram Moolenaar8c711452005-01-14 21:53:12 +00002733 */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002734 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002735 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002736 lp->ll_n2 = get_tv_number(&var2); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002737 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002738 if (lp->ll_n2 < 0)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002739 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002740 ni = list_find(lp->ll_list, lp->ll_n2);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002741 if (ni == NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002742 return NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002743 lp->ll_n2 = list_idx_of_item(lp->ll_list, ni);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002744 }
2745
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002746 /* Check that lp->ll_n2 isn't before lp->ll_n1. */
2747 if (lp->ll_n1 < 0)
2748 lp->ll_n1 = list_idx_of_item(lp->ll_list, lp->ll_li);
2749 if (lp->ll_n2 < lp->ll_n1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002750 return NULL;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002751 }
2752
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002753 lp->ll_tv = &lp->ll_li->li_tv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002754 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002755 }
2756
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002757 return p;
2758}
2759
2760/*
Bram Moolenaar33570922005-01-25 22:26:29 +00002761 * Clear lval "lp" that was filled by get_lval().
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002762 */
2763 static void
2764clear_lval(lp)
Bram Moolenaar33570922005-01-25 22:26:29 +00002765 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002766{
2767 vim_free(lp->ll_exp_name);
2768 vim_free(lp->ll_newkey);
2769}
2770
2771/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002772 * Set a variable that was parsed by get_lval() to "rettv".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002773 * "endp" points to just after the parsed name.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002774 * "op" is NULL, "+" for "+=", "-" for "-=", "." for ".=" or "=" for "=".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002775 */
2776 static void
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002777set_var_lval(lp, endp, rettv, copy, op)
Bram Moolenaar33570922005-01-25 22:26:29 +00002778 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002779 char_u *endp;
Bram Moolenaar33570922005-01-25 22:26:29 +00002780 typval_T *rettv;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002781 int copy;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002782 char_u *op;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002783{
2784 int cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00002785 listitem_T *ri;
2786 dictitem_T *di;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002787
2788 if (lp->ll_tv == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002789 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002790 if (!check_changedtick(lp->ll_name))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002791 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002792 cc = *endp;
2793 *endp = NUL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002794 if (op != NULL && *op != '=')
2795 {
Bram Moolenaar33570922005-01-25 22:26:29 +00002796 typval_T tv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002797
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002798 /* handle +=, -= and .= */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002799 if (get_var_tv(lp->ll_name, (int)STRLEN(lp->ll_name),
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002800 &tv, TRUE) == OK)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002801 {
2802 if (tv_op(&tv, rettv, op) == OK)
2803 set_var(lp->ll_name, &tv, FALSE);
2804 clear_tv(&tv);
2805 }
2806 }
2807 else
2808 set_var(lp->ll_name, rettv, copy);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002809 *endp = cc;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002810 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002811 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002812 else if (tv_check_lock(lp->ll_newkey == NULL
2813 ? lp->ll_tv->v_lock
2814 : lp->ll_tv->vval.v_dict->dv_lock, lp->ll_name))
2815 ;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002816 else if (lp->ll_range)
2817 {
2818 /*
2819 * Assign the List values to the list items.
2820 */
2821 for (ri = rettv->vval.v_list->lv_first; ri != NULL; )
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002822 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002823 if (op != NULL && *op != '=')
2824 tv_op(&lp->ll_li->li_tv, &ri->li_tv, op);
2825 else
2826 {
2827 clear_tv(&lp->ll_li->li_tv);
2828 copy_tv(&ri->li_tv, &lp->ll_li->li_tv);
2829 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002830 ri = ri->li_next;
2831 if (ri == NULL || (!lp->ll_empty2 && lp->ll_n2 == lp->ll_n1))
2832 break;
2833 if (lp->ll_li->li_next == NULL)
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002834 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002835 /* Need to add an empty item. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00002836 if (list_append_number(lp->ll_list, 0) == FAIL)
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002837 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002838 ri = NULL;
2839 break;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002840 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002841 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002842 lp->ll_li = lp->ll_li->li_next;
2843 ++lp->ll_n1;
2844 }
2845 if (ri != NULL)
2846 EMSG(_("E710: List value has more items than target"));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002847 else if (lp->ll_empty2
2848 ? (lp->ll_li != NULL && lp->ll_li->li_next != NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002849 : lp->ll_n1 != lp->ll_n2)
2850 EMSG(_("E711: List value has not enough items"));
2851 }
2852 else
2853 {
2854 /*
2855 * Assign to a List or Dictionary item.
2856 */
2857 if (lp->ll_newkey != NULL)
2858 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002859 if (op != NULL && *op != '=')
2860 {
2861 EMSG2(_(e_letwrong), op);
2862 return;
2863 }
2864
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002865 /* Need to add an item to the Dictionary. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002866 di = dictitem_alloc(lp->ll_newkey);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002867 if (di == NULL)
2868 return;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002869 if (dict_add(lp->ll_tv->vval.v_dict, di) == FAIL)
2870 {
2871 vim_free(di);
2872 return;
2873 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002874 lp->ll_tv = &di->di_tv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002875 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002876 else if (op != NULL && *op != '=')
2877 {
2878 tv_op(lp->ll_tv, rettv, op);
2879 return;
2880 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002881 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002882 clear_tv(lp->ll_tv);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002883
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002884 /*
2885 * Assign the value to the variable or list item.
2886 */
2887 if (copy)
2888 copy_tv(rettv, lp->ll_tv);
2889 else
2890 {
2891 *lp->ll_tv = *rettv;
Bram Moolenaar758711c2005-02-02 23:11:38 +00002892 lp->ll_tv->v_lock = 0;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002893 init_tv(rettv);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002894 }
2895 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002896}
2897
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002898/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002899 * Handle "tv1 += tv2", "tv1 -= tv2" and "tv1 .= tv2"
2900 * Returns OK or FAIL.
2901 */
2902 static int
2903tv_op(tv1, tv2, op)
Bram Moolenaar33570922005-01-25 22:26:29 +00002904 typval_T *tv1;
2905 typval_T *tv2;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002906 char_u *op;
2907{
2908 long n;
2909 char_u numbuf[NUMBUFLEN];
2910 char_u *s;
2911
2912 /* Can't do anything with a Funcref or a Dict on the right. */
2913 if (tv2->v_type != VAR_FUNC && tv2->v_type != VAR_DICT)
2914 {
2915 switch (tv1->v_type)
2916 {
2917 case VAR_DICT:
2918 case VAR_FUNC:
2919 break;
2920
2921 case VAR_LIST:
2922 if (*op != '+' || tv2->v_type != VAR_LIST)
2923 break;
2924 /* List += List */
2925 if (tv1->vval.v_list != NULL && tv2->vval.v_list != NULL)
2926 list_extend(tv1->vval.v_list, tv2->vval.v_list, NULL);
2927 return OK;
2928
2929 case VAR_NUMBER:
2930 case VAR_STRING:
2931 if (tv2->v_type == VAR_LIST)
2932 break;
2933 if (*op == '+' || *op == '-')
2934 {
2935 /* nr += nr or nr -= nr*/
2936 n = get_tv_number(tv1);
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002937#ifdef FEAT_FLOAT
2938 if (tv2->v_type == VAR_FLOAT)
2939 {
2940 float_T f = n;
2941
2942 if (*op == '+')
2943 f += tv2->vval.v_float;
2944 else
2945 f -= tv2->vval.v_float;
2946 clear_tv(tv1);
2947 tv1->v_type = VAR_FLOAT;
2948 tv1->vval.v_float = f;
2949 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002950 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002951#endif
2952 {
2953 if (*op == '+')
2954 n += get_tv_number(tv2);
2955 else
2956 n -= get_tv_number(tv2);
2957 clear_tv(tv1);
2958 tv1->v_type = VAR_NUMBER;
2959 tv1->vval.v_number = n;
2960 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002961 }
2962 else
2963 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002964 if (tv2->v_type == VAR_FLOAT)
2965 break;
2966
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002967 /* str .= str */
2968 s = get_tv_string(tv1);
2969 s = concat_str(s, get_tv_string_buf(tv2, numbuf));
2970 clear_tv(tv1);
2971 tv1->v_type = VAR_STRING;
2972 tv1->vval.v_string = s;
2973 }
2974 return OK;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002975
2976#ifdef FEAT_FLOAT
2977 case VAR_FLOAT:
2978 {
2979 float_T f;
2980
2981 if (*op == '.' || (tv2->v_type != VAR_FLOAT
2982 && tv2->v_type != VAR_NUMBER
2983 && tv2->v_type != VAR_STRING))
2984 break;
2985 if (tv2->v_type == VAR_FLOAT)
2986 f = tv2->vval.v_float;
2987 else
2988 f = get_tv_number(tv2);
2989 if (*op == '+')
2990 tv1->vval.v_float += f;
2991 else
2992 tv1->vval.v_float -= f;
2993 }
2994 return OK;
2995#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002996 }
2997 }
2998
2999 EMSG2(_(e_letwrong), op);
3000 return FAIL;
3001}
3002
3003/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003004 * Add a watcher to a list.
3005 */
3006 static void
3007list_add_watch(l, lw)
Bram Moolenaar33570922005-01-25 22:26:29 +00003008 list_T *l;
3009 listwatch_T *lw;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003010{
3011 lw->lw_next = l->lv_watch;
3012 l->lv_watch = lw;
3013}
3014
3015/*
Bram Moolenaar758711c2005-02-02 23:11:38 +00003016 * Remove a watcher from a list.
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003017 * No warning when it isn't found...
3018 */
3019 static void
3020list_rem_watch(l, lwrem)
Bram Moolenaar33570922005-01-25 22:26:29 +00003021 list_T *l;
3022 listwatch_T *lwrem;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003023{
Bram Moolenaar33570922005-01-25 22:26:29 +00003024 listwatch_T *lw, **lwp;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003025
3026 lwp = &l->lv_watch;
3027 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3028 {
3029 if (lw == lwrem)
3030 {
3031 *lwp = lw->lw_next;
3032 break;
3033 }
3034 lwp = &lw->lw_next;
3035 }
3036}
3037
3038/*
3039 * Just before removing an item from a list: advance watchers to the next
3040 * item.
3041 */
3042 static void
3043list_fix_watch(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00003044 list_T *l;
3045 listitem_T *item;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003046{
Bram Moolenaar33570922005-01-25 22:26:29 +00003047 listwatch_T *lw;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003048
3049 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3050 if (lw->lw_item == item)
3051 lw->lw_item = item->li_next;
3052}
3053
3054/*
3055 * Evaluate the expression used in a ":for var in expr" command.
3056 * "arg" points to "var".
3057 * Set "*errp" to TRUE for an error, FALSE otherwise;
3058 * Return a pointer that holds the info. Null when there is an error.
3059 */
3060 void *
3061eval_for_line(arg, errp, nextcmdp, skip)
3062 char_u *arg;
3063 int *errp;
3064 char_u **nextcmdp;
3065 int skip;
3066{
Bram Moolenaar33570922005-01-25 22:26:29 +00003067 forinfo_T *fi;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003068 char_u *expr;
Bram Moolenaar33570922005-01-25 22:26:29 +00003069 typval_T tv;
3070 list_T *l;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003071
3072 *errp = TRUE; /* default: there is an error */
3073
Bram Moolenaar33570922005-01-25 22:26:29 +00003074 fi = (forinfo_T *)alloc_clear(sizeof(forinfo_T));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003075 if (fi == NULL)
3076 return NULL;
3077
3078 expr = skip_var_list(arg, &fi->fi_varcount, &fi->fi_semicolon);
3079 if (expr == NULL)
3080 return fi;
3081
3082 expr = skipwhite(expr);
3083 if (expr[0] != 'i' || expr[1] != 'n' || !vim_iswhite(expr[2]))
3084 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00003085 EMSG(_("E690: Missing \"in\" after :for"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003086 return fi;
3087 }
3088
3089 if (skip)
3090 ++emsg_skip;
3091 if (eval0(skipwhite(expr + 2), &tv, nextcmdp, !skip) == OK)
3092 {
3093 *errp = FALSE;
3094 if (!skip)
3095 {
3096 l = tv.vval.v_list;
3097 if (tv.v_type != VAR_LIST || l == NULL)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003098 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003099 EMSG(_(e_listreq));
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003100 clear_tv(&tv);
3101 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003102 else
3103 {
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00003104 /* No need to increment the refcount, it's already set for the
3105 * list being used in "tv". */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003106 fi->fi_list = l;
3107 list_add_watch(l, &fi->fi_lw);
3108 fi->fi_lw.lw_item = l->lv_first;
3109 }
3110 }
3111 }
3112 if (skip)
3113 --emsg_skip;
3114
3115 return fi;
3116}
3117
3118/*
3119 * Use the first item in a ":for" list. Advance to the next.
3120 * Assign the values to the variable (list). "arg" points to the first one.
3121 * Return TRUE when a valid item was found, FALSE when at end of list or
3122 * something wrong.
3123 */
3124 int
3125next_for_item(fi_void, arg)
3126 void *fi_void;
3127 char_u *arg;
3128{
Bram Moolenaar33570922005-01-25 22:26:29 +00003129 forinfo_T *fi = (forinfo_T *)fi_void;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003130 int result;
Bram Moolenaar33570922005-01-25 22:26:29 +00003131 listitem_T *item;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003132
3133 item = fi->fi_lw.lw_item;
3134 if (item == NULL)
3135 result = FALSE;
3136 else
3137 {
3138 fi->fi_lw.lw_item = item->li_next;
3139 result = (ex_let_vars(arg, &item->li_tv, TRUE,
3140 fi->fi_semicolon, fi->fi_varcount, NULL) == OK);
3141 }
3142 return result;
3143}
3144
3145/*
3146 * Free the structure used to store info used by ":for".
3147 */
3148 void
3149free_for_info(fi_void)
3150 void *fi_void;
3151{
Bram Moolenaar33570922005-01-25 22:26:29 +00003152 forinfo_T *fi = (forinfo_T *)fi_void;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003153
Bram Moolenaarab7013c2005-01-09 21:23:56 +00003154 if (fi != NULL && fi->fi_list != NULL)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003155 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003156 list_rem_watch(fi->fi_list, &fi->fi_lw);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003157 list_unref(fi->fi_list);
3158 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003159 vim_free(fi);
3160}
3161
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3163
3164 void
3165set_context_for_expression(xp, arg, cmdidx)
3166 expand_T *xp;
3167 char_u *arg;
3168 cmdidx_T cmdidx;
3169{
3170 int got_eq = FALSE;
3171 int c;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003172 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003174 if (cmdidx == CMD_let)
3175 {
3176 xp->xp_context = EXPAND_USER_VARS;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003177 if (vim_strpbrk(arg, (char_u *)"\"'+-*/%.=!?~|&$([<>,#") == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003178 {
3179 /* ":let var1 var2 ...": find last space. */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003180 for (p = arg + STRLEN(arg); p >= arg; )
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003181 {
3182 xp->xp_pattern = p;
Bram Moolenaar33570922005-01-25 22:26:29 +00003183 mb_ptr_back(arg, p);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003184 if (vim_iswhite(*p))
3185 break;
3186 }
3187 return;
3188 }
3189 }
3190 else
3191 xp->xp_context = cmdidx == CMD_call ? EXPAND_FUNCTIONS
3192 : EXPAND_EXPRESSION;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193 while ((xp->xp_pattern = vim_strpbrk(arg,
3194 (char_u *)"\"'+-*/%.=!?~|&$([<>,#")) != NULL)
3195 {
3196 c = *xp->xp_pattern;
3197 if (c == '&')
3198 {
3199 c = xp->xp_pattern[1];
3200 if (c == '&')
3201 {
3202 ++xp->xp_pattern;
3203 xp->xp_context = cmdidx != CMD_let || got_eq
3204 ? EXPAND_EXPRESSION : EXPAND_NOTHING;
3205 }
3206 else if (c != ' ')
Bram Moolenaar11cbeb12005-03-11 22:51:16 +00003207 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 xp->xp_context = EXPAND_SETTINGS;
Bram Moolenaar11cbeb12005-03-11 22:51:16 +00003209 if ((c == 'l' || c == 'g') && xp->xp_pattern[2] == ':')
3210 xp->xp_pattern += 2;
3211
3212 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213 }
3214 else if (c == '$')
3215 {
3216 /* environment variable */
3217 xp->xp_context = EXPAND_ENV_VARS;
3218 }
3219 else if (c == '=')
3220 {
3221 got_eq = TRUE;
3222 xp->xp_context = EXPAND_EXPRESSION;
3223 }
3224 else if (c == '<'
3225 && xp->xp_context == EXPAND_FUNCTIONS
3226 && vim_strchr(xp->xp_pattern, '(') == NULL)
3227 {
3228 /* Function name can start with "<SNR>" */
3229 break;
3230 }
3231 else if (cmdidx != CMD_let || got_eq)
3232 {
3233 if (c == '"') /* string */
3234 {
3235 while ((c = *++xp->xp_pattern) != NUL && c != '"')
3236 if (c == '\\' && xp->xp_pattern[1] != NUL)
3237 ++xp->xp_pattern;
3238 xp->xp_context = EXPAND_NOTHING;
3239 }
3240 else if (c == '\'') /* literal string */
3241 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00003242 /* Trick: '' is like stopping and starting a literal string. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243 while ((c = *++xp->xp_pattern) != NUL && c != '\'')
3244 /* skip */ ;
3245 xp->xp_context = EXPAND_NOTHING;
3246 }
3247 else if (c == '|')
3248 {
3249 if (xp->xp_pattern[1] == '|')
3250 {
3251 ++xp->xp_pattern;
3252 xp->xp_context = EXPAND_EXPRESSION;
3253 }
3254 else
3255 xp->xp_context = EXPAND_COMMANDS;
3256 }
3257 else
3258 xp->xp_context = EXPAND_EXPRESSION;
3259 }
3260 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003261 /* Doesn't look like something valid, expand as an expression
3262 * anyway. */
3263 xp->xp_context = EXPAND_EXPRESSION;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264 arg = xp->xp_pattern;
3265 if (*arg != NUL)
3266 while ((c = *++arg) != NUL && (c == ' ' || c == '\t'))
3267 /* skip */ ;
3268 }
3269 xp->xp_pattern = arg;
3270}
3271
3272#endif /* FEAT_CMDL_COMPL */
3273
3274/*
3275 * ":1,25call func(arg1, arg2)" function call.
3276 */
3277 void
3278ex_call(eap)
3279 exarg_T *eap;
3280{
3281 char_u *arg = eap->arg;
3282 char_u *startarg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 char_u *name;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003284 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +00003286 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 linenr_T lnum;
3288 int doesrange;
3289 int failed = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00003290 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003292 tofree = trans_function_name(&arg, eap->skip, TFN_INT, &fudi);
Bram Moolenaara2a31752006-10-24 11:49:25 +00003293 if (fudi.fd_newkey != NULL)
3294 {
3295 /* Still need to give an error message for missing key. */
3296 EMSG2(_(e_dictkey), fudi.fd_newkey);
3297 vim_free(fudi.fd_newkey);
3298 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003299 if (tofree == NULL)
3300 return;
3301
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003302 /* Increase refcount on dictionary, it could get deleted when evaluating
3303 * the arguments. */
3304 if (fudi.fd_dict != NULL)
3305 ++fudi.fd_dict->dv_refcount;
3306
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003307 /* If it is the name of a variable of type VAR_FUNC use its contents. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003308 len = (int)STRLEN(tofree);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003309 name = deref_func_name(tofree, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310
Bram Moolenaar532c7802005-01-27 14:44:31 +00003311 /* Skip white space to allow ":call func ()". Not good, but required for
3312 * backward compatibility. */
3313 startarg = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003314 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315
3316 if (*startarg != '(')
3317 {
Bram Moolenaar8dd9ac52008-11-06 10:05:42 +00003318 EMSG2(_("E107: Missing parentheses: %s"), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319 goto end;
3320 }
3321
3322 /*
3323 * When skipping, evaluate the function once, to find the end of the
3324 * arguments.
3325 * When the function takes a range, this is discovered after the first
3326 * call, and the loop is broken.
3327 */
3328 if (eap->skip)
3329 {
3330 ++emsg_skip;
3331 lnum = eap->line2; /* do it once, also with an invalid range */
3332 }
3333 else
3334 lnum = eap->line1;
3335 for ( ; lnum <= eap->line2; ++lnum)
3336 {
3337 if (!eap->skip && eap->addr_count > 0)
3338 {
3339 curwin->w_cursor.lnum = lnum;
3340 curwin->w_cursor.col = 0;
3341 }
3342 arg = startarg;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003343 if (get_func_tv(name, (int)STRLEN(name), &rettv, &arg,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003344 eap->line1, eap->line2, &doesrange,
3345 !eap->skip, fudi.fd_dict) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346 {
3347 failed = TRUE;
3348 break;
3349 }
Bram Moolenaarf2789872006-11-28 19:54:04 +00003350
3351 /* Handle a function returning a Funcref, Dictionary or List. */
3352 if (handle_subscript(&arg, &rettv, !eap->skip, TRUE) == FAIL)
3353 {
3354 failed = TRUE;
3355 break;
3356 }
3357
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003358 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 if (doesrange || eap->skip)
3360 break;
Bram Moolenaarf2789872006-11-28 19:54:04 +00003361
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 /* Stop when immediately aborting on error, or when an interrupt
Bram Moolenaar49cd9572005-01-03 21:06:01 +00003363 * occurred or an exception was thrown but not caught.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003364 * get_func_tv() returned OK, so that the check for trailing
Bram Moolenaar49cd9572005-01-03 21:06:01 +00003365 * characters below is executed. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366 if (aborting())
3367 break;
3368 }
3369 if (eap->skip)
3370 --emsg_skip;
3371
3372 if (!failed)
3373 {
3374 /* Check for trailing illegal characters and a following command. */
3375 if (!ends_excmd(*arg))
3376 {
3377 emsg_severe = TRUE;
3378 EMSG(_(e_trailing));
3379 }
3380 else
3381 eap->nextcmd = check_nextcmd(arg);
3382 }
3383
3384end:
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003385 dict_unref(fudi.fd_dict);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003386 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387}
3388
3389/*
3390 * ":unlet[!] var1 ... " command.
3391 */
3392 void
3393ex_unlet(eap)
3394 exarg_T *eap;
3395{
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003396 ex_unletlock(eap, eap->arg, 0);
3397}
3398
3399/*
3400 * ":lockvar" and ":unlockvar" commands
3401 */
3402 void
3403ex_lockvar(eap)
3404 exarg_T *eap;
3405{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 char_u *arg = eap->arg;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003407 int deep = 2;
3408
3409 if (eap->forceit)
3410 deep = -1;
3411 else if (vim_isdigit(*arg))
3412 {
3413 deep = getdigits(&arg);
3414 arg = skipwhite(arg);
3415 }
3416
3417 ex_unletlock(eap, arg, deep);
3418}
3419
3420/*
3421 * ":unlet", ":lockvar" and ":unlockvar" are quite similar.
3422 */
3423 static void
3424ex_unletlock(eap, argstart, deep)
3425 exarg_T *eap;
3426 char_u *argstart;
3427 int deep;
3428{
3429 char_u *arg = argstart;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 char_u *name_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431 int error = FALSE;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003432 lval_T lv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433
3434 do
3435 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003436 /* Parse the name and find the end. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00003437 name_end = get_lval(arg, NULL, &lv, TRUE, eap->skip || error, FALSE,
3438 FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003439 if (lv.ll_name == NULL)
3440 error = TRUE; /* error but continue parsing */
3441 if (name_end == NULL || (!vim_iswhite(*name_end)
3442 && !ends_excmd(*name_end)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003444 if (name_end != NULL)
3445 {
3446 emsg_severe = TRUE;
3447 EMSG(_(e_trailing));
3448 }
3449 if (!(eap->skip || error))
3450 clear_lval(&lv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 break;
3452 }
3453
3454 if (!error && !eap->skip)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003455 {
3456 if (eap->cmdidx == CMD_unlet)
3457 {
3458 if (do_unlet_var(&lv, name_end, eap->forceit) == FAIL)
3459 error = TRUE;
3460 }
3461 else
3462 {
3463 if (do_lock_var(&lv, name_end, deep,
3464 eap->cmdidx == CMD_lockvar) == FAIL)
3465 error = TRUE;
3466 }
3467 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003469 if (!eap->skip)
3470 clear_lval(&lv);
3471
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472 arg = skipwhite(name_end);
3473 } while (!ends_excmd(*arg));
3474
3475 eap->nextcmd = check_nextcmd(arg);
3476}
3477
Bram Moolenaar8c711452005-01-14 21:53:12 +00003478 static int
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003479do_unlet_var(lp, name_end, forceit)
Bram Moolenaar33570922005-01-25 22:26:29 +00003480 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003481 char_u *name_end;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003482 int forceit;
3483{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003484 int ret = OK;
3485 int cc;
3486
3487 if (lp->ll_tv == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00003488 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003489 cc = *name_end;
3490 *name_end = NUL;
3491
3492 /* Normal name or expanded name. */
3493 if (check_changedtick(lp->ll_name))
3494 ret = FAIL;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003495 else if (do_unlet(lp->ll_name, forceit) == FAIL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003496 ret = FAIL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003497 *name_end = cc;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003498 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003499 else if (tv_check_lock(lp->ll_tv->v_lock, lp->ll_name))
3500 return FAIL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003501 else if (lp->ll_range)
3502 {
Bram Moolenaar33570922005-01-25 22:26:29 +00003503 listitem_T *li;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003504
3505 /* Delete a range of List items. */
3506 while (lp->ll_li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3507 {
3508 li = lp->ll_li->li_next;
3509 listitem_remove(lp->ll_list, lp->ll_li);
3510 lp->ll_li = li;
3511 ++lp->ll_n1;
3512 }
3513 }
3514 else
3515 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003516 if (lp->ll_list != NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003517 /* unlet a List item. */
3518 listitem_remove(lp->ll_list, lp->ll_li);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003519 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003520 /* unlet a Dictionary item. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003521 dictitem_remove(lp->ll_dict, lp->ll_di);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003522 }
3523
3524 return ret;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003525}
3526
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527/*
3528 * "unlet" a variable. Return OK if it existed, FAIL if not.
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003529 * When "forceit" is TRUE don't complain if the variable doesn't exist.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530 */
3531 int
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003532do_unlet(name, forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533 char_u *name;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003534 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535{
Bram Moolenaar33570922005-01-25 22:26:29 +00003536 hashtab_T *ht;
3537 hashitem_T *hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003538 char_u *varname;
Bram Moolenaarafbdeb82008-01-05 21:16:31 +00003539 dictitem_T *di;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540
Bram Moolenaar33570922005-01-25 22:26:29 +00003541 ht = find_var_ht(name, &varname);
3542 if (ht != NULL && *varname != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003543 {
Bram Moolenaar33570922005-01-25 22:26:29 +00003544 hi = hash_find(ht, varname);
3545 if (!HASHITEM_EMPTY(hi))
Bram Moolenaara7043832005-01-21 11:56:39 +00003546 {
Bram Moolenaarafbdeb82008-01-05 21:16:31 +00003547 di = HI2DI(hi);
3548 if (var_check_fixed(di->di_flags, name)
3549 || var_check_ro(di->di_flags, name))
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003550 return FAIL;
3551 delete_var(ht, hi);
3552 return OK;
Bram Moolenaara7043832005-01-21 11:56:39 +00003553 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003555 if (forceit)
3556 return OK;
3557 EMSG2(_("E108: No such variable: \"%s\""), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 return FAIL;
3559}
3560
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003561/*
3562 * Lock or unlock variable indicated by "lp".
3563 * "deep" is the levels to go (-1 for unlimited);
3564 * "lock" is TRUE for ":lockvar", FALSE for ":unlockvar".
3565 */
3566 static int
3567do_lock_var(lp, name_end, deep, lock)
3568 lval_T *lp;
3569 char_u *name_end;
3570 int deep;
3571 int lock;
3572{
3573 int ret = OK;
3574 int cc;
3575 dictitem_T *di;
3576
3577 if (deep == 0) /* nothing to do */
3578 return OK;
3579
3580 if (lp->ll_tv == NULL)
3581 {
3582 cc = *name_end;
3583 *name_end = NUL;
3584
3585 /* Normal name or expanded name. */
3586 if (check_changedtick(lp->ll_name))
3587 ret = FAIL;
3588 else
3589 {
3590 di = find_var(lp->ll_name, NULL);
3591 if (di == NULL)
3592 ret = FAIL;
3593 else
3594 {
3595 if (lock)
3596 di->di_flags |= DI_FLAGS_LOCK;
3597 else
3598 di->di_flags &= ~DI_FLAGS_LOCK;
3599 item_lock(&di->di_tv, deep, lock);
3600 }
3601 }
3602 *name_end = cc;
3603 }
3604 else if (lp->ll_range)
3605 {
3606 listitem_T *li = lp->ll_li;
3607
3608 /* (un)lock a range of List items. */
3609 while (li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3610 {
3611 item_lock(&li->li_tv, deep, lock);
3612 li = li->li_next;
3613 ++lp->ll_n1;
3614 }
3615 }
3616 else if (lp->ll_list != NULL)
3617 /* (un)lock a List item. */
3618 item_lock(&lp->ll_li->li_tv, deep, lock);
3619 else
3620 /* un(lock) a Dictionary item. */
3621 item_lock(&lp->ll_di->di_tv, deep, lock);
3622
3623 return ret;
3624}
3625
3626/*
3627 * Lock or unlock an item. "deep" is nr of levels to go.
3628 */
3629 static void
3630item_lock(tv, deep, lock)
3631 typval_T *tv;
3632 int deep;
3633 int lock;
3634{
3635 static int recurse = 0;
3636 list_T *l;
3637 listitem_T *li;
3638 dict_T *d;
3639 hashitem_T *hi;
3640 int todo;
3641
3642 if (recurse >= DICT_MAXNEST)
3643 {
3644 EMSG(_("E743: variable nested too deep for (un)lock"));
3645 return;
3646 }
3647 if (deep == 0)
3648 return;
3649 ++recurse;
3650
3651 /* lock/unlock the item itself */
3652 if (lock)
3653 tv->v_lock |= VAR_LOCKED;
3654 else
3655 tv->v_lock &= ~VAR_LOCKED;
3656
3657 switch (tv->v_type)
3658 {
3659 case VAR_LIST:
3660 if ((l = tv->vval.v_list) != NULL)
3661 {
3662 if (lock)
3663 l->lv_lock |= VAR_LOCKED;
3664 else
3665 l->lv_lock &= ~VAR_LOCKED;
3666 if (deep < 0 || deep > 1)
3667 /* recursive: lock/unlock the items the List contains */
3668 for (li = l->lv_first; li != NULL; li = li->li_next)
3669 item_lock(&li->li_tv, deep - 1, lock);
3670 }
3671 break;
3672 case VAR_DICT:
3673 if ((d = tv->vval.v_dict) != NULL)
3674 {
3675 if (lock)
3676 d->dv_lock |= VAR_LOCKED;
3677 else
3678 d->dv_lock &= ~VAR_LOCKED;
3679 if (deep < 0 || deep > 1)
3680 {
3681 /* recursive: lock/unlock the items the List contains */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003682 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003683 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
3684 {
3685 if (!HASHITEM_EMPTY(hi))
3686 {
3687 --todo;
3688 item_lock(&HI2DI(hi)->di_tv, deep - 1, lock);
3689 }
3690 }
3691 }
3692 }
3693 }
3694 --recurse;
3695}
3696
Bram Moolenaara40058a2005-07-11 22:42:07 +00003697/*
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +00003698 * Return TRUE if typeval "tv" is locked: Either that value is locked itself
3699 * or it refers to a List or Dictionary that is locked.
Bram Moolenaara40058a2005-07-11 22:42:07 +00003700 */
3701 static int
3702tv_islocked(tv)
3703 typval_T *tv;
3704{
3705 return (tv->v_lock & VAR_LOCKED)
3706 || (tv->v_type == VAR_LIST
3707 && tv->vval.v_list != NULL
3708 && (tv->vval.v_list->lv_lock & VAR_LOCKED))
3709 || (tv->v_type == VAR_DICT
3710 && tv->vval.v_dict != NULL
3711 && (tv->vval.v_dict->dv_lock & VAR_LOCKED));
3712}
3713
Bram Moolenaar071d4272004-06-13 20:20:40 +00003714#if (defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)) || defined(PROTO)
3715/*
3716 * Delete all "menutrans_" variables.
3717 */
3718 void
3719del_menutrans_vars()
3720{
Bram Moolenaar33570922005-01-25 22:26:29 +00003721 hashitem_T *hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003722 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723
Bram Moolenaar33570922005-01-25 22:26:29 +00003724 hash_lock(&globvarht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003725 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00003726 for (hi = globvarht.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaara7043832005-01-21 11:56:39 +00003727 {
3728 if (!HASHITEM_EMPTY(hi))
3729 {
3730 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00003731 if (STRNCMP(HI2DI(hi)->di_key, "menutrans_", 10) == 0)
3732 delete_var(&globvarht, hi);
Bram Moolenaara7043832005-01-21 11:56:39 +00003733 }
3734 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003735 hash_unlock(&globvarht);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003736}
3737#endif
3738
3739#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3740
3741/*
3742 * Local string buffer for the next two functions to store a variable name
3743 * with its prefix. Allocated in cat_prefix_varname(), freed later in
3744 * get_user_var_name().
3745 */
3746
3747static char_u *cat_prefix_varname __ARGS((int prefix, char_u *name));
3748
3749static char_u *varnamebuf = NULL;
3750static int varnamebuflen = 0;
3751
3752/*
3753 * Function to concatenate a prefix and a variable name.
3754 */
3755 static char_u *
3756cat_prefix_varname(prefix, name)
3757 int prefix;
3758 char_u *name;
3759{
3760 int len;
3761
3762 len = (int)STRLEN(name) + 3;
3763 if (len > varnamebuflen)
3764 {
3765 vim_free(varnamebuf);
3766 len += 10; /* some additional space */
3767 varnamebuf = alloc(len);
3768 if (varnamebuf == NULL)
3769 {
3770 varnamebuflen = 0;
3771 return NULL;
3772 }
3773 varnamebuflen = len;
3774 }
3775 *varnamebuf = prefix;
3776 varnamebuf[1] = ':';
3777 STRCPY(varnamebuf + 2, name);
3778 return varnamebuf;
3779}
3780
3781/*
3782 * Function given to ExpandGeneric() to obtain the list of user defined
3783 * (global/buffer/window/built-in) variable names.
3784 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785 char_u *
3786get_user_var_name(xp, idx)
3787 expand_T *xp;
3788 int idx;
3789{
Bram Moolenaar532c7802005-01-27 14:44:31 +00003790 static long_u gdone;
3791 static long_u bdone;
3792 static long_u wdone;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003793#ifdef FEAT_WINDOWS
3794 static long_u tdone;
3795#endif
Bram Moolenaar532c7802005-01-27 14:44:31 +00003796 static int vidx;
3797 static hashitem_T *hi;
3798 hashtab_T *ht;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799
3800 if (idx == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003801 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003802 gdone = bdone = wdone = vidx = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003803#ifdef FEAT_WINDOWS
3804 tdone = 0;
3805#endif
3806 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003807
3808 /* Global variables */
3809 if (gdone < globvarht.ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003811 if (gdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003812 hi = globvarht.ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003813 else
3814 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003815 while (HASHITEM_EMPTY(hi))
3816 ++hi;
3817 if (STRNCMP("g:", xp->xp_pattern, 2) == 0)
3818 return cat_prefix_varname('g', hi->hi_key);
3819 return hi->hi_key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003821
3822 /* b: variables */
3823 ht = &curbuf->b_vars.dv_hashtab;
3824 if (bdone < ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003826 if (bdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003827 hi = ht->ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003828 else
3829 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003830 while (HASHITEM_EMPTY(hi))
3831 ++hi;
3832 return cat_prefix_varname('b', hi->hi_key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003834 if (bdone == ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003836 ++bdone;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 return (char_u *)"b:changedtick";
3838 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003839
3840 /* w: variables */
3841 ht = &curwin->w_vars.dv_hashtab;
3842 if (wdone < ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003843 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00003844 if (wdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003845 hi = ht->ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003846 else
3847 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003848 while (HASHITEM_EMPTY(hi))
3849 ++hi;
3850 return cat_prefix_varname('w', hi->hi_key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003852
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003853#ifdef FEAT_WINDOWS
3854 /* t: variables */
3855 ht = &curtab->tp_vars.dv_hashtab;
3856 if (tdone < ht->ht_used)
3857 {
3858 if (tdone++ == 0)
3859 hi = ht->ht_array;
3860 else
3861 ++hi;
3862 while (HASHITEM_EMPTY(hi))
3863 ++hi;
3864 return cat_prefix_varname('t', hi->hi_key);
3865 }
3866#endif
3867
Bram Moolenaar33570922005-01-25 22:26:29 +00003868 /* v: variables */
3869 if (vidx < VV_LEN)
3870 return cat_prefix_varname('v', (char_u *)vimvars[vidx++].vv_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871
3872 vim_free(varnamebuf);
3873 varnamebuf = NULL;
3874 varnamebuflen = 0;
3875 return NULL;
3876}
3877
3878#endif /* FEAT_CMDL_COMPL */
3879
3880/*
3881 * types for expressions.
3882 */
3883typedef enum
3884{
3885 TYPE_UNKNOWN = 0
3886 , TYPE_EQUAL /* == */
3887 , TYPE_NEQUAL /* != */
3888 , TYPE_GREATER /* > */
3889 , TYPE_GEQUAL /* >= */
3890 , TYPE_SMALLER /* < */
3891 , TYPE_SEQUAL /* <= */
3892 , TYPE_MATCH /* =~ */
3893 , TYPE_NOMATCH /* !~ */
3894} exptype_T;
3895
3896/*
3897 * The "evaluate" argument: When FALSE, the argument is only parsed but not
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003898 * executed. The function may return OK, but the rettv will be of type
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899 * VAR_UNKNOWN. The function still returns FAIL for a syntax error.
3900 */
3901
3902/*
3903 * Handle zero level expression.
3904 * This calls eval1() and handles error message and nextcmd.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003905 * Put the result in "rettv" when returning OK and "evaluate" is TRUE.
Bram Moolenaar4463f292005-09-25 22:20:24 +00003906 * Note: "rettv.v_lock" is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907 * Return OK or FAIL.
3908 */
3909 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003910eval0(arg, rettv, nextcmd, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911 char_u *arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00003912 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913 char_u **nextcmd;
3914 int evaluate;
3915{
3916 int ret;
3917 char_u *p;
3918
3919 p = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003920 ret = eval1(&p, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921 if (ret == FAIL || !ends_excmd(*p))
3922 {
3923 if (ret != FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003924 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 /*
3926 * Report the invalid expression unless the expression evaluation has
3927 * been cancelled due to an aborting error, an interrupt, or an
3928 * exception.
3929 */
3930 if (!aborting())
3931 EMSG2(_(e_invexpr2), arg);
3932 ret = FAIL;
3933 }
3934 if (nextcmd != NULL)
3935 *nextcmd = check_nextcmd(p);
3936
3937 return ret;
3938}
3939
3940/*
3941 * Handle top level expression:
Bram Moolenaarb67cc162009-02-04 15:27:06 +00003942 * expr2 ? expr1 : expr1
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943 *
3944 * "arg" must point to the first non-white of the expression.
3945 * "arg" is advanced to the next non-white after the recognized expression.
3946 *
Bram Moolenaar4463f292005-09-25 22:20:24 +00003947 * Note: "rettv.v_lock" is not set.
3948 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949 * Return OK or FAIL.
3950 */
3951 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003952eval1(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00003954 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 int evaluate;
3956{
3957 int result;
Bram Moolenaar33570922005-01-25 22:26:29 +00003958 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959
3960 /*
3961 * Get the first variable.
3962 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003963 if (eval2(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964 return FAIL;
3965
3966 if ((*arg)[0] == '?')
3967 {
3968 result = FALSE;
3969 if (evaluate)
3970 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003971 int error = FALSE;
3972
3973 if (get_tv_number_chk(rettv, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003975 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003976 if (error)
3977 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 }
3979
3980 /*
3981 * Get the second variable.
3982 */
3983 *arg = skipwhite(*arg + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003984 if (eval1(arg, rettv, evaluate && result) == FAIL) /* recursive! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 return FAIL;
3986
3987 /*
3988 * Check for the ":".
3989 */
3990 if ((*arg)[0] != ':')
3991 {
3992 EMSG(_("E109: Missing ':' after '?'"));
3993 if (evaluate && result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003994 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 return FAIL;
3996 }
3997
3998 /*
3999 * Get the third variable.
4000 */
4001 *arg = skipwhite(*arg + 1);
4002 if (eval1(arg, &var2, evaluate && !result) == FAIL) /* recursive! */
4003 {
4004 if (evaluate && result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004005 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006 return FAIL;
4007 }
4008 if (evaluate && !result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004009 *rettv = var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004010 }
4011
4012 return OK;
4013}
4014
4015/*
4016 * Handle first level expression:
4017 * expr2 || expr2 || expr2 logical OR
4018 *
4019 * "arg" must point to the first non-white of the expression.
4020 * "arg" is advanced to the next non-white after the recognized expression.
4021 *
4022 * Return OK or FAIL.
4023 */
4024 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004025eval2(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004027 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028 int evaluate;
4029{
Bram Moolenaar33570922005-01-25 22:26:29 +00004030 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 long result;
4032 int first;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004033 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034
4035 /*
4036 * Get the first variable.
4037 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004038 if (eval3(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 return FAIL;
4040
4041 /*
4042 * Repeat until there is no following "||".
4043 */
4044 first = TRUE;
4045 result = FALSE;
4046 while ((*arg)[0] == '|' && (*arg)[1] == '|')
4047 {
4048 if (evaluate && first)
4049 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004050 if (get_tv_number_chk(rettv, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004052 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004053 if (error)
4054 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055 first = FALSE;
4056 }
4057
4058 /*
4059 * Get the second variable.
4060 */
4061 *arg = skipwhite(*arg + 2);
4062 if (eval3(arg, &var2, evaluate && !result) == FAIL)
4063 return FAIL;
4064
4065 /*
4066 * Compute the result.
4067 */
4068 if (evaluate && !result)
4069 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004070 if (get_tv_number_chk(&var2, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004072 clear_tv(&var2);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004073 if (error)
4074 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 }
4076 if (evaluate)
4077 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004078 rettv->v_type = VAR_NUMBER;
4079 rettv->vval.v_number = result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080 }
4081 }
4082
4083 return OK;
4084}
4085
4086/*
4087 * Handle second level expression:
4088 * expr3 && expr3 && expr3 logical AND
4089 *
4090 * "arg" must point to the first non-white of the expression.
4091 * "arg" is advanced to the next non-white after the recognized expression.
4092 *
4093 * Return OK or FAIL.
4094 */
4095 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004096eval3(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004098 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 int evaluate;
4100{
Bram Moolenaar33570922005-01-25 22:26:29 +00004101 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 long result;
4103 int first;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004104 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004105
4106 /*
4107 * Get the first variable.
4108 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004109 if (eval4(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110 return FAIL;
4111
4112 /*
4113 * Repeat until there is no following "&&".
4114 */
4115 first = TRUE;
4116 result = TRUE;
4117 while ((*arg)[0] == '&' && (*arg)[1] == '&')
4118 {
4119 if (evaluate && first)
4120 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004121 if (get_tv_number_chk(rettv, &error) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122 result = FALSE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004123 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004124 if (error)
4125 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 first = FALSE;
4127 }
4128
4129 /*
4130 * Get the second variable.
4131 */
4132 *arg = skipwhite(*arg + 2);
4133 if (eval4(arg, &var2, evaluate && result) == FAIL)
4134 return FAIL;
4135
4136 /*
4137 * Compute the result.
4138 */
4139 if (evaluate && result)
4140 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004141 if (get_tv_number_chk(&var2, &error) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004142 result = FALSE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004143 clear_tv(&var2);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004144 if (error)
4145 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 }
4147 if (evaluate)
4148 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004149 rettv->v_type = VAR_NUMBER;
4150 rettv->vval.v_number = result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 }
4152 }
4153
4154 return OK;
4155}
4156
4157/*
4158 * Handle third level expression:
4159 * var1 == var2
4160 * var1 =~ var2
4161 * var1 != var2
4162 * var1 !~ var2
4163 * var1 > var2
4164 * var1 >= var2
4165 * var1 < var2
4166 * var1 <= var2
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004167 * var1 is var2
4168 * var1 isnot var2
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 *
4170 * "arg" must point to the first non-white of the expression.
4171 * "arg" is advanced to the next non-white after the recognized expression.
4172 *
4173 * Return OK or FAIL.
4174 */
4175 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004176eval4(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004178 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179 int evaluate;
4180{
Bram Moolenaar33570922005-01-25 22:26:29 +00004181 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 char_u *p;
4183 int i;
4184 exptype_T type = TYPE_UNKNOWN;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004185 int type_is = FALSE; /* TRUE for "is" and "isnot" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186 int len = 2;
4187 long n1, n2;
4188 char_u *s1, *s2;
4189 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4190 regmatch_T regmatch;
4191 int ic;
4192 char_u *save_cpo;
4193
4194 /*
4195 * Get the first variable.
4196 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004197 if (eval5(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198 return FAIL;
4199
4200 p = *arg;
4201 switch (p[0])
4202 {
4203 case '=': if (p[1] == '=')
4204 type = TYPE_EQUAL;
4205 else if (p[1] == '~')
4206 type = TYPE_MATCH;
4207 break;
4208 case '!': if (p[1] == '=')
4209 type = TYPE_NEQUAL;
4210 else if (p[1] == '~')
4211 type = TYPE_NOMATCH;
4212 break;
4213 case '>': if (p[1] != '=')
4214 {
4215 type = TYPE_GREATER;
4216 len = 1;
4217 }
4218 else
4219 type = TYPE_GEQUAL;
4220 break;
4221 case '<': if (p[1] != '=')
4222 {
4223 type = TYPE_SMALLER;
4224 len = 1;
4225 }
4226 else
4227 type = TYPE_SEQUAL;
4228 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004229 case 'i': if (p[1] == 's')
4230 {
4231 if (p[2] == 'n' && p[3] == 'o' && p[4] == 't')
4232 len = 5;
4233 if (!vim_isIDc(p[len]))
4234 {
4235 type = len == 2 ? TYPE_EQUAL : TYPE_NEQUAL;
4236 type_is = TRUE;
4237 }
4238 }
4239 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240 }
4241
4242 /*
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004243 * If there is a comparative operator, use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244 */
4245 if (type != TYPE_UNKNOWN)
4246 {
4247 /* extra question mark appended: ignore case */
4248 if (p[len] == '?')
4249 {
4250 ic = TRUE;
4251 ++len;
4252 }
4253 /* extra '#' appended: match case */
4254 else if (p[len] == '#')
4255 {
4256 ic = FALSE;
4257 ++len;
4258 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004259 /* nothing appended: use 'ignorecase' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260 else
4261 ic = p_ic;
4262
4263 /*
4264 * Get the second variable.
4265 */
4266 *arg = skipwhite(p + len);
4267 if (eval5(arg, &var2, evaluate) == FAIL)
4268 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004269 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004270 return FAIL;
4271 }
4272
4273 if (evaluate)
4274 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004275 if (type_is && rettv->v_type != var2.v_type)
4276 {
4277 /* For "is" a different type always means FALSE, for "notis"
4278 * it means TRUE. */
4279 n1 = (type == TYPE_NEQUAL);
4280 }
4281 else if (rettv->v_type == VAR_LIST || var2.v_type == VAR_LIST)
4282 {
4283 if (type_is)
4284 {
4285 n1 = (rettv->v_type == var2.v_type
4286 && rettv->vval.v_list == var2.vval.v_list);
4287 if (type == TYPE_NEQUAL)
4288 n1 = !n1;
4289 }
4290 else if (rettv->v_type != var2.v_type
4291 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4292 {
4293 if (rettv->v_type != var2.v_type)
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004294 EMSG(_("E691: Can only compare List with List"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004295 else
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004296 EMSG(_("E692: Invalid operation for Lists"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004297 clear_tv(rettv);
4298 clear_tv(&var2);
4299 return FAIL;
4300 }
4301 else
4302 {
4303 /* Compare two Lists for being equal or unequal. */
4304 n1 = list_equal(rettv->vval.v_list, var2.vval.v_list, ic);
4305 if (type == TYPE_NEQUAL)
4306 n1 = !n1;
4307 }
4308 }
4309
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00004310 else if (rettv->v_type == VAR_DICT || var2.v_type == VAR_DICT)
4311 {
4312 if (type_is)
4313 {
4314 n1 = (rettv->v_type == var2.v_type
4315 && rettv->vval.v_dict == var2.vval.v_dict);
4316 if (type == TYPE_NEQUAL)
4317 n1 = !n1;
4318 }
4319 else if (rettv->v_type != var2.v_type
4320 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4321 {
4322 if (rettv->v_type != var2.v_type)
4323 EMSG(_("E735: Can only compare Dictionary with Dictionary"));
4324 else
4325 EMSG(_("E736: Invalid operation for Dictionary"));
4326 clear_tv(rettv);
4327 clear_tv(&var2);
4328 return FAIL;
4329 }
4330 else
4331 {
4332 /* Compare two Dictionaries for being equal or unequal. */
4333 n1 = dict_equal(rettv->vval.v_dict, var2.vval.v_dict, ic);
4334 if (type == TYPE_NEQUAL)
4335 n1 = !n1;
4336 }
4337 }
4338
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004339 else if (rettv->v_type == VAR_FUNC || var2.v_type == VAR_FUNC)
4340 {
4341 if (rettv->v_type != var2.v_type
4342 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4343 {
4344 if (rettv->v_type != var2.v_type)
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004345 EMSG(_("E693: Can only compare Funcref with Funcref"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004346 else
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004347 EMSG(_("E694: Invalid operation for Funcrefs"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004348 clear_tv(rettv);
4349 clear_tv(&var2);
4350 return FAIL;
4351 }
4352 else
4353 {
4354 /* Compare two Funcrefs for being equal or unequal. */
4355 if (rettv->vval.v_string == NULL
4356 || var2.vval.v_string == NULL)
4357 n1 = FALSE;
4358 else
4359 n1 = STRCMP(rettv->vval.v_string,
4360 var2.vval.v_string) == 0;
4361 if (type == TYPE_NEQUAL)
4362 n1 = !n1;
4363 }
4364 }
4365
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004366#ifdef FEAT_FLOAT
4367 /*
4368 * If one of the two variables is a float, compare as a float.
4369 * When using "=~" or "!~", always compare as string.
4370 */
4371 else if ((rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4372 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4373 {
4374 float_T f1, f2;
4375
4376 if (rettv->v_type == VAR_FLOAT)
4377 f1 = rettv->vval.v_float;
4378 else
4379 f1 = get_tv_number(rettv);
4380 if (var2.v_type == VAR_FLOAT)
4381 f2 = var2.vval.v_float;
4382 else
4383 f2 = get_tv_number(&var2);
4384 n1 = FALSE;
4385 switch (type)
4386 {
4387 case TYPE_EQUAL: n1 = (f1 == f2); break;
4388 case TYPE_NEQUAL: n1 = (f1 != f2); break;
4389 case TYPE_GREATER: n1 = (f1 > f2); break;
4390 case TYPE_GEQUAL: n1 = (f1 >= f2); break;
4391 case TYPE_SMALLER: n1 = (f1 < f2); break;
4392 case TYPE_SEQUAL: n1 = (f1 <= f2); break;
4393 case TYPE_UNKNOWN:
4394 case TYPE_MATCH:
4395 case TYPE_NOMATCH: break; /* avoid gcc warning */
4396 }
4397 }
4398#endif
4399
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400 /*
4401 * If one of the two variables is a number, compare as a number.
4402 * When using "=~" or "!~", always compare as string.
4403 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004404 else if ((rettv->v_type == VAR_NUMBER || var2.v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4406 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004407 n1 = get_tv_number(rettv);
4408 n2 = get_tv_number(&var2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409 switch (type)
4410 {
4411 case TYPE_EQUAL: n1 = (n1 == n2); break;
4412 case TYPE_NEQUAL: n1 = (n1 != n2); break;
4413 case TYPE_GREATER: n1 = (n1 > n2); break;
4414 case TYPE_GEQUAL: n1 = (n1 >= n2); break;
4415 case TYPE_SMALLER: n1 = (n1 < n2); break;
4416 case TYPE_SEQUAL: n1 = (n1 <= n2); break;
4417 case TYPE_UNKNOWN:
4418 case TYPE_MATCH:
4419 case TYPE_NOMATCH: break; /* avoid gcc warning */
4420 }
4421 }
4422 else
4423 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004424 s1 = get_tv_string_buf(rettv, buf1);
4425 s2 = get_tv_string_buf(&var2, buf2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004426 if (type != TYPE_MATCH && type != TYPE_NOMATCH)
4427 i = ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2);
4428 else
4429 i = 0;
4430 n1 = FALSE;
4431 switch (type)
4432 {
4433 case TYPE_EQUAL: n1 = (i == 0); break;
4434 case TYPE_NEQUAL: n1 = (i != 0); break;
4435 case TYPE_GREATER: n1 = (i > 0); break;
4436 case TYPE_GEQUAL: n1 = (i >= 0); break;
4437 case TYPE_SMALLER: n1 = (i < 0); break;
4438 case TYPE_SEQUAL: n1 = (i <= 0); break;
4439
4440 case TYPE_MATCH:
4441 case TYPE_NOMATCH:
4442 /* avoid 'l' flag in 'cpoptions' */
4443 save_cpo = p_cpo;
4444 p_cpo = (char_u *)"";
4445 regmatch.regprog = vim_regcomp(s2,
4446 RE_MAGIC + RE_STRING);
4447 regmatch.rm_ic = ic;
4448 if (regmatch.regprog != NULL)
4449 {
4450 n1 = vim_regexec_nl(&regmatch, s1, (colnr_T)0);
4451 vim_free(regmatch.regprog);
4452 if (type == TYPE_NOMATCH)
4453 n1 = !n1;
4454 }
4455 p_cpo = save_cpo;
4456 break;
4457
4458 case TYPE_UNKNOWN: break; /* avoid gcc warning */
4459 }
4460 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004461 clear_tv(rettv);
4462 clear_tv(&var2);
4463 rettv->v_type = VAR_NUMBER;
4464 rettv->vval.v_number = n1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465 }
4466 }
4467
4468 return OK;
4469}
4470
4471/*
4472 * Handle fourth level expression:
4473 * + number addition
4474 * - number subtraction
4475 * . string concatenation
4476 *
4477 * "arg" must point to the first non-white of the expression.
4478 * "arg" is advanced to the next non-white after the recognized expression.
4479 *
4480 * Return OK or FAIL.
4481 */
4482 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004483eval5(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004485 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 int evaluate;
4487{
Bram Moolenaar33570922005-01-25 22:26:29 +00004488 typval_T var2;
4489 typval_T var3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490 int op;
4491 long n1, n2;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004492#ifdef FEAT_FLOAT
4493 float_T f1 = 0, f2 = 0;
4494#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495 char_u *s1, *s2;
4496 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4497 char_u *p;
4498
4499 /*
4500 * Get the first variable.
4501 */
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004502 if (eval6(arg, rettv, evaluate, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 return FAIL;
4504
4505 /*
4506 * Repeat computing, until no '+', '-' or '.' is following.
4507 */
4508 for (;;)
4509 {
4510 op = **arg;
4511 if (op != '+' && op != '-' && op != '.')
4512 break;
4513
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004514 if ((op != '+' || rettv->v_type != VAR_LIST)
4515#ifdef FEAT_FLOAT
4516 && (op == '.' || rettv->v_type != VAR_FLOAT)
4517#endif
4518 )
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004519 {
4520 /* For "list + ...", an illegal use of the first operand as
4521 * a number cannot be determined before evaluating the 2nd
4522 * operand: if this is also a list, all is ok.
4523 * For "something . ...", "something - ..." or "non-list + ...",
4524 * we know that the first operand needs to be a string or number
4525 * without evaluating the 2nd operand. So check before to avoid
4526 * side effects after an error. */
4527 if (evaluate && get_tv_string_chk(rettv) == NULL)
4528 {
4529 clear_tv(rettv);
4530 return FAIL;
4531 }
4532 }
4533
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534 /*
4535 * Get the second variable.
4536 */
4537 *arg = skipwhite(*arg + 1);
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004538 if (eval6(arg, &var2, evaluate, op == '.') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004540 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 return FAIL;
4542 }
4543
4544 if (evaluate)
4545 {
4546 /*
4547 * Compute the result.
4548 */
4549 if (op == '.')
4550 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004551 s1 = get_tv_string_buf(rettv, buf1); /* already checked */
4552 s2 = get_tv_string_buf_chk(&var2, buf2);
4553 if (s2 == NULL) /* type error ? */
4554 {
4555 clear_tv(rettv);
4556 clear_tv(&var2);
4557 return FAIL;
4558 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00004559 p = concat_str(s1, s2);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004560 clear_tv(rettv);
4561 rettv->v_type = VAR_STRING;
4562 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004563 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00004564 else if (op == '+' && rettv->v_type == VAR_LIST
4565 && var2.v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004566 {
4567 /* concatenate Lists */
4568 if (list_concat(rettv->vval.v_list, var2.vval.v_list,
4569 &var3) == FAIL)
4570 {
4571 clear_tv(rettv);
4572 clear_tv(&var2);
4573 return FAIL;
4574 }
4575 clear_tv(rettv);
4576 *rettv = var3;
4577 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004578 else
4579 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004580 int error = FALSE;
4581
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004582#ifdef FEAT_FLOAT
4583 if (rettv->v_type == VAR_FLOAT)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004584 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004585 f1 = rettv->vval.v_float;
4586 n1 = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004587 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004588 else
4589#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004590 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004591 n1 = get_tv_number_chk(rettv, &error);
4592 if (error)
4593 {
4594 /* This can only happen for "list + non-list". For
4595 * "non-list + ..." or "something - ...", we returned
4596 * before evaluating the 2nd operand. */
4597 clear_tv(rettv);
4598 return FAIL;
4599 }
4600#ifdef FEAT_FLOAT
4601 if (var2.v_type == VAR_FLOAT)
4602 f1 = n1;
4603#endif
4604 }
4605#ifdef FEAT_FLOAT
4606 if (var2.v_type == VAR_FLOAT)
4607 {
4608 f2 = var2.vval.v_float;
4609 n2 = 0;
4610 }
4611 else
4612#endif
4613 {
4614 n2 = get_tv_number_chk(&var2, &error);
4615 if (error)
4616 {
4617 clear_tv(rettv);
4618 clear_tv(&var2);
4619 return FAIL;
4620 }
4621#ifdef FEAT_FLOAT
4622 if (rettv->v_type == VAR_FLOAT)
4623 f2 = n2;
4624#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004625 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004626 clear_tv(rettv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004627
4628#ifdef FEAT_FLOAT
4629 /* If there is a float on either side the result is a float. */
4630 if (rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4631 {
4632 if (op == '+')
4633 f1 = f1 + f2;
4634 else
4635 f1 = f1 - f2;
4636 rettv->v_type = VAR_FLOAT;
4637 rettv->vval.v_float = f1;
4638 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004639 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004640#endif
4641 {
4642 if (op == '+')
4643 n1 = n1 + n2;
4644 else
4645 n1 = n1 - n2;
4646 rettv->v_type = VAR_NUMBER;
4647 rettv->vval.v_number = n1;
4648 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004650 clear_tv(&var2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651 }
4652 }
4653 return OK;
4654}
4655
4656/*
4657 * Handle fifth level expression:
4658 * * number multiplication
4659 * / number division
4660 * % number modulo
4661 *
4662 * "arg" must point to the first non-white of the expression.
4663 * "arg" is advanced to the next non-white after the recognized expression.
4664 *
4665 * Return OK or FAIL.
4666 */
4667 static int
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004668eval6(arg, rettv, evaluate, want_string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004670 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671 int evaluate;
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004672 int want_string; /* after "." operator */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673{
Bram Moolenaar33570922005-01-25 22:26:29 +00004674 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675 int op;
4676 long n1, n2;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004677#ifdef FEAT_FLOAT
4678 int use_float = FALSE;
4679 float_T f1 = 0, f2;
4680#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004681 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682
4683 /*
4684 * Get the first variable.
4685 */
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004686 if (eval7(arg, rettv, evaluate, want_string) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687 return FAIL;
4688
4689 /*
4690 * Repeat computing, until no '*', '/' or '%' is following.
4691 */
4692 for (;;)
4693 {
4694 op = **arg;
4695 if (op != '*' && op != '/' && op != '%')
4696 break;
4697
4698 if (evaluate)
4699 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004700#ifdef FEAT_FLOAT
4701 if (rettv->v_type == VAR_FLOAT)
4702 {
4703 f1 = rettv->vval.v_float;
4704 use_float = TRUE;
4705 n1 = 0;
4706 }
4707 else
4708#endif
4709 n1 = get_tv_number_chk(rettv, &error);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004710 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004711 if (error)
4712 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713 }
4714 else
4715 n1 = 0;
4716
4717 /*
4718 * Get the second variable.
4719 */
4720 *arg = skipwhite(*arg + 1);
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004721 if (eval7(arg, &var2, evaluate, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722 return FAIL;
4723
4724 if (evaluate)
4725 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004726#ifdef FEAT_FLOAT
4727 if (var2.v_type == VAR_FLOAT)
4728 {
4729 if (!use_float)
4730 {
4731 f1 = n1;
4732 use_float = TRUE;
4733 }
4734 f2 = var2.vval.v_float;
4735 n2 = 0;
4736 }
4737 else
4738#endif
4739 {
4740 n2 = get_tv_number_chk(&var2, &error);
4741 clear_tv(&var2);
4742 if (error)
4743 return FAIL;
4744#ifdef FEAT_FLOAT
4745 if (use_float)
4746 f2 = n2;
4747#endif
4748 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004749
4750 /*
4751 * Compute the result.
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004752 * When either side is a float the result is a float.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753 */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004754#ifdef FEAT_FLOAT
4755 if (use_float)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004757 if (op == '*')
4758 f1 = f1 * f2;
4759 else if (op == '/')
4760 {
4761 /* We rely on the floating point library to handle divide
4762 * by zero to result in "inf" and not a crash. */
4763 f1 = f1 / f2;
4764 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004765 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004766 {
Bram Moolenaar1378fca2008-07-04 16:51:55 +00004767 EMSG(_("E804: Cannot use '%' with Float"));
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004768 return FAIL;
4769 }
4770 rettv->v_type = VAR_FLOAT;
4771 rettv->vval.v_float = f1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 }
4773 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004774#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004776 if (op == '*')
4777 n1 = n1 * n2;
4778 else if (op == '/')
4779 {
4780 if (n2 == 0) /* give an error message? */
4781 {
4782 if (n1 == 0)
4783 n1 = -0x7fffffffL - 1L; /* similar to NaN */
4784 else if (n1 < 0)
4785 n1 = -0x7fffffffL;
4786 else
4787 n1 = 0x7fffffffL;
4788 }
4789 else
4790 n1 = n1 / n2;
4791 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004793 {
4794 if (n2 == 0) /* give an error message? */
4795 n1 = 0;
4796 else
4797 n1 = n1 % n2;
4798 }
4799 rettv->v_type = VAR_NUMBER;
4800 rettv->vval.v_number = n1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802 }
4803 }
4804
4805 return OK;
4806}
4807
4808/*
4809 * Handle sixth level expression:
4810 * number number constant
Bram Moolenaarbae0c162007-05-10 19:30:25 +00004811 * "string" string constant
4812 * 'string' literal string constant
Bram Moolenaar071d4272004-06-13 20:20:40 +00004813 * &option-name option value
4814 * @r register contents
4815 * identifier variable value
4816 * function() function call
4817 * $VAR environment variable
4818 * (expression) nested expression
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00004819 * [expr, expr] List
4820 * {key: val, key: val} Dictionary
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 *
4822 * Also handle:
4823 * ! in front logical NOT
4824 * - in front unary minus
4825 * + in front unary plus (ignored)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004826 * trailing [] subscript in String or List
4827 * trailing .name entry in Dictionary
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828 *
4829 * "arg" must point to the first non-white of the expression.
4830 * "arg" is advanced to the next non-white after the recognized expression.
4831 *
4832 * Return OK or FAIL.
4833 */
4834 static int
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004835eval7(arg, rettv, evaluate, want_string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004837 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 int evaluate;
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004839 int want_string; /* after "." operator */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841 long n;
4842 int len;
4843 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844 char_u *start_leader, *end_leader;
4845 int ret = OK;
4846 char_u *alias;
4847
4848 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004849 * Initialise variable so that clear_tv() can't mistake this for a
Bram Moolenaar49cd9572005-01-03 21:06:01 +00004850 * string and free a string that isn't there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004852 rettv->v_type = VAR_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853
4854 /*
4855 * Skip '!' and '-' characters. They are handled later.
4856 */
4857 start_leader = *arg;
4858 while (**arg == '!' || **arg == '-' || **arg == '+')
4859 *arg = skipwhite(*arg + 1);
4860 end_leader = *arg;
4861
4862 switch (**arg)
4863 {
4864 /*
4865 * Number constant.
4866 */
4867 case '0':
4868 case '1':
4869 case '2':
4870 case '3':
4871 case '4':
4872 case '5':
4873 case '6':
4874 case '7':
4875 case '8':
4876 case '9':
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004877 {
4878#ifdef FEAT_FLOAT
4879 char_u *p = skipdigits(*arg + 1);
4880 int get_float = FALSE;
4881
4882 /* We accept a float when the format matches
4883 * "[0-9]\+\.[0-9]\+\([eE][+-]\?[0-9]\+\)\?". This is very
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004884 * strict to avoid backwards compatibility problems.
4885 * Don't look for a float after the "." operator, so that
4886 * ":let vers = 1.2.3" doesn't fail. */
4887 if (!want_string && p[0] == '.' && vim_isdigit(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004889 get_float = TRUE;
4890 p = skipdigits(p + 2);
4891 if (*p == 'e' || *p == 'E')
4892 {
4893 ++p;
4894 if (*p == '-' || *p == '+')
4895 ++p;
4896 if (!vim_isdigit(*p))
4897 get_float = FALSE;
4898 else
4899 p = skipdigits(p + 1);
4900 }
4901 if (ASCII_ISALPHA(*p) || *p == '.')
4902 get_float = FALSE;
4903 }
4904 if (get_float)
4905 {
4906 float_T f;
4907
4908 *arg += string2float(*arg, &f);
4909 if (evaluate)
4910 {
4911 rettv->v_type = VAR_FLOAT;
4912 rettv->vval.v_float = f;
4913 }
4914 }
4915 else
4916#endif
4917 {
4918 vim_str2nr(*arg, NULL, &len, TRUE, TRUE, &n, NULL);
4919 *arg += len;
4920 if (evaluate)
4921 {
4922 rettv->v_type = VAR_NUMBER;
4923 rettv->vval.v_number = n;
4924 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925 }
4926 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004927 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928
4929 /*
4930 * String constant: "string".
4931 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004932 case '"': ret = get_string_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933 break;
4934
4935 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00004936 * Literal string constant: 'str''ing'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004938 case '\'': ret = get_lit_string_tv(arg, rettv, evaluate);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00004939 break;
4940
4941 /*
4942 * List: [expr, expr]
4943 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004944 case '[': ret = get_list_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 break;
4946
4947 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00004948 * Dictionary: {key: val, key: val}
4949 */
4950 case '{': ret = get_dict_tv(arg, rettv, evaluate);
4951 break;
4952
4953 /*
Bram Moolenaare9a41262005-01-15 22:18:47 +00004954 * Option value: &name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 */
Bram Moolenaare9a41262005-01-15 22:18:47 +00004956 case '&': ret = get_option_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 break;
4958
4959 /*
4960 * Environment variable: $VAR.
4961 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004962 case '$': ret = get_env_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004963 break;
4964
4965 /*
4966 * Register contents: @r.
4967 */
4968 case '@': ++*arg;
4969 if (evaluate)
4970 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004971 rettv->v_type = VAR_STRING;
Bram Moolenaar92124a32005-06-17 22:03:40 +00004972 rettv->vval.v_string = get_reg_contents(**arg, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973 }
4974 if (**arg != NUL)
4975 ++*arg;
4976 break;
4977
4978 /*
4979 * nested expression: (expression).
4980 */
4981 case '(': *arg = skipwhite(*arg + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004982 ret = eval1(arg, rettv, evaluate); /* recursive! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 if (**arg == ')')
4984 ++*arg;
4985 else if (ret == OK)
4986 {
4987 EMSG(_("E110: Missing ')'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004988 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 ret = FAIL;
4990 }
4991 break;
4992
Bram Moolenaar8c711452005-01-14 21:53:12 +00004993 default: ret = NOTDONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 break;
4995 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00004996
4997 if (ret == NOTDONE)
4998 {
4999 /*
5000 * Must be a variable or function name.
5001 * Can also be a curly-braces kind of name: {expr}.
5002 */
5003 s = *arg;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005004 len = get_name_len(arg, &alias, evaluate, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005005 if (alias != NULL)
5006 s = alias;
5007
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005008 if (len <= 0)
Bram Moolenaar8c711452005-01-14 21:53:12 +00005009 ret = FAIL;
5010 else
5011 {
5012 if (**arg == '(') /* recursive! */
5013 {
5014 /* If "s" is the name of a variable of type VAR_FUNC
5015 * use its contents. */
5016 s = deref_func_name(s, &len);
5017
5018 /* Invoke the function. */
5019 ret = get_func_tv(s, len, rettv, arg,
5020 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
Bram Moolenaare9a41262005-01-15 22:18:47 +00005021 &len, evaluate, NULL);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005022 /* Stop the expression evaluation when immediately
5023 * aborting on error, or when an interrupt occurred or
5024 * an exception was thrown but not caught. */
5025 if (aborting())
5026 {
5027 if (ret == OK)
5028 clear_tv(rettv);
5029 ret = FAIL;
5030 }
5031 }
5032 else if (evaluate)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005033 ret = get_var_tv(s, len, rettv, TRUE);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005034 else
5035 ret = OK;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005036 }
5037
5038 if (alias != NULL)
5039 vim_free(alias);
5040 }
5041
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042 *arg = skipwhite(*arg);
5043
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005044 /* Handle following '[', '(' and '.' for expr[expr], expr.name,
5045 * expr(expr). */
5046 if (ret == OK)
5047 ret = handle_subscript(arg, rettv, evaluate, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048
5049 /*
5050 * Apply logical NOT and unary '-', from right to left, ignore '+'.
5051 */
5052 if (ret == OK && evaluate && end_leader > start_leader)
5053 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005054 int error = FALSE;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005055 int val = 0;
5056#ifdef FEAT_FLOAT
5057 float_T f = 0.0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005058
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005059 if (rettv->v_type == VAR_FLOAT)
5060 f = rettv->vval.v_float;
5061 else
5062#endif
5063 val = get_tv_number_chk(rettv, &error);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005064 if (error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005066 clear_tv(rettv);
5067 ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005069 else
5070 {
5071 while (end_leader > start_leader)
5072 {
5073 --end_leader;
5074 if (*end_leader == '!')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005075 {
5076#ifdef FEAT_FLOAT
5077 if (rettv->v_type == VAR_FLOAT)
5078 f = !f;
5079 else
5080#endif
5081 val = !val;
5082 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005083 else if (*end_leader == '-')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005084 {
5085#ifdef FEAT_FLOAT
5086 if (rettv->v_type == VAR_FLOAT)
5087 f = -f;
5088 else
5089#endif
5090 val = -val;
5091 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005092 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005093#ifdef FEAT_FLOAT
5094 if (rettv->v_type == VAR_FLOAT)
5095 {
5096 clear_tv(rettv);
5097 rettv->vval.v_float = f;
5098 }
5099 else
5100#endif
5101 {
5102 clear_tv(rettv);
5103 rettv->v_type = VAR_NUMBER;
5104 rettv->vval.v_number = val;
5105 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005106 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107 }
5108
5109 return ret;
5110}
5111
5112/*
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005113 * Evaluate an "[expr]" or "[expr:expr]" index. Also "dict.key".
5114 * "*arg" points to the '[' or '.'.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005115 * Returns FAIL or OK. "*arg" is advanced to after the ']'.
5116 */
5117 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005118eval_index(arg, rettv, evaluate, verbose)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005119 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005120 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005121 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005122 int verbose; /* give error messages */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005123{
5124 int empty1 = FALSE, empty2 = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00005125 typval_T var1, var2;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005126 long n1, n2 = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005127 long len = -1;
5128 int range = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005129 char_u *s;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005130 char_u *key = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005131
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005132 if (rettv->v_type == VAR_FUNC
5133#ifdef FEAT_FLOAT
5134 || rettv->v_type == VAR_FLOAT
5135#endif
5136 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005137 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005138 if (verbose)
5139 EMSG(_("E695: Cannot index a Funcref"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005140 return FAIL;
5141 }
5142
Bram Moolenaar8c711452005-01-14 21:53:12 +00005143 if (**arg == '.')
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005144 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005145 /*
5146 * dict.name
5147 */
5148 key = *arg + 1;
5149 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
5150 ;
5151 if (len == 0)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005152 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005153 *arg = skipwhite(key + len);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005154 }
5155 else
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005156 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005157 /*
5158 * something[idx]
5159 *
5160 * Get the (first) variable from inside the [].
5161 */
5162 *arg = skipwhite(*arg + 1);
5163 if (**arg == ':')
5164 empty1 = TRUE;
5165 else if (eval1(arg, &var1, evaluate) == FAIL) /* recursive! */
5166 return FAIL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005167 else if (evaluate && get_tv_string_chk(&var1) == NULL)
5168 {
5169 /* not a number or string */
5170 clear_tv(&var1);
5171 return FAIL;
5172 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005173
5174 /*
5175 * Get the second variable from inside the [:].
5176 */
5177 if (**arg == ':')
5178 {
5179 range = TRUE;
5180 *arg = skipwhite(*arg + 1);
5181 if (**arg == ']')
5182 empty2 = TRUE;
5183 else if (eval1(arg, &var2, evaluate) == FAIL) /* recursive! */
5184 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005185 if (!empty1)
5186 clear_tv(&var1);
5187 return FAIL;
5188 }
5189 else if (evaluate && get_tv_string_chk(&var2) == NULL)
5190 {
5191 /* not a number or string */
5192 if (!empty1)
5193 clear_tv(&var1);
5194 clear_tv(&var2);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005195 return FAIL;
5196 }
5197 }
5198
5199 /* Check for the ']'. */
5200 if (**arg != ']')
5201 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005202 if (verbose)
5203 EMSG(_(e_missbrac));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005204 clear_tv(&var1);
5205 if (range)
5206 clear_tv(&var2);
5207 return FAIL;
5208 }
5209 *arg = skipwhite(*arg + 1); /* skip the ']' */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005210 }
5211
5212 if (evaluate)
5213 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005214 n1 = 0;
5215 if (!empty1 && rettv->v_type != VAR_DICT)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005216 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005217 n1 = get_tv_number(&var1);
5218 clear_tv(&var1);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005219 }
5220 if (range)
5221 {
5222 if (empty2)
5223 n2 = -1;
5224 else
5225 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005226 n2 = get_tv_number(&var2);
5227 clear_tv(&var2);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005228 }
5229 }
5230
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005231 switch (rettv->v_type)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005232 {
5233 case VAR_NUMBER:
5234 case VAR_STRING:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005235 s = get_tv_string(rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005236 len = (long)STRLEN(s);
5237 if (range)
5238 {
5239 /* The resulting variable is a substring. If the indexes
5240 * are out of range the result is empty. */
5241 if (n1 < 0)
5242 {
5243 n1 = len + n1;
5244 if (n1 < 0)
5245 n1 = 0;
5246 }
5247 if (n2 < 0)
5248 n2 = len + n2;
5249 else if (n2 >= len)
5250 n2 = len;
5251 if (n1 >= len || n2 < 0 || n1 > n2)
5252 s = NULL;
5253 else
5254 s = vim_strnsave(s + n1, (int)(n2 - n1 + 1));
5255 }
5256 else
5257 {
5258 /* The resulting variable is a string of a single
5259 * character. If the index is too big or negative the
5260 * result is empty. */
5261 if (n1 >= len || n1 < 0)
5262 s = NULL;
5263 else
5264 s = vim_strnsave(s + n1, 1);
5265 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005266 clear_tv(rettv);
5267 rettv->v_type = VAR_STRING;
5268 rettv->vval.v_string = s;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005269 break;
5270
5271 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005272 len = list_len(rettv->vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005273 if (n1 < 0)
5274 n1 = len + n1;
5275 if (!empty1 && (n1 < 0 || n1 >= len))
5276 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005277 /* For a range we allow invalid values and return an empty
5278 * list. A list index out of range is an error. */
5279 if (!range)
5280 {
5281 if (verbose)
5282 EMSGN(_(e_listidx), n1);
5283 return FAIL;
5284 }
5285 n1 = len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005286 }
5287 if (range)
5288 {
Bram Moolenaar33570922005-01-25 22:26:29 +00005289 list_T *l;
5290 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005291
5292 if (n2 < 0)
5293 n2 = len + n2;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005294 else if (n2 >= len)
5295 n2 = len - 1;
5296 if (!empty2 && (n2 < 0 || n2 + 1 < n1))
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005297 n2 = -1;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005298 l = list_alloc();
5299 if (l == NULL)
5300 return FAIL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005301 for (item = list_find(rettv->vval.v_list, n1);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005302 n1 <= n2; ++n1)
5303 {
5304 if (list_append_tv(l, &item->li_tv) == FAIL)
5305 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00005306 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005307 return FAIL;
5308 }
5309 item = item->li_next;
5310 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005311 clear_tv(rettv);
5312 rettv->v_type = VAR_LIST;
5313 rettv->vval.v_list = l;
Bram Moolenaar0d660222005-01-07 21:51:51 +00005314 ++l->lv_refcount;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005315 }
5316 else
5317 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005318 copy_tv(&list_find(rettv->vval.v_list, n1)->li_tv, &var1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005319 clear_tv(rettv);
5320 *rettv = var1;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005321 }
5322 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005323
5324 case VAR_DICT:
5325 if (range)
5326 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005327 if (verbose)
5328 EMSG(_(e_dictrange));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005329 if (len == -1)
5330 clear_tv(&var1);
5331 return FAIL;
5332 }
5333 {
Bram Moolenaar33570922005-01-25 22:26:29 +00005334 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005335
5336 if (len == -1)
5337 {
5338 key = get_tv_string(&var1);
5339 if (*key == NUL)
5340 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005341 if (verbose)
5342 EMSG(_(e_emptykey));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005343 clear_tv(&var1);
5344 return FAIL;
5345 }
5346 }
5347
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005348 item = dict_find(rettv->vval.v_dict, key, (int)len);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005349
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005350 if (item == NULL && verbose)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005351 EMSG2(_(e_dictkey), key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005352 if (len == -1)
5353 clear_tv(&var1);
5354 if (item == NULL)
5355 return FAIL;
5356
5357 copy_tv(&item->di_tv, &var1);
5358 clear_tv(rettv);
5359 *rettv = var1;
5360 }
5361 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005362 }
5363 }
5364
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005365 return OK;
5366}
5367
5368/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005369 * Get an option value.
5370 * "arg" points to the '&' or '+' before the option name.
5371 * "arg" is advanced to character after the option name.
5372 * Return OK or FAIL.
5373 */
5374 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005375get_option_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005377 typval_T *rettv; /* when NULL, only check if option exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378 int evaluate;
5379{
5380 char_u *option_end;
5381 long numval;
5382 char_u *stringval;
5383 int opt_type;
5384 int c;
5385 int working = (**arg == '+'); /* has("+option") */
5386 int ret = OK;
5387 int opt_flags;
5388
5389 /*
5390 * Isolate the option name and find its value.
5391 */
5392 option_end = find_option_end(arg, &opt_flags);
5393 if (option_end == NULL)
5394 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005395 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005396 EMSG2(_("E112: Option name missing: %s"), *arg);
5397 return FAIL;
5398 }
5399
5400 if (!evaluate)
5401 {
5402 *arg = option_end;
5403 return OK;
5404 }
5405
5406 c = *option_end;
5407 *option_end = NUL;
5408 opt_type = get_option_value(*arg, &numval,
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005409 rettv == NULL ? NULL : &stringval, opt_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410
5411 if (opt_type == -3) /* invalid name */
5412 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005413 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414 EMSG2(_("E113: Unknown option: %s"), *arg);
5415 ret = FAIL;
5416 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005417 else if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 {
5419 if (opt_type == -2) /* hidden string option */
5420 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005421 rettv->v_type = VAR_STRING;
5422 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423 }
5424 else if (opt_type == -1) /* hidden number option */
5425 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005426 rettv->v_type = VAR_NUMBER;
5427 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 }
5429 else if (opt_type == 1) /* number option */
5430 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005431 rettv->v_type = VAR_NUMBER;
5432 rettv->vval.v_number = numval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433 }
5434 else /* string option */
5435 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005436 rettv->v_type = VAR_STRING;
5437 rettv->vval.v_string = stringval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438 }
5439 }
5440 else if (working && (opt_type == -2 || opt_type == -1))
5441 ret = FAIL;
5442
5443 *option_end = c; /* put back for error messages */
5444 *arg = option_end;
5445
5446 return ret;
5447}
5448
5449/*
5450 * Allocate a variable for a string constant.
5451 * Return OK or FAIL.
5452 */
5453 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005454get_string_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005455 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005456 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005457 int evaluate;
5458{
5459 char_u *p;
5460 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461 int extra = 0;
5462
5463 /*
5464 * Find the end of the string, skipping backslashed characters.
5465 */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005466 for (p = *arg + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467 {
5468 if (*p == '\\' && p[1] != NUL)
5469 {
5470 ++p;
5471 /* A "\<x>" form occupies at least 4 characters, and produces up
5472 * to 6 characters: reserve space for 2 extra */
5473 if (*p == '<')
5474 extra += 2;
5475 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 }
5477
5478 if (*p != '"')
5479 {
5480 EMSG2(_("E114: Missing quote: %s"), *arg);
5481 return FAIL;
5482 }
5483
5484 /* If only parsing, set *arg and return here */
5485 if (!evaluate)
5486 {
5487 *arg = p + 1;
5488 return OK;
5489 }
5490
5491 /*
5492 * Copy the string into allocated memory, handling backslashed
5493 * characters.
5494 */
5495 name = alloc((unsigned)(p - *arg + extra));
5496 if (name == NULL)
5497 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005498 rettv->v_type = VAR_STRING;
5499 rettv->vval.v_string = name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005500
Bram Moolenaar8c711452005-01-14 21:53:12 +00005501 for (p = *arg + 1; *p != NUL && *p != '"'; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502 {
5503 if (*p == '\\')
5504 {
5505 switch (*++p)
5506 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005507 case 'b': *name++ = BS; ++p; break;
5508 case 'e': *name++ = ESC; ++p; break;
5509 case 'f': *name++ = FF; ++p; break;
5510 case 'n': *name++ = NL; ++p; break;
5511 case 'r': *name++ = CAR; ++p; break;
5512 case 't': *name++ = TAB; ++p; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005513
5514 case 'X': /* hex: "\x1", "\x12" */
5515 case 'x':
5516 case 'u': /* Unicode: "\u0023" */
5517 case 'U':
5518 if (vim_isxdigit(p[1]))
5519 {
5520 int n, nr;
5521 int c = toupper(*p);
5522
5523 if (c == 'X')
5524 n = 2;
5525 else
5526 n = 4;
5527 nr = 0;
5528 while (--n >= 0 && vim_isxdigit(p[1]))
5529 {
5530 ++p;
5531 nr = (nr << 4) + hex2nr(*p);
5532 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005533 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534#ifdef FEAT_MBYTE
5535 /* For "\u" store the number according to
5536 * 'encoding'. */
5537 if (c != 'X')
Bram Moolenaar8c711452005-01-14 21:53:12 +00005538 name += (*mb_char2bytes)(nr, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005539 else
5540#endif
Bram Moolenaar8c711452005-01-14 21:53:12 +00005541 *name++ = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543 break;
5544
5545 /* octal: "\1", "\12", "\123" */
5546 case '0':
5547 case '1':
5548 case '2':
5549 case '3':
5550 case '4':
5551 case '5':
5552 case '6':
Bram Moolenaar8c711452005-01-14 21:53:12 +00005553 case '7': *name = *p++ - '0';
5554 if (*p >= '0' && *p <= '7')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005555 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005556 *name = (*name << 3) + *p++ - '0';
5557 if (*p >= '0' && *p <= '7')
5558 *name = (*name << 3) + *p++ - '0';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005560 ++name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561 break;
5562
5563 /* Special key, e.g.: "\<C-W>" */
Bram Moolenaar8c711452005-01-14 21:53:12 +00005564 case '<': extra = trans_special(&p, name, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565 if (extra != 0)
5566 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005567 name += extra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568 break;
5569 }
5570 /* FALLTHROUGH */
5571
Bram Moolenaar8c711452005-01-14 21:53:12 +00005572 default: MB_COPY_CHAR(p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005573 break;
5574 }
5575 }
5576 else
Bram Moolenaar8c711452005-01-14 21:53:12 +00005577 MB_COPY_CHAR(p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005578
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005580 *name = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581 *arg = p + 1;
5582
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 return OK;
5584}
5585
5586/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005587 * Allocate a variable for a 'str''ing' constant.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005588 * Return OK or FAIL.
5589 */
5590 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005591get_lit_string_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005593 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594 int evaluate;
5595{
5596 char_u *p;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005597 char_u *str;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005598 int reduce = 0;
5599
5600 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005601 * Find the end of the string, skipping ''.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005602 */
5603 for (p = *arg + 1; *p != NUL; mb_ptr_adv(p))
5604 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005605 if (*p == '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005606 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005607 if (p[1] != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005608 break;
5609 ++reduce;
5610 ++p;
5611 }
5612 }
5613
Bram Moolenaar8c711452005-01-14 21:53:12 +00005614 if (*p != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005615 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005616 EMSG2(_("E115: Missing quote: %s"), *arg);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005617 return FAIL;
5618 }
5619
Bram Moolenaar8c711452005-01-14 21:53:12 +00005620 /* If only parsing return after setting "*arg" */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005621 if (!evaluate)
5622 {
5623 *arg = p + 1;
5624 return OK;
5625 }
5626
5627 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005628 * Copy the string into allocated memory, handling '' to ' reduction.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005629 */
5630 str = alloc((unsigned)((p - *arg) - reduce));
5631 if (str == NULL)
5632 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005633 rettv->v_type = VAR_STRING;
5634 rettv->vval.v_string = str;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005635
Bram Moolenaar8c711452005-01-14 21:53:12 +00005636 for (p = *arg + 1; *p != NUL; )
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005637 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005638 if (*p == '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005639 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005640 if (p[1] != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005641 break;
5642 ++p;
5643 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005644 MB_COPY_CHAR(p, str);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005645 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005646 *str = NUL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005647 *arg = p + 1;
5648
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005649 return OK;
5650}
5651
5652/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005653 * Allocate a variable for a List and fill it from "*arg".
5654 * Return OK or FAIL.
5655 */
5656 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005657get_list_tv(arg, rettv, evaluate)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005658 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005659 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005660 int evaluate;
5661{
Bram Moolenaar33570922005-01-25 22:26:29 +00005662 list_T *l = NULL;
5663 typval_T tv;
5664 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005665
5666 if (evaluate)
5667 {
5668 l = list_alloc();
5669 if (l == NULL)
5670 return FAIL;
5671 }
5672
5673 *arg = skipwhite(*arg + 1);
5674 while (**arg != ']' && **arg != NUL)
5675 {
5676 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
5677 goto failret;
5678 if (evaluate)
5679 {
5680 item = listitem_alloc();
5681 if (item != NULL)
5682 {
5683 item->li_tv = tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00005684 item->li_tv.v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005685 list_append(l, item);
5686 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005687 else
5688 clear_tv(&tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005689 }
5690
5691 if (**arg == ']')
5692 break;
5693 if (**arg != ',')
5694 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005695 EMSG2(_("E696: Missing comma in List: %s"), *arg);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005696 goto failret;
5697 }
5698 *arg = skipwhite(*arg + 1);
5699 }
5700
5701 if (**arg != ']')
5702 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005703 EMSG2(_("E697: Missing end of List ']': %s"), *arg);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005704failret:
5705 if (evaluate)
Bram Moolenaar685295c2006-10-15 20:37:38 +00005706 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005707 return FAIL;
5708 }
5709
5710 *arg = skipwhite(*arg + 1);
5711 if (evaluate)
5712 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005713 rettv->v_type = VAR_LIST;
5714 rettv->vval.v_list = l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005715 ++l->lv_refcount;
5716 }
5717
5718 return OK;
5719}
5720
5721/*
5722 * Allocate an empty header for a list.
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00005723 * Caller should take care of the reference count.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005724 */
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00005725 list_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005726list_alloc()
5727{
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00005728 list_T *l;
5729
5730 l = (list_T *)alloc_clear(sizeof(list_T));
5731 if (l != NULL)
5732 {
5733 /* Prepend the list to the list of lists for garbage collection. */
5734 if (first_list != NULL)
5735 first_list->lv_used_prev = l;
5736 l->lv_used_prev = NULL;
5737 l->lv_used_next = first_list;
5738 first_list = l;
5739 }
5740 return l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005741}
5742
5743/*
Bram Moolenaareddf53b2006-02-27 00:11:10 +00005744 * Allocate an empty list for a return value.
5745 * Returns OK or FAIL.
5746 */
5747 static int
5748rettv_list_alloc(rettv)
5749 typval_T *rettv;
5750{
5751 list_T *l = list_alloc();
5752
5753 if (l == NULL)
5754 return FAIL;
5755
5756 rettv->vval.v_list = l;
5757 rettv->v_type = VAR_LIST;
5758 ++l->lv_refcount;
5759 return OK;
5760}
5761
5762/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005763 * Unreference a list: decrement the reference count and free it when it
5764 * becomes zero.
5765 */
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00005766 void
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005767list_unref(l)
Bram Moolenaar33570922005-01-25 22:26:29 +00005768 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005769{
Bram Moolenaar685295c2006-10-15 20:37:38 +00005770 if (l != NULL && --l->lv_refcount <= 0)
5771 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005772}
5773
5774/*
5775 * Free a list, including all items it points to.
5776 * Ignores the reference count.
5777 */
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00005778 void
Bram Moolenaar685295c2006-10-15 20:37:38 +00005779list_free(l, recurse)
5780 list_T *l;
5781 int recurse; /* Free Lists and Dictionaries recursively. */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005782{
Bram Moolenaar33570922005-01-25 22:26:29 +00005783 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005784
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00005785 /* Remove the list from the list of lists for garbage collection. */
5786 if (l->lv_used_prev == NULL)
5787 first_list = l->lv_used_next;
5788 else
5789 l->lv_used_prev->lv_used_next = l->lv_used_next;
5790 if (l->lv_used_next != NULL)
5791 l->lv_used_next->lv_used_prev = l->lv_used_prev;
5792
Bram Moolenaard9fba312005-06-26 22:34:35 +00005793 for (item = l->lv_first; item != NULL; item = l->lv_first)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005794 {
Bram Moolenaard9fba312005-06-26 22:34:35 +00005795 /* Remove the item before deleting it. */
5796 l->lv_first = item->li_next;
Bram Moolenaar685295c2006-10-15 20:37:38 +00005797 if (recurse || (item->li_tv.v_type != VAR_LIST
5798 && item->li_tv.v_type != VAR_DICT))
5799 clear_tv(&item->li_tv);
5800 vim_free(item);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005801 }
5802 vim_free(l);
5803}
5804
5805/*
5806 * Allocate a list item.
5807 */
Bram Moolenaar33570922005-01-25 22:26:29 +00005808 static listitem_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005809listitem_alloc()
5810{
Bram Moolenaar33570922005-01-25 22:26:29 +00005811 return (listitem_T *)alloc(sizeof(listitem_T));
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005812}
5813
5814/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00005815 * Free a list item. Also clears the value. Does not notify watchers.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005816 */
5817 static void
5818listitem_free(item)
Bram Moolenaar33570922005-01-25 22:26:29 +00005819 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005820{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005821 clear_tv(&item->li_tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005822 vim_free(item);
5823}
5824
5825/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00005826 * Remove a list item from a List and free it. Also clears the value.
5827 */
5828 static void
5829listitem_remove(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00005830 list_T *l;
5831 listitem_T *item;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00005832{
5833 list_remove(l, item, item);
5834 listitem_free(item);
5835}
5836
5837/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005838 * Get the number of items in a list.
5839 */
5840 static long
5841list_len(l)
Bram Moolenaar33570922005-01-25 22:26:29 +00005842 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005843{
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005844 if (l == NULL)
5845 return 0L;
Bram Moolenaar758711c2005-02-02 23:11:38 +00005846 return l->lv_len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005847}
5848
5849/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005850 * Return TRUE when two lists have exactly the same values.
5851 */
5852 static int
5853list_equal(l1, l2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005854 list_T *l1;
5855 list_T *l2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005856 int ic; /* ignore case for strings */
5857{
Bram Moolenaar33570922005-01-25 22:26:29 +00005858 listitem_T *item1, *item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005859
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00005860 if (l1 == NULL || l2 == NULL)
5861 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005862 if (l1 == l2)
5863 return TRUE;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005864 if (list_len(l1) != list_len(l2))
5865 return FALSE;
5866
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005867 for (item1 = l1->lv_first, item2 = l2->lv_first;
5868 item1 != NULL && item2 != NULL;
5869 item1 = item1->li_next, item2 = item2->li_next)
5870 if (!tv_equal(&item1->li_tv, &item2->li_tv, ic))
5871 return FALSE;
5872 return item1 == NULL && item2 == NULL;
5873}
5874
Bram Moolenaar3fac56e2010-02-24 15:48:04 +01005875#if defined(FEAT_RUBY) || defined(FEAT_PYTHON) || defined(FEAT_MZSCHEME) \
5876 || defined(PROTO)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005877/*
5878 * Return the dictitem that an entry in a hashtable points to.
5879 */
5880 dictitem_T *
5881dict_lookup(hi)
5882 hashitem_T *hi;
5883{
5884 return HI2DI(hi);
5885}
5886#endif
5887
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005888/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005889 * Return TRUE when two dictionaries have exactly the same key/values.
5890 */
5891 static int
5892dict_equal(d1, d2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005893 dict_T *d1;
5894 dict_T *d2;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005895 int ic; /* ignore case for strings */
5896{
Bram Moolenaar33570922005-01-25 22:26:29 +00005897 hashitem_T *hi;
5898 dictitem_T *item2;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005899 int todo;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005900
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00005901 if (d1 == NULL || d2 == NULL)
5902 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005903 if (d1 == d2)
5904 return TRUE;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005905 if (dict_len(d1) != dict_len(d2))
5906 return FALSE;
5907
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005908 todo = (int)d1->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00005909 for (hi = d1->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005910 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005911 if (!HASHITEM_EMPTY(hi))
5912 {
5913 item2 = dict_find(d2, hi->hi_key, -1);
5914 if (item2 == NULL)
5915 return FALSE;
5916 if (!tv_equal(&HI2DI(hi)->di_tv, &item2->di_tv, ic))
5917 return FALSE;
5918 --todo;
5919 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005920 }
5921 return TRUE;
5922}
5923
5924/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005925 * Return TRUE if "tv1" and "tv2" have the same value.
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005926 * Compares the items just like "==" would compare them, but strings and
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005927 * numbers are different. Floats and numbers are also different.
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005928 */
5929 static int
5930tv_equal(tv1, tv2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005931 typval_T *tv1;
5932 typval_T *tv2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005933 int ic; /* ignore case */
5934{
5935 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005936 char_u *s1, *s2;
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005937 static int recursive = 0; /* cach recursive loops */
5938 int r;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005939
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005940 if (tv1->v_type != tv2->v_type)
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005941 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005942 /* Catch lists and dicts that have an endless loop by limiting
5943 * recursiveness to 1000. We guess they are equal then. */
5944 if (recursive >= 1000)
5945 return TRUE;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005946
5947 switch (tv1->v_type)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005948 {
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005949 case VAR_LIST:
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005950 ++recursive;
5951 r = list_equal(tv1->vval.v_list, tv2->vval.v_list, ic);
5952 --recursive;
5953 return r;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005954
5955 case VAR_DICT:
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005956 ++recursive;
5957 r = dict_equal(tv1->vval.v_dict, tv2->vval.v_dict, ic);
5958 --recursive;
5959 return r;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005960
5961 case VAR_FUNC:
5962 return (tv1->vval.v_string != NULL
5963 && tv2->vval.v_string != NULL
5964 && STRCMP(tv1->vval.v_string, tv2->vval.v_string) == 0);
5965
5966 case VAR_NUMBER:
5967 return tv1->vval.v_number == tv2->vval.v_number;
5968
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005969#ifdef FEAT_FLOAT
5970 case VAR_FLOAT:
5971 return tv1->vval.v_float == tv2->vval.v_float;
5972#endif
5973
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005974 case VAR_STRING:
5975 s1 = get_tv_string_buf(tv1, buf1);
5976 s2 = get_tv_string_buf(tv2, buf2);
5977 return ((ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2)) == 0);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005978 }
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005979
5980 EMSG2(_(e_intern2), "tv_equal()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005981 return TRUE;
5982}
5983
5984/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005985 * Locate item with index "n" in list "l" and return it.
5986 * A negative index is counted from the end; -1 is the last item.
5987 * Returns NULL when "n" is out of range.
5988 */
Bram Moolenaar33570922005-01-25 22:26:29 +00005989 static listitem_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005990list_find(l, n)
Bram Moolenaar33570922005-01-25 22:26:29 +00005991 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005992 long n;
5993{
Bram Moolenaar33570922005-01-25 22:26:29 +00005994 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005995 long idx;
5996
5997 if (l == NULL)
5998 return NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +00005999
6000 /* Negative index is relative to the end. */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006001 if (n < 0)
Bram Moolenaar758711c2005-02-02 23:11:38 +00006002 n = l->lv_len + n;
6003
6004 /* Check for index out of range. */
6005 if (n < 0 || n >= l->lv_len)
6006 return NULL;
6007
6008 /* When there is a cached index may start search from there. */
6009 if (l->lv_idx_item != NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006010 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006011 if (n < l->lv_idx / 2)
6012 {
6013 /* closest to the start of the list */
6014 item = l->lv_first;
6015 idx = 0;
6016 }
6017 else if (n > (l->lv_idx + l->lv_len) / 2)
6018 {
6019 /* closest to the end of the list */
6020 item = l->lv_last;
6021 idx = l->lv_len - 1;
6022 }
6023 else
6024 {
6025 /* closest to the cached index */
6026 item = l->lv_idx_item;
6027 idx = l->lv_idx;
6028 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006029 }
6030 else
6031 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006032 if (n < l->lv_len / 2)
6033 {
6034 /* closest to the start of the list */
6035 item = l->lv_first;
6036 idx = 0;
6037 }
6038 else
6039 {
6040 /* closest to the end of the list */
6041 item = l->lv_last;
6042 idx = l->lv_len - 1;
6043 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006044 }
Bram Moolenaar758711c2005-02-02 23:11:38 +00006045
6046 while (n > idx)
6047 {
6048 /* search forward */
6049 item = item->li_next;
6050 ++idx;
6051 }
6052 while (n < idx)
6053 {
6054 /* search backward */
6055 item = item->li_prev;
6056 --idx;
6057 }
6058
6059 /* cache the used index */
6060 l->lv_idx = idx;
6061 l->lv_idx_item = item;
6062
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006063 return item;
6064}
6065
6066/*
Bram Moolenaara5525202006-03-02 22:52:09 +00006067 * Get list item "l[idx]" as a number.
6068 */
6069 static long
6070list_find_nr(l, idx, errorp)
6071 list_T *l;
6072 long idx;
6073 int *errorp; /* set to TRUE when something wrong */
6074{
6075 listitem_T *li;
6076
6077 li = list_find(l, idx);
6078 if (li == NULL)
6079 {
6080 if (errorp != NULL)
6081 *errorp = TRUE;
6082 return -1L;
6083 }
6084 return get_tv_number_chk(&li->li_tv, errorp);
6085}
6086
6087/*
Bram Moolenaard812df62008-11-09 12:46:09 +00006088 * Get list item "l[idx - 1]" as a string. Returns NULL for failure.
6089 */
6090 char_u *
6091list_find_str(l, idx)
6092 list_T *l;
6093 long idx;
6094{
6095 listitem_T *li;
6096
6097 li = list_find(l, idx - 1);
6098 if (li == NULL)
6099 {
6100 EMSGN(_(e_listidx), idx);
6101 return NULL;
6102 }
6103 return get_tv_string(&li->li_tv);
6104}
6105
6106/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006107 * Locate "item" list "l" and return its index.
6108 * Returns -1 when "item" is not in the list.
6109 */
6110 static long
6111list_idx_of_item(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006112 list_T *l;
6113 listitem_T *item;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006114{
6115 long idx = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +00006116 listitem_T *li;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006117
6118 if (l == NULL)
6119 return -1;
6120 idx = 0;
6121 for (li = l->lv_first; li != NULL && li != item; li = li->li_next)
6122 ++idx;
6123 if (li == NULL)
6124 return -1;
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006125 return idx;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006126}
6127
6128/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006129 * Append item "item" to the end of list "l".
6130 */
6131 static void
6132list_append(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006133 list_T *l;
6134 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006135{
6136 if (l->lv_last == NULL)
6137 {
6138 /* empty list */
6139 l->lv_first = item;
6140 l->lv_last = item;
6141 item->li_prev = NULL;
6142 }
6143 else
6144 {
6145 l->lv_last->li_next = item;
6146 item->li_prev = l->lv_last;
6147 l->lv_last = item;
6148 }
Bram Moolenaar758711c2005-02-02 23:11:38 +00006149 ++l->lv_len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006150 item->li_next = NULL;
6151}
6152
6153/*
Bram Moolenaar33570922005-01-25 22:26:29 +00006154 * Append typval_T "tv" to the end of list "l".
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006155 * Return FAIL when out of memory.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006156 */
Bram Moolenaar7e506b62010-01-19 15:55:06 +01006157 int
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006158list_append_tv(l, tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00006159 list_T *l;
6160 typval_T *tv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006161{
Bram Moolenaar05159a02005-02-26 23:04:13 +00006162 listitem_T *li = listitem_alloc();
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006163
Bram Moolenaar05159a02005-02-26 23:04:13 +00006164 if (li == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006165 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00006166 copy_tv(tv, &li->li_tv);
6167 list_append(l, li);
6168 return OK;
6169}
6170
6171/*
Bram Moolenaar2641f772005-03-25 21:58:17 +00006172 * Add a dictionary to a list. Used by getqflist().
Bram Moolenaar05159a02005-02-26 23:04:13 +00006173 * Return FAIL when out of memory.
6174 */
6175 int
6176list_append_dict(list, dict)
6177 list_T *list;
6178 dict_T *dict;
6179{
6180 listitem_T *li = listitem_alloc();
6181
6182 if (li == NULL)
6183 return FAIL;
6184 li->li_tv.v_type = VAR_DICT;
6185 li->li_tv.v_lock = 0;
6186 li->li_tv.vval.v_dict = dict;
6187 list_append(list, li);
6188 ++dict->dv_refcount;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006189 return OK;
6190}
6191
6192/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006193 * Make a copy of "str" and append it as an item to list "l".
Bram Moolenaar4463f292005-09-25 22:20:24 +00006194 * When "len" >= 0 use "str[len]".
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006195 * Returns FAIL when out of memory.
6196 */
Bram Moolenaard812df62008-11-09 12:46:09 +00006197 int
Bram Moolenaar4463f292005-09-25 22:20:24 +00006198list_append_string(l, str, len)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006199 list_T *l;
6200 char_u *str;
Bram Moolenaar4463f292005-09-25 22:20:24 +00006201 int len;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006202{
6203 listitem_T *li = listitem_alloc();
6204
6205 if (li == NULL)
6206 return FAIL;
6207 list_append(l, li);
6208 li->li_tv.v_type = VAR_STRING;
6209 li->li_tv.v_lock = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006210 if (str == NULL)
6211 li->li_tv.vval.v_string = NULL;
6212 else if ((li->li_tv.vval.v_string = (len >= 0 ? vim_strnsave(str, len)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006213 : vim_strsave(str))) == NULL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006214 return FAIL;
6215 return OK;
6216}
6217
6218/*
Bram Moolenaar4463f292005-09-25 22:20:24 +00006219 * Append "n" to list "l".
6220 * Returns FAIL when out of memory.
6221 */
6222 static int
6223list_append_number(l, n)
6224 list_T *l;
6225 varnumber_T n;
6226{
6227 listitem_T *li;
6228
6229 li = listitem_alloc();
6230 if (li == NULL)
6231 return FAIL;
6232 li->li_tv.v_type = VAR_NUMBER;
6233 li->li_tv.v_lock = 0;
6234 li->li_tv.vval.v_number = n;
6235 list_append(l, li);
6236 return OK;
6237}
6238
6239/*
Bram Moolenaar33570922005-01-25 22:26:29 +00006240 * Insert typval_T "tv" in list "l" before "item".
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006241 * If "item" is NULL append at the end.
6242 * Return FAIL when out of memory.
6243 */
6244 static int
6245list_insert_tv(l, tv, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006246 list_T *l;
6247 typval_T *tv;
6248 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006249{
Bram Moolenaar33570922005-01-25 22:26:29 +00006250 listitem_T *ni = listitem_alloc();
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006251
6252 if (ni == NULL)
6253 return FAIL;
6254 copy_tv(tv, &ni->li_tv);
6255 if (item == NULL)
6256 /* Append new item at end of list. */
6257 list_append(l, ni);
6258 else
6259 {
6260 /* Insert new item before existing item. */
6261 ni->li_prev = item->li_prev;
6262 ni->li_next = item;
6263 if (item->li_prev == NULL)
Bram Moolenaar758711c2005-02-02 23:11:38 +00006264 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006265 l->lv_first = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006266 ++l->lv_idx;
6267 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006268 else
Bram Moolenaar758711c2005-02-02 23:11:38 +00006269 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006270 item->li_prev->li_next = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006271 l->lv_idx_item = NULL;
6272 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006273 item->li_prev = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006274 ++l->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006275 }
6276 return OK;
6277}
6278
6279/*
6280 * Extend "l1" with "l2".
6281 * If "bef" is NULL append at the end, otherwise insert before this item.
6282 * Returns FAIL when out of memory.
6283 */
6284 static int
6285list_extend(l1, l2, bef)
Bram Moolenaar33570922005-01-25 22:26:29 +00006286 list_T *l1;
6287 list_T *l2;
6288 listitem_T *bef;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006289{
Bram Moolenaar33570922005-01-25 22:26:29 +00006290 listitem_T *item;
Bram Moolenaardc9cf9c2008-08-08 10:36:31 +00006291 int todo = l2->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006292
Bram Moolenaardc9cf9c2008-08-08 10:36:31 +00006293 /* We also quit the loop when we have inserted the original item count of
6294 * the list, avoid a hang when we extend a list with itself. */
6295 for (item = l2->lv_first; item != NULL && --todo >= 0; item = item->li_next)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006296 if (list_insert_tv(l1, &item->li_tv, bef) == FAIL)
6297 return FAIL;
6298 return OK;
6299}
6300
6301/*
6302 * Concatenate lists "l1" and "l2" into a new list, stored in "tv".
6303 * Return FAIL when out of memory.
6304 */
6305 static int
6306list_concat(l1, l2, tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00006307 list_T *l1;
6308 list_T *l2;
6309 typval_T *tv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006310{
Bram Moolenaar33570922005-01-25 22:26:29 +00006311 list_T *l;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006312
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00006313 if (l1 == NULL || l2 == NULL)
6314 return FAIL;
6315
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006316 /* make a copy of the first list. */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006317 l = list_copy(l1, FALSE, 0);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006318 if (l == NULL)
6319 return FAIL;
6320 tv->v_type = VAR_LIST;
6321 tv->vval.v_list = l;
6322
6323 /* append all items from the second list */
6324 return list_extend(l, l2, NULL);
6325}
6326
6327/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006328 * Make a copy of list "orig". Shallow if "deep" is FALSE.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006329 * The refcount of the new list is set to 1.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006330 * See item_copy() for "copyID".
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006331 * Returns NULL when out of memory.
6332 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006333 static list_T *
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006334list_copy(orig, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006335 list_T *orig;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006336 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006337 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006338{
Bram Moolenaar33570922005-01-25 22:26:29 +00006339 list_T *copy;
6340 listitem_T *item;
6341 listitem_T *ni;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006342
6343 if (orig == NULL)
6344 return NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006345
6346 copy = list_alloc();
6347 if (copy != NULL)
6348 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006349 if (copyID != 0)
6350 {
6351 /* Do this before adding the items, because one of the items may
6352 * refer back to this list. */
6353 orig->lv_copyID = copyID;
6354 orig->lv_copylist = copy;
6355 }
6356 for (item = orig->lv_first; item != NULL && !got_int;
6357 item = item->li_next)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006358 {
6359 ni = listitem_alloc();
6360 if (ni == NULL)
6361 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006362 if (deep)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006363 {
6364 if (item_copy(&item->li_tv, &ni->li_tv, deep, copyID) == FAIL)
6365 {
6366 vim_free(ni);
6367 break;
6368 }
6369 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006370 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00006371 copy_tv(&item->li_tv, &ni->li_tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006372 list_append(copy, ni);
6373 }
6374 ++copy->lv_refcount;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006375 if (item != NULL)
6376 {
6377 list_unref(copy);
6378 copy = NULL;
6379 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006380 }
6381
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006382 return copy;
6383}
6384
6385/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006386 * Remove items "item" to "item2" from list "l".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006387 * Does not free the listitem or the value!
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006388 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006389 static void
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006390list_remove(l, item, item2)
Bram Moolenaar33570922005-01-25 22:26:29 +00006391 list_T *l;
6392 listitem_T *item;
6393 listitem_T *item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006394{
Bram Moolenaar33570922005-01-25 22:26:29 +00006395 listitem_T *ip;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006396
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006397 /* notify watchers */
6398 for (ip = item; ip != NULL; ip = ip->li_next)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006399 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006400 --l->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006401 list_fix_watch(l, ip);
6402 if (ip == item2)
6403 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006404 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006405
6406 if (item2->li_next == NULL)
6407 l->lv_last = item->li_prev;
6408 else
6409 item2->li_next->li_prev = item->li_prev;
6410 if (item->li_prev == NULL)
6411 l->lv_first = item2->li_next;
6412 else
6413 item->li_prev->li_next = item2->li_next;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006414 l->lv_idx_item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006415}
6416
6417/*
6418 * Return an allocated string with the string representation of a list.
6419 * May return NULL.
6420 */
6421 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006422list2string(tv, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006423 typval_T *tv;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006424 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006425{
6426 garray_T ga;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006427
6428 if (tv->vval.v_list == NULL)
6429 return NULL;
6430 ga_init2(&ga, (int)sizeof(char), 80);
6431 ga_append(&ga, '[');
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006432 if (list_join(&ga, tv->vval.v_list, (char_u *)", ", FALSE, copyID) == FAIL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006433 {
6434 vim_free(ga.ga_data);
6435 return NULL;
6436 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006437 ga_append(&ga, ']');
6438 ga_append(&ga, NUL);
6439 return (char_u *)ga.ga_data;
6440}
6441
6442/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006443 * Join list "l" into a string in "*gap", using separator "sep".
6444 * When "echo" is TRUE use String as echoed, otherwise as inside a List.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006445 * Return FAIL or OK.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006446 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006447 static int
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006448list_join(gap, l, sep, echo, copyID)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006449 garray_T *gap;
Bram Moolenaar33570922005-01-25 22:26:29 +00006450 list_T *l;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006451 char_u *sep;
6452 int echo;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006453 int copyID;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006454{
6455 int first = TRUE;
6456 char_u *tofree;
6457 char_u numbuf[NUMBUFLEN];
Bram Moolenaar33570922005-01-25 22:26:29 +00006458 listitem_T *item;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006459 char_u *s;
6460
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006461 for (item = l->lv_first; item != NULL && !got_int; item = item->li_next)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006462 {
6463 if (first)
6464 first = FALSE;
6465 else
6466 ga_concat(gap, sep);
6467
6468 if (echo)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006469 s = echo_string(&item->li_tv, &tofree, numbuf, copyID);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006470 else
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006471 s = tv2string(&item->li_tv, &tofree, numbuf, copyID);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006472 if (s != NULL)
6473 ga_concat(gap, s);
6474 vim_free(tofree);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006475 if (s == NULL)
6476 return FAIL;
Bram Moolenaarf68f6562010-01-19 12:48:05 +01006477 line_breakcheck();
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 Moolenaar7e506b62010-01-19 15:55:06 +01006814 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 */
Bram Moolenaar7e506b62010-01-19 15:55:06 +01006870 void
Bram Moolenaar8c711452005-01-14 21:53:12 +00006871dictitem_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 Moolenaar7e506b62010-01-19 15:55:06 +01006950 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 Moolenaar7e506b62010-01-19 15:55:06 +01007701#ifdef FEAT_MZSCHEME
7702 {"mzeval", 1, 1, f_mzeval},
7703#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007704 {"nextnonblank", 1, 1, f_nextnonblank},
7705 {"nr2char", 1, 1, f_nr2char},
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007706 {"pathshorten", 1, 1, f_pathshorten},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007707#ifdef FEAT_FLOAT
7708 {"pow", 2, 2, f_pow},
7709#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007710 {"prevnonblank", 1, 1, f_prevnonblank},
Bram Moolenaar4be06f92005-07-29 22:36:03 +00007711 {"printf", 2, 19, f_printf},
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007712 {"pumvisible", 0, 0, f_pumvisible},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007713 {"range", 1, 3, f_range},
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007714 {"readfile", 1, 3, f_readfile},
Bram Moolenaare580b0c2006-03-21 21:33:03 +00007715 {"reltime", 0, 2, f_reltime},
7716 {"reltimestr", 1, 1, f_reltimestr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007717 {"remote_expr", 2, 3, f_remote_expr},
7718 {"remote_foreground", 1, 1, f_remote_foreground},
7719 {"remote_peek", 1, 2, f_remote_peek},
7720 {"remote_read", 1, 1, f_remote_read},
7721 {"remote_send", 2, 3, f_remote_send},
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007722 {"remove", 2, 3, f_remove},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007723 {"rename", 2, 2, f_rename},
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007724 {"repeat", 2, 2, f_repeat},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007725 {"resolve", 1, 1, f_resolve},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007726 {"reverse", 1, 1, f_reverse},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007727#ifdef FEAT_FLOAT
7728 {"round", 1, 1, f_round},
7729#endif
Bram Moolenaar76929292008-01-06 19:07:36 +00007730 {"search", 1, 4, f_search},
Bram Moolenaare6facf92005-09-13 21:22:27 +00007731 {"searchdecl", 1, 3, f_searchdecl},
Bram Moolenaar76929292008-01-06 19:07:36 +00007732 {"searchpair", 3, 7, f_searchpair},
7733 {"searchpairpos", 3, 7, f_searchpairpos},
7734 {"searchpos", 1, 4, f_searchpos},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007735 {"server2client", 2, 2, f_server2client},
7736 {"serverlist", 0, 0, f_serverlist},
7737 {"setbufvar", 3, 3, f_setbufvar},
7738 {"setcmdpos", 1, 1, f_setcmdpos},
7739 {"setline", 2, 2, f_setline},
Bram Moolenaar17c7c012006-01-26 22:25:15 +00007740 {"setloclist", 2, 3, f_setloclist},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007741 {"setmatches", 1, 1, f_setmatches},
Bram Moolenaar0e34f622006-03-03 23:00:03 +00007742 {"setpos", 2, 2, f_setpos},
Bram Moolenaarf4630b62005-05-20 21:31:17 +00007743 {"setqflist", 1, 2, f_setqflist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007744 {"setreg", 2, 3, f_setreg},
Bram Moolenaar99ebf042006-04-15 20:28:54 +00007745 {"settabwinvar", 4, 4, f_settabwinvar},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007746 {"setwinvar", 3, 3, f_setwinvar},
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007747 {"shellescape", 1, 2, f_shellescape},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007748 {"simplify", 1, 1, f_simplify},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007749#ifdef FEAT_FLOAT
7750 {"sin", 1, 1, f_sin},
7751#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +00007752 {"sort", 1, 2, f_sort},
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00007753 {"soundfold", 1, 1, f_soundfold},
Bram Moolenaar4463f292005-09-25 22:20:24 +00007754 {"spellbadword", 0, 1, f_spellbadword},
Bram Moolenaar69e0ff92005-09-30 21:23:56 +00007755 {"spellsuggest", 1, 3, f_spellsuggest},
Bram Moolenaar67fe1a12005-05-22 22:12:58 +00007756 {"split", 1, 3, f_split},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007757#ifdef FEAT_FLOAT
7758 {"sqrt", 1, 1, f_sqrt},
7759 {"str2float", 1, 1, f_str2float},
7760#endif
Bram Moolenaar2c932302006-03-18 21:42:09 +00007761 {"str2nr", 1, 2, f_str2nr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007762#ifdef HAVE_STRFTIME
7763 {"strftime", 1, 2, f_strftime},
7764#endif
Bram Moolenaar33570922005-01-25 22:26:29 +00007765 {"stridx", 2, 3, f_stridx},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007766 {"string", 1, 1, f_string},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007767 {"strlen", 1, 1, f_strlen},
7768 {"strpart", 2, 3, f_strpart},
Bram Moolenaar532c7802005-01-27 14:44:31 +00007769 {"strridx", 2, 3, f_strridx},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007770 {"strtrans", 1, 1, f_strtrans},
7771 {"submatch", 1, 1, f_submatch},
7772 {"substitute", 4, 4, f_substitute},
7773 {"synID", 3, 3, f_synID},
7774 {"synIDattr", 2, 3, f_synIDattr},
7775 {"synIDtrans", 1, 1, f_synIDtrans},
Bram Moolenaar9d188ab2008-01-10 21:24:39 +00007776 {"synstack", 2, 2, f_synstack},
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007777 {"system", 1, 2, f_system},
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007778 {"tabpagebuflist", 0, 1, f_tabpagebuflist},
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007779 {"tabpagenr", 0, 1, f_tabpagenr},
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007780 {"tabpagewinnr", 1, 2, f_tabpagewinnr},
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00007781 {"tagfiles", 0, 0, f_tagfiles},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00007782 {"taglist", 1, 1, f_taglist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007783 {"tempname", 0, 0, f_tempname},
Bram Moolenaard52d9742005-08-21 22:20:28 +00007784 {"test", 1, 1, f_test},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007785 {"tolower", 1, 1, f_tolower},
7786 {"toupper", 1, 1, f_toupper},
Bram Moolenaar8299df92004-07-10 09:47:34 +00007787 {"tr", 3, 3, f_tr},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007788#ifdef FEAT_FLOAT
7789 {"trunc", 1, 1, f_trunc},
7790#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007791 {"type", 1, 1, f_type},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007792 {"values", 1, 1, f_values},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007793 {"virtcol", 1, 1, f_virtcol},
7794 {"visualmode", 0, 1, f_visualmode},
7795 {"winbufnr", 1, 1, f_winbufnr},
7796 {"wincol", 0, 0, f_wincol},
7797 {"winheight", 1, 1, f_winheight},
7798 {"winline", 0, 0, f_winline},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007799 {"winnr", 0, 1, f_winnr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007800 {"winrestcmd", 0, 0, f_winrestcmd},
Bram Moolenaar768b8c42006-03-04 21:58:33 +00007801 {"winrestview", 1, 1, f_winrestview},
7802 {"winsaveview", 0, 0, f_winsaveview},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007803 {"winwidth", 1, 1, f_winwidth},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00007804 {"writefile", 2, 3, f_writefile},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007805};
7806
7807#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
7808
7809/*
7810 * Function given to ExpandGeneric() to obtain the list of internal
7811 * or user defined function names.
7812 */
7813 char_u *
7814get_function_name(xp, idx)
7815 expand_T *xp;
7816 int idx;
7817{
7818 static int intidx = -1;
7819 char_u *name;
7820
7821 if (idx == 0)
7822 intidx = -1;
7823 if (intidx < 0)
7824 {
7825 name = get_user_func_name(xp, idx);
7826 if (name != NULL)
7827 return name;
7828 }
7829 if (++intidx < (int)(sizeof(functions) / sizeof(struct fst)))
7830 {
7831 STRCPY(IObuff, functions[intidx].f_name);
7832 STRCAT(IObuff, "(");
7833 if (functions[intidx].f_max_argc == 0)
7834 STRCAT(IObuff, ")");
7835 return IObuff;
7836 }
7837
7838 return NULL;
7839}
7840
7841/*
7842 * Function given to ExpandGeneric() to obtain the list of internal or
7843 * user defined variable or function names.
7844 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007845 char_u *
7846get_expr_name(xp, idx)
7847 expand_T *xp;
7848 int idx;
7849{
7850 static int intidx = -1;
7851 char_u *name;
7852
7853 if (idx == 0)
7854 intidx = -1;
7855 if (intidx < 0)
7856 {
7857 name = get_function_name(xp, idx);
7858 if (name != NULL)
7859 return name;
7860 }
7861 return get_user_var_name(xp, ++intidx);
7862}
7863
7864#endif /* FEAT_CMDL_COMPL */
7865
7866/*
7867 * Find internal function in table above.
7868 * Return index, or -1 if not found
7869 */
7870 static int
7871find_internal_func(name)
7872 char_u *name; /* name of the function */
7873{
7874 int first = 0;
7875 int last = (int)(sizeof(functions) / sizeof(struct fst)) - 1;
7876 int cmp;
7877 int x;
7878
7879 /*
7880 * Find the function name in the table. Binary search.
7881 */
7882 while (first <= last)
7883 {
7884 x = first + ((unsigned)(last - first) >> 1);
7885 cmp = STRCMP(name, functions[x].f_name);
7886 if (cmp < 0)
7887 last = x - 1;
7888 else if (cmp > 0)
7889 first = x + 1;
7890 else
7891 return x;
7892 }
7893 return -1;
7894}
7895
7896/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007897 * Check if "name" is a variable of type VAR_FUNC. If so, return the function
7898 * name it contains, otherwise return "name".
7899 */
7900 static char_u *
7901deref_func_name(name, lenp)
7902 char_u *name;
7903 int *lenp;
7904{
Bram Moolenaar33570922005-01-25 22:26:29 +00007905 dictitem_T *v;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007906 int cc;
7907
7908 cc = name[*lenp];
7909 name[*lenp] = NUL;
Bram Moolenaara7043832005-01-21 11:56:39 +00007910 v = find_var(name, NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007911 name[*lenp] = cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00007912 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007913 {
Bram Moolenaar33570922005-01-25 22:26:29 +00007914 if (v->di_tv.vval.v_string == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007915 {
7916 *lenp = 0;
7917 return (char_u *)""; /* just in case */
7918 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007919 *lenp = (int)STRLEN(v->di_tv.vval.v_string);
Bram Moolenaar33570922005-01-25 22:26:29 +00007920 return v->di_tv.vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007921 }
7922
7923 return name;
7924}
7925
7926/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007927 * Allocate a variable for the result of a function.
7928 * Return OK or FAIL.
7929 */
7930 static int
Bram Moolenaare9a41262005-01-15 22:18:47 +00007931get_func_tv(name, len, rettv, arg, firstline, lastline, doesrange,
7932 evaluate, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007933 char_u *name; /* name of the function */
7934 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +00007935 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007936 char_u **arg; /* argument, pointing to the '(' */
7937 linenr_T firstline; /* first line of range */
7938 linenr_T lastline; /* last line of range */
7939 int *doesrange; /* return: function handled range */
7940 int evaluate;
Bram Moolenaar33570922005-01-25 22:26:29 +00007941 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007942{
7943 char_u *argp;
7944 int ret = OK;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007945 typval_T argvars[MAX_FUNC_ARGS + 1]; /* vars for arguments */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007946 int argcount = 0; /* number of arguments found */
7947
7948 /*
7949 * Get the arguments.
7950 */
7951 argp = *arg;
7952 while (argcount < MAX_FUNC_ARGS)
7953 {
7954 argp = skipwhite(argp + 1); /* skip the '(' or ',' */
7955 if (*argp == ')' || *argp == ',' || *argp == NUL)
7956 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007957 if (eval1(&argp, &argvars[argcount], evaluate) == FAIL)
7958 {
7959 ret = FAIL;
7960 break;
7961 }
7962 ++argcount;
7963 if (*argp != ',')
7964 break;
7965 }
7966 if (*argp == ')')
7967 ++argp;
7968 else
7969 ret = FAIL;
7970
7971 if (ret == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007972 ret = call_func(name, len, rettv, argcount, argvars,
Bram Moolenaare9a41262005-01-15 22:18:47 +00007973 firstline, lastline, doesrange, evaluate, selfdict);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007974 else if (!aborting())
Bram Moolenaar33570922005-01-25 22:26:29 +00007975 {
7976 if (argcount == MAX_FUNC_ARGS)
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +00007977 emsg_funcname(N_("E740: Too many arguments for function %s"), name);
Bram Moolenaar33570922005-01-25 22:26:29 +00007978 else
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +00007979 emsg_funcname(N_("E116: Invalid arguments for function %s"), name);
Bram Moolenaar33570922005-01-25 22:26:29 +00007980 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007981
7982 while (--argcount >= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007983 clear_tv(&argvars[argcount]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007984
7985 *arg = skipwhite(argp);
7986 return ret;
7987}
7988
7989
7990/*
7991 * Call a function with its resolved parameters
Bram Moolenaar280f1262006-01-30 00:14:18 +00007992 * Return OK when the function can't be called, FAIL otherwise.
7993 * Also returns OK when an error was encountered while executing the function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007994 */
7995 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007996call_func(name, len, rettv, argcount, argvars, firstline, lastline,
Bram Moolenaare9a41262005-01-15 22:18:47 +00007997 doesrange, evaluate, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007998 char_u *name; /* name of the function */
7999 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +00008000 typval_T *rettv; /* return value goes here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008001 int argcount; /* number of "argvars" */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00008002 typval_T *argvars; /* vars for arguments, must have "argcount"
8003 PLUS ONE elements! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008004 linenr_T firstline; /* first line of range */
8005 linenr_T lastline; /* last line of range */
8006 int *doesrange; /* return: function handled range */
8007 int evaluate;
Bram Moolenaar33570922005-01-25 22:26:29 +00008008 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008009{
8010 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008011#define ERROR_UNKNOWN 0
8012#define ERROR_TOOMANY 1
8013#define ERROR_TOOFEW 2
8014#define ERROR_SCRIPT 3
Bram Moolenaare9a41262005-01-15 22:18:47 +00008015#define ERROR_DICT 4
8016#define ERROR_NONE 5
8017#define ERROR_OTHER 6
Bram Moolenaar071d4272004-06-13 20:20:40 +00008018 int error = ERROR_NONE;
8019 int i;
8020 int llen;
8021 ufunc_T *fp;
8022 int cc;
8023#define FLEN_FIXED 40
8024 char_u fname_buf[FLEN_FIXED + 1];
8025 char_u *fname;
8026
8027 /*
8028 * In a script change <SID>name() and s:name() to K_SNR 123_name().
8029 * Change <SNR>123_name() to K_SNR 123_name().
8030 * Use fname_buf[] when it fits, otherwise allocate memory (slow).
8031 */
8032 cc = name[len];
8033 name[len] = NUL;
8034 llen = eval_fname_script(name);
8035 if (llen > 0)
8036 {
8037 fname_buf[0] = K_SPECIAL;
8038 fname_buf[1] = KS_EXTRA;
8039 fname_buf[2] = (int)KE_SNR;
8040 i = 3;
8041 if (eval_fname_sid(name)) /* "<SID>" or "s:" */
8042 {
8043 if (current_SID <= 0)
8044 error = ERROR_SCRIPT;
8045 else
8046 {
8047 sprintf((char *)fname_buf + 3, "%ld_", (long)current_SID);
8048 i = (int)STRLEN(fname_buf);
8049 }
8050 }
8051 if (i + STRLEN(name + llen) < FLEN_FIXED)
8052 {
8053 STRCPY(fname_buf + i, name + llen);
8054 fname = fname_buf;
8055 }
8056 else
8057 {
8058 fname = alloc((unsigned)(i + STRLEN(name + llen) + 1));
8059 if (fname == NULL)
8060 error = ERROR_OTHER;
8061 else
8062 {
8063 mch_memmove(fname, fname_buf, (size_t)i);
8064 STRCPY(fname + i, name + llen);
8065 }
8066 }
8067 }
8068 else
8069 fname = name;
8070
8071 *doesrange = FALSE;
8072
8073
8074 /* execute the function if no errors detected and executing */
8075 if (evaluate && error == ERROR_NONE)
8076 {
Bram Moolenaar798b30b2009-04-22 10:56:16 +00008077 rettv->v_type = VAR_NUMBER; /* default rettv is number zero */
8078 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008079 error = ERROR_UNKNOWN;
8080
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008081 if (!builtin_function(fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008082 {
8083 /*
8084 * User defined function.
8085 */
8086 fp = find_func(fname);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008087
Bram Moolenaar071d4272004-06-13 20:20:40 +00008088#ifdef FEAT_AUTOCMD
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008089 /* Trigger FuncUndefined event, may load the function. */
8090 if (fp == NULL
8091 && apply_autocmds(EVENT_FUNCUNDEFINED,
8092 fname, fname, TRUE, NULL)
8093 && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00008094 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008095 /* executed an autocommand, search for the function again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008096 fp = find_func(fname);
8097 }
8098#endif
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008099 /* Try loading a package. */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00008100 if (fp == NULL && script_autoload(fname, TRUE) && !aborting())
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008101 {
8102 /* loaded a package, search for the function again */
8103 fp = find_func(fname);
8104 }
8105
Bram Moolenaar071d4272004-06-13 20:20:40 +00008106 if (fp != NULL)
8107 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008108 if (fp->uf_flags & FC_RANGE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008109 *doesrange = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008110 if (argcount < fp->uf_args.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008111 error = ERROR_TOOFEW;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008112 else if (!fp->uf_varargs && argcount > fp->uf_args.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008113 error = ERROR_TOOMANY;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008114 else if ((fp->uf_flags & FC_DICT) && selfdict == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00008115 error = ERROR_DICT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008116 else
8117 {
8118 /*
8119 * Call the user function.
8120 * Save and restore search patterns, script variables and
8121 * redo buffer.
8122 */
8123 save_search_patterns();
8124 saveRedobuff();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008125 ++fp->uf_calls;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008126 call_user_func(fp, argcount, argvars, rettv,
Bram Moolenaare9a41262005-01-15 22:18:47 +00008127 firstline, lastline,
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008128 (fp->uf_flags & FC_DICT) ? selfdict : NULL);
8129 if (--fp->uf_calls <= 0 && isdigit(*fp->uf_name)
8130 && fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00008131 /* Function was unreferenced while being used, free it
8132 * now. */
8133 func_free(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008134 restoreRedobuff();
8135 restore_search_patterns();
8136 error = ERROR_NONE;
8137 }
8138 }
8139 }
8140 else
8141 {
8142 /*
8143 * Find the function name in the table, call its implementation.
8144 */
8145 i = find_internal_func(fname);
8146 if (i >= 0)
8147 {
8148 if (argcount < functions[i].f_min_argc)
8149 error = ERROR_TOOFEW;
8150 else if (argcount > functions[i].f_max_argc)
8151 error = ERROR_TOOMANY;
8152 else
8153 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008154 argvars[argcount].v_type = VAR_UNKNOWN;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008155 functions[i].f_func(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008156 error = ERROR_NONE;
8157 }
8158 }
8159 }
8160 /*
8161 * The function call (or "FuncUndefined" autocommand sequence) might
8162 * have been aborted by an error, an interrupt, or an explicitly thrown
8163 * exception that has not been caught so far. This situation can be
8164 * tested for by calling aborting(). For an error in an internal
8165 * function or for the "E132" error in call_user_func(), however, the
8166 * throw point at which the "force_abort" flag (temporarily reset by
8167 * emsg()) is normally updated has not been reached yet. We need to
8168 * update that flag first to make aborting() reliable.
8169 */
8170 update_force_abort();
8171 }
8172 if (error == ERROR_NONE)
8173 ret = OK;
8174
8175 /*
8176 * Report an error unless the argument evaluation or function call has been
8177 * cancelled due to an aborting error, an interrupt, or an exception.
8178 */
Bram Moolenaar8c711452005-01-14 21:53:12 +00008179 if (!aborting())
8180 {
8181 switch (error)
8182 {
8183 case ERROR_UNKNOWN:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008184 emsg_funcname(N_("E117: Unknown function: %s"), name);
Bram Moolenaar8c711452005-01-14 21:53:12 +00008185 break;
8186 case ERROR_TOOMANY:
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008187 emsg_funcname(e_toomanyarg, name);
Bram Moolenaar8c711452005-01-14 21:53:12 +00008188 break;
8189 case ERROR_TOOFEW:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008190 emsg_funcname(N_("E119: Not enough arguments for function: %s"),
Bram Moolenaar8c711452005-01-14 21:53:12 +00008191 name);
8192 break;
8193 case ERROR_SCRIPT:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008194 emsg_funcname(N_("E120: Using <SID> not in a script context: %s"),
Bram Moolenaar8c711452005-01-14 21:53:12 +00008195 name);
8196 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00008197 case ERROR_DICT:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008198 emsg_funcname(N_("E725: Calling dict function without Dictionary: %s"),
Bram Moolenaare9a41262005-01-15 22:18:47 +00008199 name);
8200 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00008201 }
8202 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008203
8204 name[len] = cc;
8205 if (fname != name && fname != fname_buf)
8206 vim_free(fname);
8207
8208 return ret;
8209}
8210
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008211/*
8212 * Give an error message with a function name. Handle <SNR> things.
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +00008213 * "ermsg" is to be passed without translation, use N_() instead of _().
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008214 */
8215 static void
Bram Moolenaar89d40322006-08-29 15:30:07 +00008216emsg_funcname(ermsg, name)
8217 char *ermsg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008218 char_u *name;
8219{
8220 char_u *p;
8221
8222 if (*name == K_SPECIAL)
8223 p = concat_str((char_u *)"<SNR>", name + 3);
8224 else
8225 p = name;
Bram Moolenaar89d40322006-08-29 15:30:07 +00008226 EMSG2(_(ermsg), p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008227 if (p != name)
8228 vim_free(p);
8229}
8230
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008231/*
8232 * Return TRUE for a non-zero Number and a non-empty String.
8233 */
8234 static int
8235non_zero_arg(argvars)
8236 typval_T *argvars;
8237{
8238 return ((argvars[0].v_type == VAR_NUMBER
8239 && argvars[0].vval.v_number != 0)
8240 || (argvars[0].v_type == VAR_STRING
8241 && argvars[0].vval.v_string != NULL
8242 && *argvars[0].vval.v_string != NUL));
8243}
8244
Bram Moolenaar071d4272004-06-13 20:20:40 +00008245/*********************************************
8246 * Implementation of the built-in functions
8247 */
8248
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008249#ifdef FEAT_FLOAT
8250/*
8251 * "abs(expr)" function
8252 */
8253 static void
8254f_abs(argvars, rettv)
8255 typval_T *argvars;
8256 typval_T *rettv;
8257{
8258 if (argvars[0].v_type == VAR_FLOAT)
8259 {
8260 rettv->v_type = VAR_FLOAT;
8261 rettv->vval.v_float = fabs(argvars[0].vval.v_float);
8262 }
8263 else
8264 {
8265 varnumber_T n;
8266 int error = FALSE;
8267
8268 n = get_tv_number_chk(&argvars[0], &error);
8269 if (error)
8270 rettv->vval.v_number = -1;
8271 else if (n > 0)
8272 rettv->vval.v_number = n;
8273 else
8274 rettv->vval.v_number = -n;
8275 }
8276}
8277#endif
8278
Bram Moolenaar071d4272004-06-13 20:20:40 +00008279/*
Bram Moolenaar0d660222005-01-07 21:51:51 +00008280 * "add(list, item)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +00008281 */
8282 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +00008283f_add(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008284 typval_T *argvars;
8285 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008286{
Bram Moolenaar33570922005-01-25 22:26:29 +00008287 list_T *l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008288
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008289 rettv->vval.v_number = 1; /* Default: Failed */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008290 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008291 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00008292 if ((l = argvars[0].vval.v_list) != NULL
8293 && !tv_check_lock(l->lv_lock, (char_u *)"add()")
8294 && list_append_tv(l, &argvars[1]) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008295 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008296 }
8297 else
Bram Moolenaar0d660222005-01-07 21:51:51 +00008298 EMSG(_(e_listreq));
8299}
8300
8301/*
8302 * "append(lnum, string/list)" function
8303 */
8304 static void
8305f_append(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008306 typval_T *argvars;
8307 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00008308{
8309 long lnum;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008310 char_u *line;
Bram Moolenaar33570922005-01-25 22:26:29 +00008311 list_T *l = NULL;
8312 listitem_T *li = NULL;
8313 typval_T *tv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00008314 long added = 0;
8315
Bram Moolenaar0d660222005-01-07 21:51:51 +00008316 lnum = get_tv_lnum(argvars);
8317 if (lnum >= 0
8318 && lnum <= curbuf->b_ml.ml_line_count
8319 && u_save(lnum, lnum + 1) == OK)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008320 {
Bram Moolenaar0d660222005-01-07 21:51:51 +00008321 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008322 {
Bram Moolenaar0d660222005-01-07 21:51:51 +00008323 l = argvars[1].vval.v_list;
8324 if (l == NULL)
8325 return;
8326 li = l->lv_first;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008327 }
Bram Moolenaar0d660222005-01-07 21:51:51 +00008328 for (;;)
8329 {
8330 if (l == NULL)
8331 tv = &argvars[1]; /* append a string */
8332 else if (li == NULL)
8333 break; /* end of list */
8334 else
8335 tv = &li->li_tv; /* append item from list */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008336 line = get_tv_string_chk(tv);
8337 if (line == NULL) /* type error */
8338 {
8339 rettv->vval.v_number = 1; /* Failed */
8340 break;
8341 }
8342 ml_append(lnum + added, line, (colnr_T)0, FALSE);
Bram Moolenaar0d660222005-01-07 21:51:51 +00008343 ++added;
8344 if (l == NULL)
8345 break;
8346 li = li->li_next;
8347 }
8348
8349 appended_lines_mark(lnum, added);
8350 if (curwin->w_cursor.lnum > lnum)
8351 curwin->w_cursor.lnum += added;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008352 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008353 else
8354 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008355}
8356
8357/*
8358 * "argc()" function
8359 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008360 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008361f_argc(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008362 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008363 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008364{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008365 rettv->vval.v_number = ARGCOUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008366}
8367
8368/*
8369 * "argidx()" function
8370 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008371 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008372f_argidx(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008373 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008374 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008375{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008376 rettv->vval.v_number = curwin->w_arg_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008377}
8378
8379/*
8380 * "argv(nr)" function
8381 */
8382 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008383f_argv(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008384 typval_T *argvars;
8385 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008386{
8387 int idx;
8388
Bram Moolenaare2f98b92006-03-29 21:18:24 +00008389 if (argvars[0].v_type != VAR_UNKNOWN)
8390 {
8391 idx = get_tv_number_chk(&argvars[0], NULL);
8392 if (idx >= 0 && idx < ARGCOUNT)
8393 rettv->vval.v_string = vim_strsave(alist_name(&ARGLIST[idx]));
8394 else
8395 rettv->vval.v_string = NULL;
8396 rettv->v_type = VAR_STRING;
8397 }
8398 else if (rettv_list_alloc(rettv) == OK)
8399 for (idx = 0; idx < ARGCOUNT; ++idx)
8400 list_append_string(rettv->vval.v_list,
8401 alist_name(&ARGLIST[idx]), -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008402}
8403
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008404#ifdef FEAT_FLOAT
8405static int get_float_arg __ARGS((typval_T *argvars, float_T *f));
8406
8407/*
8408 * Get the float value of "argvars[0]" into "f".
8409 * Returns FAIL when the argument is not a Number or Float.
8410 */
8411 static int
8412get_float_arg(argvars, f)
8413 typval_T *argvars;
8414 float_T *f;
8415{
8416 if (argvars[0].v_type == VAR_FLOAT)
8417 {
8418 *f = argvars[0].vval.v_float;
8419 return OK;
8420 }
8421 if (argvars[0].v_type == VAR_NUMBER)
8422 {
8423 *f = (float_T)argvars[0].vval.v_number;
8424 return OK;
8425 }
8426 EMSG(_("E808: Number or Float required"));
8427 return FAIL;
8428}
8429
8430/*
8431 * "atan()" function
8432 */
8433 static void
8434f_atan(argvars, rettv)
8435 typval_T *argvars;
8436 typval_T *rettv;
8437{
8438 float_T f;
8439
8440 rettv->v_type = VAR_FLOAT;
8441 if (get_float_arg(argvars, &f) == OK)
8442 rettv->vval.v_float = atan(f);
8443 else
8444 rettv->vval.v_float = 0.0;
8445}
8446#endif
8447
Bram Moolenaar071d4272004-06-13 20:20:40 +00008448/*
8449 * "browse(save, title, initdir, default)" function
8450 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008451 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008452f_browse(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008453 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008454 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008455{
8456#ifdef FEAT_BROWSE
8457 int save;
8458 char_u *title;
8459 char_u *initdir;
8460 char_u *defname;
8461 char_u buf[NUMBUFLEN];
8462 char_u buf2[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008463 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008464
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008465 save = get_tv_number_chk(&argvars[0], &error);
8466 title = get_tv_string_chk(&argvars[1]);
8467 initdir = get_tv_string_buf_chk(&argvars[2], buf);
8468 defname = get_tv_string_buf_chk(&argvars[3], buf2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008469
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008470 if (error || title == NULL || initdir == NULL || defname == NULL)
8471 rettv->vval.v_string = NULL;
8472 else
8473 rettv->vval.v_string =
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008474 do_browse(save ? BROWSE_SAVE : 0,
8475 title, defname, NULL, initdir, NULL, curbuf);
8476#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008477 rettv->vval.v_string = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008478#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008479 rettv->v_type = VAR_STRING;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008480}
8481
8482/*
8483 * "browsedir(title, initdir)" function
8484 */
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008485 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008486f_browsedir(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008487 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008488 typval_T *rettv;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008489{
8490#ifdef FEAT_BROWSE
8491 char_u *title;
8492 char_u *initdir;
8493 char_u buf[NUMBUFLEN];
8494
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008495 title = get_tv_string_chk(&argvars[0]);
8496 initdir = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008497
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008498 if (title == NULL || initdir == NULL)
8499 rettv->vval.v_string = NULL;
8500 else
8501 rettv->vval.v_string = do_browse(BROWSE_DIR,
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008502 title, NULL, NULL, initdir, NULL, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008503#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008504 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008505#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008506 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008507}
8508
Bram Moolenaar33570922005-01-25 22:26:29 +00008509static buf_T *find_buffer __ARGS((typval_T *avar));
Bram Moolenaar0d660222005-01-07 21:51:51 +00008510
Bram Moolenaar071d4272004-06-13 20:20:40 +00008511/*
8512 * Find a buffer by number or exact name.
8513 */
8514 static buf_T *
8515find_buffer(avar)
Bram Moolenaar33570922005-01-25 22:26:29 +00008516 typval_T *avar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008517{
8518 buf_T *buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008519
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008520 if (avar->v_type == VAR_NUMBER)
8521 buf = buflist_findnr((int)avar->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +00008522 else if (avar->v_type == VAR_STRING && avar->vval.v_string != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008523 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008524 buf = buflist_findname_exp(avar->vval.v_string);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00008525 if (buf == NULL)
8526 {
8527 /* No full path name match, try a match with a URL or a "nofile"
8528 * buffer, these don't use the full path. */
8529 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
8530 if (buf->b_fname != NULL
8531 && (path_with_url(buf->b_fname)
8532#ifdef FEAT_QUICKFIX
8533 || bt_nofile(buf)
8534#endif
8535 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008536 && STRCMP(buf->b_fname, avar->vval.v_string) == 0)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00008537 break;
8538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008539 }
8540 return buf;
8541}
8542
8543/*
8544 * "bufexists(expr)" function
8545 */
8546 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008547f_bufexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008548 typval_T *argvars;
8549 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008550{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008551 rettv->vval.v_number = (find_buffer(&argvars[0]) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008552}
8553
8554/*
8555 * "buflisted(expr)" function
8556 */
8557 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008558f_buflisted(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008559 typval_T *argvars;
8560 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008561{
8562 buf_T *buf;
8563
8564 buf = find_buffer(&argvars[0]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008565 rettv->vval.v_number = (buf != NULL && buf->b_p_bl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008566}
8567
8568/*
8569 * "bufloaded(expr)" function
8570 */
8571 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008572f_bufloaded(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008573 typval_T *argvars;
8574 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008575{
8576 buf_T *buf;
8577
8578 buf = find_buffer(&argvars[0]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008579 rettv->vval.v_number = (buf != NULL && buf->b_ml.ml_mfp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008580}
8581
Bram Moolenaar33570922005-01-25 22:26:29 +00008582static buf_T *get_buf_tv __ARGS((typval_T *tv));
Bram Moolenaar0d660222005-01-07 21:51:51 +00008583
Bram Moolenaar071d4272004-06-13 20:20:40 +00008584/*
8585 * Get buffer by number or pattern.
8586 */
8587 static buf_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008588get_buf_tv(tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008589 typval_T *tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008590{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008591 char_u *name = tv->vval.v_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008592 int save_magic;
8593 char_u *save_cpo;
8594 buf_T *buf;
8595
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008596 if (tv->v_type == VAR_NUMBER)
8597 return buflist_findnr((int)tv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +00008598 if (tv->v_type != VAR_STRING)
8599 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008600 if (name == NULL || *name == NUL)
8601 return curbuf;
8602 if (name[0] == '$' && name[1] == NUL)
8603 return lastbuf;
8604
8605 /* Ignore 'magic' and 'cpoptions' here to make scripts portable */
8606 save_magic = p_magic;
8607 p_magic = TRUE;
8608 save_cpo = p_cpo;
8609 p_cpo = (char_u *)"";
8610
8611 buf = buflist_findnr(buflist_findpat(name, name + STRLEN(name),
8612 TRUE, FALSE));
8613
8614 p_magic = save_magic;
8615 p_cpo = save_cpo;
8616
8617 /* If not found, try expanding the name, like done for bufexists(). */
8618 if (buf == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008619 buf = find_buffer(tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008620
8621 return buf;
8622}
8623
8624/*
8625 * "bufname(expr)" function
8626 */
8627 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008628f_bufname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008629 typval_T *argvars;
8630 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008631{
8632 buf_T *buf;
8633
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008634 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008635 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008636 buf = get_buf_tv(&argvars[0]);
8637 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008638 if (buf != NULL && buf->b_fname != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008639 rettv->vval.v_string = vim_strsave(buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008640 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008641 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008642 --emsg_off;
8643}
8644
8645/*
8646 * "bufnr(expr)" function
8647 */
8648 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008649f_bufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008650 typval_T *argvars;
8651 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008652{
8653 buf_T *buf;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008654 int error = FALSE;
8655 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008656
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008657 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008658 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008659 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008660 --emsg_off;
8661
8662 /* If the buffer isn't found and the second argument is not zero create a
8663 * new buffer. */
8664 if (buf == NULL
8665 && argvars[1].v_type != VAR_UNKNOWN
8666 && get_tv_number_chk(&argvars[1], &error) != 0
8667 && !error
8668 && (name = get_tv_string_chk(&argvars[0])) != NULL
8669 && !error)
8670 buf = buflist_new(name, NULL, (linenr_T)1, 0);
8671
Bram Moolenaar071d4272004-06-13 20:20:40 +00008672 if (buf != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008673 rettv->vval.v_number = buf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008674 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008675 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008676}
8677
8678/*
8679 * "bufwinnr(nr)" function
8680 */
8681 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008682f_bufwinnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008683 typval_T *argvars;
8684 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008685{
8686#ifdef FEAT_WINDOWS
8687 win_T *wp;
8688 int winnr = 0;
8689#endif
8690 buf_T *buf;
8691
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008692 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008693 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008694 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008695#ifdef FEAT_WINDOWS
8696 for (wp = firstwin; wp; wp = wp->w_next)
8697 {
8698 ++winnr;
8699 if (wp->w_buffer == buf)
8700 break;
8701 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008702 rettv->vval.v_number = (wp != NULL ? winnr : -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008703#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008704 rettv->vval.v_number = (curwin->w_buffer == buf ? 1 : -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008705#endif
8706 --emsg_off;
8707}
8708
8709/*
8710 * "byte2line(byte)" function
8711 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008712 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008713f_byte2line(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00008714 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008715 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008716{
8717#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008718 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008719#else
8720 long boff = 0;
8721
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008722 boff = get_tv_number(&argvars[0]) - 1; /* boff gets -1 on type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008723 if (boff < 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008724 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008725 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008726 rettv->vval.v_number = ml_find_line_or_offset(curbuf,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008727 (linenr_T)0, &boff);
8728#endif
8729}
8730
8731/*
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008732 * "byteidx()" function
8733 */
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008734 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008735f_byteidx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008736 typval_T *argvars;
8737 typval_T *rettv;
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008738{
8739#ifdef FEAT_MBYTE
8740 char_u *t;
8741#endif
8742 char_u *str;
8743 long idx;
8744
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008745 str = get_tv_string_chk(&argvars[0]);
8746 idx = get_tv_number_chk(&argvars[1], NULL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008747 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008748 if (str == NULL || idx < 0)
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008749 return;
8750
8751#ifdef FEAT_MBYTE
8752 t = str;
8753 for ( ; idx > 0; idx--)
8754 {
8755 if (*t == NUL) /* EOL reached */
8756 return;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008757 t += (*mb_ptr2len)(t);
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008758 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008759 rettv->vval.v_number = (varnumber_T)(t - str);
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008760#else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008761 if ((size_t)idx <= STRLEN(str))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008762 rettv->vval.v_number = idx;
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008763#endif
8764}
8765
8766/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008767 * "call(func, arglist)" function
8768 */
8769 static void
8770f_call(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008771 typval_T *argvars;
8772 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008773{
8774 char_u *func;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00008775 typval_T argv[MAX_FUNC_ARGS + 1];
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008776 int argc = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +00008777 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008778 int dummy;
Bram Moolenaar33570922005-01-25 22:26:29 +00008779 dict_T *selfdict = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008780
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008781 if (argvars[1].v_type != VAR_LIST)
8782 {
8783 EMSG(_(e_listreq));
8784 return;
8785 }
8786 if (argvars[1].vval.v_list == NULL)
8787 return;
8788
8789 if (argvars[0].v_type == VAR_FUNC)
8790 func = argvars[0].vval.v_string;
8791 else
8792 func = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008793 if (*func == NUL)
8794 return; /* type error or empty name */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008795
Bram Moolenaare9a41262005-01-15 22:18:47 +00008796 if (argvars[2].v_type != VAR_UNKNOWN)
8797 {
8798 if (argvars[2].v_type != VAR_DICT)
8799 {
8800 EMSG(_(e_dictreq));
8801 return;
8802 }
8803 selfdict = argvars[2].vval.v_dict;
8804 }
8805
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008806 for (item = argvars[1].vval.v_list->lv_first; item != NULL;
8807 item = item->li_next)
8808 {
8809 if (argc == MAX_FUNC_ARGS)
8810 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00008811 EMSG(_("E699: Too many arguments"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008812 break;
8813 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00008814 /* Make a copy of each argument. This is needed to be able to set
8815 * v_lock to VAR_FIXED in the copy without changing the original list.
8816 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008817 copy_tv(&item->li_tv, &argv[argc++]);
8818 }
8819
8820 if (item == NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008821 (void)call_func(func, (int)STRLEN(func), rettv, argc, argv,
Bram Moolenaare9a41262005-01-15 22:18:47 +00008822 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
8823 &dummy, TRUE, selfdict);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008824
8825 /* Free the arguments. */
8826 while (argc > 0)
8827 clear_tv(&argv[--argc]);
8828}
8829
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008830#ifdef FEAT_FLOAT
8831/*
8832 * "ceil({float})" function
8833 */
8834 static void
8835f_ceil(argvars, rettv)
8836 typval_T *argvars;
8837 typval_T *rettv;
8838{
8839 float_T f;
8840
8841 rettv->v_type = VAR_FLOAT;
8842 if (get_float_arg(argvars, &f) == OK)
8843 rettv->vval.v_float = ceil(f);
8844 else
8845 rettv->vval.v_float = 0.0;
8846}
8847#endif
8848
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008849/*
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00008850 * "changenr()" function
8851 */
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00008852 static void
8853f_changenr(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008854 typval_T *argvars UNUSED;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00008855 typval_T *rettv;
8856{
8857 rettv->vval.v_number = curbuf->b_u_seq_cur;
8858}
8859
8860/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008861 * "char2nr(string)" function
8862 */
8863 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008864f_char2nr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008865 typval_T *argvars;
8866 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008867{
8868#ifdef FEAT_MBYTE
8869 if (has_mbyte)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008870 rettv->vval.v_number = (*mb_ptr2char)(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008871 else
8872#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008873 rettv->vval.v_number = get_tv_string(&argvars[0])[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00008874}
8875
8876/*
8877 * "cindent(lnum)" function
8878 */
8879 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008880f_cindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008881 typval_T *argvars;
8882 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008883{
8884#ifdef FEAT_CINDENT
8885 pos_T pos;
8886 linenr_T lnum;
8887
8888 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008889 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008890 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
8891 {
8892 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008893 rettv->vval.v_number = get_c_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008894 curwin->w_cursor = pos;
8895 }
8896 else
8897#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008898 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008899}
8900
8901/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +00008902 * "clearmatches()" function
8903 */
Bram Moolenaar6ee10162007-07-26 20:58:42 +00008904 static void
8905f_clearmatches(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008906 typval_T *argvars UNUSED;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00008907 typval_T *rettv UNUSED;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00008908{
8909#ifdef FEAT_SEARCH_EXTRA
8910 clear_matches(curwin);
8911#endif
8912}
8913
8914/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008915 * "col(string)" function
8916 */
8917 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008918f_col(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008919 typval_T *argvars;
8920 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008921{
8922 colnr_T col = 0;
8923 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008924 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008925
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008926 fp = var2fpos(&argvars[0], FALSE, &fnum);
8927 if (fp != NULL && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008928 {
8929 if (fp->col == MAXCOL)
8930 {
8931 /* '> can be MAXCOL, get the length of the line then */
8932 if (fp->lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008933 col = (colnr_T)STRLEN(ml_get(fp->lnum)) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008934 else
8935 col = MAXCOL;
8936 }
8937 else
8938 {
8939 col = fp->col + 1;
8940#ifdef FEAT_VIRTUALEDIT
8941 /* col(".") when the cursor is on the NUL at the end of the line
8942 * because of "coladd" can be seen as an extra column. */
8943 if (virtual_active() && fp == &curwin->w_cursor)
8944 {
8945 char_u *p = ml_get_cursor();
8946
8947 if (curwin->w_cursor.coladd >= (colnr_T)chartabsize(p,
8948 curwin->w_virtcol - curwin->w_cursor.coladd))
8949 {
8950# ifdef FEAT_MBYTE
8951 int l;
8952
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008953 if (*p != NUL && p[(l = (*mb_ptr2len)(p))] == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008954 col += l;
8955# else
8956 if (*p != NUL && p[1] == NUL)
8957 ++col;
8958# endif
8959 }
8960 }
8961#endif
8962 }
8963 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008964 rettv->vval.v_number = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008965}
8966
Bram Moolenaar572cb562005-08-05 21:35:02 +00008967#if defined(FEAT_INS_EXPAND)
8968/*
Bram Moolenaarade00832006-03-10 21:46:58 +00008969 * "complete()" function
8970 */
Bram Moolenaarade00832006-03-10 21:46:58 +00008971 static void
8972f_complete(argvars, rettv)
8973 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00008974 typval_T *rettv UNUSED;
Bram Moolenaarade00832006-03-10 21:46:58 +00008975{
8976 int startcol;
8977
8978 if ((State & INSERT) == 0)
8979 {
8980 EMSG(_("E785: complete() can only be used in Insert mode"));
8981 return;
8982 }
Bram Moolenaarce6ef252006-07-12 19:49:41 +00008983
8984 /* Check for undo allowed here, because if something was already inserted
8985 * the line was already saved for undo and this check isn't done. */
8986 if (!undo_allowed())
8987 return;
8988
Bram Moolenaarade00832006-03-10 21:46:58 +00008989 if (argvars[1].v_type != VAR_LIST || argvars[1].vval.v_list == NULL)
8990 {
8991 EMSG(_(e_invarg));
8992 return;
8993 }
8994
8995 startcol = get_tv_number_chk(&argvars[0], NULL);
8996 if (startcol <= 0)
8997 return;
8998
8999 set_completion(startcol - 1, argvars[1].vval.v_list);
9000}
9001
9002/*
Bram Moolenaar572cb562005-08-05 21:35:02 +00009003 * "complete_add()" function
9004 */
Bram Moolenaar572cb562005-08-05 21:35:02 +00009005 static void
9006f_complete_add(argvars, rettv)
9007 typval_T *argvars;
9008 typval_T *rettv;
9009{
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00009010 rettv->vval.v_number = ins_compl_add_tv(&argvars[0], 0);
Bram Moolenaar572cb562005-08-05 21:35:02 +00009011}
9012
9013/*
9014 * "complete_check()" function
9015 */
Bram Moolenaar572cb562005-08-05 21:35:02 +00009016 static void
9017f_complete_check(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009018 typval_T *argvars UNUSED;
Bram Moolenaar572cb562005-08-05 21:35:02 +00009019 typval_T *rettv;
9020{
9021 int saved = RedrawingDisabled;
9022
9023 RedrawingDisabled = 0;
9024 ins_compl_check_keys(0);
9025 rettv->vval.v_number = compl_interrupted;
9026 RedrawingDisabled = saved;
9027}
9028#endif
9029
Bram Moolenaar071d4272004-06-13 20:20:40 +00009030/*
9031 * "confirm(message, buttons[, default [, type]])" function
9032 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009033 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009034f_confirm(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009035 typval_T *argvars UNUSED;
9036 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009037{
9038#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
9039 char_u *message;
9040 char_u *buttons = NULL;
9041 char_u buf[NUMBUFLEN];
9042 char_u buf2[NUMBUFLEN];
9043 int def = 1;
9044 int type = VIM_GENERIC;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009045 char_u *typestr;
9046 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009047
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009048 message = get_tv_string_chk(&argvars[0]);
9049 if (message == NULL)
9050 error = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009051 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009052 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009053 buttons = get_tv_string_buf_chk(&argvars[1], buf);
9054 if (buttons == NULL)
9055 error = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009056 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009057 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009058 def = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009059 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009060 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009061 typestr = get_tv_string_buf_chk(&argvars[3], buf2);
9062 if (typestr == NULL)
9063 error = TRUE;
9064 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00009065 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009066 switch (TOUPPER_ASC(*typestr))
9067 {
9068 case 'E': type = VIM_ERROR; break;
9069 case 'Q': type = VIM_QUESTION; break;
9070 case 'I': type = VIM_INFO; break;
9071 case 'W': type = VIM_WARNING; break;
9072 case 'G': type = VIM_GENERIC; break;
9073 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009074 }
9075 }
9076 }
9077 }
9078
9079 if (buttons == NULL || *buttons == NUL)
9080 buttons = (char_u *)_("&Ok");
9081
Bram Moolenaar798b30b2009-04-22 10:56:16 +00009082 if (!error)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009083 rettv->vval.v_number = do_dialog(type, NULL, message, buttons,
Bram Moolenaar071d4272004-06-13 20:20:40 +00009084 def, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009085#endif
9086}
9087
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009088/*
9089 * "copy()" function
9090 */
9091 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009092f_copy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009093 typval_T *argvars;
9094 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009095{
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009096 item_copy(&argvars[0], rettv, FALSE, 0);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009097}
Bram Moolenaar071d4272004-06-13 20:20:40 +00009098
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009099#ifdef FEAT_FLOAT
9100/*
9101 * "cos()" function
9102 */
9103 static void
9104f_cos(argvars, rettv)
9105 typval_T *argvars;
9106 typval_T *rettv;
9107{
9108 float_T f;
9109
9110 rettv->v_type = VAR_FLOAT;
9111 if (get_float_arg(argvars, &f) == OK)
9112 rettv->vval.v_float = cos(f);
9113 else
9114 rettv->vval.v_float = 0.0;
9115}
9116#endif
9117
Bram Moolenaar071d4272004-06-13 20:20:40 +00009118/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009119 * "count()" function
9120 */
9121 static void
9122f_count(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009123 typval_T *argvars;
9124 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009125{
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009126 long n = 0;
9127 int ic = FALSE;
9128
Bram Moolenaare9a41262005-01-15 22:18:47 +00009129 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009130 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009131 listitem_T *li;
9132 list_T *l;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009133 long idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009134
Bram Moolenaare9a41262005-01-15 22:18:47 +00009135 if ((l = argvars[0].vval.v_list) != NULL)
9136 {
9137 li = l->lv_first;
9138 if (argvars[2].v_type != VAR_UNKNOWN)
9139 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009140 int error = FALSE;
9141
9142 ic = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009143 if (argvars[3].v_type != VAR_UNKNOWN)
9144 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009145 idx = get_tv_number_chk(&argvars[3], &error);
9146 if (!error)
9147 {
9148 li = list_find(l, idx);
9149 if (li == NULL)
9150 EMSGN(_(e_listidx), idx);
9151 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009152 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009153 if (error)
9154 li = NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009155 }
9156
9157 for ( ; li != NULL; li = li->li_next)
9158 if (tv_equal(&li->li_tv, &argvars[1], ic))
9159 ++n;
9160 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009161 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009162 else if (argvars[0].v_type == VAR_DICT)
9163 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009164 int todo;
9165 dict_T *d;
9166 hashitem_T *hi;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009167
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009168 if ((d = argvars[0].vval.v_dict) != NULL)
9169 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009170 int error = FALSE;
9171
Bram Moolenaare9a41262005-01-15 22:18:47 +00009172 if (argvars[2].v_type != VAR_UNKNOWN)
9173 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009174 ic = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009175 if (argvars[3].v_type != VAR_UNKNOWN)
9176 EMSG(_(e_invarg));
9177 }
9178
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009179 todo = error ? 0 : (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00009180 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009181 {
9182 if (!HASHITEM_EMPTY(hi))
9183 {
9184 --todo;
9185 if (tv_equal(&HI2DI(hi)->di_tv, &argvars[1], ic))
9186 ++n;
9187 }
9188 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009189 }
9190 }
9191 else
9192 EMSG2(_(e_listdictarg), "count()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009193 rettv->vval.v_number = n;
9194}
9195
9196/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009197 * "cscope_connection([{num} , {dbpath} [, {prepend}]])" function
9198 *
9199 * Checks the existence of a cscope connection.
9200 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009201 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009202f_cscope_connection(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009203 typval_T *argvars UNUSED;
9204 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009205{
9206#ifdef FEAT_CSCOPE
9207 int num = 0;
9208 char_u *dbpath = NULL;
9209 char_u *prepend = NULL;
9210 char_u buf[NUMBUFLEN];
9211
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009212 if (argvars[0].v_type != VAR_UNKNOWN
9213 && argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009214 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009215 num = (int)get_tv_number(&argvars[0]);
9216 dbpath = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009217 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009218 prepend = get_tv_string_buf(&argvars[2], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009219 }
9220
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009221 rettv->vval.v_number = cs_connection(num, dbpath, prepend);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009222#endif
9223}
9224
9225/*
9226 * "cursor(lnum, col)" function
9227 *
Bram Moolenaar798b30b2009-04-22 10:56:16 +00009228 * Moves the cursor to the specified line and column.
9229 * Returns 0 when the position could be set, -1 otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009230 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009231 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009232f_cursor(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009233 typval_T *argvars;
9234 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009235{
9236 long line, col;
Bram Moolenaara5525202006-03-02 22:52:09 +00009237#ifdef FEAT_VIRTUALEDIT
9238 long coladd = 0;
9239#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009240
Bram Moolenaar798b30b2009-04-22 10:56:16 +00009241 rettv->vval.v_number = -1;
Bram Moolenaara5525202006-03-02 22:52:09 +00009242 if (argvars[1].v_type == VAR_UNKNOWN)
9243 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009244 pos_T pos;
Bram Moolenaara5525202006-03-02 22:52:09 +00009245
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009246 if (list2fpos(argvars, &pos, NULL) == FAIL)
Bram Moolenaara5525202006-03-02 22:52:09 +00009247 return;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009248 line = pos.lnum;
9249 col = pos.col;
Bram Moolenaara5525202006-03-02 22:52:09 +00009250#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009251 coladd = pos.coladd;
Bram Moolenaara5525202006-03-02 22:52:09 +00009252#endif
9253 }
9254 else
9255 {
9256 line = get_tv_lnum(argvars);
9257 col = get_tv_number_chk(&argvars[1], NULL);
9258#ifdef FEAT_VIRTUALEDIT
9259 if (argvars[2].v_type != VAR_UNKNOWN)
9260 coladd = get_tv_number_chk(&argvars[2], NULL);
9261#endif
9262 }
9263 if (line < 0 || col < 0
9264#ifdef FEAT_VIRTUALEDIT
9265 || coladd < 0
9266#endif
9267 )
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009268 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009269 if (line > 0)
9270 curwin->w_cursor.lnum = line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009271 if (col > 0)
9272 curwin->w_cursor.col = col - 1;
9273#ifdef FEAT_VIRTUALEDIT
Bram Moolenaara5525202006-03-02 22:52:09 +00009274 curwin->w_cursor.coladd = coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009275#endif
9276
9277 /* Make sure the cursor is in a valid position. */
9278 check_cursor();
9279#ifdef FEAT_MBYTE
9280 /* Correct cursor for multi-byte character. */
9281 if (has_mbyte)
9282 mb_adjust_cursor();
9283#endif
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00009284
9285 curwin->w_set_curswant = TRUE;
Bram Moolenaar798b30b2009-04-22 10:56:16 +00009286 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009287}
9288
9289/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009290 * "deepcopy()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +00009291 */
9292 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009293f_deepcopy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009294 typval_T *argvars;
9295 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009296{
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009297 int noref = 0;
9298
9299 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009300 noref = get_tv_number_chk(&argvars[1], NULL);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009301 if (noref < 0 || noref > 1)
9302 EMSG(_(e_invarg));
9303 else
Bram Moolenaar2c2398c2009-06-03 11:22:45 +00009304 {
9305 current_copyID += COPYID_INC;
9306 item_copy(&argvars[0], rettv, TRUE, noref == 0 ? current_copyID : 0);
9307 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009308}
9309
9310/*
9311 * "delete()" function
9312 */
9313 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009314f_delete(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009315 typval_T *argvars;
9316 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009317{
9318 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009319 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009320 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009321 rettv->vval.v_number = mch_remove(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009322}
9323
9324/*
9325 * "did_filetype()" function
9326 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009327 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009328f_did_filetype(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009329 typval_T *argvars UNUSED;
9330 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009331{
9332#ifdef FEAT_AUTOCMD
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009333 rettv->vval.v_number = did_filetype;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009334#endif
9335}
9336
9337/*
Bram Moolenaar47136d72004-10-12 20:02:24 +00009338 * "diff_filler()" function
9339 */
Bram Moolenaar47136d72004-10-12 20:02:24 +00009340 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009341f_diff_filler(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009342 typval_T *argvars UNUSED;
9343 typval_T *rettv UNUSED;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009344{
9345#ifdef FEAT_DIFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009346 rettv->vval.v_number = diff_check_fill(curwin, get_tv_lnum(argvars));
Bram Moolenaar47136d72004-10-12 20:02:24 +00009347#endif
9348}
9349
9350/*
9351 * "diff_hlID()" function
9352 */
Bram Moolenaar47136d72004-10-12 20:02:24 +00009353 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009354f_diff_hlID(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009355 typval_T *argvars UNUSED;
9356 typval_T *rettv UNUSED;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009357{
9358#ifdef FEAT_DIFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009359 linenr_T lnum = get_tv_lnum(argvars);
Bram Moolenaar47136d72004-10-12 20:02:24 +00009360 static linenr_T prev_lnum = 0;
9361 static int changedtick = 0;
9362 static int fnum = 0;
9363 static int change_start = 0;
9364 static int change_end = 0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00009365 static hlf_T hlID = (hlf_T)0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009366 int filler_lines;
9367 int col;
9368
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009369 if (lnum < 0) /* ignore type error in {lnum} arg */
9370 lnum = 0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009371 if (lnum != prev_lnum
9372 || changedtick != curbuf->b_changedtick
9373 || fnum != curbuf->b_fnum)
9374 {
9375 /* New line, buffer, change: need to get the values. */
9376 filler_lines = diff_check(curwin, lnum);
9377 if (filler_lines < 0)
9378 {
9379 if (filler_lines == -1)
9380 {
9381 change_start = MAXCOL;
9382 change_end = -1;
9383 if (diff_find_change(curwin, lnum, &change_start, &change_end))
9384 hlID = HLF_ADD; /* added line */
9385 else
9386 hlID = HLF_CHD; /* changed line */
9387 }
9388 else
9389 hlID = HLF_ADD; /* added line */
9390 }
9391 else
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009392 hlID = (hlf_T)0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009393 prev_lnum = lnum;
9394 changedtick = curbuf->b_changedtick;
9395 fnum = curbuf->b_fnum;
9396 }
9397
9398 if (hlID == HLF_CHD || hlID == HLF_TXD)
9399 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009400 col = get_tv_number(&argvars[1]) - 1; /* ignore type error in {col} */
Bram Moolenaar47136d72004-10-12 20:02:24 +00009401 if (col >= change_start && col <= change_end)
9402 hlID = HLF_TXD; /* changed text */
9403 else
9404 hlID = HLF_CHD; /* changed line */
9405 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009406 rettv->vval.v_number = hlID == (hlf_T)0 ? 0 : (int)hlID;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009407#endif
9408}
9409
9410/*
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009411 * "empty({expr})" function
9412 */
9413 static void
9414f_empty(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009415 typval_T *argvars;
9416 typval_T *rettv;
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009417{
9418 int n;
9419
9420 switch (argvars[0].v_type)
9421 {
9422 case VAR_STRING:
9423 case VAR_FUNC:
9424 n = argvars[0].vval.v_string == NULL
9425 || *argvars[0].vval.v_string == NUL;
9426 break;
9427 case VAR_NUMBER:
9428 n = argvars[0].vval.v_number == 0;
9429 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009430#ifdef FEAT_FLOAT
9431 case VAR_FLOAT:
9432 n = argvars[0].vval.v_float == 0.0;
9433 break;
9434#endif
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009435 case VAR_LIST:
9436 n = argvars[0].vval.v_list == NULL
9437 || argvars[0].vval.v_list->lv_first == NULL;
9438 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009439 case VAR_DICT:
9440 n = argvars[0].vval.v_dict == NULL
Bram Moolenaar33570922005-01-25 22:26:29 +00009441 || argvars[0].vval.v_dict->dv_hashtab.ht_used == 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009442 break;
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009443 default:
9444 EMSG2(_(e_intern2), "f_empty()");
9445 n = 0;
9446 }
9447
9448 rettv->vval.v_number = n;
9449}
9450
9451/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009452 * "escape({string}, {chars})" function
9453 */
9454 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009455f_escape(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009456 typval_T *argvars;
9457 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009458{
9459 char_u buf[NUMBUFLEN];
9460
Bram Moolenaar758711c2005-02-02 23:11:38 +00009461 rettv->vval.v_string = vim_strsave_escaped(get_tv_string(&argvars[0]),
9462 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009463 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009464}
9465
9466/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009467 * "eval()" function
9468 */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009469 static void
9470f_eval(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009471 typval_T *argvars;
9472 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009473{
9474 char_u *s;
9475
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009476 s = get_tv_string_chk(&argvars[0]);
9477 if (s != NULL)
9478 s = skipwhite(s);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009479
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009480 if (s == NULL || eval1(&s, rettv, TRUE) == FAIL)
9481 {
9482 rettv->v_type = VAR_NUMBER;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009483 rettv->vval.v_number = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009484 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009485 else if (*s != NUL)
9486 EMSG(_(e_trailing));
9487}
9488
9489/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009490 * "eventhandler()" function
9491 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009492 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009493f_eventhandler(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009494 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00009495 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009496{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009497 rettv->vval.v_number = vgetc_busy;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009498}
9499
9500/*
9501 * "executable()" function
9502 */
9503 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009504f_executable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009505 typval_T *argvars;
9506 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009507{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009508 rettv->vval.v_number = mch_can_exe(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009509}
9510
9511/*
9512 * "exists()" function
9513 */
9514 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009515f_exists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009516 typval_T *argvars;
9517 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009518{
9519 char_u *p;
9520 char_u *name;
9521 int n = FALSE;
9522 int len = 0;
9523
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009524 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009525 if (*p == '$') /* environment variable */
9526 {
9527 /* first try "normal" environment variables (fast) */
9528 if (mch_getenv(p + 1) != NULL)
9529 n = TRUE;
9530 else
9531 {
9532 /* try expanding things like $VIM and ${HOME} */
9533 p = expand_env_save(p);
9534 if (p != NULL && *p != '$')
9535 n = TRUE;
9536 vim_free(p);
9537 }
9538 }
9539 else if (*p == '&' || *p == '+') /* option */
Bram Moolenaar79783442006-05-05 21:18:03 +00009540 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009541 n = (get_option_tv(&p, NULL, TRUE) == OK);
Bram Moolenaar79783442006-05-05 21:18:03 +00009542 if (*skipwhite(p) != NUL)
9543 n = FALSE; /* trailing garbage */
9544 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009545 else if (*p == '*') /* internal or user defined function */
9546 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009547 n = function_exists(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009548 }
9549 else if (*p == ':')
9550 {
9551 n = cmd_exists(p + 1);
9552 }
9553 else if (*p == '#')
9554 {
9555#ifdef FEAT_AUTOCMD
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00009556 if (p[1] == '#')
9557 n = autocmd_supported(p + 2);
9558 else
9559 n = au_exists(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009560#endif
9561 }
9562 else /* internal variable */
9563 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009564 char_u *tofree;
9565 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009566
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009567 /* get_name_len() takes care of expanding curly braces */
9568 name = p;
9569 len = get_name_len(&p, &tofree, TRUE, FALSE);
9570 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009571 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009572 if (tofree != NULL)
9573 name = tofree;
9574 n = (get_var_tv(name, len, &tv, FALSE) == OK);
9575 if (n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009576 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009577 /* handle d.key, l[idx], f(expr) */
9578 n = (handle_subscript(&p, &tv, TRUE, FALSE) == OK);
9579 if (n)
9580 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009581 }
9582 }
Bram Moolenaar79783442006-05-05 21:18:03 +00009583 if (*p != NUL)
9584 n = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009585
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009586 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009587 }
9588
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009589 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009590}
9591
9592/*
9593 * "expand()" function
9594 */
9595 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009596f_expand(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009597 typval_T *argvars;
9598 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009599{
9600 char_u *s;
9601 int len;
9602 char_u *errormsg;
9603 int flags = WILD_SILENT|WILD_USE_NL|WILD_LIST_NOTFOUND;
9604 expand_T xpc;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009605 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009606
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009607 rettv->v_type = VAR_STRING;
9608 s = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009609 if (*s == '%' || *s == '#' || *s == '<')
9610 {
9611 ++emsg_off;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009612 rettv->vval.v_string = eval_vars(s, s, &len, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009613 --emsg_off;
9614 }
9615 else
9616 {
9617 /* When the optional second argument is non-zero, don't remove matches
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00009618 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009619 if (argvars[1].v_type != VAR_UNKNOWN
9620 && get_tv_number_chk(&argvars[1], &error))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009621 flags |= WILD_KEEP_ALL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009622 if (!error)
9623 {
9624 ExpandInit(&xpc);
9625 xpc.xp_context = EXPAND_FILES;
9626 rettv->vval.v_string = ExpandOne(&xpc, s, NULL, flags, WILD_ALL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009627 }
9628 else
9629 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009630 }
9631}
9632
9633/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009634 * "extend(list, list [, idx])" function
Bram Moolenaare9a41262005-01-15 22:18:47 +00009635 * "extend(dict, dict [, action])" function
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009636 */
9637 static void
9638f_extend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009639 typval_T *argvars;
9640 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009641{
Bram Moolenaare9a41262005-01-15 22:18:47 +00009642 if (argvars[0].v_type == VAR_LIST && argvars[1].v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009643 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009644 list_T *l1, *l2;
9645 listitem_T *item;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009646 long before;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009647 int error = FALSE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009648
Bram Moolenaare9a41262005-01-15 22:18:47 +00009649 l1 = argvars[0].vval.v_list;
9650 l2 = argvars[1].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009651 if (l1 != NULL && !tv_check_lock(l1->lv_lock, (char_u *)"extend()")
9652 && l2 != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009653 {
9654 if (argvars[2].v_type != VAR_UNKNOWN)
9655 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009656 before = get_tv_number_chk(&argvars[2], &error);
9657 if (error)
9658 return; /* type error; errmsg already given */
9659
Bram Moolenaar758711c2005-02-02 23:11:38 +00009660 if (before == l1->lv_len)
9661 item = NULL;
9662 else
Bram Moolenaare9a41262005-01-15 22:18:47 +00009663 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00009664 item = list_find(l1, before);
9665 if (item == NULL)
9666 {
9667 EMSGN(_(e_listidx), before);
9668 return;
9669 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009670 }
9671 }
9672 else
9673 item = NULL;
9674 list_extend(l1, l2, item);
9675
Bram Moolenaare9a41262005-01-15 22:18:47 +00009676 copy_tv(&argvars[0], rettv);
9677 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009678 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009679 else if (argvars[0].v_type == VAR_DICT && argvars[1].v_type == VAR_DICT)
9680 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009681 dict_T *d1, *d2;
9682 dictitem_T *di1;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009683 char_u *action;
9684 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +00009685 hashitem_T *hi2;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009686 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009687
9688 d1 = argvars[0].vval.v_dict;
9689 d2 = argvars[1].vval.v_dict;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009690 if (d1 != NULL && !tv_check_lock(d1->dv_lock, (char_u *)"extend()")
9691 && d2 != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009692 {
9693 /* Check the third argument. */
9694 if (argvars[2].v_type != VAR_UNKNOWN)
9695 {
9696 static char *(av[]) = {"keep", "force", "error"};
9697
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009698 action = get_tv_string_chk(&argvars[2]);
9699 if (action == NULL)
9700 return; /* type error; errmsg already given */
Bram Moolenaare9a41262005-01-15 22:18:47 +00009701 for (i = 0; i < 3; ++i)
9702 if (STRCMP(action, av[i]) == 0)
9703 break;
9704 if (i == 3)
9705 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009706 EMSG2(_(e_invarg2), action);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009707 return;
9708 }
9709 }
9710 else
9711 action = (char_u *)"force";
9712
9713 /* Go over all entries in the second dict and add them to the
9714 * first dict. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009715 todo = (int)d2->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00009716 for (hi2 = d2->dv_hashtab.ht_array; todo > 0; ++hi2)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009717 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009718 if (!HASHITEM_EMPTY(hi2))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009719 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009720 --todo;
9721 di1 = dict_find(d1, hi2->hi_key, -1);
9722 if (di1 == NULL)
9723 {
9724 di1 = dictitem_copy(HI2DI(hi2));
9725 if (di1 != NULL && dict_add(d1, di1) == FAIL)
9726 dictitem_free(di1);
9727 }
9728 else if (*action == 'e')
9729 {
9730 EMSG2(_("E737: Key already exists: %s"), hi2->hi_key);
9731 break;
9732 }
9733 else if (*action == 'f')
9734 {
9735 clear_tv(&di1->di_tv);
9736 copy_tv(&HI2DI(hi2)->di_tv, &di1->di_tv);
9737 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009738 }
9739 }
9740
Bram Moolenaare9a41262005-01-15 22:18:47 +00009741 copy_tv(&argvars[0], rettv);
9742 }
9743 }
9744 else
9745 EMSG2(_(e_listdictarg), "extend()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009746}
9747
9748/*
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009749 * "feedkeys()" function
9750 */
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009751 static void
9752f_feedkeys(argvars, rettv)
9753 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009754 typval_T *rettv UNUSED;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009755{
9756 int remap = TRUE;
9757 char_u *keys, *flags;
9758 char_u nbuf[NUMBUFLEN];
9759 int typed = FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009760 char_u *keys_esc;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009761
Bram Moolenaar3d43a662007-04-27 20:15:55 +00009762 /* This is not allowed in the sandbox. If the commands would still be
9763 * executed in the sandbox it would be OK, but it probably happens later,
9764 * when "sandbox" is no longer set. */
9765 if (check_secure())
9766 return;
9767
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009768 keys = get_tv_string(&argvars[0]);
9769 if (*keys != NUL)
9770 {
9771 if (argvars[1].v_type != VAR_UNKNOWN)
9772 {
9773 flags = get_tv_string_buf(&argvars[1], nbuf);
9774 for ( ; *flags != NUL; ++flags)
9775 {
9776 switch (*flags)
9777 {
9778 case 'n': remap = FALSE; break;
9779 case 'm': remap = TRUE; break;
9780 case 't': typed = TRUE; break;
9781 }
9782 }
9783 }
9784
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009785 /* Need to escape K_SPECIAL and CSI before putting the string in the
9786 * typeahead buffer. */
9787 keys_esc = vim_strsave_escape_csi(keys);
9788 if (keys_esc != NULL)
9789 {
9790 ins_typebuf(keys_esc, (remap ? REMAP_YES : REMAP_NONE),
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009791 typebuf.tb_len, !typed, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009792 vim_free(keys_esc);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00009793 if (vgetc_busy)
9794 typebuf_was_filled = TRUE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009795 }
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009796 }
9797}
9798
9799/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009800 * "filereadable()" function
9801 */
9802 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009803f_filereadable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009804 typval_T *argvars;
9805 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009806{
Bram Moolenaarc236c162008-07-13 17:41:49 +00009807 int fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009808 char_u *p;
9809 int n;
9810
Bram Moolenaarc236c162008-07-13 17:41:49 +00009811#ifndef O_NONBLOCK
9812# define O_NONBLOCK 0
9813#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009814 p = get_tv_string(&argvars[0]);
Bram Moolenaarc236c162008-07-13 17:41:49 +00009815 if (*p && !mch_isdir(p) && (fd = mch_open((char *)p,
9816 O_RDONLY | O_NONBLOCK, 0)) >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009817 {
9818 n = TRUE;
Bram Moolenaarc236c162008-07-13 17:41:49 +00009819 close(fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009820 }
9821 else
9822 n = FALSE;
9823
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009824 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009825}
9826
9827/*
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00009828 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
Bram Moolenaar071d4272004-06-13 20:20:40 +00009829 * rights to write into.
9830 */
9831 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009832f_filewritable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009833 typval_T *argvars;
9834 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009835{
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00009836 rettv->vval.v_number = filewritable(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009837}
9838
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009839static void findfilendir __ARGS((typval_T *argvars, typval_T *rettv, int find_what));
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009840
9841 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009842findfilendir(argvars, rettv, find_what)
Bram Moolenaar33570922005-01-25 22:26:29 +00009843 typval_T *argvars;
9844 typval_T *rettv;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009845 int find_what;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009846{
9847#ifdef FEAT_SEARCHPATH
9848 char_u *fname;
9849 char_u *fresult = NULL;
9850 char_u *path = *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path;
9851 char_u *p;
9852 char_u pathbuf[NUMBUFLEN];
9853 int count = 1;
9854 int first = TRUE;
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009855 int error = FALSE;
9856#endif
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009857
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009858 rettv->vval.v_string = NULL;
9859 rettv->v_type = VAR_STRING;
9860
9861#ifdef FEAT_SEARCHPATH
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009862 fname = get_tv_string(&argvars[0]);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009863
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009864 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009865 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009866 p = get_tv_string_buf_chk(&argvars[1], pathbuf);
9867 if (p == NULL)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009868 error = TRUE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009869 else
9870 {
9871 if (*p != NUL)
9872 path = p;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009873
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009874 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009875 count = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009876 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009877 }
9878
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009879 if (count < 0 && rettv_list_alloc(rettv) == FAIL)
9880 error = TRUE;
9881
9882 if (*fname != NUL && !error)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009883 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009884 do
9885 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009886 if (rettv->v_type == VAR_STRING)
9887 vim_free(fresult);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009888 fresult = find_file_in_path_option(first ? fname : NULL,
9889 first ? (int)STRLEN(fname) : 0,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009890 0, first, path,
9891 find_what,
9892 curbuf->b_ffname,
9893 find_what == FINDFILE_DIR
9894 ? (char_u *)"" : curbuf->b_p_sua);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009895 first = FALSE;
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009896
9897 if (fresult != NULL && rettv->v_type == VAR_LIST)
9898 list_append_string(rettv->vval.v_list, fresult, -1);
9899
9900 } while ((rettv->v_type == VAR_LIST || --count > 0) && fresult != NULL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009901 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009902
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009903 if (rettv->v_type == VAR_STRING)
9904 rettv->vval.v_string = fresult;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009905#endif
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009906}
9907
Bram Moolenaar33570922005-01-25 22:26:29 +00009908static void filter_map __ARGS((typval_T *argvars, typval_T *rettv, int map));
9909static int filter_map_one __ARGS((typval_T *tv, char_u *expr, int map, int *remp));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009910
9911/*
9912 * Implementation of map() and filter().
9913 */
9914 static void
9915filter_map(argvars, rettv, map)
Bram Moolenaar33570922005-01-25 22:26:29 +00009916 typval_T *argvars;
9917 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009918 int map;
9919{
9920 char_u buf[NUMBUFLEN];
Bram Moolenaare9a41262005-01-15 22:18:47 +00009921 char_u *expr;
Bram Moolenaar33570922005-01-25 22:26:29 +00009922 listitem_T *li, *nli;
9923 list_T *l = NULL;
9924 dictitem_T *di;
9925 hashtab_T *ht;
9926 hashitem_T *hi;
9927 dict_T *d = NULL;
9928 typval_T save_val;
9929 typval_T save_key;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009930 int rem;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009931 int todo;
Bram Moolenaar89d40322006-08-29 15:30:07 +00009932 char_u *ermsg = map ? (char_u *)"map()" : (char_u *)"filter()";
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009933 int save_did_emsg;
Bram Moolenaar627b1d32009-11-17 11:20:35 +00009934 int index = 0;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009935
Bram Moolenaare9a41262005-01-15 22:18:47 +00009936 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009937 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009938 if ((l = argvars[0].vval.v_list) == NULL
Bram Moolenaar89d40322006-08-29 15:30:07 +00009939 || (map && tv_check_lock(l->lv_lock, ermsg)))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009940 return;
9941 }
9942 else if (argvars[0].v_type == VAR_DICT)
9943 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009944 if ((d = argvars[0].vval.v_dict) == NULL
Bram Moolenaar89d40322006-08-29 15:30:07 +00009945 || (map && tv_check_lock(d->dv_lock, ermsg)))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009946 return;
9947 }
9948 else
9949 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00009950 EMSG2(_(e_listdictarg), ermsg);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009951 return;
9952 }
9953
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009954 expr = get_tv_string_buf_chk(&argvars[1], buf);
9955 /* On type errors, the preceding call has already displayed an error
9956 * message. Avoid a misleading error message for an empty string that
9957 * was not passed as argument. */
9958 if (expr != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009959 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009960 prepare_vimvar(VV_VAL, &save_val);
9961 expr = skipwhite(expr);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009962
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009963 /* We reset "did_emsg" to be able to detect whether an error
9964 * occurred during evaluation of the expression. */
9965 save_did_emsg = did_emsg;
9966 did_emsg = FALSE;
Bram Moolenaar280f1262006-01-30 00:14:18 +00009967
Bram Moolenaar627b1d32009-11-17 11:20:35 +00009968 prepare_vimvar(VV_KEY, &save_key);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009969 if (argvars[0].v_type == VAR_DICT)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009970 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009971 vimvars[VV_KEY].vv_type = VAR_STRING;
9972
9973 ht = &d->dv_hashtab;
9974 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009975 todo = (int)ht->ht_used;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009976 for (hi = ht->ht_array; todo > 0; ++hi)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009977 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009978 if (!HASHITEM_EMPTY(hi))
9979 {
9980 --todo;
9981 di = HI2DI(hi);
Bram Moolenaar89d40322006-08-29 15:30:07 +00009982 if (tv_check_lock(di->di_tv.v_lock, ermsg))
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009983 break;
9984 vimvars[VV_KEY].vv_str = vim_strsave(di->di_key);
Bram Moolenaar280f1262006-01-30 00:14:18 +00009985 if (filter_map_one(&di->di_tv, expr, map, &rem) == FAIL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009986 || did_emsg)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009987 break;
9988 if (!map && rem)
9989 dictitem_remove(d, di);
9990 clear_tv(&vimvars[VV_KEY].vv_tv);
9991 }
9992 }
9993 hash_unlock(ht);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009994 }
9995 else
9996 {
Bram Moolenaar627b1d32009-11-17 11:20:35 +00009997 vimvars[VV_KEY].vv_type = VAR_NUMBER;
9998
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009999 for (li = l->lv_first; li != NULL; li = nli)
10000 {
Bram Moolenaar89d40322006-08-29 15:30:07 +000010001 if (tv_check_lock(li->li_tv.v_lock, ermsg))
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000010002 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010003 nli = li->li_next;
Bram Moolenaar627b1d32009-11-17 11:20:35 +000010004 vimvars[VV_KEY].vv_nr = index;
Bram Moolenaar280f1262006-01-30 00:14:18 +000010005 if (filter_map_one(&li->li_tv, expr, map, &rem) == FAIL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000010006 || did_emsg)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010007 break;
10008 if (!map && rem)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010009 listitem_remove(l, li);
Bram Moolenaar627b1d32009-11-17 11:20:35 +000010010 ++index;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010011 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010012 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010013
Bram Moolenaar627b1d32009-11-17 11:20:35 +000010014 restore_vimvar(VV_KEY, &save_key);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010015 restore_vimvar(VV_VAL, &save_val);
Bram Moolenaar280f1262006-01-30 00:14:18 +000010016
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000010017 did_emsg |= save_did_emsg;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010018 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000010019
10020 copy_tv(&argvars[0], rettv);
10021}
10022
10023 static int
10024filter_map_one(tv, expr, map, remp)
Bram Moolenaar33570922005-01-25 22:26:29 +000010025 typval_T *tv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010026 char_u *expr;
10027 int map;
10028 int *remp;
10029{
Bram Moolenaar33570922005-01-25 22:26:29 +000010030 typval_T rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010031 char_u *s;
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010032 int retval = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010033
Bram Moolenaar33570922005-01-25 22:26:29 +000010034 copy_tv(tv, &vimvars[VV_VAL].vv_tv);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010035 s = expr;
10036 if (eval1(&s, &rettv, TRUE) == FAIL)
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010037 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010038 if (*s != NUL) /* check for trailing chars after expr */
10039 {
10040 EMSG2(_(e_invexpr2), s);
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010041 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010042 }
10043 if (map)
10044 {
10045 /* map(): replace the list item value */
10046 clear_tv(tv);
Bram Moolenaar4463f292005-09-25 22:20:24 +000010047 rettv.v_lock = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010048 *tv = rettv;
10049 }
10050 else
10051 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010052 int error = FALSE;
10053
Bram Moolenaare9a41262005-01-15 22:18:47 +000010054 /* filter(): when expr is zero remove the item */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010055 *remp = (get_tv_number_chk(&rettv, &error) == 0);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010056 clear_tv(&rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010057 /* On type error, nothing has been removed; return FAIL to stop the
10058 * loop. The error message was given by get_tv_number_chk(). */
10059 if (error)
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010060 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010061 }
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010062 retval = OK;
10063theend:
Bram Moolenaar33570922005-01-25 22:26:29 +000010064 clear_tv(&vimvars[VV_VAL].vv_tv);
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010065 return retval;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010066}
10067
10068/*
10069 * "filter()" function
10070 */
10071 static void
10072f_filter(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010073 typval_T *argvars;
10074 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010075{
10076 filter_map(argvars, rettv, FALSE);
10077}
10078
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000010079/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010080 * "finddir({fname}[, {path}[, {count}]])" function
10081 */
10082 static void
10083f_finddir(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010084 typval_T *argvars;
10085 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010086{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +000010087 findfilendir(argvars, rettv, FINDFILE_DIR);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010088}
10089
10090/*
10091 * "findfile({fname}[, {path}[, {count}]])" function
10092 */
10093 static void
10094f_findfile(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010095 typval_T *argvars;
10096 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010097{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +000010098 findfilendir(argvars, rettv, FINDFILE_FILE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010099}
10100
Bram Moolenaar8c8de832008-06-24 22:58:06 +000010101#ifdef FEAT_FLOAT
10102/*
10103 * "float2nr({float})" function
10104 */
10105 static void
10106f_float2nr(argvars, rettv)
10107 typval_T *argvars;
10108 typval_T *rettv;
10109{
10110 float_T f;
10111
10112 if (get_float_arg(argvars, &f) == OK)
10113 {
10114 if (f < -0x7fffffff)
10115 rettv->vval.v_number = -0x7fffffff;
10116 else if (f > 0x7fffffff)
10117 rettv->vval.v_number = 0x7fffffff;
10118 else
10119 rettv->vval.v_number = (varnumber_T)f;
10120 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000010121}
10122
10123/*
10124 * "floor({float})" function
10125 */
10126 static void
10127f_floor(argvars, rettv)
10128 typval_T *argvars;
10129 typval_T *rettv;
10130{
10131 float_T f;
10132
10133 rettv->v_type = VAR_FLOAT;
10134 if (get_float_arg(argvars, &f) == OK)
10135 rettv->vval.v_float = floor(f);
10136 else
10137 rettv->vval.v_float = 0.0;
10138}
10139#endif
10140
Bram Moolenaar0d660222005-01-07 21:51:51 +000010141/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +000010142 * "fnameescape({string})" function
10143 */
10144 static void
10145f_fnameescape(argvars, rettv)
10146 typval_T *argvars;
10147 typval_T *rettv;
10148{
10149 rettv->vval.v_string = vim_strsave_fnameescape(
10150 get_tv_string(&argvars[0]), FALSE);
10151 rettv->v_type = VAR_STRING;
10152}
10153
10154/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010155 * "fnamemodify({fname}, {mods})" function
10156 */
10157 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010158f_fnamemodify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010159 typval_T *argvars;
10160 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010161{
10162 char_u *fname;
10163 char_u *mods;
10164 int usedlen = 0;
10165 int len;
10166 char_u *fbuf = NULL;
10167 char_u buf[NUMBUFLEN];
10168
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010169 fname = get_tv_string_chk(&argvars[0]);
10170 mods = get_tv_string_buf_chk(&argvars[1], buf);
10171 if (fname == NULL || mods == NULL)
10172 fname = NULL;
10173 else
10174 {
10175 len = (int)STRLEN(fname);
10176 (void)modify_fname(mods, &usedlen, &fname, &fbuf, &len);
10177 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010178
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010179 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010180 if (fname == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010181 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010182 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010183 rettv->vval.v_string = vim_strnsave(fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010184 vim_free(fbuf);
10185}
10186
Bram Moolenaar33570922005-01-25 22:26:29 +000010187static void foldclosed_both __ARGS((typval_T *argvars, typval_T *rettv, int end));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010188
10189/*
10190 * "foldclosed()" function
10191 */
10192 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010193foldclosed_both(argvars, rettv, end)
Bram Moolenaar33570922005-01-25 22:26:29 +000010194 typval_T *argvars;
10195 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010196 int end;
10197{
10198#ifdef FEAT_FOLDING
10199 linenr_T lnum;
10200 linenr_T first, last;
10201
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010202 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010203 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
10204 {
10205 if (hasFoldingWin(curwin, lnum, &first, &last, FALSE, NULL))
10206 {
10207 if (end)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010208 rettv->vval.v_number = (varnumber_T)last;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010209 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010210 rettv->vval.v_number = (varnumber_T)first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010211 return;
10212 }
10213 }
10214#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010215 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010216}
10217
10218/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010219 * "foldclosed()" function
10220 */
10221 static void
10222f_foldclosed(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010223 typval_T *argvars;
10224 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010225{
10226 foldclosed_both(argvars, rettv, FALSE);
10227}
10228
10229/*
10230 * "foldclosedend()" function
10231 */
10232 static void
10233f_foldclosedend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010234 typval_T *argvars;
10235 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010236{
10237 foldclosed_both(argvars, rettv, TRUE);
10238}
10239
10240/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010241 * "foldlevel()" function
10242 */
10243 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010244f_foldlevel(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010245 typval_T *argvars;
10246 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010247{
10248#ifdef FEAT_FOLDING
10249 linenr_T lnum;
10250
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010251 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010252 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010253 rettv->vval.v_number = foldLevel(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010254#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010255}
10256
10257/*
10258 * "foldtext()" function
10259 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010260 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010261f_foldtext(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010262 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010263 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010264{
10265#ifdef FEAT_FOLDING
10266 linenr_T lnum;
10267 char_u *s;
10268 char_u *r;
10269 int len;
10270 char *txt;
10271#endif
10272
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010273 rettv->v_type = VAR_STRING;
10274 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010275#ifdef FEAT_FOLDING
Bram Moolenaare9a41262005-01-15 22:18:47 +000010276 if ((linenr_T)vimvars[VV_FOLDSTART].vv_nr > 0
10277 && (linenr_T)vimvars[VV_FOLDEND].vv_nr
10278 <= curbuf->b_ml.ml_line_count
10279 && vimvars[VV_FOLDDASHES].vv_str != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010280 {
10281 /* Find first non-empty line in the fold. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000010282 lnum = (linenr_T)vimvars[VV_FOLDSTART].vv_nr;
10283 while (lnum < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010284 {
10285 if (!linewhite(lnum))
10286 break;
10287 ++lnum;
10288 }
10289
10290 /* Find interesting text in this line. */
10291 s = skipwhite(ml_get(lnum));
10292 /* skip C comment-start */
10293 if (s[0] == '/' && (s[1] == '*' || s[1] == '/'))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010294 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000010295 s = skipwhite(s + 2);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010296 if (*skipwhite(s) == NUL
Bram Moolenaare9a41262005-01-15 22:18:47 +000010297 && lnum + 1 < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010298 {
10299 s = skipwhite(ml_get(lnum + 1));
10300 if (*s == '*')
10301 s = skipwhite(s + 1);
10302 }
10303 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010304 txt = _("+-%s%3ld lines: ");
10305 r = alloc((unsigned)(STRLEN(txt)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010306 + STRLEN(vimvars[VV_FOLDDASHES].vv_str) /* for %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010307 + 20 /* for %3ld */
10308 + STRLEN(s))); /* concatenated */
10309 if (r != NULL)
10310 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000010311 sprintf((char *)r, txt, vimvars[VV_FOLDDASHES].vv_str,
10312 (long)((linenr_T)vimvars[VV_FOLDEND].vv_nr
10313 - (linenr_T)vimvars[VV_FOLDSTART].vv_nr + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010314 len = (int)STRLEN(r);
10315 STRCAT(r, s);
10316 /* remove 'foldmarker' and 'commentstring' */
10317 foldtext_cleanup(r + len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010318 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010319 }
10320 }
10321#endif
10322}
10323
10324/*
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010325 * "foldtextresult(lnum)" function
10326 */
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010327 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010328f_foldtextresult(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010329 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010330 typval_T *rettv;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010331{
10332#ifdef FEAT_FOLDING
10333 linenr_T lnum;
10334 char_u *text;
10335 char_u buf[51];
10336 foldinfo_T foldinfo;
10337 int fold_count;
10338#endif
10339
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010340 rettv->v_type = VAR_STRING;
10341 rettv->vval.v_string = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010342#ifdef FEAT_FOLDING
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010343 lnum = get_tv_lnum(argvars);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010344 /* treat illegal types and illegal string values for {lnum} the same */
10345 if (lnum < 0)
10346 lnum = 0;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010347 fold_count = foldedCount(curwin, lnum, &foldinfo);
10348 if (fold_count > 0)
10349 {
10350 text = get_foldtext(curwin, lnum, lnum + fold_count - 1,
10351 &foldinfo, buf);
10352 if (text == buf)
10353 text = vim_strsave(text);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010354 rettv->vval.v_string = text;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010355 }
10356#endif
10357}
10358
10359/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010360 * "foreground()" function
10361 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010362 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010363f_foreground(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010364 typval_T *argvars UNUSED;
10365 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010366{
Bram Moolenaar071d4272004-06-13 20:20:40 +000010367#ifdef FEAT_GUI
10368 if (gui.in_use)
10369 gui_mch_set_foreground();
10370#else
10371# ifdef WIN32
10372 win32_set_foreground();
10373# endif
10374#endif
10375}
10376
10377/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010378 * "function()" function
10379 */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010380 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010381f_function(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010382 typval_T *argvars;
10383 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010384{
10385 char_u *s;
10386
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010387 s = get_tv_string(&argvars[0]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010388 if (s == NULL || *s == NUL || VIM_ISDIGIT(*s))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010389 EMSG2(_(e_invarg2), s);
Bram Moolenaar3d0089f2008-12-03 08:52:26 +000010390 /* Don't check an autoload name for existence here. */
10391 else if (vim_strchr(s, AUTOLOAD_CHAR) == NULL && !function_exists(s))
Bram Moolenaare49b69a2005-01-08 16:11:57 +000010392 EMSG2(_("E700: Unknown function: %s"), s);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010393 else
10394 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010395 rettv->vval.v_string = vim_strsave(s);
10396 rettv->v_type = VAR_FUNC;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010397 }
10398}
10399
10400/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010401 * "garbagecollect()" function
10402 */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010403 static void
10404f_garbagecollect(argvars, rettv)
10405 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010406 typval_T *rettv UNUSED;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010407{
Bram Moolenaar9fecb462006-09-05 10:59:47 +000010408 /* This is postponed until we are back at the toplevel, because we may be
10409 * using Lists and Dicts internally. E.g.: ":echo [garbagecollect()]". */
10410 want_garbage_collect = TRUE;
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +000010411
10412 if (argvars[0].v_type != VAR_UNKNOWN && get_tv_number(&argvars[0]) == 1)
10413 garbage_collect_at_exit = TRUE;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010414}
10415
10416/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010417 * "get()" function
10418 */
10419 static void
10420f_get(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010421 typval_T *argvars;
10422 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010423{
Bram Moolenaar33570922005-01-25 22:26:29 +000010424 listitem_T *li;
10425 list_T *l;
10426 dictitem_T *di;
10427 dict_T *d;
10428 typval_T *tv = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010429
Bram Moolenaare9a41262005-01-15 22:18:47 +000010430 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000010431 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000010432 if ((l = argvars[0].vval.v_list) != NULL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000010433 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010434 int error = FALSE;
10435
10436 li = list_find(l, get_tv_number_chk(&argvars[1], &error));
10437 if (!error && li != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010438 tv = &li->li_tv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010439 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000010440 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000010441 else if (argvars[0].v_type == VAR_DICT)
10442 {
10443 if ((d = argvars[0].vval.v_dict) != NULL)
10444 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010445 di = dict_find(d, get_tv_string(&argvars[1]), -1);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010446 if (di != NULL)
10447 tv = &di->di_tv;
10448 }
10449 }
10450 else
10451 EMSG2(_(e_listdictarg), "get()");
10452
10453 if (tv == NULL)
10454 {
Bram Moolenaar798b30b2009-04-22 10:56:16 +000010455 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010456 copy_tv(&argvars[2], rettv);
10457 }
10458 else
10459 copy_tv(tv, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010460}
10461
Bram Moolenaar342337a2005-07-21 21:11:17 +000010462static 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 +000010463
10464/*
10465 * Get line or list of lines from buffer "buf" into "rettv".
Bram Moolenaar342337a2005-07-21 21:11:17 +000010466 * Return a range (from start to end) of lines in rettv from the specified
10467 * buffer.
10468 * If 'retlist' is TRUE, then the lines are returned as a Vim List.
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010469 */
10470 static void
Bram Moolenaar342337a2005-07-21 21:11:17 +000010471get_buffer_lines(buf, start, end, retlist, rettv)
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010472 buf_T *buf;
10473 linenr_T start;
10474 linenr_T end;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010475 int retlist;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010476 typval_T *rettv;
10477{
10478 char_u *p;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010479
Bram Moolenaar798b30b2009-04-22 10:56:16 +000010480 if (retlist && rettv_list_alloc(rettv) == FAIL)
10481 return;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010482
10483 if (buf == NULL || buf->b_ml.ml_mfp == NULL || start < 0)
10484 return;
10485
10486 if (!retlist)
10487 {
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010488 if (start >= 1 && start <= buf->b_ml.ml_line_count)
10489 p = ml_get_buf(buf, start, FALSE);
10490 else
10491 p = (char_u *)"";
10492
10493 rettv->v_type = VAR_STRING;
10494 rettv->vval.v_string = vim_strsave(p);
10495 }
10496 else
10497 {
10498 if (end < start)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010499 return;
10500
10501 if (start < 1)
10502 start = 1;
10503 if (end > buf->b_ml.ml_line_count)
10504 end = buf->b_ml.ml_line_count;
10505 while (start <= end)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000010506 if (list_append_string(rettv->vval.v_list,
10507 ml_get_buf(buf, start++, FALSE), -1) == FAIL)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010508 break;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010509 }
10510}
10511
10512/*
10513 * "getbufline()" function
10514 */
10515 static void
10516f_getbufline(argvars, rettv)
10517 typval_T *argvars;
10518 typval_T *rettv;
10519{
10520 linenr_T lnum;
10521 linenr_T end;
10522 buf_T *buf;
10523
10524 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10525 ++emsg_off;
10526 buf = get_buf_tv(&argvars[0]);
10527 --emsg_off;
10528
Bram Moolenaar661b1822005-07-28 22:36:45 +000010529 lnum = get_tv_lnum_buf(&argvars[1], buf);
Bram Moolenaar342337a2005-07-21 21:11:17 +000010530 if (argvars[2].v_type == VAR_UNKNOWN)
10531 end = lnum;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010532 else
Bram Moolenaar661b1822005-07-28 22:36:45 +000010533 end = get_tv_lnum_buf(&argvars[2], buf);
10534
Bram Moolenaar342337a2005-07-21 21:11:17 +000010535 get_buffer_lines(buf, lnum, end, TRUE, rettv);
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010536}
10537
Bram Moolenaar0d660222005-01-07 21:51:51 +000010538/*
10539 * "getbufvar()" function
10540 */
10541 static void
10542f_getbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010543 typval_T *argvars;
10544 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010545{
10546 buf_T *buf;
10547 buf_T *save_curbuf;
10548 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000010549 dictitem_T *v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010550
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010551 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10552 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010553 ++emsg_off;
10554 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010555
10556 rettv->v_type = VAR_STRING;
10557 rettv->vval.v_string = NULL;
10558
10559 if (buf != NULL && varname != NULL)
10560 {
Bram Moolenaar632deed2008-06-27 18:26:11 +000010561 /* set curbuf to be our buf, temporarily */
10562 save_curbuf = curbuf;
10563 curbuf = buf;
10564
Bram Moolenaar0d660222005-01-07 21:51:51 +000010565 if (*varname == '&') /* buffer-local-option */
Bram Moolenaar0d660222005-01-07 21:51:51 +000010566 get_option_tv(&varname, rettv, TRUE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010567 else
10568 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010569 if (*varname == NUL)
10570 /* let getbufvar({nr}, "") return the "b:" dictionary. The
10571 * scope prefix before the NUL byte is required by
10572 * find_var_in_ht(). */
10573 varname = (char_u *)"b:" + 2;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010574 /* look up the variable */
Bram Moolenaar632deed2008-06-27 18:26:11 +000010575 v = find_var_in_ht(&curbuf->b_vars.dv_hashtab, varname, FALSE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010576 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000010577 copy_tv(&v->di_tv, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010578 }
Bram Moolenaar632deed2008-06-27 18:26:11 +000010579
10580 /* restore previous notion of curbuf */
10581 curbuf = save_curbuf;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010582 }
10583
10584 --emsg_off;
10585}
10586
10587/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010588 * "getchar()" function
10589 */
10590 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010591f_getchar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010592 typval_T *argvars;
10593 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010594{
10595 varnumber_T n;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010596 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010597
Bram Moolenaar4015b2c2006-06-22 19:01:34 +000010598 /* Position the cursor. Needed after a message that ends in a space. */
10599 windgoto(msg_row, msg_col);
10600
Bram Moolenaar071d4272004-06-13 20:20:40 +000010601 ++no_mapping;
10602 ++allow_keys;
Bram Moolenaar9c8791f2007-09-05 19:47:23 +000010603 for (;;)
10604 {
10605 if (argvars[0].v_type == VAR_UNKNOWN)
10606 /* getchar(): blocking wait. */
10607 n = safe_vgetc();
10608 else if (get_tv_number_chk(&argvars[0], &error) == 1)
10609 /* getchar(1): only check if char avail */
10610 n = vpeekc();
10611 else if (error || vpeekc() == NUL)
10612 /* illegal argument or getchar(0) and no char avail: return zero */
10613 n = 0;
10614 else
10615 /* getchar(0) and char avail: return char */
10616 n = safe_vgetc();
10617 if (n == K_IGNORE)
10618 continue;
10619 break;
10620 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010621 --no_mapping;
10622 --allow_keys;
10623
Bram Moolenaar219b8702006-11-01 14:32:36 +000010624 vimvars[VV_MOUSE_WIN].vv_nr = 0;
10625 vimvars[VV_MOUSE_LNUM].vv_nr = 0;
10626 vimvars[VV_MOUSE_COL].vv_nr = 0;
10627
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010628 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010629 if (IS_SPECIAL(n) || mod_mask != 0)
10630 {
10631 char_u temp[10]; /* modifier: 3, mbyte-char: 6, NUL: 1 */
10632 int i = 0;
10633
10634 /* Turn a special key into three bytes, plus modifier. */
10635 if (mod_mask != 0)
10636 {
10637 temp[i++] = K_SPECIAL;
10638 temp[i++] = KS_MODIFIER;
10639 temp[i++] = mod_mask;
10640 }
10641 if (IS_SPECIAL(n))
10642 {
10643 temp[i++] = K_SPECIAL;
10644 temp[i++] = K_SECOND(n);
10645 temp[i++] = K_THIRD(n);
10646 }
10647#ifdef FEAT_MBYTE
10648 else if (has_mbyte)
10649 i += (*mb_char2bytes)(n, temp + i);
10650#endif
10651 else
10652 temp[i++] = n;
10653 temp[i++] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010654 rettv->v_type = VAR_STRING;
10655 rettv->vval.v_string = vim_strsave(temp);
Bram Moolenaar219b8702006-11-01 14:32:36 +000010656
10657#ifdef FEAT_MOUSE
10658 if (n == K_LEFTMOUSE
10659 || n == K_LEFTMOUSE_NM
10660 || n == K_LEFTDRAG
10661 || n == K_LEFTRELEASE
10662 || n == K_LEFTRELEASE_NM
10663 || n == K_MIDDLEMOUSE
10664 || n == K_MIDDLEDRAG
10665 || n == K_MIDDLERELEASE
10666 || n == K_RIGHTMOUSE
10667 || n == K_RIGHTDRAG
10668 || n == K_RIGHTRELEASE
10669 || n == K_X1MOUSE
10670 || n == K_X1DRAG
10671 || n == K_X1RELEASE
10672 || n == K_X2MOUSE
10673 || n == K_X2DRAG
10674 || n == K_X2RELEASE
10675 || n == K_MOUSEDOWN
10676 || n == K_MOUSEUP)
10677 {
10678 int row = mouse_row;
10679 int col = mouse_col;
10680 win_T *win;
10681 linenr_T lnum;
10682# ifdef FEAT_WINDOWS
10683 win_T *wp;
10684# endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000010685 int winnr = 1;
Bram Moolenaar219b8702006-11-01 14:32:36 +000010686
10687 if (row >= 0 && col >= 0)
10688 {
10689 /* Find the window at the mouse coordinates and compute the
10690 * text position. */
10691 win = mouse_find_win(&row, &col);
10692 (void)mouse_comp_pos(win, &row, &col, &lnum);
10693# ifdef FEAT_WINDOWS
10694 for (wp = firstwin; wp != win; wp = wp->w_next)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000010695 ++winnr;
Bram Moolenaar219b8702006-11-01 14:32:36 +000010696# endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000010697 vimvars[VV_MOUSE_WIN].vv_nr = winnr;
Bram Moolenaar219b8702006-11-01 14:32:36 +000010698 vimvars[VV_MOUSE_LNUM].vv_nr = lnum;
10699 vimvars[VV_MOUSE_COL].vv_nr = col + 1;
10700 }
10701 }
10702#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010703 }
10704}
10705
10706/*
10707 * "getcharmod()" function
10708 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010709 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010710f_getcharmod(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010711 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010712 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010713{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010714 rettv->vval.v_number = mod_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010715}
10716
10717/*
10718 * "getcmdline()" function
10719 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010720 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010721f_getcmdline(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010722 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010723 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010724{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010725 rettv->v_type = VAR_STRING;
10726 rettv->vval.v_string = get_cmdline_str();
Bram Moolenaar071d4272004-06-13 20:20:40 +000010727}
10728
10729/*
10730 * "getcmdpos()" function
10731 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010732 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010733f_getcmdpos(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010734 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010735 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010736{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010737 rettv->vval.v_number = get_cmdline_pos() + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010738}
10739
10740/*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010741 * "getcmdtype()" function
10742 */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010743 static void
10744f_getcmdtype(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010745 typval_T *argvars UNUSED;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010746 typval_T *rettv;
10747{
10748 rettv->v_type = VAR_STRING;
10749 rettv->vval.v_string = alloc(2);
10750 if (rettv->vval.v_string != NULL)
10751 {
10752 rettv->vval.v_string[0] = get_cmdline_type();
10753 rettv->vval.v_string[1] = NUL;
10754 }
10755}
10756
10757/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010758 * "getcwd()" function
10759 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010760 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010761f_getcwd(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010762 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010763 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010764{
10765 char_u cwd[MAXPATHL];
10766
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010767 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010768 if (mch_dirname(cwd, MAXPATHL) == FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010769 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010770 else
10771 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010772 rettv->vval.v_string = vim_strsave(cwd);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010773#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar342337a2005-07-21 21:11:17 +000010774 if (rettv->vval.v_string != NULL)
10775 slash_adjust(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010776#endif
10777 }
10778}
10779
10780/*
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010781 * "getfontname()" function
10782 */
10783 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010784f_getfontname(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010785 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010786 typval_T *rettv;
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010787{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010788 rettv->v_type = VAR_STRING;
10789 rettv->vval.v_string = NULL;
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010790#ifdef FEAT_GUI
10791 if (gui.in_use)
10792 {
10793 GuiFont font;
10794 char_u *name = NULL;
10795
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010796 if (argvars[0].v_type == VAR_UNKNOWN)
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010797 {
10798 /* Get the "Normal" font. Either the name saved by
10799 * hl_set_font_name() or from the font ID. */
10800 font = gui.norm_font;
10801 name = hl_get_font_name();
10802 }
10803 else
10804 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010805 name = get_tv_string(&argvars[0]);
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010806 if (STRCMP(name, "*") == 0) /* don't use font dialog */
10807 return;
10808 font = gui_mch_get_font(name, FALSE);
10809 if (font == NOFONT)
10810 return; /* Invalid font name, return empty string. */
10811 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010812 rettv->vval.v_string = gui_mch_get_fontname(font, name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010813 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010814 gui_mch_free_font(font);
10815 }
10816#endif
10817}
10818
10819/*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010820 * "getfperm({fname})" function
10821 */
10822 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010823f_getfperm(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010824 typval_T *argvars;
10825 typval_T *rettv;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010826{
10827 char_u *fname;
10828 struct stat st;
10829 char_u *perm = NULL;
10830 char_u flags[] = "rwx";
10831 int i;
10832
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010833 fname = get_tv_string(&argvars[0]);
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010834
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010835 rettv->v_type = VAR_STRING;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010836 if (mch_stat((char *)fname, &st) >= 0)
10837 {
10838 perm = vim_strsave((char_u *)"---------");
10839 if (perm != NULL)
10840 {
10841 for (i = 0; i < 9; i++)
10842 {
10843 if (st.st_mode & (1 << (8 - i)))
10844 perm[i] = flags[i % 3];
10845 }
10846 }
10847 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010848 rettv->vval.v_string = perm;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010849}
10850
10851/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010852 * "getfsize({fname})" function
10853 */
10854 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010855f_getfsize(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010856 typval_T *argvars;
10857 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010858{
10859 char_u *fname;
10860 struct stat st;
10861
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010862 fname = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010863
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010864 rettv->v_type = VAR_NUMBER;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010865
10866 if (mch_stat((char *)fname, &st) >= 0)
10867 {
10868 if (mch_isdir(fname))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010869 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010870 else
Bram Moolenaard827ada2007-06-19 15:19:55 +000010871 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010872 rettv->vval.v_number = (varnumber_T)st.st_size;
Bram Moolenaard827ada2007-06-19 15:19:55 +000010873
10874 /* non-perfect check for overflow */
10875 if ((off_t)rettv->vval.v_number != (off_t)st.st_size)
10876 rettv->vval.v_number = -2;
10877 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010878 }
10879 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010880 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010881}
10882
10883/*
10884 * "getftime({fname})" function
10885 */
10886 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010887f_getftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010888 typval_T *argvars;
10889 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010890{
10891 char_u *fname;
10892 struct stat st;
10893
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010894 fname = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010895
10896 if (mch_stat((char *)fname, &st) >= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010897 rettv->vval.v_number = (varnumber_T)st.st_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010898 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010899 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010900}
10901
10902/*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010903 * "getftype({fname})" function
10904 */
10905 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010906f_getftype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010907 typval_T *argvars;
10908 typval_T *rettv;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010909{
10910 char_u *fname;
10911 struct stat st;
10912 char_u *type = NULL;
10913 char *t;
10914
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010915 fname = get_tv_string(&argvars[0]);
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010916
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010917 rettv->v_type = VAR_STRING;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010918 if (mch_lstat((char *)fname, &st) >= 0)
10919 {
10920#ifdef S_ISREG
10921 if (S_ISREG(st.st_mode))
10922 t = "file";
10923 else if (S_ISDIR(st.st_mode))
10924 t = "dir";
10925# ifdef S_ISLNK
10926 else if (S_ISLNK(st.st_mode))
10927 t = "link";
10928# endif
10929# ifdef S_ISBLK
10930 else if (S_ISBLK(st.st_mode))
10931 t = "bdev";
10932# endif
10933# ifdef S_ISCHR
10934 else if (S_ISCHR(st.st_mode))
10935 t = "cdev";
10936# endif
10937# ifdef S_ISFIFO
10938 else if (S_ISFIFO(st.st_mode))
10939 t = "fifo";
10940# endif
10941# ifdef S_ISSOCK
10942 else if (S_ISSOCK(st.st_mode))
10943 t = "fifo";
10944# endif
10945 else
10946 t = "other";
10947#else
10948# ifdef S_IFMT
10949 switch (st.st_mode & S_IFMT)
10950 {
10951 case S_IFREG: t = "file"; break;
10952 case S_IFDIR: t = "dir"; break;
10953# ifdef S_IFLNK
10954 case S_IFLNK: t = "link"; break;
10955# endif
10956# ifdef S_IFBLK
10957 case S_IFBLK: t = "bdev"; break;
10958# endif
10959# ifdef S_IFCHR
10960 case S_IFCHR: t = "cdev"; break;
10961# endif
10962# ifdef S_IFIFO
10963 case S_IFIFO: t = "fifo"; break;
10964# endif
10965# ifdef S_IFSOCK
10966 case S_IFSOCK: t = "socket"; break;
10967# endif
10968 default: t = "other";
10969 }
10970# else
10971 if (mch_isdir(fname))
10972 t = "dir";
10973 else
10974 t = "file";
10975# endif
10976#endif
10977 type = vim_strsave((char_u *)t);
10978 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010979 rettv->vval.v_string = type;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010980}
10981
10982/*
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010983 * "getline(lnum, [end])" function
Bram Moolenaar0d660222005-01-07 21:51:51 +000010984 */
10985 static void
10986f_getline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010987 typval_T *argvars;
10988 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010989{
10990 linenr_T lnum;
10991 linenr_T end;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010992 int retlist;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010993
10994 lnum = get_tv_lnum(argvars);
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010995 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010996 {
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010997 end = 0;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010998 retlist = FALSE;
10999 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000011000 else
Bram Moolenaar342337a2005-07-21 21:11:17 +000011001 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000011002 end = get_tv_lnum(&argvars[1]);
Bram Moolenaar342337a2005-07-21 21:11:17 +000011003 retlist = TRUE;
11004 }
Bram Moolenaar80fc0432005-07-20 22:06:07 +000011005
Bram Moolenaar342337a2005-07-21 21:11:17 +000011006 get_buffer_lines(curbuf, lnum, end, retlist, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000011007}
11008
11009/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011010 * "getmatches()" function
11011 */
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011012 static void
11013f_getmatches(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011014 typval_T *argvars UNUSED;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011015 typval_T *rettv;
11016{
11017#ifdef FEAT_SEARCH_EXTRA
11018 dict_T *dict;
11019 matchitem_T *cur = curwin->w_match_head;
11020
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011021 if (rettv_list_alloc(rettv) == OK)
11022 {
11023 while (cur != NULL)
11024 {
11025 dict = dict_alloc();
11026 if (dict == NULL)
11027 return;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011028 dict_add_nr_str(dict, "group", 0L, syn_id2name(cur->hlg_id));
11029 dict_add_nr_str(dict, "pattern", 0L, cur->pattern);
11030 dict_add_nr_str(dict, "priority", (long)cur->priority, NULL);
11031 dict_add_nr_str(dict, "id", (long)cur->id, NULL);
11032 list_append_dict(rettv->vval.v_list, dict);
11033 cur = cur->next;
11034 }
11035 }
11036#endif
11037}
11038
11039/*
Bram Moolenaar18081e32008-02-20 19:11:07 +000011040 * "getpid()" function
11041 */
Bram Moolenaar18081e32008-02-20 19:11:07 +000011042 static void
11043f_getpid(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011044 typval_T *argvars UNUSED;
Bram Moolenaar18081e32008-02-20 19:11:07 +000011045 typval_T *rettv;
11046{
11047 rettv->vval.v_number = mch_get_pid();
11048}
11049
11050/*
Bram Moolenaara5525202006-03-02 22:52:09 +000011051 * "getpos(string)" function
11052 */
11053 static void
11054f_getpos(argvars, rettv)
11055 typval_T *argvars;
11056 typval_T *rettv;
11057{
11058 pos_T *fp;
11059 list_T *l;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000011060 int fnum = -1;
Bram Moolenaara5525202006-03-02 22:52:09 +000011061
11062 if (rettv_list_alloc(rettv) == OK)
11063 {
11064 l = rettv->vval.v_list;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000011065 fp = var2fpos(&argvars[0], TRUE, &fnum);
11066 if (fnum != -1)
11067 list_append_number(l, (varnumber_T)fnum);
11068 else
11069 list_append_number(l, (varnumber_T)0);
Bram Moolenaara5525202006-03-02 22:52:09 +000011070 list_append_number(l, (fp != NULL) ? (varnumber_T)fp->lnum
11071 : (varnumber_T)0);
Bram Moolenaare65f7322007-10-02 20:08:54 +000011072 list_append_number(l, (fp != NULL)
11073 ? (varnumber_T)(fp->col == MAXCOL ? MAXCOL : fp->col + 1)
Bram Moolenaara5525202006-03-02 22:52:09 +000011074 : (varnumber_T)0);
11075 list_append_number(l,
11076#ifdef FEAT_VIRTUALEDIT
11077 (fp != NULL) ? (varnumber_T)fp->coladd :
11078#endif
11079 (varnumber_T)0);
11080 }
11081 else
11082 rettv->vval.v_number = FALSE;
11083}
11084
11085/*
Bram Moolenaar280f1262006-01-30 00:14:18 +000011086 * "getqflist()" and "getloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000011087 */
Bram Moolenaar2641f772005-03-25 21:58:17 +000011088 static void
Bram Moolenaar280f1262006-01-30 00:14:18 +000011089f_getqflist(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011090 typval_T *argvars UNUSED;
11091 typval_T *rettv UNUSED;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011092{
11093#ifdef FEAT_QUICKFIX
Bram Moolenaar280f1262006-01-30 00:14:18 +000011094 win_T *wp;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011095#endif
11096
Bram Moolenaar2641f772005-03-25 21:58:17 +000011097#ifdef FEAT_QUICKFIX
Bram Moolenaareddf53b2006-02-27 00:11:10 +000011098 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000011099 {
Bram Moolenaar280f1262006-01-30 00:14:18 +000011100 wp = NULL;
11101 if (argvars[0].v_type != VAR_UNKNOWN) /* getloclist() */
11102 {
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011103 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar280f1262006-01-30 00:14:18 +000011104 if (wp == NULL)
11105 return;
11106 }
11107
Bram Moolenaareddf53b2006-02-27 00:11:10 +000011108 (void)get_errorlist(wp, rettv->vval.v_list);
Bram Moolenaar2641f772005-03-25 21:58:17 +000011109 }
11110#endif
11111}
11112
11113/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011114 * "getreg()" function
11115 */
11116 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011117f_getreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011118 typval_T *argvars;
11119 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011120{
11121 char_u *strregname;
11122 int regname;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011123 int arg2 = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011124 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011125
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011126 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011127 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011128 strregname = get_tv_string_chk(&argvars[0]);
11129 error = strregname == NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011130 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011131 arg2 = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011132 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011133 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000011134 strregname = vimvars[VV_REG].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011135 regname = (strregname == NULL ? '"' : *strregname);
11136 if (regname == 0)
11137 regname = '"';
11138
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011139 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011140 rettv->vval.v_string = error ? NULL :
11141 get_reg_contents(regname, TRUE, arg2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011142}
11143
11144/*
11145 * "getregtype()" function
11146 */
11147 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011148f_getregtype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011149 typval_T *argvars;
11150 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011151{
11152 char_u *strregname;
11153 int regname;
11154 char_u buf[NUMBUFLEN + 2];
11155 long reglen = 0;
11156
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011157 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011158 {
11159 strregname = get_tv_string_chk(&argvars[0]);
11160 if (strregname == NULL) /* type error; errmsg already given */
11161 {
11162 rettv->v_type = VAR_STRING;
11163 rettv->vval.v_string = NULL;
11164 return;
11165 }
11166 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011167 else
11168 /* Default to v:register */
Bram Moolenaare9a41262005-01-15 22:18:47 +000011169 strregname = vimvars[VV_REG].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011170
11171 regname = (strregname == NULL ? '"' : *strregname);
11172 if (regname == 0)
11173 regname = '"';
11174
11175 buf[0] = NUL;
11176 buf[1] = NUL;
11177 switch (get_reg_type(regname, &reglen))
11178 {
11179 case MLINE: buf[0] = 'V'; break;
11180 case MCHAR: buf[0] = 'v'; break;
11181#ifdef FEAT_VISUAL
11182 case MBLOCK:
11183 buf[0] = Ctrl_V;
11184 sprintf((char *)buf + 1, "%ld", reglen + 1);
11185 break;
11186#endif
11187 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011188 rettv->v_type = VAR_STRING;
11189 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011190}
11191
11192/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011193 * "gettabwinvar()" function
11194 */
11195 static void
11196f_gettabwinvar(argvars, rettv)
11197 typval_T *argvars;
11198 typval_T *rettv;
11199{
11200 getwinvar(argvars, rettv, 1);
11201}
11202
11203/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011204 * "getwinposx()" function
11205 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011206 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011207f_getwinposx(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011208 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000011209 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011210{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011211 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011212#ifdef FEAT_GUI
11213 if (gui.in_use)
11214 {
11215 int x, y;
11216
11217 if (gui_mch_get_winpos(&x, &y) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011218 rettv->vval.v_number = x;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011219 }
11220#endif
11221}
11222
11223/*
11224 * "getwinposy()" function
11225 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011226 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011227f_getwinposy(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011228 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000011229 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011230{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011231 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011232#ifdef FEAT_GUI
11233 if (gui.in_use)
11234 {
11235 int x, y;
11236
11237 if (gui_mch_get_winpos(&x, &y) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011238 rettv->vval.v_number = y;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011239 }
11240#endif
11241}
11242
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011243/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011244 * Find window specified by "vp" in tabpage "tp".
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011245 */
Bram Moolenaara40058a2005-07-11 22:42:07 +000011246 static win_T *
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011247find_win_by_nr(vp, tp)
Bram Moolenaara40058a2005-07-11 22:42:07 +000011248 typval_T *vp;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011249 tabpage_T *tp; /* NULL for current tab page */
Bram Moolenaara40058a2005-07-11 22:42:07 +000011250{
11251#ifdef FEAT_WINDOWS
11252 win_T *wp;
11253#endif
11254 int nr;
11255
11256 nr = get_tv_number_chk(vp, NULL);
11257
11258#ifdef FEAT_WINDOWS
11259 if (nr < 0)
11260 return NULL;
11261 if (nr == 0)
11262 return curwin;
11263
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011264 for (wp = (tp == NULL || tp == curtab) ? firstwin : tp->tp_firstwin;
11265 wp != NULL; wp = wp->w_next)
Bram Moolenaara40058a2005-07-11 22:42:07 +000011266 if (--nr <= 0)
11267 break;
11268 return wp;
11269#else
11270 if (nr == 0 || nr == 1)
11271 return curwin;
11272 return NULL;
11273#endif
11274}
11275
Bram Moolenaar071d4272004-06-13 20:20:40 +000011276/*
11277 * "getwinvar()" function
11278 */
11279 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011280f_getwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011281 typval_T *argvars;
11282 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011283{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011284 getwinvar(argvars, rettv, 0);
11285}
11286
11287/*
11288 * getwinvar() and gettabwinvar()
11289 */
11290 static void
11291getwinvar(argvars, rettv, off)
11292 typval_T *argvars;
11293 typval_T *rettv;
11294 int off; /* 1 for gettabwinvar() */
11295{
Bram Moolenaar071d4272004-06-13 20:20:40 +000011296 win_T *win, *oldcurwin;
11297 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000011298 dictitem_T *v;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011299 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011300
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011301#ifdef FEAT_WINDOWS
11302 if (off == 1)
11303 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
11304 else
11305 tp = curtab;
11306#endif
11307 win = find_win_by_nr(&argvars[off], tp);
11308 varname = get_tv_string_chk(&argvars[off + 1]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011309 ++emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011310
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011311 rettv->v_type = VAR_STRING;
11312 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011313
11314 if (win != NULL && varname != NULL)
11315 {
Bram Moolenaar69a7e432006-10-10 10:55:47 +000011316 /* Set curwin to be our win, temporarily. Also set curbuf, so
11317 * that we can get buffer-local options. */
11318 oldcurwin = curwin;
11319 curwin = win;
11320 curbuf = win->w_buffer;
11321
Bram Moolenaar071d4272004-06-13 20:20:40 +000011322 if (*varname == '&') /* window-local-option */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011323 get_option_tv(&varname, rettv, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011324 else
11325 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011326 if (*varname == NUL)
11327 /* let getwinvar({nr}, "") return the "w:" dictionary. The
11328 * scope prefix before the NUL byte is required by
11329 * find_var_in_ht(). */
11330 varname = (char_u *)"w:" + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011331 /* look up the variable */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011332 v = find_var_in_ht(&win->w_vars.dv_hashtab, varname, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011333 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000011334 copy_tv(&v->di_tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011335 }
Bram Moolenaar69a7e432006-10-10 10:55:47 +000011336
11337 /* restore previous notion of curwin */
11338 curwin = oldcurwin;
11339 curbuf = curwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011340 }
11341
11342 --emsg_off;
11343}
11344
11345/*
11346 * "glob()" function
11347 */
11348 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011349f_glob(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011350 typval_T *argvars;
11351 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011352{
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011353 int flags = WILD_SILENT|WILD_USE_NL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011354 expand_T xpc;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011355 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011356
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011357 /* When the optional second argument is non-zero, don't remove matches
11358 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
11359 if (argvars[1].v_type != VAR_UNKNOWN
11360 && get_tv_number_chk(&argvars[1], &error))
11361 flags |= WILD_KEEP_ALL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011362 rettv->v_type = VAR_STRING;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011363 if (!error)
11364 {
11365 ExpandInit(&xpc);
11366 xpc.xp_context = EXPAND_FILES;
11367 rettv->vval.v_string = ExpandOne(&xpc, get_tv_string(&argvars[0]),
11368 NULL, flags, WILD_ALL);
11369 }
11370 else
11371 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011372}
11373
11374/*
11375 * "globpath()" function
11376 */
11377 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011378f_globpath(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011379 typval_T *argvars;
11380 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011381{
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011382 int flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011383 char_u buf1[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011384 char_u *file = get_tv_string_buf_chk(&argvars[1], buf1);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011385 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011386
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011387 /* When the optional second argument is non-zero, don't remove matches
11388 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
11389 if (argvars[2].v_type != VAR_UNKNOWN
11390 && get_tv_number_chk(&argvars[2], &error))
11391 flags |= WILD_KEEP_ALL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011392 rettv->v_type = VAR_STRING;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011393 if (file == NULL || error)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011394 rettv->vval.v_string = NULL;
11395 else
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011396 rettv->vval.v_string = globpath(get_tv_string(&argvars[0]), file,
11397 flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011398}
11399
11400/*
11401 * "has()" function
11402 */
11403 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011404f_has(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011405 typval_T *argvars;
11406 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011407{
11408 int i;
11409 char_u *name;
11410 int n = FALSE;
11411 static char *(has_list[]) =
11412 {
11413#ifdef AMIGA
11414 "amiga",
11415# ifdef FEAT_ARP
11416 "arp",
11417# endif
11418#endif
11419#ifdef __BEOS__
11420 "beos",
11421#endif
11422#ifdef MSDOS
11423# ifdef DJGPP
11424 "dos32",
11425# else
11426 "dos16",
11427# endif
11428#endif
Bram Moolenaar241a8aa2005-12-06 20:04:44 +000011429#ifdef MACOS
Bram Moolenaar071d4272004-06-13 20:20:40 +000011430 "mac",
11431#endif
11432#if defined(MACOS_X_UNIX)
11433 "macunix",
11434#endif
11435#ifdef OS2
11436 "os2",
11437#endif
11438#ifdef __QNX__
11439 "qnx",
11440#endif
11441#ifdef RISCOS
11442 "riscos",
11443#endif
11444#ifdef UNIX
11445 "unix",
11446#endif
11447#ifdef VMS
11448 "vms",
11449#endif
11450#ifdef WIN16
11451 "win16",
11452#endif
11453#ifdef WIN32
11454 "win32",
11455#endif
11456#if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
11457 "win32unix",
11458#endif
Bram Moolenaare37d7992010-01-12 13:18:33 +010011459#if defined(WIN64) || defined(_WIN64)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011460 "win64",
11461#endif
11462#ifdef EBCDIC
11463 "ebcdic",
11464#endif
11465#ifndef CASE_INSENSITIVE_FILENAME
11466 "fname_case",
11467#endif
11468#ifdef FEAT_ARABIC
11469 "arabic",
11470#endif
11471#ifdef FEAT_AUTOCMD
11472 "autocmd",
11473#endif
11474#ifdef FEAT_BEVAL
11475 "balloon_eval",
Bram Moolenaar342337a2005-07-21 21:11:17 +000011476# ifndef FEAT_GUI_W32 /* other GUIs always have multiline balloons */
11477 "balloon_multiline",
11478# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011479#endif
11480#if defined(SOME_BUILTIN_TCAPS) || defined(ALL_BUILTIN_TCAPS)
11481 "builtin_terms",
11482# ifdef ALL_BUILTIN_TCAPS
11483 "all_builtin_terms",
11484# endif
11485#endif
11486#ifdef FEAT_BYTEOFF
11487 "byte_offset",
11488#endif
11489#ifdef FEAT_CINDENT
11490 "cindent",
11491#endif
11492#ifdef FEAT_CLIENTSERVER
11493 "clientserver",
11494#endif
11495#ifdef FEAT_CLIPBOARD
11496 "clipboard",
11497#endif
11498#ifdef FEAT_CMDL_COMPL
11499 "cmdline_compl",
11500#endif
11501#ifdef FEAT_CMDHIST
11502 "cmdline_hist",
11503#endif
11504#ifdef FEAT_COMMENTS
11505 "comments",
11506#endif
11507#ifdef FEAT_CRYPT
11508 "cryptv",
11509#endif
11510#ifdef FEAT_CSCOPE
11511 "cscope",
11512#endif
Bram Moolenaarac6e65f2005-08-29 22:25:38 +000011513#ifdef CURSOR_SHAPE
11514 "cursorshape",
11515#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011516#ifdef DEBUG
11517 "debug",
11518#endif
11519#ifdef FEAT_CON_DIALOG
11520 "dialog_con",
11521#endif
11522#ifdef FEAT_GUI_DIALOG
11523 "dialog_gui",
11524#endif
11525#ifdef FEAT_DIFF
11526 "diff",
11527#endif
11528#ifdef FEAT_DIGRAPHS
11529 "digraphs",
11530#endif
11531#ifdef FEAT_DND
11532 "dnd",
11533#endif
11534#ifdef FEAT_EMACS_TAGS
11535 "emacs_tags",
11536#endif
11537 "eval", /* always present, of course! */
11538#ifdef FEAT_EX_EXTRA
11539 "ex_extra",
11540#endif
11541#ifdef FEAT_SEARCH_EXTRA
11542 "extra_search",
11543#endif
11544#ifdef FEAT_FKMAP
11545 "farsi",
11546#endif
11547#ifdef FEAT_SEARCHPATH
11548 "file_in_path",
11549#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011550#if defined(UNIX) && !defined(USE_SYSTEM)
11551 "filterpipe",
11552#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011553#ifdef FEAT_FIND_ID
11554 "find_in_path",
11555#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011556#ifdef FEAT_FLOAT
11557 "float",
11558#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011559#ifdef FEAT_FOLDING
11560 "folding",
11561#endif
11562#ifdef FEAT_FOOTER
11563 "footer",
11564#endif
11565#if !defined(USE_SYSTEM) && defined(UNIX)
11566 "fork",
11567#endif
11568#ifdef FEAT_GETTEXT
11569 "gettext",
11570#endif
11571#ifdef FEAT_GUI
11572 "gui",
11573#endif
11574#ifdef FEAT_GUI_ATHENA
11575# ifdef FEAT_GUI_NEXTAW
11576 "gui_neXtaw",
11577# else
11578 "gui_athena",
11579# endif
11580#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011581#ifdef FEAT_GUI_GTK
11582 "gui_gtk",
11583# ifdef HAVE_GTK2
11584 "gui_gtk2",
11585# endif
11586#endif
Bram Moolenaar7b188622007-09-25 10:51:12 +000011587#ifdef FEAT_GUI_GNOME
11588 "gui_gnome",
11589#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011590#ifdef FEAT_GUI_MAC
11591 "gui_mac",
11592#endif
11593#ifdef FEAT_GUI_MOTIF
11594 "gui_motif",
11595#endif
11596#ifdef FEAT_GUI_PHOTON
11597 "gui_photon",
11598#endif
11599#ifdef FEAT_GUI_W16
11600 "gui_win16",
11601#endif
11602#ifdef FEAT_GUI_W32
11603 "gui_win32",
11604#endif
11605#ifdef FEAT_HANGULIN
11606 "hangul_input",
11607#endif
11608#if defined(HAVE_ICONV_H) && defined(USE_ICONV)
11609 "iconv",
11610#endif
11611#ifdef FEAT_INS_EXPAND
11612 "insert_expand",
11613#endif
11614#ifdef FEAT_JUMPLIST
11615 "jumplist",
11616#endif
11617#ifdef FEAT_KEYMAP
11618 "keymap",
11619#endif
11620#ifdef FEAT_LANGMAP
11621 "langmap",
11622#endif
11623#ifdef FEAT_LIBCALL
11624 "libcall",
11625#endif
11626#ifdef FEAT_LINEBREAK
11627 "linebreak",
11628#endif
11629#ifdef FEAT_LISP
11630 "lispindent",
11631#endif
11632#ifdef FEAT_LISTCMDS
11633 "listcmds",
11634#endif
11635#ifdef FEAT_LOCALMAP
11636 "localmap",
11637#endif
11638#ifdef FEAT_MENU
11639 "menu",
11640#endif
11641#ifdef FEAT_SESSION
11642 "mksession",
11643#endif
11644#ifdef FEAT_MODIFY_FNAME
11645 "modify_fname",
11646#endif
11647#ifdef FEAT_MOUSE
11648 "mouse",
11649#endif
11650#ifdef FEAT_MOUSESHAPE
11651 "mouseshape",
11652#endif
11653#if defined(UNIX) || defined(VMS)
11654# ifdef FEAT_MOUSE_DEC
11655 "mouse_dec",
11656# endif
11657# ifdef FEAT_MOUSE_GPM
11658 "mouse_gpm",
11659# endif
11660# ifdef FEAT_MOUSE_JSB
11661 "mouse_jsbterm",
11662# endif
11663# ifdef FEAT_MOUSE_NET
11664 "mouse_netterm",
11665# endif
11666# ifdef FEAT_MOUSE_PTERM
11667 "mouse_pterm",
11668# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011669# ifdef FEAT_SYSMOUSE
11670 "mouse_sysmouse",
11671# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011672# ifdef FEAT_MOUSE_XTERM
11673 "mouse_xterm",
11674# endif
11675#endif
11676#ifdef FEAT_MBYTE
11677 "multi_byte",
11678#endif
11679#ifdef FEAT_MBYTE_IME
11680 "multi_byte_ime",
11681#endif
11682#ifdef FEAT_MULTI_LANG
11683 "multi_lang",
11684#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011685#ifdef FEAT_MZSCHEME
Bram Moolenaar33570922005-01-25 22:26:29 +000011686#ifndef DYNAMIC_MZSCHEME
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011687 "mzscheme",
11688#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011689#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011690#ifdef FEAT_OLE
11691 "ole",
11692#endif
11693#ifdef FEAT_OSFILETYPE
11694 "osfiletype",
11695#endif
11696#ifdef FEAT_PATH_EXTRA
11697 "path_extra",
11698#endif
11699#ifdef FEAT_PERL
11700#ifndef DYNAMIC_PERL
11701 "perl",
11702#endif
11703#endif
11704#ifdef FEAT_PYTHON
11705#ifndef DYNAMIC_PYTHON
11706 "python",
11707#endif
11708#endif
11709#ifdef FEAT_POSTSCRIPT
11710 "postscript",
11711#endif
11712#ifdef FEAT_PRINTER
11713 "printer",
11714#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +000011715#ifdef FEAT_PROFILE
11716 "profile",
11717#endif
Bram Moolenaare580b0c2006-03-21 21:33:03 +000011718#ifdef FEAT_RELTIME
11719 "reltime",
11720#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011721#ifdef FEAT_QUICKFIX
11722 "quickfix",
11723#endif
11724#ifdef FEAT_RIGHTLEFT
11725 "rightleft",
11726#endif
11727#if defined(FEAT_RUBY) && !defined(DYNAMIC_RUBY)
11728 "ruby",
11729#endif
11730#ifdef FEAT_SCROLLBIND
11731 "scrollbind",
11732#endif
11733#ifdef FEAT_CMDL_INFO
11734 "showcmd",
11735 "cmdline_info",
11736#endif
11737#ifdef FEAT_SIGNS
11738 "signs",
11739#endif
11740#ifdef FEAT_SMARTINDENT
11741 "smartindent",
11742#endif
11743#ifdef FEAT_SNIFF
11744 "sniff",
11745#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +000011746#ifdef STARTUPTIME
11747 "startuptime",
11748#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011749#ifdef FEAT_STL_OPT
11750 "statusline",
11751#endif
11752#ifdef FEAT_SUN_WORKSHOP
11753 "sun_workshop",
11754#endif
11755#ifdef FEAT_NETBEANS_INTG
11756 "netbeans_intg",
11757#endif
Bram Moolenaar3c56a962006-03-12 22:19:04 +000011758#ifdef FEAT_SPELL
Bram Moolenaar0e4d8772005-06-07 21:12:49 +000011759 "spell",
11760#endif
11761#ifdef FEAT_SYN_HL
Bram Moolenaar071d4272004-06-13 20:20:40 +000011762 "syntax",
11763#endif
11764#if defined(USE_SYSTEM) || !defined(UNIX)
11765 "system",
11766#endif
11767#ifdef FEAT_TAG_BINS
11768 "tag_binary",
11769#endif
11770#ifdef FEAT_TAG_OLDSTATIC
11771 "tag_old_static",
11772#endif
11773#ifdef FEAT_TAG_ANYWHITE
11774 "tag_any_white",
11775#endif
11776#ifdef FEAT_TCL
11777# ifndef DYNAMIC_TCL
11778 "tcl",
11779# endif
11780#endif
11781#ifdef TERMINFO
11782 "terminfo",
11783#endif
11784#ifdef FEAT_TERMRESPONSE
11785 "termresponse",
11786#endif
11787#ifdef FEAT_TEXTOBJ
11788 "textobjects",
11789#endif
11790#ifdef HAVE_TGETENT
11791 "tgetent",
11792#endif
11793#ifdef FEAT_TITLE
11794 "title",
11795#endif
11796#ifdef FEAT_TOOLBAR
11797 "toolbar",
11798#endif
11799#ifdef FEAT_USR_CMDS
11800 "user-commands", /* was accidentally included in 5.4 */
11801 "user_commands",
11802#endif
11803#ifdef FEAT_VIMINFO
11804 "viminfo",
11805#endif
11806#ifdef FEAT_VERTSPLIT
11807 "vertsplit",
11808#endif
11809#ifdef FEAT_VIRTUALEDIT
11810 "virtualedit",
11811#endif
11812#ifdef FEAT_VISUAL
11813 "visual",
11814#endif
11815#ifdef FEAT_VISUALEXTRA
11816 "visualextra",
11817#endif
11818#ifdef FEAT_VREPLACE
11819 "vreplace",
11820#endif
11821#ifdef FEAT_WILDIGN
11822 "wildignore",
11823#endif
11824#ifdef FEAT_WILDMENU
11825 "wildmenu",
11826#endif
11827#ifdef FEAT_WINDOWS
11828 "windows",
11829#endif
11830#ifdef FEAT_WAK
11831 "winaltkeys",
11832#endif
11833#ifdef FEAT_WRITEBACKUP
11834 "writebackup",
11835#endif
11836#ifdef FEAT_XIM
11837 "xim",
11838#endif
11839#ifdef FEAT_XFONTSET
11840 "xfontset",
11841#endif
11842#ifdef USE_XSMP
11843 "xsmp",
11844#endif
11845#ifdef USE_XSMP_INTERACT
11846 "xsmp_interact",
11847#endif
11848#ifdef FEAT_XCLIPBOARD
11849 "xterm_clipboard",
11850#endif
11851#ifdef FEAT_XTERM_SAVE
11852 "xterm_save",
11853#endif
11854#if defined(UNIX) && defined(FEAT_X11)
11855 "X11",
11856#endif
11857 NULL
11858 };
11859
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011860 name = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011861 for (i = 0; has_list[i] != NULL; ++i)
11862 if (STRICMP(name, has_list[i]) == 0)
11863 {
11864 n = TRUE;
11865 break;
11866 }
11867
11868 if (n == FALSE)
11869 {
11870 if (STRNICMP(name, "patch", 5) == 0)
11871 n = has_patch(atoi((char *)name + 5));
11872 else if (STRICMP(name, "vim_starting") == 0)
11873 n = (starting != 0);
Bram Moolenaar42022d52008-12-09 09:57:49 +000011874#ifdef FEAT_MBYTE
11875 else if (STRICMP(name, "multi_byte_encoding") == 0)
11876 n = has_mbyte;
11877#endif
Bram Moolenaar342337a2005-07-21 21:11:17 +000011878#if defined(FEAT_BEVAL) && defined(FEAT_GUI_W32)
11879 else if (STRICMP(name, "balloon_multiline") == 0)
11880 n = multiline_balloon_available();
11881#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011882#ifdef DYNAMIC_TCL
11883 else if (STRICMP(name, "tcl") == 0)
11884 n = tcl_enabled(FALSE);
11885#endif
11886#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
11887 else if (STRICMP(name, "iconv") == 0)
11888 n = iconv_enabled(FALSE);
11889#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011890#ifdef DYNAMIC_MZSCHEME
11891 else if (STRICMP(name, "mzscheme") == 0)
11892 n = mzscheme_enabled(FALSE);
11893#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011894#ifdef DYNAMIC_RUBY
11895 else if (STRICMP(name, "ruby") == 0)
11896 n = ruby_enabled(FALSE);
11897#endif
11898#ifdef DYNAMIC_PYTHON
11899 else if (STRICMP(name, "python") == 0)
11900 n = python_enabled(FALSE);
11901#endif
11902#ifdef DYNAMIC_PERL
11903 else if (STRICMP(name, "perl") == 0)
11904 n = perl_enabled(FALSE);
11905#endif
11906#ifdef FEAT_GUI
11907 else if (STRICMP(name, "gui_running") == 0)
11908 n = (gui.in_use || gui.starting);
11909# ifdef FEAT_GUI_W32
11910 else if (STRICMP(name, "gui_win32s") == 0)
11911 n = gui_is_win32s();
11912# endif
11913# ifdef FEAT_BROWSE
11914 else if (STRICMP(name, "browse") == 0)
11915 n = gui.in_use; /* gui_mch_browse() works when GUI is running */
11916# endif
11917#endif
11918#ifdef FEAT_SYN_HL
11919 else if (STRICMP(name, "syntax_items") == 0)
11920 n = syntax_present(curbuf);
11921#endif
11922#if defined(WIN3264)
11923 else if (STRICMP(name, "win95") == 0)
11924 n = mch_windows95();
11925#endif
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +000011926#ifdef FEAT_NETBEANS_INTG
11927 else if (STRICMP(name, "netbeans_enabled") == 0)
11928 n = usingNetbeans;
11929#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011930 }
11931
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011932 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011933}
11934
11935/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000011936 * "has_key()" function
11937 */
11938 static void
11939f_has_key(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011940 typval_T *argvars;
11941 typval_T *rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011942{
Bram Moolenaare9a41262005-01-15 22:18:47 +000011943 if (argvars[0].v_type != VAR_DICT)
11944 {
11945 EMSG(_(e_dictreq));
11946 return;
11947 }
11948 if (argvars[0].vval.v_dict == NULL)
11949 return;
11950
11951 rettv->vval.v_number = dict_find(argvars[0].vval.v_dict,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000011952 get_tv_string(&argvars[1]), -1) != NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011953}
11954
11955/*
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011956 * "haslocaldir()" function
11957 */
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011958 static void
11959f_haslocaldir(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011960 typval_T *argvars UNUSED;
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011961 typval_T *rettv;
11962{
11963 rettv->vval.v_number = (curwin->w_localdir != NULL);
11964}
11965
11966/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011967 * "hasmapto()" function
11968 */
11969 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011970f_hasmapto(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011971 typval_T *argvars;
11972 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011973{
11974 char_u *name;
11975 char_u *mode;
11976 char_u buf[NUMBUFLEN];
Bram Moolenaar2c932302006-03-18 21:42:09 +000011977 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011978
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011979 name = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011980 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011981 mode = (char_u *)"nvo";
11982 else
Bram Moolenaar2c932302006-03-18 21:42:09 +000011983 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011984 mode = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000011985 if (argvars[2].v_type != VAR_UNKNOWN)
11986 abbr = get_tv_number(&argvars[2]);
11987 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011988
Bram Moolenaar2c932302006-03-18 21:42:09 +000011989 if (map_to_exists(name, mode, abbr))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011990 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011991 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011992 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011993}
11994
11995/*
11996 * "histadd()" function
11997 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011998 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011999f_histadd(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012000 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012001 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012002{
12003#ifdef FEAT_CMDHIST
12004 int histype;
12005 char_u *str;
12006 char_u buf[NUMBUFLEN];
12007#endif
12008
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012009 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012010 if (check_restricted() || check_secure())
12011 return;
12012#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012013 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12014 histype = str != NULL ? get_histtype(str) : -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012015 if (histype >= 0)
12016 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012017 str = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012018 if (*str != NUL)
12019 {
Bram Moolenaarc7be3f32009-12-24 14:01:12 +000012020 init_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +000012021 add_to_history(histype, str, FALSE, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012022 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012023 return;
12024 }
12025 }
12026#endif
12027}
12028
12029/*
12030 * "histdel()" function
12031 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012032 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012033f_histdel(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012034 typval_T *argvars UNUSED;
12035 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012036{
12037#ifdef FEAT_CMDHIST
12038 int n;
12039 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012040 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012041
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012042 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12043 if (str == NULL)
12044 n = 0;
12045 else if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000012046 /* only one argument: clear entire history */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012047 n = clr_history(get_histtype(str));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012048 else if (argvars[1].v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +000012049 /* index given: remove that entry */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012050 n = del_history_idx(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012051 (int)get_tv_number(&argvars[1]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012052 else
12053 /* string given: remove all matching entries */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012054 n = del_history_entry(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012055 get_tv_string_buf(&argvars[1], buf));
12056 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012057#endif
12058}
12059
12060/*
12061 * "histget()" function
12062 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012063 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012064f_histget(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012065 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012066 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012067{
12068#ifdef FEAT_CMDHIST
12069 int type;
12070 int idx;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012071 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012072
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012073 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12074 if (str == NULL)
12075 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012076 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012077 {
12078 type = get_histtype(str);
12079 if (argvars[1].v_type == VAR_UNKNOWN)
12080 idx = get_history_idx(type);
12081 else
12082 idx = (int)get_tv_number_chk(&argvars[1], NULL);
12083 /* -1 on type error */
12084 rettv->vval.v_string = vim_strsave(get_history_entry(type, idx));
12085 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012086#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012087 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012088#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012089 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012090}
12091
12092/*
12093 * "histnr()" function
12094 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012095 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012096f_histnr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012097 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012098 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012099{
12100 int i;
12101
12102#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012103 char_u *history = get_tv_string_chk(&argvars[0]);
12104
12105 i = history == NULL ? HIST_CMD - 1 : get_histtype(history);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012106 if (i >= HIST_CMD && i < HIST_COUNT)
12107 i = get_history_idx(i);
12108 else
12109#endif
12110 i = -1;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012111 rettv->vval.v_number = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012112}
12113
12114/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012115 * "highlightID(name)" function
12116 */
12117 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012118f_hlID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012119 typval_T *argvars;
12120 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012121{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012122 rettv->vval.v_number = syn_name2id(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012123}
12124
12125/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012126 * "highlight_exists()" function
12127 */
12128 static void
12129f_hlexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012130 typval_T *argvars;
12131 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012132{
12133 rettv->vval.v_number = highlight_exists(get_tv_string(&argvars[0]));
12134}
12135
12136/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012137 * "hostname()" function
12138 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012139 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012140f_hostname(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012141 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012142 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012143{
12144 char_u hostname[256];
12145
12146 mch_get_host_name(hostname, 256);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012147 rettv->v_type = VAR_STRING;
12148 rettv->vval.v_string = vim_strsave(hostname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012149}
12150
12151/*
12152 * iconv() function
12153 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012154 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012155f_iconv(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012156 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012157 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012158{
12159#ifdef FEAT_MBYTE
12160 char_u buf1[NUMBUFLEN];
12161 char_u buf2[NUMBUFLEN];
12162 char_u *from, *to, *str;
12163 vimconv_T vimconv;
12164#endif
12165
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012166 rettv->v_type = VAR_STRING;
12167 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012168
12169#ifdef FEAT_MBYTE
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012170 str = get_tv_string(&argvars[0]);
12171 from = enc_canonize(enc_skip(get_tv_string_buf(&argvars[1], buf1)));
12172 to = enc_canonize(enc_skip(get_tv_string_buf(&argvars[2], buf2)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012173 vimconv.vc_type = CONV_NONE;
12174 convert_setup(&vimconv, from, to);
12175
12176 /* If the encodings are equal, no conversion needed. */
12177 if (vimconv.vc_type == CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012178 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012179 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012180 rettv->vval.v_string = string_convert(&vimconv, str, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012181
12182 convert_setup(&vimconv, NULL, NULL);
12183 vim_free(from);
12184 vim_free(to);
12185#endif
12186}
12187
12188/*
12189 * "indent()" function
12190 */
12191 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012192f_indent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012193 typval_T *argvars;
12194 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012195{
12196 linenr_T lnum;
12197
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012198 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012199 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012200 rettv->vval.v_number = get_indent_lnum(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012201 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012202 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012203}
12204
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012205/*
12206 * "index()" function
12207 */
12208 static void
12209f_index(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012210 typval_T *argvars;
12211 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012212{
Bram Moolenaar33570922005-01-25 22:26:29 +000012213 list_T *l;
12214 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012215 long idx = 0;
12216 int ic = FALSE;
12217
12218 rettv->vval.v_number = -1;
12219 if (argvars[0].v_type != VAR_LIST)
12220 {
12221 EMSG(_(e_listreq));
12222 return;
12223 }
12224 l = argvars[0].vval.v_list;
12225 if (l != NULL)
12226 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012227 item = l->lv_first;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012228 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012229 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012230 int error = FALSE;
12231
Bram Moolenaar758711c2005-02-02 23:11:38 +000012232 /* Start at specified item. Use the cached index that list_find()
12233 * sets, so that a negative number also works. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012234 item = list_find(l, get_tv_number_chk(&argvars[2], &error));
Bram Moolenaar758711c2005-02-02 23:11:38 +000012235 idx = l->lv_idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012236 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012237 ic = get_tv_number_chk(&argvars[3], &error);
12238 if (error)
12239 item = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012240 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012241
Bram Moolenaar758711c2005-02-02 23:11:38 +000012242 for ( ; item != NULL; item = item->li_next, ++idx)
12243 if (tv_equal(&item->li_tv, &argvars[1], ic))
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012244 {
12245 rettv->vval.v_number = idx;
12246 break;
12247 }
12248 }
12249}
12250
Bram Moolenaar071d4272004-06-13 20:20:40 +000012251static int inputsecret_flag = 0;
12252
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012253static void get_user_input __ARGS((typval_T *argvars, typval_T *rettv, int inputdialog));
12254
Bram Moolenaar071d4272004-06-13 20:20:40 +000012255/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012256 * This function is used by f_input() and f_inputdialog() functions. The third
12257 * argument to f_input() specifies the type of completion to use at the
12258 * prompt. The third argument to f_inputdialog() specifies the value to return
12259 * when the user cancels the prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +000012260 */
12261 static void
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012262get_user_input(argvars, rettv, inputdialog)
Bram Moolenaar33570922005-01-25 22:26:29 +000012263 typval_T *argvars;
12264 typval_T *rettv;
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012265 int inputdialog;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012266{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012267 char_u *prompt = get_tv_string_chk(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012268 char_u *p = NULL;
12269 int c;
12270 char_u buf[NUMBUFLEN];
12271 int cmd_silent_save = cmd_silent;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012272 char_u *defstr = (char_u *)"";
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012273 int xp_type = EXPAND_NOTHING;
12274 char_u *xp_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012275
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012276 rettv->v_type = VAR_STRING;
Bram Moolenaarce85c562007-09-16 12:21:16 +000012277 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012278
12279#ifdef NO_CONSOLE_INPUT
12280 /* While starting up, there is no place to enter text. */
12281 if (no_console_input())
Bram Moolenaar071d4272004-06-13 20:20:40 +000012282 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012283#endif
12284
12285 cmd_silent = FALSE; /* Want to see the prompt. */
12286 if (prompt != NULL)
12287 {
12288 /* Only the part of the message after the last NL is considered as
12289 * prompt for the command line */
12290 p = vim_strrchr(prompt, '\n');
12291 if (p == NULL)
12292 p = prompt;
12293 else
12294 {
12295 ++p;
12296 c = *p;
12297 *p = NUL;
12298 msg_start();
12299 msg_clr_eos();
12300 msg_puts_attr(prompt, echo_attr);
12301 msg_didout = FALSE;
12302 msg_starthere();
12303 *p = c;
12304 }
12305 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012306
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012307 if (argvars[1].v_type != VAR_UNKNOWN)
12308 {
12309 defstr = get_tv_string_buf_chk(&argvars[1], buf);
12310 if (defstr != NULL)
12311 stuffReadbuffSpec(defstr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012312
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012313 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar4463f292005-09-25 22:20:24 +000012314 {
12315 char_u *xp_name;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000012316 int xp_namelen;
Bram Moolenaar4463f292005-09-25 22:20:24 +000012317 long argt;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012318
Bram Moolenaar4463f292005-09-25 22:20:24 +000012319 rettv->vval.v_string = NULL;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012320
Bram Moolenaar4463f292005-09-25 22:20:24 +000012321 xp_name = get_tv_string_buf_chk(&argvars[2], buf);
12322 if (xp_name == NULL)
12323 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012324
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012325 xp_namelen = (int)STRLEN(xp_name);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012326
Bram Moolenaar4463f292005-09-25 22:20:24 +000012327 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt,
12328 &xp_arg) == FAIL)
12329 return;
12330 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012331 }
12332
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012333 if (defstr != NULL)
12334 rettv->vval.v_string =
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012335 getcmdline_prompt(inputsecret_flag ? NUL : '@', p, echo_attr,
12336 xp_type, xp_arg);
12337
12338 vim_free(xp_arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012339
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012340 /* since the user typed this, no need to wait for return */
12341 need_wait_return = FALSE;
12342 msg_didout = FALSE;
12343 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012344 cmd_silent = cmd_silent_save;
12345}
12346
12347/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012348 * "input()" function
12349 * Also handles inputsecret() when inputsecret is set.
12350 */
12351 static void
12352f_input(argvars, rettv)
12353 typval_T *argvars;
12354 typval_T *rettv;
12355{
12356 get_user_input(argvars, rettv, FALSE);
12357}
12358
12359/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012360 * "inputdialog()" function
12361 */
12362 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012363f_inputdialog(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012364 typval_T *argvars;
12365 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012366{
12367#if defined(FEAT_GUI_TEXTDIALOG)
12368 /* Use a GUI dialog if the GUI is running and 'c' is not in 'guioptions' */
12369 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
12370 {
12371 char_u *message;
12372 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012373 char_u *defstr = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +000012374
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012375 message = get_tv_string_chk(&argvars[0]);
12376 if (argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaarc05f93f2006-05-02 22:09:31 +000012377 && (defstr = get_tv_string_buf_chk(&argvars[1], buf)) != NULL)
Bram Moolenaarce0842a2005-07-18 21:58:11 +000012378 vim_strncpy(IObuff, defstr, IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012379 else
12380 IObuff[0] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012381 if (message != NULL && defstr != NULL
12382 && do_dialog(VIM_QUESTION, NULL, message,
12383 (char_u *)_("&OK\n&Cancel"), 1, IObuff) == 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012384 rettv->vval.v_string = vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012385 else
12386 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012387 if (message != NULL && defstr != NULL
12388 && argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012389 && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012390 rettv->vval.v_string = vim_strsave(
12391 get_tv_string_buf(&argvars[2], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012392 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012393 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012394 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012395 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012396 }
12397 else
12398#endif
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012399 get_user_input(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012400}
12401
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012402/*
12403 * "inputlist()" function
12404 */
12405 static void
12406f_inputlist(argvars, rettv)
12407 typval_T *argvars;
12408 typval_T *rettv;
12409{
12410 listitem_T *li;
12411 int selected;
12412 int mouse_used;
12413
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012414#ifdef NO_CONSOLE_INPUT
12415 /* While starting up, there is no place to enter text. */
12416 if (no_console_input())
12417 return;
12418#endif
12419 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
12420 {
12421 EMSG2(_(e_listarg), "inputlist()");
12422 return;
12423 }
12424
12425 msg_start();
Bram Moolenaar412f7442006-07-23 19:51:57 +000012426 msg_row = Rows - 1; /* for when 'cmdheight' > 1 */
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012427 lines_left = Rows; /* avoid more prompt */
12428 msg_scroll = TRUE;
12429 msg_clr_eos();
12430
12431 for (li = argvars[0].vval.v_list->lv_first; li != NULL; li = li->li_next)
12432 {
12433 msg_puts(get_tv_string(&li->li_tv));
12434 msg_putchar('\n');
12435 }
12436
12437 /* Ask for choice. */
12438 selected = prompt_for_number(&mouse_used);
12439 if (mouse_used)
12440 selected -= lines_left;
12441
12442 rettv->vval.v_number = selected;
12443}
12444
12445
Bram Moolenaar071d4272004-06-13 20:20:40 +000012446static garray_T ga_userinput = {0, 0, sizeof(tasave_T), 4, NULL};
12447
12448/*
12449 * "inputrestore()" function
12450 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012451 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012452f_inputrestore(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012453 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012454 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012455{
12456 if (ga_userinput.ga_len > 0)
12457 {
12458 --ga_userinput.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012459 restore_typeahead((tasave_T *)(ga_userinput.ga_data)
12460 + ga_userinput.ga_len);
Bram Moolenaar798b30b2009-04-22 10:56:16 +000012461 /* default return is zero == OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012462 }
12463 else if (p_verbose > 1)
12464 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +000012465 verb_msg((char_u *)_("called inputrestore() more often than inputsave()"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012466 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012467 }
12468}
12469
12470/*
12471 * "inputsave()" function
12472 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012473 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012474f_inputsave(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012475 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012476 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012477{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012478 /* Add an entry to the stack of typeahead storage. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012479 if (ga_grow(&ga_userinput, 1) == OK)
12480 {
12481 save_typeahead((tasave_T *)(ga_userinput.ga_data)
12482 + ga_userinput.ga_len);
12483 ++ga_userinput.ga_len;
Bram Moolenaar798b30b2009-04-22 10:56:16 +000012484 /* default return is zero == OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012485 }
12486 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012487 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012488}
12489
12490/*
12491 * "inputsecret()" function
12492 */
12493 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012494f_inputsecret(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012495 typval_T *argvars;
12496 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012497{
12498 ++cmdline_star;
12499 ++inputsecret_flag;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012500 f_input(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012501 --cmdline_star;
12502 --inputsecret_flag;
12503}
12504
12505/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012506 * "insert()" function
12507 */
12508 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012509f_insert(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012510 typval_T *argvars;
12511 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012512{
12513 long before = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000012514 listitem_T *item;
12515 list_T *l;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012516 int error = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012517
12518 if (argvars[0].v_type != VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000012519 EMSG2(_(e_listarg), "insert()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012520 else if ((l = argvars[0].vval.v_list) != NULL
12521 && !tv_check_lock(l->lv_lock, (char_u *)"insert()"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012522 {
12523 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012524 before = get_tv_number_chk(&argvars[2], &error);
12525 if (error)
12526 return; /* type error; errmsg already given */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012527
Bram Moolenaar758711c2005-02-02 23:11:38 +000012528 if (before == l->lv_len)
12529 item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012530 else
12531 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012532 item = list_find(l, before);
12533 if (item == NULL)
12534 {
12535 EMSGN(_(e_listidx), before);
12536 l = NULL;
12537 }
12538 }
12539 if (l != NULL)
12540 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012541 list_insert_tv(l, &argvars[1], item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012542 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012543 }
12544 }
12545}
12546
12547/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012548 * "isdirectory()" function
12549 */
12550 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012551f_isdirectory(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012552 typval_T *argvars;
12553 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012554{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012555 rettv->vval.v_number = mch_isdir(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012556}
12557
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012558/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012559 * "islocked()" function
12560 */
12561 static void
12562f_islocked(argvars, rettv)
12563 typval_T *argvars;
12564 typval_T *rettv;
12565{
12566 lval_T lv;
12567 char_u *end;
12568 dictitem_T *di;
12569
12570 rettv->vval.v_number = -1;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000012571 end = get_lval(get_tv_string(&argvars[0]), NULL, &lv, FALSE, FALSE, FALSE,
12572 FNE_CHECK_START);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012573 if (end != NULL && lv.ll_name != NULL)
12574 {
12575 if (*end != NUL)
12576 EMSG(_(e_trailing));
12577 else
12578 {
12579 if (lv.ll_tv == NULL)
12580 {
12581 if (check_changedtick(lv.ll_name))
12582 rettv->vval.v_number = 1; /* always locked */
12583 else
12584 {
12585 di = find_var(lv.ll_name, NULL);
12586 if (di != NULL)
12587 {
12588 /* Consider a variable locked when:
12589 * 1. the variable itself is locked
12590 * 2. the value of the variable is locked.
12591 * 3. the List or Dict value is locked.
12592 */
12593 rettv->vval.v_number = ((di->di_flags & DI_FLAGS_LOCK)
12594 || tv_islocked(&di->di_tv));
12595 }
12596 }
12597 }
12598 else if (lv.ll_range)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000012599 EMSG(_("E786: Range not allowed"));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012600 else if (lv.ll_newkey != NULL)
12601 EMSG2(_(e_dictkey), lv.ll_newkey);
12602 else if (lv.ll_list != NULL)
12603 /* List item. */
12604 rettv->vval.v_number = tv_islocked(&lv.ll_li->li_tv);
12605 else
12606 /* Dictionary item. */
12607 rettv->vval.v_number = tv_islocked(&lv.ll_di->di_tv);
12608 }
12609 }
12610
12611 clear_lval(&lv);
12612}
12613
Bram Moolenaar33570922005-01-25 22:26:29 +000012614static void dict_list __ARGS((typval_T *argvars, typval_T *rettv, int what));
Bram Moolenaar8c711452005-01-14 21:53:12 +000012615
12616/*
12617 * Turn a dict into a list:
12618 * "what" == 0: list of keys
12619 * "what" == 1: list of values
12620 * "what" == 2: list of items
12621 */
12622 static void
12623dict_list(argvars, rettv, what)
Bram Moolenaar33570922005-01-25 22:26:29 +000012624 typval_T *argvars;
12625 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012626 int what;
12627{
Bram Moolenaar33570922005-01-25 22:26:29 +000012628 list_T *l2;
12629 dictitem_T *di;
12630 hashitem_T *hi;
12631 listitem_T *li;
12632 listitem_T *li2;
12633 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012634 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012635
Bram Moolenaar8c711452005-01-14 21:53:12 +000012636 if (argvars[0].v_type != VAR_DICT)
12637 {
12638 EMSG(_(e_dictreq));
12639 return;
12640 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012641 if ((d = argvars[0].vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012642 return;
12643
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012644 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012645 return;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012646
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012647 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000012648 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012649 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012650 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +000012651 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012652 --todo;
12653 di = HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012654
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012655 li = listitem_alloc();
12656 if (li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012657 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012658 list_append(rettv->vval.v_list, li);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012659
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012660 if (what == 0)
12661 {
12662 /* keys() */
12663 li->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012664 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012665 li->li_tv.vval.v_string = vim_strsave(di->di_key);
12666 }
12667 else if (what == 1)
12668 {
12669 /* values() */
12670 copy_tv(&di->di_tv, &li->li_tv);
12671 }
12672 else
12673 {
12674 /* items() */
12675 l2 = list_alloc();
12676 li->li_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012677 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012678 li->li_tv.vval.v_list = l2;
12679 if (l2 == NULL)
12680 break;
12681 ++l2->lv_refcount;
12682
12683 li2 = listitem_alloc();
12684 if (li2 == NULL)
12685 break;
12686 list_append(l2, li2);
12687 li2->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012688 li2->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012689 li2->li_tv.vval.v_string = vim_strsave(di->di_key);
12690
12691 li2 = listitem_alloc();
12692 if (li2 == NULL)
12693 break;
12694 list_append(l2, li2);
12695 copy_tv(&di->di_tv, &li2->li_tv);
12696 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000012697 }
12698 }
12699}
12700
12701/*
12702 * "items(dict)" function
12703 */
12704 static void
12705f_items(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012706 typval_T *argvars;
12707 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012708{
12709 dict_list(argvars, rettv, 2);
12710}
12711
Bram Moolenaar071d4272004-06-13 20:20:40 +000012712/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012713 * "join()" function
12714 */
12715 static void
12716f_join(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012717 typval_T *argvars;
12718 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012719{
12720 garray_T ga;
12721 char_u *sep;
12722
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012723 if (argvars[0].v_type != VAR_LIST)
12724 {
12725 EMSG(_(e_listreq));
12726 return;
12727 }
12728 if (argvars[0].vval.v_list == NULL)
12729 return;
12730 if (argvars[1].v_type == VAR_UNKNOWN)
12731 sep = (char_u *)" ";
12732 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012733 sep = get_tv_string_chk(&argvars[1]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012734
12735 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012736
12737 if (sep != NULL)
12738 {
12739 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000012740 list_join(&ga, argvars[0].vval.v_list, sep, TRUE, 0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012741 ga_append(&ga, NUL);
12742 rettv->vval.v_string = (char_u *)ga.ga_data;
12743 }
12744 else
12745 rettv->vval.v_string = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012746}
12747
12748/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000012749 * "keys()" function
12750 */
12751 static void
12752f_keys(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012753 typval_T *argvars;
12754 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012755{
12756 dict_list(argvars, rettv, 0);
12757}
12758
12759/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012760 * "last_buffer_nr()" function.
12761 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012762 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012763f_last_buffer_nr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012764 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012765 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012766{
12767 int n = 0;
12768 buf_T *buf;
12769
12770 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
12771 if (n < buf->b_fnum)
12772 n = buf->b_fnum;
12773
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012774 rettv->vval.v_number = n;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012775}
12776
12777/*
12778 * "len()" function
12779 */
12780 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012781f_len(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012782 typval_T *argvars;
12783 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012784{
12785 switch (argvars[0].v_type)
12786 {
12787 case VAR_STRING:
12788 case VAR_NUMBER:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012789 rettv->vval.v_number = (varnumber_T)STRLEN(
12790 get_tv_string(&argvars[0]));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012791 break;
12792 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012793 rettv->vval.v_number = list_len(argvars[0].vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012794 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +000012795 case VAR_DICT:
12796 rettv->vval.v_number = dict_len(argvars[0].vval.v_dict);
12797 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012798 default:
Bram Moolenaare49b69a2005-01-08 16:11:57 +000012799 EMSG(_("E701: Invalid type for len()"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012800 break;
12801 }
12802}
12803
Bram Moolenaar33570922005-01-25 22:26:29 +000012804static void libcall_common __ARGS((typval_T *argvars, typval_T *rettv, int type));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012805
12806 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012807libcall_common(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000012808 typval_T *argvars;
12809 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012810 int type;
12811{
12812#ifdef FEAT_LIBCALL
12813 char_u *string_in;
12814 char_u **string_result;
12815 int nr_result;
12816#endif
12817
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012818 rettv->v_type = type;
Bram Moolenaar798b30b2009-04-22 10:56:16 +000012819 if (type != VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012820 rettv->vval.v_string = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012821
12822 if (check_restricted() || check_secure())
12823 return;
12824
12825#ifdef FEAT_LIBCALL
12826 /* The first two args must be strings, otherwise its meaningless */
12827 if (argvars[0].v_type == VAR_STRING && argvars[1].v_type == VAR_STRING)
12828 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012829 string_in = NULL;
12830 if (argvars[2].v_type == VAR_STRING)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012831 string_in = argvars[2].vval.v_string;
12832 if (type == VAR_NUMBER)
12833 string_result = NULL;
12834 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012835 string_result = &rettv->vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012836 if (mch_libcall(argvars[0].vval.v_string,
12837 argvars[1].vval.v_string,
12838 string_in,
12839 argvars[2].vval.v_number,
12840 string_result,
12841 &nr_result) == OK
12842 && type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012843 rettv->vval.v_number = nr_result;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012844 }
12845#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000012846}
12847
12848/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012849 * "libcall()" function
12850 */
12851 static void
12852f_libcall(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012853 typval_T *argvars;
12854 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012855{
12856 libcall_common(argvars, rettv, VAR_STRING);
12857}
12858
12859/*
12860 * "libcallnr()" function
12861 */
12862 static void
12863f_libcallnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012864 typval_T *argvars;
12865 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012866{
12867 libcall_common(argvars, rettv, VAR_NUMBER);
12868}
12869
12870/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012871 * "line(string)" function
12872 */
12873 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012874f_line(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012875 typval_T *argvars;
12876 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012877{
12878 linenr_T lnum = 0;
12879 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012880 int fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012881
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012882 fp = var2fpos(&argvars[0], TRUE, &fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012883 if (fp != NULL)
12884 lnum = fp->lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012885 rettv->vval.v_number = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012886}
12887
12888/*
12889 * "line2byte(lnum)" function
12890 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012891 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012892f_line2byte(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012893 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012894 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012895{
12896#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012897 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012898#else
12899 linenr_T lnum;
12900
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012901 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012902 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012903 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012904 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012905 rettv->vval.v_number = ml_find_line_or_offset(curbuf, lnum, NULL);
12906 if (rettv->vval.v_number >= 0)
12907 ++rettv->vval.v_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012908#endif
12909}
12910
12911/*
12912 * "lispindent(lnum)" function
12913 */
12914 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012915f_lispindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012916 typval_T *argvars;
12917 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012918{
12919#ifdef FEAT_LISP
12920 pos_T pos;
12921 linenr_T lnum;
12922
12923 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012924 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012925 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
12926 {
12927 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012928 rettv->vval.v_number = get_lisp_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +000012929 curwin->w_cursor = pos;
12930 }
12931 else
12932#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012933 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012934}
12935
12936/*
12937 * "localtime()" function
12938 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012939 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012940f_localtime(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012941 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012942 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012943{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012944 rettv->vval.v_number = (varnumber_T)time(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012945}
12946
Bram Moolenaar33570922005-01-25 22:26:29 +000012947static void get_maparg __ARGS((typval_T *argvars, typval_T *rettv, int exact));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012948
12949 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012950get_maparg(argvars, rettv, exact)
Bram Moolenaar33570922005-01-25 22:26:29 +000012951 typval_T *argvars;
12952 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012953 int exact;
12954{
12955 char_u *keys;
12956 char_u *which;
12957 char_u buf[NUMBUFLEN];
12958 char_u *keys_buf = NULL;
12959 char_u *rhs;
12960 int mode;
12961 garray_T ga;
Bram Moolenaar2c932302006-03-18 21:42:09 +000012962 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012963
12964 /* return empty string for failure */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012965 rettv->v_type = VAR_STRING;
12966 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012967
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012968 keys = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012969 if (*keys == NUL)
12970 return;
12971
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012972 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar2c932302006-03-18 21:42:09 +000012973 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012974 which = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012975 if (argvars[2].v_type != VAR_UNKNOWN)
12976 abbr = get_tv_number(&argvars[2]);
12977 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012978 else
12979 which = (char_u *)"";
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012980 if (which == NULL)
12981 return;
12982
Bram Moolenaar071d4272004-06-13 20:20:40 +000012983 mode = get_map_mode(&which, 0);
12984
Bram Moolenaar3fb9eda2006-05-03 21:29:58 +000012985 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE, FALSE);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012986 rhs = check_map(keys, mode, exact, FALSE, abbr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012987 vim_free(keys_buf);
12988 if (rhs != NULL)
12989 {
12990 ga_init(&ga);
12991 ga.ga_itemsize = 1;
12992 ga.ga_growsize = 40;
12993
12994 while (*rhs != NUL)
12995 ga_concat(&ga, str2special(&rhs, FALSE));
12996
12997 ga_append(&ga, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012998 rettv->vval.v_string = (char_u *)ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012999 }
13000}
13001
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013002#ifdef FEAT_FLOAT
13003/*
13004 * "log10()" function
13005 */
13006 static void
13007f_log10(argvars, rettv)
13008 typval_T *argvars;
13009 typval_T *rettv;
13010{
13011 float_T f;
13012
13013 rettv->v_type = VAR_FLOAT;
13014 if (get_float_arg(argvars, &f) == OK)
13015 rettv->vval.v_float = log10(f);
13016 else
13017 rettv->vval.v_float = 0.0;
13018}
13019#endif
13020
Bram Moolenaar071d4272004-06-13 20:20:40 +000013021/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013022 * "map()" function
13023 */
13024 static void
13025f_map(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013026 typval_T *argvars;
13027 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013028{
13029 filter_map(argvars, rettv, TRUE);
13030}
13031
13032/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013033 * "maparg()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013034 */
13035 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013036f_maparg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013037 typval_T *argvars;
13038 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013039{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013040 get_maparg(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013041}
13042
13043/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013044 * "mapcheck()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013045 */
13046 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013047f_mapcheck(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013048 typval_T *argvars;
13049 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013050{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013051 get_maparg(argvars, rettv, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013052}
13053
Bram Moolenaar33570922005-01-25 22:26:29 +000013054static void find_some_match __ARGS((typval_T *argvars, typval_T *rettv, int start));
Bram Moolenaar071d4272004-06-13 20:20:40 +000013055
13056 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013057find_some_match(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000013058 typval_T *argvars;
13059 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013060 int type;
13061{
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013062 char_u *str = NULL;
13063 char_u *expr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013064 char_u *pat;
13065 regmatch_T regmatch;
13066 char_u patbuf[NUMBUFLEN];
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013067 char_u strbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000013068 char_u *save_cpo;
13069 long start = 0;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013070 long nth = 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013071 colnr_T startcol = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013072 int match = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000013073 list_T *l = NULL;
13074 listitem_T *li = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013075 long idx = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013076 char_u *tofree = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013077
13078 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
13079 save_cpo = p_cpo;
13080 p_cpo = (char_u *)"";
13081
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013082 rettv->vval.v_number = -1;
13083 if (type == 3)
13084 {
13085 /* return empty list when there are no matches */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013086 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013087 goto theend;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013088 }
13089 else if (type == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013090 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013091 rettv->v_type = VAR_STRING;
13092 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013093 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013094
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013095 if (argvars[0].v_type == VAR_LIST)
13096 {
13097 if ((l = argvars[0].vval.v_list) == NULL)
13098 goto theend;
13099 li = l->lv_first;
13100 }
13101 else
13102 expr = str = get_tv_string(&argvars[0]);
13103
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013104 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
13105 if (pat == NULL)
13106 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013107
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013108 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013109 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013110 int error = FALSE;
13111
13112 start = get_tv_number_chk(&argvars[2], &error);
13113 if (error)
13114 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013115 if (l != NULL)
13116 {
13117 li = list_find(l, start);
13118 if (li == NULL)
13119 goto theend;
Bram Moolenaar758711c2005-02-02 23:11:38 +000013120 idx = l->lv_idx; /* use the cached index */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013121 }
13122 else
13123 {
13124 if (start < 0)
13125 start = 0;
13126 if (start > (long)STRLEN(str))
13127 goto theend;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000013128 /* When "count" argument is there ignore matches before "start",
13129 * otherwise skip part of the string. Differs when pattern is "^"
13130 * or "\<". */
13131 if (argvars[3].v_type != VAR_UNKNOWN)
13132 startcol = start;
13133 else
13134 str += start;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013135 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013136
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013137 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013138 nth = get_tv_number_chk(&argvars[3], &error);
13139 if (error)
13140 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013141 }
13142
13143 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
13144 if (regmatch.regprog != NULL)
13145 {
13146 regmatch.rm_ic = p_ic;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013147
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013148 for (;;)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013149 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013150 if (l != NULL)
13151 {
13152 if (li == NULL)
13153 {
13154 match = FALSE;
13155 break;
13156 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013157 vim_free(tofree);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013158 str = echo_string(&li->li_tv, &tofree, strbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013159 if (str == NULL)
13160 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013161 }
13162
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013163 match = vim_regexec_nl(&regmatch, str, (colnr_T)startcol);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013164
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013165 if (match && --nth <= 0)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013166 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013167 if (l == NULL && !match)
13168 break;
13169
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013170 /* Advance to just after the match. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013171 if (l != NULL)
13172 {
13173 li = li->li_next;
13174 ++idx;
13175 }
13176 else
13177 {
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013178#ifdef FEAT_MBYTE
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013179 startcol = (colnr_T)(regmatch.startp[0]
13180 + (*mb_ptr2len)(regmatch.startp[0]) - str);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013181#else
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013182 startcol = regmatch.startp[0] + 1 - str;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013183#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013184 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013185 }
13186
13187 if (match)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013188 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013189 if (type == 3)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013190 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013191 int i;
13192
13193 /* return list with matched string and submatches */
13194 for (i = 0; i < NSUBEXP; ++i)
13195 {
13196 if (regmatch.endp[i] == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000013197 {
13198 if (list_append_string(rettv->vval.v_list,
13199 (char_u *)"", 0) == FAIL)
13200 break;
13201 }
13202 else if (list_append_string(rettv->vval.v_list,
Bram Moolenaar4463f292005-09-25 22:20:24 +000013203 regmatch.startp[i],
13204 (int)(regmatch.endp[i] - regmatch.startp[i]))
13205 == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013206 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013207 }
13208 }
13209 else if (type == 2)
13210 {
13211 /* return matched string */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013212 if (l != NULL)
13213 copy_tv(&li->li_tv, rettv);
13214 else
13215 rettv->vval.v_string = vim_strnsave(regmatch.startp[0],
Bram Moolenaar071d4272004-06-13 20:20:40 +000013216 (int)(regmatch.endp[0] - regmatch.startp[0]));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013217 }
13218 else if (l != NULL)
13219 rettv->vval.v_number = idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013220 else
13221 {
13222 if (type != 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013223 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013224 (varnumber_T)(regmatch.startp[0] - str);
13225 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013226 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013227 (varnumber_T)(regmatch.endp[0] - str);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013228 rettv->vval.v_number += (varnumber_T)(str - expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013229 }
13230 }
13231 vim_free(regmatch.regprog);
13232 }
13233
13234theend:
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013235 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013236 p_cpo = save_cpo;
13237}
13238
13239/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013240 * "match()" function
13241 */
13242 static void
13243f_match(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013244 typval_T *argvars;
13245 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013246{
13247 find_some_match(argvars, rettv, 1);
13248}
13249
13250/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013251 * "matchadd()" function
13252 */
13253 static void
13254f_matchadd(argvars, rettv)
13255 typval_T *argvars;
13256 typval_T *rettv;
13257{
13258#ifdef FEAT_SEARCH_EXTRA
13259 char_u buf[NUMBUFLEN];
13260 char_u *grp = get_tv_string_buf_chk(&argvars[0], buf); /* group */
13261 char_u *pat = get_tv_string_buf_chk(&argvars[1], buf); /* pattern */
13262 int prio = 10; /* default priority */
13263 int id = -1;
13264 int error = FALSE;
13265
13266 rettv->vval.v_number = -1;
13267
13268 if (grp == NULL || pat == NULL)
13269 return;
13270 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013271 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013272 prio = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013273 if (argvars[3].v_type != VAR_UNKNOWN)
13274 id = get_tv_number_chk(&argvars[3], &error);
13275 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013276 if (error == TRUE)
13277 return;
13278 if (id >= 1 && id <= 3)
13279 {
13280 EMSGN("E798: ID is reserved for \":match\": %ld", id);
13281 return;
13282 }
13283
13284 rettv->vval.v_number = match_add(curwin, grp, pat, prio, id);
13285#endif
13286}
13287
13288/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013289 * "matcharg()" function
13290 */
13291 static void
13292f_matcharg(argvars, rettv)
13293 typval_T *argvars;
13294 typval_T *rettv;
13295{
13296 if (rettv_list_alloc(rettv) == OK)
13297 {
13298#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013299 int id = get_tv_number(&argvars[0]);
13300 matchitem_T *m;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013301
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013302 if (id >= 1 && id <= 3)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013303 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013304 if ((m = (matchitem_T *)get_match(curwin, id)) != NULL)
13305 {
13306 list_append_string(rettv->vval.v_list,
13307 syn_id2name(m->hlg_id), -1);
13308 list_append_string(rettv->vval.v_list, m->pattern, -1);
13309 }
13310 else
13311 {
13312 list_append_string(rettv->vval.v_list, NUL, -1);
13313 list_append_string(rettv->vval.v_list, NUL, -1);
13314 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013315 }
13316#endif
13317 }
13318}
13319
13320/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013321 * "matchdelete()" function
13322 */
13323 static void
13324f_matchdelete(argvars, rettv)
13325 typval_T *argvars;
13326 typval_T *rettv;
13327{
13328#ifdef FEAT_SEARCH_EXTRA
13329 rettv->vval.v_number = match_delete(curwin,
13330 (int)get_tv_number(&argvars[0]), TRUE);
13331#endif
13332}
13333
13334/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013335 * "matchend()" function
13336 */
13337 static void
13338f_matchend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013339 typval_T *argvars;
13340 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013341{
13342 find_some_match(argvars, rettv, 0);
13343}
13344
13345/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013346 * "matchlist()" function
13347 */
13348 static void
13349f_matchlist(argvars, rettv)
13350 typval_T *argvars;
13351 typval_T *rettv;
13352{
13353 find_some_match(argvars, rettv, 3);
13354}
13355
13356/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013357 * "matchstr()" function
13358 */
13359 static void
13360f_matchstr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013361 typval_T *argvars;
13362 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013363{
13364 find_some_match(argvars, rettv, 2);
13365}
13366
Bram Moolenaar33570922005-01-25 22:26:29 +000013367static void max_min __ARGS((typval_T *argvars, typval_T *rettv, int domax));
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013368
13369 static void
13370max_min(argvars, rettv, domax)
Bram Moolenaar33570922005-01-25 22:26:29 +000013371 typval_T *argvars;
13372 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013373 int domax;
13374{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013375 long n = 0;
13376 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013377 int error = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013378
13379 if (argvars[0].v_type == VAR_LIST)
13380 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013381 list_T *l;
13382 listitem_T *li;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013383
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013384 l = argvars[0].vval.v_list;
13385 if (l != NULL)
13386 {
13387 li = l->lv_first;
13388 if (li != NULL)
13389 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013390 n = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013391 for (;;)
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013392 {
13393 li = li->li_next;
13394 if (li == NULL)
13395 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013396 i = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013397 if (domax ? i > n : i < n)
13398 n = i;
13399 }
13400 }
13401 }
13402 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000013403 else if (argvars[0].v_type == VAR_DICT)
13404 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013405 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013406 int first = TRUE;
Bram Moolenaar33570922005-01-25 22:26:29 +000013407 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013408 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013409
13410 d = argvars[0].vval.v_dict;
13411 if (d != NULL)
13412 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013413 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000013414 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013415 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013416 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +000013417 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013418 --todo;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013419 i = get_tv_number_chk(&HI2DI(hi)->di_tv, &error);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013420 if (first)
13421 {
13422 n = i;
13423 first = FALSE;
13424 }
13425 else if (domax ? i > n : i < n)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013426 n = i;
13427 }
13428 }
13429 }
13430 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013431 else
Bram Moolenaar758711c2005-02-02 23:11:38 +000013432 EMSG(_(e_listdictarg));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013433 rettv->vval.v_number = error ? 0 : n;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013434}
13435
13436/*
13437 * "max()" function
13438 */
13439 static void
13440f_max(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013441 typval_T *argvars;
13442 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013443{
13444 max_min(argvars, rettv, TRUE);
13445}
13446
13447/*
13448 * "min()" function
13449 */
13450 static void
13451f_min(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013452 typval_T *argvars;
13453 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013454{
13455 max_min(argvars, rettv, FALSE);
13456}
13457
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013458static int mkdir_recurse __ARGS((char_u *dir, int prot));
13459
13460/*
13461 * Create the directory in which "dir" is located, and higher levels when
13462 * needed.
13463 */
13464 static int
13465mkdir_recurse(dir, prot)
13466 char_u *dir;
13467 int prot;
13468{
13469 char_u *p;
13470 char_u *updir;
13471 int r = FAIL;
13472
13473 /* Get end of directory name in "dir".
13474 * We're done when it's "/" or "c:/". */
13475 p = gettail_sep(dir);
13476 if (p <= get_past_head(dir))
13477 return OK;
13478
13479 /* If the directory exists we're done. Otherwise: create it.*/
13480 updir = vim_strnsave(dir, (int)(p - dir));
13481 if (updir == NULL)
13482 return FAIL;
13483 if (mch_isdir(updir))
13484 r = OK;
13485 else if (mkdir_recurse(updir, prot) == OK)
13486 r = vim_mkdir_emsg(updir, prot);
13487 vim_free(updir);
13488 return r;
13489}
13490
13491#ifdef vim_mkdir
13492/*
13493 * "mkdir()" function
13494 */
13495 static void
13496f_mkdir(argvars, rettv)
13497 typval_T *argvars;
13498 typval_T *rettv;
13499{
13500 char_u *dir;
13501 char_u buf[NUMBUFLEN];
13502 int prot = 0755;
13503
13504 rettv->vval.v_number = FAIL;
13505 if (check_restricted() || check_secure())
13506 return;
13507
13508 dir = get_tv_string_buf(&argvars[0], buf);
13509 if (argvars[1].v_type != VAR_UNKNOWN)
13510 {
13511 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013512 prot = get_tv_number_chk(&argvars[2], NULL);
13513 if (prot != -1 && STRCMP(get_tv_string(&argvars[1]), "p") == 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013514 mkdir_recurse(dir, prot);
13515 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013516 rettv->vval.v_number = prot != -1 ? vim_mkdir_emsg(dir, prot) : 0;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013517}
13518#endif
13519
Bram Moolenaar0d660222005-01-07 21:51:51 +000013520/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013521 * "mode()" function
13522 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000013523 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013524f_mode(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013525 typval_T *argvars;
13526 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013527{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013528 char_u buf[3];
13529
13530 buf[1] = NUL;
13531 buf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013532
13533#ifdef FEAT_VISUAL
13534 if (VIsual_active)
13535 {
13536 if (VIsual_select)
13537 buf[0] = VIsual_mode + 's' - 'v';
13538 else
13539 buf[0] = VIsual_mode;
13540 }
13541 else
13542#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013543 if (State == HITRETURN || State == ASKMORE || State == SETWSIZE
13544 || State == CONFIRM)
13545 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013546 buf[0] = 'r';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013547 if (State == ASKMORE)
13548 buf[1] = 'm';
13549 else if (State == CONFIRM)
13550 buf[1] = '?';
13551 }
13552 else if (State == EXTERNCMD)
13553 buf[0] = '!';
Bram Moolenaar071d4272004-06-13 20:20:40 +000013554 else if (State & INSERT)
13555 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013556#ifdef FEAT_VREPLACE
13557 if (State & VREPLACE_FLAG)
13558 {
13559 buf[0] = 'R';
13560 buf[1] = 'v';
13561 }
13562 else
13563#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000013564 if (State & REPLACE_FLAG)
13565 buf[0] = 'R';
13566 else
13567 buf[0] = 'i';
13568 }
13569 else if (State & CMDLINE)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013570 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013571 buf[0] = 'c';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013572 if (exmode_active)
13573 buf[1] = 'v';
13574 }
13575 else if (exmode_active)
13576 {
13577 buf[0] = 'c';
13578 buf[1] = 'e';
13579 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013580 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013581 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013582 buf[0] = 'n';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013583 if (finish_op)
13584 buf[1] = 'o';
13585 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013586
Bram Moolenaar05bb9532008-07-04 09:44:11 +000013587 /* Clear out the minor mode when the argument is not a non-zero number or
13588 * non-empty string. */
13589 if (!non_zero_arg(&argvars[0]))
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013590 buf[1] = NUL;
13591
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013592 rettv->vval.v_string = vim_strsave(buf);
13593 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013594}
13595
Bram Moolenaar7e506b62010-01-19 15:55:06 +010013596#ifdef FEAT_MZSCHEME
13597/*
13598 * "mzeval()" function
13599 */
13600 static void
13601f_mzeval(argvars, rettv)
13602 typval_T *argvars;
13603 typval_T *rettv;
13604{
13605 char_u *str;
13606 char_u buf[NUMBUFLEN];
13607
13608 str = get_tv_string_buf(&argvars[0], buf);
13609 do_mzeval(str, rettv);
13610}
13611#endif
13612
Bram Moolenaar071d4272004-06-13 20:20:40 +000013613/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013614 * "nextnonblank()" function
13615 */
13616 static void
13617f_nextnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013618 typval_T *argvars;
13619 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013620{
13621 linenr_T lnum;
13622
13623 for (lnum = get_tv_lnum(argvars); ; ++lnum)
13624 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013625 if (lnum < 0 || lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar0d660222005-01-07 21:51:51 +000013626 {
13627 lnum = 0;
13628 break;
13629 }
13630 if (*skipwhite(ml_get(lnum)) != NUL)
13631 break;
13632 }
13633 rettv->vval.v_number = lnum;
13634}
13635
13636/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013637 * "nr2char()" function
13638 */
13639 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013640f_nr2char(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013641 typval_T *argvars;
13642 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013643{
13644 char_u buf[NUMBUFLEN];
13645
13646#ifdef FEAT_MBYTE
13647 if (has_mbyte)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013648 buf[(*mb_char2bytes)((int)get_tv_number(&argvars[0]), buf)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013649 else
13650#endif
13651 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013652 buf[0] = (char_u)get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013653 buf[1] = NUL;
13654 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013655 rettv->v_type = VAR_STRING;
13656 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013657}
13658
13659/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013660 * "pathshorten()" function
13661 */
13662 static void
13663f_pathshorten(argvars, rettv)
13664 typval_T *argvars;
13665 typval_T *rettv;
13666{
13667 char_u *p;
13668
13669 rettv->v_type = VAR_STRING;
13670 p = get_tv_string_chk(&argvars[0]);
13671 if (p == NULL)
13672 rettv->vval.v_string = NULL;
13673 else
13674 {
13675 p = vim_strsave(p);
13676 rettv->vval.v_string = p;
13677 if (p != NULL)
13678 shorten_dir(p);
13679 }
13680}
13681
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013682#ifdef FEAT_FLOAT
13683/*
13684 * "pow()" function
13685 */
13686 static void
13687f_pow(argvars, rettv)
13688 typval_T *argvars;
13689 typval_T *rettv;
13690{
13691 float_T fx, fy;
13692
13693 rettv->v_type = VAR_FLOAT;
13694 if (get_float_arg(argvars, &fx) == OK
13695 && get_float_arg(&argvars[1], &fy) == OK)
13696 rettv->vval.v_float = pow(fx, fy);
13697 else
13698 rettv->vval.v_float = 0.0;
13699}
13700#endif
13701
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013702/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013703 * "prevnonblank()" function
13704 */
13705 static void
13706f_prevnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013707 typval_T *argvars;
13708 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013709{
13710 linenr_T lnum;
13711
13712 lnum = get_tv_lnum(argvars);
13713 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
13714 lnum = 0;
13715 else
13716 while (lnum >= 1 && *skipwhite(ml_get(lnum)) == NUL)
13717 --lnum;
13718 rettv->vval.v_number = lnum;
13719}
13720
Bram Moolenaara6c840d2005-08-22 22:59:46 +000013721#ifdef HAVE_STDARG_H
13722/* This dummy va_list is here because:
13723 * - passing a NULL pointer doesn't work when va_list isn't a pointer
13724 * - locally in the function results in a "used before set" warning
13725 * - using va_start() to initialize it gives "function with fixed args" error */
13726static va_list ap;
13727#endif
13728
Bram Moolenaar8c711452005-01-14 21:53:12 +000013729/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013730 * "printf()" function
13731 */
13732 static void
13733f_printf(argvars, rettv)
13734 typval_T *argvars;
13735 typval_T *rettv;
13736{
13737 rettv->v_type = VAR_STRING;
13738 rettv->vval.v_string = NULL;
Bram Moolenaard52d9742005-08-21 22:20:28 +000013739#ifdef HAVE_STDARG_H /* only very old compilers can't do this */
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013740 {
13741 char_u buf[NUMBUFLEN];
13742 int len;
13743 char_u *s;
13744 int saved_did_emsg = did_emsg;
13745 char *fmt;
13746
13747 /* Get the required length, allocate the buffer and do it for real. */
13748 did_emsg = FALSE;
13749 fmt = (char *)get_tv_string_buf(&argvars[0], buf);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013750 len = vim_vsnprintf(NULL, 0, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013751 if (!did_emsg)
13752 {
13753 s = alloc(len + 1);
13754 if (s != NULL)
13755 {
13756 rettv->vval.v_string = s;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013757 (void)vim_vsnprintf((char *)s, len + 1, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013758 }
13759 }
13760 did_emsg |= saved_did_emsg;
13761 }
13762#endif
13763}
13764
13765/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013766 * "pumvisible()" function
13767 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013768 static void
13769f_pumvisible(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000013770 typval_T *argvars UNUSED;
13771 typval_T *rettv UNUSED;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013772{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013773#ifdef FEAT_INS_EXPAND
13774 if (pum_visible())
13775 rettv->vval.v_number = 1;
13776#endif
13777}
13778
13779/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000013780 * "range()" function
13781 */
13782 static void
13783f_range(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013784 typval_T *argvars;
13785 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013786{
13787 long start;
13788 long end;
13789 long stride = 1;
13790 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013791 int error = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013792
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013793 start = get_tv_number_chk(&argvars[0], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013794 if (argvars[1].v_type == VAR_UNKNOWN)
13795 {
13796 end = start - 1;
13797 start = 0;
13798 }
13799 else
13800 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013801 end = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013802 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013803 stride = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013804 }
13805
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013806 if (error)
13807 return; /* type error; errmsg already given */
Bram Moolenaar8c711452005-01-14 21:53:12 +000013808 if (stride == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013809 EMSG(_("E726: Stride is zero"));
Bram Moolenaar92124a32005-06-17 22:03:40 +000013810 else if (stride > 0 ? end + 1 < start : end - 1 > start)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013811 EMSG(_("E727: Start past end"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000013812 else
13813 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013814 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013815 for (i = start; stride > 0 ? i <= end : i >= end; i += stride)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013816 if (list_append_number(rettv->vval.v_list,
13817 (varnumber_T)i) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013818 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013819 }
13820}
13821
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013822/*
13823 * "readfile()" function
13824 */
13825 static void
13826f_readfile(argvars, rettv)
13827 typval_T *argvars;
13828 typval_T *rettv;
13829{
13830 int binary = FALSE;
13831 char_u *fname;
13832 FILE *fd;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013833 listitem_T *li;
13834#define FREAD_SIZE 200 /* optimized for text lines */
13835 char_u buf[FREAD_SIZE];
13836 int readlen; /* size of last fread() */
13837 int buflen; /* nr of valid chars in buf[] */
13838 int filtd; /* how much in buf[] was NUL -> '\n' filtered */
13839 int tolist; /* first byte in buf[] still to be put in list */
13840 int chop; /* how many CR to chop off */
13841 char_u *prev = NULL; /* previously read bytes, if any */
13842 int prevlen = 0; /* length of "prev" if not NULL */
13843 char_u *s;
13844 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013845 long maxline = MAXLNUM;
13846 long cnt = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013847
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013848 if (argvars[1].v_type != VAR_UNKNOWN)
13849 {
13850 if (STRCMP(get_tv_string(&argvars[1]), "b") == 0)
13851 binary = TRUE;
13852 if (argvars[2].v_type != VAR_UNKNOWN)
13853 maxline = get_tv_number(&argvars[2]);
13854 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013855
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013856 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013857 return;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013858
13859 /* Always open the file in binary mode, library functions have a mind of
13860 * their own about CR-LF conversion. */
13861 fname = get_tv_string(&argvars[0]);
13862 if (*fname == NUL || (fd = mch_fopen((char *)fname, READBIN)) == NULL)
13863 {
13864 EMSG2(_(e_notopen), *fname == NUL ? (char_u *)_("<empty>") : fname);
13865 return;
13866 }
13867
13868 filtd = 0;
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013869 while (cnt < maxline || maxline < 0)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013870 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013871 readlen = (int)fread(buf + filtd, 1, FREAD_SIZE - filtd, fd);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013872 buflen = filtd + readlen;
13873 tolist = 0;
13874 for ( ; filtd < buflen || readlen <= 0; ++filtd)
13875 {
13876 if (buf[filtd] == '\n' || readlen <= 0)
13877 {
13878 /* Only when in binary mode add an empty list item when the
13879 * last line ends in a '\n'. */
13880 if (!binary && readlen == 0 && filtd == 0)
13881 break;
13882
13883 /* Found end-of-line or end-of-file: add a text line to the
13884 * list. */
13885 chop = 0;
13886 if (!binary)
13887 while (filtd - chop - 1 >= tolist
13888 && buf[filtd - chop - 1] == '\r')
13889 ++chop;
13890 len = filtd - tolist - chop;
13891 if (prev == NULL)
13892 s = vim_strnsave(buf + tolist, len);
13893 else
13894 {
13895 s = alloc((unsigned)(prevlen + len + 1));
13896 if (s != NULL)
13897 {
13898 mch_memmove(s, prev, prevlen);
13899 vim_free(prev);
13900 prev = NULL;
13901 mch_memmove(s + prevlen, buf + tolist, len);
13902 s[prevlen + len] = NUL;
13903 }
13904 }
13905 tolist = filtd + 1;
13906
13907 li = listitem_alloc();
13908 if (li == NULL)
13909 {
13910 vim_free(s);
13911 break;
13912 }
13913 li->li_tv.v_type = VAR_STRING;
13914 li->li_tv.v_lock = 0;
13915 li->li_tv.vval.v_string = s;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013916 list_append(rettv->vval.v_list, li);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013917
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013918 if (++cnt >= maxline && maxline >= 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013919 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013920 if (readlen <= 0)
13921 break;
13922 }
13923 else if (buf[filtd] == NUL)
13924 buf[filtd] = '\n';
13925 }
13926 if (readlen <= 0)
13927 break;
13928
13929 if (tolist == 0)
13930 {
13931 /* "buf" is full, need to move text to an allocated buffer */
13932 if (prev == NULL)
13933 {
13934 prev = vim_strnsave(buf, buflen);
13935 prevlen = buflen;
13936 }
13937 else
13938 {
13939 s = alloc((unsigned)(prevlen + buflen));
13940 if (s != NULL)
13941 {
13942 mch_memmove(s, prev, prevlen);
13943 mch_memmove(s + prevlen, buf, buflen);
13944 vim_free(prev);
13945 prev = s;
13946 prevlen += buflen;
13947 }
13948 }
13949 filtd = 0;
13950 }
13951 else
13952 {
13953 mch_memmove(buf, buf + tolist, buflen - tolist);
13954 filtd -= tolist;
13955 }
13956 }
13957
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013958 /*
13959 * For a negative line count use only the lines at the end of the file,
13960 * free the rest.
13961 */
13962 if (maxline < 0)
13963 while (cnt > -maxline)
13964 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013965 listitem_remove(rettv->vval.v_list, rettv->vval.v_list->lv_first);
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013966 --cnt;
13967 }
13968
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013969 vim_free(prev);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013970 fclose(fd);
13971}
13972
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013973#if defined(FEAT_RELTIME)
13974static int list2proftime __ARGS((typval_T *arg, proftime_T *tm));
13975
13976/*
13977 * Convert a List to proftime_T.
13978 * Return FAIL when there is something wrong.
13979 */
13980 static int
13981list2proftime(arg, tm)
13982 typval_T *arg;
13983 proftime_T *tm;
13984{
13985 long n1, n2;
13986 int error = FALSE;
13987
13988 if (arg->v_type != VAR_LIST || arg->vval.v_list == NULL
13989 || arg->vval.v_list->lv_len != 2)
13990 return FAIL;
13991 n1 = list_find_nr(arg->vval.v_list, 0L, &error);
13992 n2 = list_find_nr(arg->vval.v_list, 1L, &error);
13993# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000013994 tm->HighPart = n1;
13995 tm->LowPart = n2;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013996# else
13997 tm->tv_sec = n1;
13998 tm->tv_usec = n2;
13999# endif
14000 return error ? FAIL : OK;
14001}
14002#endif /* FEAT_RELTIME */
14003
14004/*
14005 * "reltime()" function
14006 */
14007 static void
14008f_reltime(argvars, rettv)
14009 typval_T *argvars;
14010 typval_T *rettv;
14011{
14012#ifdef FEAT_RELTIME
14013 proftime_T res;
14014 proftime_T start;
14015
14016 if (argvars[0].v_type == VAR_UNKNOWN)
14017 {
14018 /* No arguments: get current time. */
14019 profile_start(&res);
14020 }
14021 else if (argvars[1].v_type == VAR_UNKNOWN)
14022 {
14023 if (list2proftime(&argvars[0], &res) == FAIL)
14024 return;
14025 profile_end(&res);
14026 }
14027 else
14028 {
14029 /* Two arguments: compute the difference. */
14030 if (list2proftime(&argvars[0], &start) == FAIL
14031 || list2proftime(&argvars[1], &res) == FAIL)
14032 return;
14033 profile_sub(&res, &start);
14034 }
14035
14036 if (rettv_list_alloc(rettv) == OK)
14037 {
14038 long n1, n2;
14039
14040# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000014041 n1 = res.HighPart;
14042 n2 = res.LowPart;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000014043# else
14044 n1 = res.tv_sec;
14045 n2 = res.tv_usec;
14046# endif
14047 list_append_number(rettv->vval.v_list, (varnumber_T)n1);
14048 list_append_number(rettv->vval.v_list, (varnumber_T)n2);
14049 }
14050#endif
14051}
14052
14053/*
14054 * "reltimestr()" function
14055 */
14056 static void
14057f_reltimestr(argvars, rettv)
14058 typval_T *argvars;
14059 typval_T *rettv;
14060{
14061#ifdef FEAT_RELTIME
14062 proftime_T tm;
14063#endif
14064
14065 rettv->v_type = VAR_STRING;
14066 rettv->vval.v_string = NULL;
14067#ifdef FEAT_RELTIME
14068 if (list2proftime(&argvars[0], &tm) == OK)
14069 rettv->vval.v_string = vim_strsave((char_u *)profile_msg(&tm));
14070#endif
14071}
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000014072
Bram Moolenaar0d660222005-01-07 21:51:51 +000014073#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
14074static void make_connection __ARGS((void));
14075static int check_connection __ARGS((void));
14076
14077 static void
14078make_connection()
14079{
14080 if (X_DISPLAY == NULL
14081# ifdef FEAT_GUI
14082 && !gui.in_use
14083# endif
14084 )
14085 {
14086 x_force_connect = TRUE;
14087 setup_term_clip();
14088 x_force_connect = FALSE;
14089 }
14090}
14091
14092 static int
14093check_connection()
14094{
14095 make_connection();
14096 if (X_DISPLAY == NULL)
14097 {
14098 EMSG(_("E240: No connection to Vim server"));
14099 return FAIL;
14100 }
14101 return OK;
14102}
14103#endif
14104
14105#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014106static void remote_common __ARGS((typval_T *argvars, typval_T *rettv, int expr));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014107
14108 static void
14109remote_common(argvars, rettv, expr)
Bram Moolenaar33570922005-01-25 22:26:29 +000014110 typval_T *argvars;
14111 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014112 int expr;
14113{
14114 char_u *server_name;
14115 char_u *keys;
14116 char_u *r = NULL;
14117 char_u buf[NUMBUFLEN];
14118# ifdef WIN32
14119 HWND w;
14120# else
14121 Window w;
14122# endif
14123
14124 if (check_restricted() || check_secure())
14125 return;
14126
14127# ifdef FEAT_X11
14128 if (check_connection() == FAIL)
14129 return;
14130# endif
14131
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014132 server_name = get_tv_string_chk(&argvars[0]);
14133 if (server_name == NULL)
14134 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014135 keys = get_tv_string_buf(&argvars[1], buf);
14136# ifdef WIN32
14137 if (serverSendToVim(server_name, keys, &r, &w, expr, TRUE) < 0)
14138# else
14139 if (serverSendToVim(X_DISPLAY, server_name, keys, &r, &w, expr, 0, TRUE)
14140 < 0)
14141# endif
14142 {
14143 if (r != NULL)
14144 EMSG(r); /* sending worked but evaluation failed */
14145 else
14146 EMSG2(_("E241: Unable to send to %s"), server_name);
14147 return;
14148 }
14149
14150 rettv->vval.v_string = r;
14151
14152 if (argvars[2].v_type != VAR_UNKNOWN)
14153 {
Bram Moolenaar33570922005-01-25 22:26:29 +000014154 dictitem_T v;
Bram Moolenaar555b2802005-05-19 21:08:39 +000014155 char_u str[30];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014156 char_u *idvar;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014157
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014158 sprintf((char *)str, PRINTF_HEX_LONG_U, (long_u)w);
Bram Moolenaar33570922005-01-25 22:26:29 +000014159 v.di_tv.v_type = VAR_STRING;
14160 v.di_tv.vval.v_string = vim_strsave(str);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014161 idvar = get_tv_string_chk(&argvars[2]);
14162 if (idvar != NULL)
14163 set_var(idvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014164 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014165 }
14166}
14167#endif
14168
14169/*
14170 * "remote_expr()" function
14171 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014172 static void
14173f_remote_expr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014174 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014175 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014176{
14177 rettv->v_type = VAR_STRING;
14178 rettv->vval.v_string = NULL;
14179#ifdef FEAT_CLIENTSERVER
14180 remote_common(argvars, rettv, TRUE);
14181#endif
14182}
14183
14184/*
14185 * "remote_foreground()" function
14186 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014187 static void
14188f_remote_foreground(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014189 typval_T *argvars UNUSED;
14190 typval_T *rettv UNUSED;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014191{
Bram Moolenaar0d660222005-01-07 21:51:51 +000014192#ifdef FEAT_CLIENTSERVER
14193# ifdef WIN32
14194 /* On Win32 it's done in this application. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014195 {
14196 char_u *server_name = get_tv_string_chk(&argvars[0]);
14197
14198 if (server_name != NULL)
14199 serverForeground(server_name);
14200 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014201# else
14202 /* Send a foreground() expression to the server. */
14203 argvars[1].v_type = VAR_STRING;
14204 argvars[1].vval.v_string = vim_strsave((char_u *)"foreground()");
14205 argvars[2].v_type = VAR_UNKNOWN;
14206 remote_common(argvars, rettv, TRUE);
14207 vim_free(argvars[1].vval.v_string);
14208# endif
14209#endif
14210}
14211
Bram Moolenaar0d660222005-01-07 21:51:51 +000014212 static void
14213f_remote_peek(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014214 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014215 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014216{
14217#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014218 dictitem_T v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014219 char_u *s = NULL;
14220# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014221 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014222# endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014223 char_u *serverid;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014224
14225 if (check_restricted() || check_secure())
14226 {
14227 rettv->vval.v_number = -1;
14228 return;
14229 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014230 serverid = get_tv_string_chk(&argvars[0]);
14231 if (serverid == NULL)
14232 {
14233 rettv->vval.v_number = -1;
14234 return; /* type error; errmsg already given */
14235 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014236# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014237 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014238 if (n == 0)
14239 rettv->vval.v_number = -1;
14240 else
14241 {
14242 s = serverGetReply((HWND)n, FALSE, FALSE, FALSE);
14243 rettv->vval.v_number = (s != NULL);
14244 }
14245# else
Bram Moolenaar0d660222005-01-07 21:51:51 +000014246 if (check_connection() == FAIL)
14247 return;
14248
14249 rettv->vval.v_number = serverPeekReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014250 serverStrToWin(serverid), &s);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014251# endif
14252
14253 if (argvars[1].v_type != VAR_UNKNOWN && rettv->vval.v_number > 0)
14254 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014255 char_u *retvar;
14256
Bram Moolenaar33570922005-01-25 22:26:29 +000014257 v.di_tv.v_type = VAR_STRING;
14258 v.di_tv.vval.v_string = vim_strsave(s);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014259 retvar = get_tv_string_chk(&argvars[1]);
14260 if (retvar != NULL)
14261 set_var(retvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014262 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014263 }
14264#else
14265 rettv->vval.v_number = -1;
14266#endif
14267}
14268
Bram Moolenaar0d660222005-01-07 21:51:51 +000014269 static void
14270f_remote_read(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014271 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014272 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014273{
14274 char_u *r = NULL;
14275
14276#ifdef FEAT_CLIENTSERVER
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014277 char_u *serverid = get_tv_string_chk(&argvars[0]);
14278
14279 if (serverid != NULL && !check_restricted() && !check_secure())
Bram Moolenaar0d660222005-01-07 21:51:51 +000014280 {
14281# ifdef WIN32
14282 /* The server's HWND is encoded in the 'id' parameter */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014283 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014284
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014285 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014286 if (n != 0)
14287 r = serverGetReply((HWND)n, FALSE, TRUE, TRUE);
14288 if (r == NULL)
14289# else
14290 if (check_connection() == FAIL || serverReadReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014291 serverStrToWin(serverid), &r, FALSE) < 0)
Bram Moolenaar0d660222005-01-07 21:51:51 +000014292# endif
14293 EMSG(_("E277: Unable to read a server reply"));
14294 }
14295#endif
14296 rettv->v_type = VAR_STRING;
14297 rettv->vval.v_string = r;
14298}
14299
14300/*
14301 * "remote_send()" function
14302 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014303 static void
14304f_remote_send(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014305 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014306 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014307{
14308 rettv->v_type = VAR_STRING;
14309 rettv->vval.v_string = NULL;
14310#ifdef FEAT_CLIENTSERVER
14311 remote_common(argvars, rettv, FALSE);
14312#endif
14313}
14314
14315/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000014316 * "remove()" function
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014317 */
14318 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014319f_remove(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014320 typval_T *argvars;
14321 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014322{
Bram Moolenaar33570922005-01-25 22:26:29 +000014323 list_T *l;
14324 listitem_T *item, *item2;
14325 listitem_T *li;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014326 long idx;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014327 long end;
Bram Moolenaar8c711452005-01-14 21:53:12 +000014328 char_u *key;
Bram Moolenaar33570922005-01-25 22:26:29 +000014329 dict_T *d;
14330 dictitem_T *di;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014331
Bram Moolenaar8c711452005-01-14 21:53:12 +000014332 if (argvars[0].v_type == VAR_DICT)
14333 {
14334 if (argvars[2].v_type != VAR_UNKNOWN)
14335 EMSG2(_(e_toomanyarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014336 else if ((d = argvars[0].vval.v_dict) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014337 && !tv_check_lock(d->dv_lock, (char_u *)"remove() argument"))
Bram Moolenaar8c711452005-01-14 21:53:12 +000014338 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014339 key = get_tv_string_chk(&argvars[1]);
14340 if (key != NULL)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014341 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014342 di = dict_find(d, key, -1);
14343 if (di == NULL)
14344 EMSG2(_(e_dictkey), key);
14345 else
14346 {
14347 *rettv = di->di_tv;
14348 init_tv(&di->di_tv);
14349 dictitem_remove(d, di);
14350 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014351 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000014352 }
14353 }
14354 else if (argvars[0].v_type != VAR_LIST)
14355 EMSG2(_(e_listdictarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014356 else if ((l = argvars[0].vval.v_list) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014357 && !tv_check_lock(l->lv_lock, (char_u *)"remove() argument"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014358 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014359 int error = FALSE;
14360
14361 idx = get_tv_number_chk(&argvars[1], &error);
14362 if (error)
14363 ; /* type error: do nothing, errmsg already given */
14364 else if ((item = list_find(l, idx)) == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014365 EMSGN(_(e_listidx), idx);
14366 else
14367 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014368 if (argvars[2].v_type == VAR_UNKNOWN)
14369 {
14370 /* Remove one item, return its value. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014371 list_remove(l, item, item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014372 *rettv = item->li_tv;
14373 vim_free(item);
14374 }
14375 else
14376 {
14377 /* Remove range of items, return list with values. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014378 end = get_tv_number_chk(&argvars[2], &error);
14379 if (error)
14380 ; /* type error: do nothing */
14381 else if ((item2 = list_find(l, end)) == NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014382 EMSGN(_(e_listidx), end);
14383 else
14384 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000014385 int cnt = 0;
14386
14387 for (li = item; li != NULL; li = li->li_next)
14388 {
14389 ++cnt;
14390 if (li == item2)
14391 break;
14392 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014393 if (li == NULL) /* didn't find "item2" after "item" */
14394 EMSG(_(e_invrange));
14395 else
14396 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014397 list_remove(l, item, item2);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014398 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014399 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014400 l = rettv->vval.v_list;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014401 l->lv_first = item;
14402 l->lv_last = item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014403 item->li_prev = NULL;
14404 item2->li_next = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014405 l->lv_len = cnt;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014406 }
14407 }
14408 }
14409 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014410 }
14411 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014412}
14413
14414/*
14415 * "rename({from}, {to})" function
14416 */
14417 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014418f_rename(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014419 typval_T *argvars;
14420 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014421{
14422 char_u buf[NUMBUFLEN];
14423
14424 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014425 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014426 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014427 rettv->vval.v_number = vim_rename(get_tv_string(&argvars[0]),
14428 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000014429}
14430
14431/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014432 * "repeat()" function
14433 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014434 static void
14435f_repeat(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014436 typval_T *argvars;
14437 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014438{
14439 char_u *p;
14440 int n;
14441 int slen;
14442 int len;
14443 char_u *r;
14444 int i;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014445
14446 n = get_tv_number(&argvars[1]);
14447 if (argvars[0].v_type == VAR_LIST)
14448 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014449 if (rettv_list_alloc(rettv) == OK && argvars[0].vval.v_list != NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014450 while (n-- > 0)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014451 if (list_extend(rettv->vval.v_list,
14452 argvars[0].vval.v_list, NULL) == FAIL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014453 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014454 }
14455 else
14456 {
14457 p = get_tv_string(&argvars[0]);
14458 rettv->v_type = VAR_STRING;
14459 rettv->vval.v_string = NULL;
14460
14461 slen = (int)STRLEN(p);
14462 len = slen * n;
14463 if (len <= 0)
14464 return;
14465
14466 r = alloc(len + 1);
14467 if (r != NULL)
14468 {
14469 for (i = 0; i < n; i++)
14470 mch_memmove(r + i * slen, p, (size_t)slen);
14471 r[len] = NUL;
14472 }
14473
14474 rettv->vval.v_string = r;
14475 }
14476}
14477
14478/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000014479 * "resolve()" function
14480 */
14481 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014482f_resolve(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014483 typval_T *argvars;
14484 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014485{
14486 char_u *p;
14487
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014488 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014489#ifdef FEAT_SHORTCUT
14490 {
14491 char_u *v = NULL;
14492
14493 v = mch_resolve_shortcut(p);
14494 if (v != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014495 rettv->vval.v_string = v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014496 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014497 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014498 }
14499#else
14500# ifdef HAVE_READLINK
14501 {
14502 char_u buf[MAXPATHL + 1];
14503 char_u *cpy;
14504 int len;
14505 char_u *remain = NULL;
14506 char_u *q;
14507 int is_relative_to_current = FALSE;
14508 int has_trailing_pathsep = FALSE;
14509 int limit = 100;
14510
14511 p = vim_strsave(p);
14512
14513 if (p[0] == '.' && (vim_ispathsep(p[1])
14514 || (p[1] == '.' && (vim_ispathsep(p[2])))))
14515 is_relative_to_current = TRUE;
14516
14517 len = STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014518 if (len > 0 && after_pathsep(p, p + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +000014519 has_trailing_pathsep = TRUE;
14520
14521 q = getnextcomp(p);
14522 if (*q != NUL)
14523 {
14524 /* Separate the first path component in "p", and keep the
14525 * remainder (beginning with the path separator). */
14526 remain = vim_strsave(q - 1);
14527 q[-1] = NUL;
14528 }
14529
14530 for (;;)
14531 {
14532 for (;;)
14533 {
14534 len = readlink((char *)p, (char *)buf, MAXPATHL);
14535 if (len <= 0)
14536 break;
14537 buf[len] = NUL;
14538
14539 if (limit-- == 0)
14540 {
14541 vim_free(p);
14542 vim_free(remain);
14543 EMSG(_("E655: Too many symbolic links (cycle?)"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014544 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014545 goto fail;
14546 }
14547
14548 /* Ensure that the result will have a trailing path separator
14549 * if the argument has one. */
14550 if (remain == NULL && has_trailing_pathsep)
14551 add_pathsep(buf);
14552
14553 /* Separate the first path component in the link value and
14554 * concatenate the remainders. */
14555 q = getnextcomp(vim_ispathsep(*buf) ? buf + 1 : buf);
14556 if (*q != NUL)
14557 {
14558 if (remain == NULL)
14559 remain = vim_strsave(q - 1);
14560 else
14561 {
Bram Moolenaar900b4d72005-12-12 22:05:50 +000014562 cpy = concat_str(q - 1, remain);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014563 if (cpy != NULL)
14564 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014565 vim_free(remain);
14566 remain = cpy;
14567 }
14568 }
14569 q[-1] = NUL;
14570 }
14571
14572 q = gettail(p);
14573 if (q > p && *q == NUL)
14574 {
14575 /* Ignore trailing path separator. */
14576 q[-1] = NUL;
14577 q = gettail(p);
14578 }
14579 if (q > p && !mch_isFullName(buf))
14580 {
14581 /* symlink is relative to directory of argument */
14582 cpy = alloc((unsigned)(STRLEN(p) + STRLEN(buf) + 1));
14583 if (cpy != NULL)
14584 {
14585 STRCPY(cpy, p);
14586 STRCPY(gettail(cpy), buf);
14587 vim_free(p);
14588 p = cpy;
14589 }
14590 }
14591 else
14592 {
14593 vim_free(p);
14594 p = vim_strsave(buf);
14595 }
14596 }
14597
14598 if (remain == NULL)
14599 break;
14600
14601 /* Append the first path component of "remain" to "p". */
14602 q = getnextcomp(remain + 1);
14603 len = q - remain - (*q != NUL);
14604 cpy = vim_strnsave(p, STRLEN(p) + len);
14605 if (cpy != NULL)
14606 {
14607 STRNCAT(cpy, remain, len);
14608 vim_free(p);
14609 p = cpy;
14610 }
14611 /* Shorten "remain". */
14612 if (*q != NUL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014613 STRMOVE(remain, q - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014614 else
14615 {
14616 vim_free(remain);
14617 remain = NULL;
14618 }
14619 }
14620
14621 /* If the result is a relative path name, make it explicitly relative to
14622 * the current directory if and only if the argument had this form. */
14623 if (!vim_ispathsep(*p))
14624 {
14625 if (is_relative_to_current
14626 && *p != NUL
14627 && !(p[0] == '.'
14628 && (p[1] == NUL
14629 || vim_ispathsep(p[1])
14630 || (p[1] == '.'
14631 && (p[2] == NUL
14632 || vim_ispathsep(p[2]))))))
14633 {
14634 /* Prepend "./". */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000014635 cpy = concat_str((char_u *)"./", p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014636 if (cpy != NULL)
14637 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014638 vim_free(p);
14639 p = cpy;
14640 }
14641 }
14642 else if (!is_relative_to_current)
14643 {
14644 /* Strip leading "./". */
14645 q = p;
14646 while (q[0] == '.' && vim_ispathsep(q[1]))
14647 q += 2;
14648 if (q > p)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014649 STRMOVE(p, p + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014650 }
14651 }
14652
14653 /* Ensure that the result will have no trailing path separator
14654 * if the argument had none. But keep "/" or "//". */
14655 if (!has_trailing_pathsep)
14656 {
14657 q = p + STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014658 if (after_pathsep(p, q))
14659 *gettail_sep(p) = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014660 }
14661
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014662 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014663 }
14664# else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014665 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014666# endif
14667#endif
14668
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014669 simplify_filename(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014670
14671#ifdef HAVE_READLINK
14672fail:
14673#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014674 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014675}
14676
14677/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000014678 * "reverse({list})" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000014679 */
14680 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000014681f_reverse(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014682 typval_T *argvars;
14683 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014684{
Bram Moolenaar33570922005-01-25 22:26:29 +000014685 list_T *l;
14686 listitem_T *li, *ni;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014687
Bram Moolenaar0d660222005-01-07 21:51:51 +000014688 if (argvars[0].v_type != VAR_LIST)
14689 EMSG2(_(e_listarg), "reverse()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014690 else if ((l = argvars[0].vval.v_list) != NULL
14691 && !tv_check_lock(l->lv_lock, (char_u *)"reverse()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000014692 {
14693 li = l->lv_last;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000014694 l->lv_first = l->lv_last = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014695 l->lv_len = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014696 while (li != NULL)
14697 {
14698 ni = li->li_prev;
14699 list_append(l, li);
14700 li = ni;
14701 }
14702 rettv->vval.v_list = l;
14703 rettv->v_type = VAR_LIST;
14704 ++l->lv_refcount;
Bram Moolenaar52514562008-04-01 11:12:09 +000014705 l->lv_idx = l->lv_len - l->lv_idx - 1;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014706 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014707}
14708
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014709#define SP_NOMOVE 0x01 /* don't move cursor */
14710#define SP_REPEAT 0x02 /* repeat to find outer pair */
14711#define SP_RETCOUNT 0x04 /* return matchcount */
14712#define SP_SETPCMARK 0x08 /* set previous context mark */
14713#define SP_START 0x10 /* accept match at start position */
14714#define SP_SUBPAT 0x20 /* return nr of matching sub-pattern */
14715#define SP_END 0x40 /* leave cursor at end of match */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014716
Bram Moolenaar33570922005-01-25 22:26:29 +000014717static int get_search_arg __ARGS((typval_T *varp, int *flagsp));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014718
14719/*
14720 * Get flags for a search function.
14721 * Possibly sets "p_ws".
14722 * Returns BACKWARD, FORWARD or zero (for an error).
14723 */
14724 static int
14725get_search_arg(varp, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014726 typval_T *varp;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014727 int *flagsp;
14728{
14729 int dir = FORWARD;
14730 char_u *flags;
14731 char_u nbuf[NUMBUFLEN];
14732 int mask;
14733
14734 if (varp->v_type != VAR_UNKNOWN)
14735 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014736 flags = get_tv_string_buf_chk(varp, nbuf);
14737 if (flags == NULL)
14738 return 0; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014739 while (*flags != NUL)
14740 {
14741 switch (*flags)
14742 {
14743 case 'b': dir = BACKWARD; break;
14744 case 'w': p_ws = TRUE; break;
14745 case 'W': p_ws = FALSE; break;
14746 default: mask = 0;
14747 if (flagsp != NULL)
14748 switch (*flags)
14749 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014750 case 'c': mask = SP_START; break;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014751 case 'e': mask = SP_END; break;
14752 case 'm': mask = SP_RETCOUNT; break;
14753 case 'n': mask = SP_NOMOVE; break;
14754 case 'p': mask = SP_SUBPAT; break;
14755 case 'r': mask = SP_REPEAT; break;
14756 case 's': mask = SP_SETPCMARK; break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014757 }
14758 if (mask == 0)
14759 {
14760 EMSG2(_(e_invarg2), flags);
14761 dir = 0;
14762 }
14763 else
14764 *flagsp |= mask;
14765 }
14766 if (dir == 0)
14767 break;
14768 ++flags;
14769 }
14770 }
14771 return dir;
14772}
14773
Bram Moolenaar071d4272004-06-13 20:20:40 +000014774/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014775 * Shared by search() and searchpos() functions
Bram Moolenaar071d4272004-06-13 20:20:40 +000014776 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014777 static int
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014778search_cmn(argvars, match_pos, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014779 typval_T *argvars;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014780 pos_T *match_pos;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014781 int *flagsp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014782{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014783 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014784 char_u *pat;
14785 pos_T pos;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014786 pos_T save_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014787 int save_p_ws = p_ws;
14788 int dir;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014789 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014790 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014791 proftime_T tm;
14792#ifdef FEAT_RELTIME
14793 long time_limit = 0;
14794#endif
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014795 int options = SEARCH_KEEP;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014796 int subpatnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014797
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014798 pat = get_tv_string(&argvars[0]);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014799 dir = get_search_arg(&argvars[1], flagsp); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014800 if (dir == 0)
14801 goto theend;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014802 flags = *flagsp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014803 if (flags & SP_START)
14804 options |= SEARCH_START;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014805 if (flags & SP_END)
14806 options |= SEARCH_END;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014807
Bram Moolenaar76929292008-01-06 19:07:36 +000014808 /* Optional arguments: line number to stop searching and timeout. */
14809 if (argvars[1].v_type != VAR_UNKNOWN && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014810 {
14811 lnum_stop = get_tv_number_chk(&argvars[2], NULL);
14812 if (lnum_stop < 0)
14813 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014814#ifdef FEAT_RELTIME
14815 if (argvars[3].v_type != VAR_UNKNOWN)
14816 {
14817 time_limit = get_tv_number_chk(&argvars[3], NULL);
14818 if (time_limit < 0)
14819 goto theend;
14820 }
14821#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014822 }
14823
Bram Moolenaar76929292008-01-06 19:07:36 +000014824#ifdef FEAT_RELTIME
14825 /* Set the time limit, if there is one. */
14826 profile_setlimit(time_limit, &tm);
14827#endif
14828
Bram Moolenaar231334e2005-07-25 20:46:57 +000014829 /*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014830 * This function does not accept SP_REPEAT and SP_RETCOUNT flags.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014831 * Check to make sure only those flags are set.
14832 * Also, Only the SP_NOMOVE or the SP_SETPCMARK flag can be set. Both
14833 * flags cannot be set. Check for that condition also.
14834 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014835 if (((flags & (SP_REPEAT | SP_RETCOUNT)) != 0)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014836 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014837 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014838 EMSG2(_(e_invarg2), get_tv_string(&argvars[1]));
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014839 goto theend;
14840 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014841
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014842 pos = save_cursor = curwin->w_cursor;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014843 subpatnum = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000014844 options, RE_SEARCH, (linenr_T)lnum_stop, &tm);
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014845 if (subpatnum != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014846 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014847 if (flags & SP_SUBPAT)
14848 retval = subpatnum;
14849 else
14850 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000014851 if (flags & SP_SETPCMARK)
14852 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000014853 curwin->w_cursor = pos;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014854 if (match_pos != NULL)
14855 {
14856 /* Store the match cursor position */
14857 match_pos->lnum = pos.lnum;
14858 match_pos->col = pos.col + 1;
14859 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014860 /* "/$" will put the cursor after the end of the line, may need to
14861 * correct that here */
14862 check_cursor();
14863 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014864
14865 /* If 'n' flag is used: restore cursor position. */
14866 if (flags & SP_NOMOVE)
14867 curwin->w_cursor = save_cursor;
Bram Moolenaar7a42fa32007-07-10 11:28:55 +000014868 else
14869 curwin->w_set_curswant = TRUE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014870theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +000014871 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014872
14873 return retval;
14874}
14875
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014876#ifdef FEAT_FLOAT
14877/*
14878 * "round({float})" function
14879 */
14880 static void
14881f_round(argvars, rettv)
14882 typval_T *argvars;
14883 typval_T *rettv;
14884{
14885 float_T f;
14886
14887 rettv->v_type = VAR_FLOAT;
14888 if (get_float_arg(argvars, &f) == OK)
14889 /* round() is not in C90, use ceil() or floor() instead. */
14890 rettv->vval.v_float = f > 0 ? floor(f + 0.5) : ceil(f - 0.5);
14891 else
14892 rettv->vval.v_float = 0.0;
14893}
14894#endif
14895
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014896/*
14897 * "search()" function
14898 */
14899 static void
14900f_search(argvars, rettv)
14901 typval_T *argvars;
14902 typval_T *rettv;
14903{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014904 int flags = 0;
14905
14906 rettv->vval.v_number = search_cmn(argvars, NULL, &flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014907}
14908
Bram Moolenaar071d4272004-06-13 20:20:40 +000014909/*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014910 * "searchdecl()" function
14911 */
14912 static void
14913f_searchdecl(argvars, rettv)
14914 typval_T *argvars;
14915 typval_T *rettv;
14916{
14917 int locally = 1;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014918 int thisblock = 0;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014919 int error = FALSE;
14920 char_u *name;
14921
14922 rettv->vval.v_number = 1; /* default: FAIL */
14923
14924 name = get_tv_string_chk(&argvars[0]);
14925 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaare6facf92005-09-13 21:22:27 +000014926 {
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014927 locally = get_tv_number_chk(&argvars[1], &error) == 0;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014928 if (!error && argvars[2].v_type != VAR_UNKNOWN)
14929 thisblock = get_tv_number_chk(&argvars[2], &error) != 0;
14930 }
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014931 if (!error && name != NULL)
14932 rettv->vval.v_number = find_decl(name, (int)STRLEN(name),
Bram Moolenaare6facf92005-09-13 21:22:27 +000014933 locally, thisblock, SEARCH_KEEP) == FAIL;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014934}
14935
14936/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014937 * Used by searchpair() and searchpairpos()
Bram Moolenaar071d4272004-06-13 20:20:40 +000014938 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014939 static int
14940searchpair_cmn(argvars, match_pos)
Bram Moolenaar33570922005-01-25 22:26:29 +000014941 typval_T *argvars;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014942 pos_T *match_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014943{
14944 char_u *spat, *mpat, *epat;
14945 char_u *skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014946 int save_p_ws = p_ws;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014947 int dir;
14948 int flags = 0;
14949 char_u nbuf1[NUMBUFLEN];
14950 char_u nbuf2[NUMBUFLEN];
14951 char_u nbuf3[NUMBUFLEN];
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014952 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014953 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014954 long time_limit = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014955
Bram Moolenaar071d4272004-06-13 20:20:40 +000014956 /* Get the three pattern arguments: start, middle, end. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014957 spat = get_tv_string_chk(&argvars[0]);
14958 mpat = get_tv_string_buf_chk(&argvars[1], nbuf1);
14959 epat = get_tv_string_buf_chk(&argvars[2], nbuf2);
14960 if (spat == NULL || mpat == NULL || epat == NULL)
14961 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014962
Bram Moolenaar071d4272004-06-13 20:20:40 +000014963 /* Handle the optional fourth argument: flags */
14964 dir = get_search_arg(&argvars[3], &flags); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014965 if (dir == 0)
14966 goto theend;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014967
14968 /* Don't accept SP_END or SP_SUBPAT.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014969 * Only one of the SP_NOMOVE or SP_SETPCMARK flags can be set.
14970 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014971 if ((flags & (SP_END | SP_SUBPAT)) != 0
14972 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar231334e2005-07-25 20:46:57 +000014973 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014974 EMSG2(_(e_invarg2), get_tv_string(&argvars[3]));
Bram Moolenaar231334e2005-07-25 20:46:57 +000014975 goto theend;
14976 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014977
Bram Moolenaar92de73d2008-01-22 10:59:38 +000014978 /* Using 'r' implies 'W', otherwise it doesn't work. */
14979 if (flags & SP_REPEAT)
14980 p_ws = FALSE;
14981
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014982 /* Optional fifth argument: skip expression */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014983 if (argvars[3].v_type == VAR_UNKNOWN
14984 || argvars[4].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014985 skip = (char_u *)"";
14986 else
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014987 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014988 skip = get_tv_string_buf_chk(&argvars[4], nbuf3);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014989 if (argvars[5].v_type != VAR_UNKNOWN)
14990 {
14991 lnum_stop = get_tv_number_chk(&argvars[5], NULL);
14992 if (lnum_stop < 0)
14993 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014994#ifdef FEAT_RELTIME
14995 if (argvars[6].v_type != VAR_UNKNOWN)
14996 {
14997 time_limit = get_tv_number_chk(&argvars[6], NULL);
14998 if (time_limit < 0)
14999 goto theend;
15000 }
15001#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015002 }
15003 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015004 if (skip == NULL)
15005 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015006
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015007 retval = do_searchpair(spat, mpat, epat, dir, skip, flags,
Bram Moolenaar76929292008-01-06 19:07:36 +000015008 match_pos, lnum_stop, time_limit);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015009
15010theend:
15011 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015012
15013 return retval;
15014}
15015
15016/*
15017 * "searchpair()" function
15018 */
15019 static void
15020f_searchpair(argvars, rettv)
15021 typval_T *argvars;
15022 typval_T *rettv;
15023{
15024 rettv->vval.v_number = searchpair_cmn(argvars, NULL);
15025}
15026
15027/*
15028 * "searchpairpos()" function
15029 */
15030 static void
15031f_searchpairpos(argvars, rettv)
15032 typval_T *argvars;
15033 typval_T *rettv;
15034{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015035 pos_T match_pos;
15036 int lnum = 0;
15037 int col = 0;
15038
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015039 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015040 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015041
15042 if (searchpair_cmn(argvars, &match_pos) > 0)
15043 {
15044 lnum = match_pos.lnum;
15045 col = match_pos.col;
15046 }
15047
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015048 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15049 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015050}
15051
15052/*
15053 * Search for a start/middle/end thing.
15054 * Used by searchpair(), see its documentation for the details.
15055 * Returns 0 or -1 for no match,
15056 */
15057 long
Bram Moolenaar76929292008-01-06 19:07:36 +000015058do_searchpair(spat, mpat, epat, dir, skip, flags, match_pos,
15059 lnum_stop, time_limit)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015060 char_u *spat; /* start pattern */
15061 char_u *mpat; /* middle pattern */
15062 char_u *epat; /* end pattern */
15063 int dir; /* BACKWARD or FORWARD */
15064 char_u *skip; /* skip expression */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000015065 int flags; /* SP_SETPCMARK and other SP_ values */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015066 pos_T *match_pos;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015067 linenr_T lnum_stop; /* stop at this line if not zero */
Bram Moolenaar76929292008-01-06 19:07:36 +000015068 long time_limit; /* stop after this many msec */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015069{
15070 char_u *save_cpo;
15071 char_u *pat, *pat2 = NULL, *pat3 = NULL;
15072 long retval = 0;
15073 pos_T pos;
15074 pos_T firstpos;
15075 pos_T foundpos;
15076 pos_T save_cursor;
15077 pos_T save_pos;
15078 int n;
15079 int r;
15080 int nest = 1;
15081 int err;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015082 int options = SEARCH_KEEP;
Bram Moolenaar76929292008-01-06 19:07:36 +000015083 proftime_T tm;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015084
15085 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
15086 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015087 p_cpo = empty_option;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015088
Bram Moolenaar76929292008-01-06 19:07:36 +000015089#ifdef FEAT_RELTIME
15090 /* Set the time limit, if there is one. */
15091 profile_setlimit(time_limit, &tm);
15092#endif
15093
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015094 /* Make two search patterns: start/end (pat2, for in nested pairs) and
15095 * start/middle/end (pat3, for the top pair). */
15096 pat2 = alloc((unsigned)(STRLEN(spat) + STRLEN(epat) + 15));
15097 pat3 = alloc((unsigned)(STRLEN(spat) + STRLEN(mpat) + STRLEN(epat) + 23));
15098 if (pat2 == NULL || pat3 == NULL)
15099 goto theend;
15100 sprintf((char *)pat2, "\\(%s\\m\\)\\|\\(%s\\m\\)", spat, epat);
15101 if (*mpat == NUL)
15102 STRCPY(pat3, pat2);
15103 else
15104 sprintf((char *)pat3, "\\(%s\\m\\)\\|\\(%s\\m\\)\\|\\(%s\\m\\)",
15105 spat, epat, mpat);
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015106 if (flags & SP_START)
15107 options |= SEARCH_START;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015108
Bram Moolenaar071d4272004-06-13 20:20:40 +000015109 save_cursor = curwin->w_cursor;
15110 pos = curwin->w_cursor;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000015111 clearpos(&firstpos);
15112 clearpos(&foundpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015113 pat = pat3;
15114 for (;;)
15115 {
15116 n = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000015117 options, RE_SEARCH, lnum_stop, &tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015118 if (n == FAIL || (firstpos.lnum != 0 && equalpos(pos, firstpos)))
15119 /* didn't find it or found the first match again: FAIL */
15120 break;
15121
15122 if (firstpos.lnum == 0)
15123 firstpos = pos;
Bram Moolenaarc9a2d2e2005-04-24 22:09:56 +000015124 if (equalpos(pos, foundpos))
15125 {
15126 /* Found the same position again. Can happen with a pattern that
15127 * has "\zs" at the end and searching backwards. Advance one
15128 * character and try again. */
15129 if (dir == BACKWARD)
15130 decl(&pos);
15131 else
15132 incl(&pos);
15133 }
15134 foundpos = pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015135
Bram Moolenaar92de73d2008-01-22 10:59:38 +000015136 /* clear the start flag to avoid getting stuck here */
15137 options &= ~SEARCH_START;
15138
Bram Moolenaar071d4272004-06-13 20:20:40 +000015139 /* If the skip pattern matches, ignore this match. */
15140 if (*skip != NUL)
15141 {
15142 save_pos = curwin->w_cursor;
15143 curwin->w_cursor = pos;
15144 r = eval_to_bool(skip, &err, NULL, FALSE);
15145 curwin->w_cursor = save_pos;
15146 if (err)
15147 {
15148 /* Evaluating {skip} caused an error, break here. */
15149 curwin->w_cursor = save_cursor;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015150 retval = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015151 break;
15152 }
15153 if (r)
15154 continue;
15155 }
15156
15157 if ((dir == BACKWARD && n == 3) || (dir == FORWARD && n == 2))
15158 {
15159 /* Found end when searching backwards or start when searching
15160 * forward: nested pair. */
15161 ++nest;
15162 pat = pat2; /* nested, don't search for middle */
15163 }
15164 else
15165 {
15166 /* Found end when searching forward or start when searching
15167 * backward: end of (nested) pair; or found middle in outer pair. */
15168 if (--nest == 1)
15169 pat = pat3; /* outer level, search for middle */
15170 }
15171
15172 if (nest == 0)
15173 {
15174 /* Found the match: return matchcount or line number. */
15175 if (flags & SP_RETCOUNT)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015176 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015177 else
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015178 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000015179 if (flags & SP_SETPCMARK)
15180 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000015181 curwin->w_cursor = pos;
15182 if (!(flags & SP_REPEAT))
15183 break;
15184 nest = 1; /* search for next unmatched */
15185 }
15186 }
15187
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015188 if (match_pos != NULL)
15189 {
15190 /* Store the match cursor position */
15191 match_pos->lnum = curwin->w_cursor.lnum;
15192 match_pos->col = curwin->w_cursor.col + 1;
15193 }
15194
Bram Moolenaar071d4272004-06-13 20:20:40 +000015195 /* If 'n' flag is used or search failed: restore cursor position. */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015196 if ((flags & SP_NOMOVE) || retval == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015197 curwin->w_cursor = save_cursor;
15198
15199theend:
15200 vim_free(pat2);
15201 vim_free(pat3);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015202 if (p_cpo == empty_option)
15203 p_cpo = save_cpo;
15204 else
15205 /* Darn, evaluating the {skip} expression changed the value. */
15206 free_string_option(save_cpo);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015207
15208 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015209}
15210
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015211/*
15212 * "searchpos()" function
15213 */
15214 static void
15215f_searchpos(argvars, rettv)
15216 typval_T *argvars;
15217 typval_T *rettv;
15218{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015219 pos_T match_pos;
15220 int lnum = 0;
15221 int col = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015222 int n;
15223 int flags = 0;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015224
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015225 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015226 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015227
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015228 n = search_cmn(argvars, &match_pos, &flags);
15229 if (n > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015230 {
15231 lnum = match_pos.lnum;
15232 col = match_pos.col;
15233 }
15234
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015235 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15236 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015237 if (flags & SP_SUBPAT)
15238 list_append_number(rettv->vval.v_list, (varnumber_T)n);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015239}
15240
15241
Bram Moolenaar0d660222005-01-07 21:51:51 +000015242 static void
15243f_server2client(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015244 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000015245 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015246{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015247#ifdef FEAT_CLIENTSERVER
15248 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015249 char_u *server = get_tv_string_chk(&argvars[0]);
15250 char_u *reply = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015251
Bram Moolenaar0d660222005-01-07 21:51:51 +000015252 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015253 if (server == NULL || reply == NULL)
15254 return;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015255 if (check_restricted() || check_secure())
15256 return;
15257# ifdef FEAT_X11
15258 if (check_connection() == FAIL)
15259 return;
15260# endif
15261
15262 if (serverSendReply(server, reply) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015263 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015264 EMSG(_("E258: Unable to send to client"));
15265 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015266 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015267 rettv->vval.v_number = 0;
15268#else
15269 rettv->vval.v_number = -1;
15270#endif
15271}
15272
Bram Moolenaar0d660222005-01-07 21:51:51 +000015273 static void
15274f_serverlist(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015275 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000015276 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015277{
15278 char_u *r = NULL;
15279
15280#ifdef FEAT_CLIENTSERVER
15281# ifdef WIN32
15282 r = serverGetVimNames();
15283# else
15284 make_connection();
15285 if (X_DISPLAY != NULL)
15286 r = serverGetVimNames(X_DISPLAY);
15287# endif
15288#endif
15289 rettv->v_type = VAR_STRING;
15290 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015291}
15292
15293/*
15294 * "setbufvar()" function
15295 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015296 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015297f_setbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015298 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015299 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015300{
15301 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015302 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015303 char_u *varname, *bufvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015304 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015305 char_u nbuf[NUMBUFLEN];
15306
15307 if (check_restricted() || check_secure())
15308 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015309 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
15310 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015311 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015312 varp = &argvars[2];
15313
15314 if (buf != NULL && varname != NULL && varp != NULL)
15315 {
15316 /* set curbuf to be our buf, temporarily */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015317 aucmd_prepbuf(&aco, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015318
15319 if (*varname == '&')
15320 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015321 long numval;
15322 char_u *strval;
15323 int error = FALSE;
15324
Bram Moolenaar071d4272004-06-13 20:20:40 +000015325 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015326 numval = get_tv_number_chk(varp, &error);
15327 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015328 if (!error && strval != NULL)
15329 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015330 }
15331 else
15332 {
15333 bufvarname = alloc((unsigned)STRLEN(varname) + 3);
15334 if (bufvarname != NULL)
15335 {
15336 STRCPY(bufvarname, "b:");
15337 STRCPY(bufvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015338 set_var(bufvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015339 vim_free(bufvarname);
15340 }
15341 }
15342
15343 /* reset notion of buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015344 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015345 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015346}
15347
15348/*
15349 * "setcmdpos()" function
15350 */
15351 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015352f_setcmdpos(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015353 typval_T *argvars;
15354 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015355{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015356 int pos = (int)get_tv_number(&argvars[0]) - 1;
15357
15358 if (pos >= 0)
15359 rettv->vval.v_number = set_cmdline_pos(pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015360}
15361
15362/*
15363 * "setline()" function
15364 */
15365 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015366f_setline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015367 typval_T *argvars;
15368 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015369{
15370 linenr_T lnum;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +000015371 char_u *line = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015372 list_T *l = NULL;
15373 listitem_T *li = NULL;
15374 long added = 0;
15375 linenr_T lcount = curbuf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015376
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015377 lnum = get_tv_lnum(&argvars[0]);
15378 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015379 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015380 l = argvars[1].vval.v_list;
15381 li = l->lv_first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015382 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015383 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015384 line = get_tv_string_chk(&argvars[1]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015385
Bram Moolenaar798b30b2009-04-22 10:56:16 +000015386 /* default result is zero == OK */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015387 for (;;)
15388 {
15389 if (l != NULL)
15390 {
15391 /* list argument, get next string */
15392 if (li == NULL)
15393 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015394 line = get_tv_string_chk(&li->li_tv);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015395 li = li->li_next;
15396 }
15397
15398 rettv->vval.v_number = 1; /* FAIL */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015399 if (line == NULL || lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015400 break;
15401 if (lnum <= curbuf->b_ml.ml_line_count)
15402 {
15403 /* existing line, replace it */
15404 if (u_savesub(lnum) == OK && ml_replace(lnum, line, TRUE) == OK)
15405 {
15406 changed_bytes(lnum, 0);
Bram Moolenaar87c19962007-04-26 08:54:21 +000015407 if (lnum == curwin->w_cursor.lnum)
15408 check_cursor_col();
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015409 rettv->vval.v_number = 0; /* OK */
15410 }
15411 }
15412 else if (added > 0 || u_save(lnum - 1, lnum) == OK)
15413 {
15414 /* lnum is one past the last line, append the line */
15415 ++added;
15416 if (ml_append(lnum - 1, line, (colnr_T)0, FALSE) == OK)
15417 rettv->vval.v_number = 0; /* OK */
15418 }
15419
15420 if (l == NULL) /* only one string argument */
15421 break;
15422 ++lnum;
15423 }
15424
15425 if (added > 0)
15426 appended_lines_mark(lcount, added);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015427}
15428
Bram Moolenaard9ff7d52008-03-20 12:23:49 +000015429static void set_qf_ll_list __ARGS((win_T *wp, typval_T *list_arg, typval_T *action_arg, typval_T *rettv));
15430
Bram Moolenaar071d4272004-06-13 20:20:40 +000015431/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015432 * Used by "setqflist()" and "setloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000015433 */
Bram Moolenaar2641f772005-03-25 21:58:17 +000015434 static void
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015435set_qf_ll_list(wp, list_arg, action_arg, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015436 win_T *wp UNUSED;
15437 typval_T *list_arg UNUSED;
15438 typval_T *action_arg UNUSED;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015439 typval_T *rettv;
15440{
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015441#ifdef FEAT_QUICKFIX
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015442 char_u *act;
15443 int action = ' ';
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015444#endif
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015445
Bram Moolenaar2641f772005-03-25 21:58:17 +000015446 rettv->vval.v_number = -1;
15447
15448#ifdef FEAT_QUICKFIX
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015449 if (list_arg->v_type != VAR_LIST)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015450 EMSG(_(e_listreq));
15451 else
15452 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015453 list_T *l = list_arg->vval.v_list;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015454
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015455 if (action_arg->v_type == VAR_STRING)
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015456 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015457 act = get_tv_string_chk(action_arg);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015458 if (act == NULL)
15459 return; /* type error; errmsg already given */
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015460 if (*act == 'a' || *act == 'r')
15461 action = *act;
15462 }
15463
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015464 if (l != NULL && set_errorlist(wp, l, action) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015465 rettv->vval.v_number = 0;
15466 }
15467#endif
15468}
15469
15470/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015471 * "setloclist()" function
15472 */
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015473 static void
15474f_setloclist(argvars, rettv)
15475 typval_T *argvars;
15476 typval_T *rettv;
15477{
15478 win_T *win;
15479
15480 rettv->vval.v_number = -1;
15481
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015482 win = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015483 if (win != NULL)
15484 set_qf_ll_list(win, &argvars[1], &argvars[2], rettv);
15485}
15486
15487/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000015488 * "setmatches()" function
15489 */
15490 static void
15491f_setmatches(argvars, rettv)
15492 typval_T *argvars;
15493 typval_T *rettv;
15494{
15495#ifdef FEAT_SEARCH_EXTRA
15496 list_T *l;
15497 listitem_T *li;
15498 dict_T *d;
15499
15500 rettv->vval.v_number = -1;
15501 if (argvars[0].v_type != VAR_LIST)
15502 {
15503 EMSG(_(e_listreq));
15504 return;
15505 }
15506 if ((l = argvars[0].vval.v_list) != NULL)
15507 {
15508
15509 /* To some extent make sure that we are dealing with a list from
15510 * "getmatches()". */
15511 li = l->lv_first;
15512 while (li != NULL)
15513 {
15514 if (li->li_tv.v_type != VAR_DICT
15515 || (d = li->li_tv.vval.v_dict) == NULL)
15516 {
15517 EMSG(_(e_invarg));
15518 return;
15519 }
15520 if (!(dict_find(d, (char_u *)"group", -1) != NULL
15521 && dict_find(d, (char_u *)"pattern", -1) != NULL
15522 && dict_find(d, (char_u *)"priority", -1) != NULL
15523 && dict_find(d, (char_u *)"id", -1) != NULL))
15524 {
15525 EMSG(_(e_invarg));
15526 return;
15527 }
15528 li = li->li_next;
15529 }
15530
15531 clear_matches(curwin);
15532 li = l->lv_first;
15533 while (li != NULL)
15534 {
15535 d = li->li_tv.vval.v_dict;
15536 match_add(curwin, get_dict_string(d, (char_u *)"group", FALSE),
15537 get_dict_string(d, (char_u *)"pattern", FALSE),
15538 (int)get_dict_number(d, (char_u *)"priority"),
15539 (int)get_dict_number(d, (char_u *)"id"));
15540 li = li->li_next;
15541 }
15542 rettv->vval.v_number = 0;
15543 }
15544#endif
15545}
15546
15547/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015548 * "setpos()" function
15549 */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015550 static void
15551f_setpos(argvars, rettv)
15552 typval_T *argvars;
15553 typval_T *rettv;
15554{
15555 pos_T pos;
15556 int fnum;
15557 char_u *name;
15558
Bram Moolenaar08250432008-02-13 11:42:46 +000015559 rettv->vval.v_number = -1;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015560 name = get_tv_string_chk(argvars);
15561 if (name != NULL)
15562 {
15563 if (list2fpos(&argvars[1], &pos, &fnum) == OK)
15564 {
Bram Moolenaar742d1ec2009-12-31 12:18:30 +000015565 if (--pos.col < 0)
15566 pos.col = 0;
Bram Moolenaar08250432008-02-13 11:42:46 +000015567 if (name[0] == '.' && name[1] == NUL)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015568 {
Bram Moolenaar08250432008-02-13 11:42:46 +000015569 /* set cursor */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015570 if (fnum == curbuf->b_fnum)
15571 {
15572 curwin->w_cursor = pos;
15573 check_cursor();
Bram Moolenaar08250432008-02-13 11:42:46 +000015574 rettv->vval.v_number = 0;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015575 }
15576 else
15577 EMSG(_(e_invarg));
15578 }
Bram Moolenaar08250432008-02-13 11:42:46 +000015579 else if (name[0] == '\'' && name[1] != NUL && name[2] == NUL)
15580 {
15581 /* set mark */
15582 if (setmark_pos(name[1], &pos, fnum) == OK)
15583 rettv->vval.v_number = 0;
15584 }
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015585 else
15586 EMSG(_(e_invarg));
15587 }
15588 }
15589}
15590
15591/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015592 * "setqflist()" function
15593 */
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015594 static void
15595f_setqflist(argvars, rettv)
15596 typval_T *argvars;
15597 typval_T *rettv;
15598{
15599 set_qf_ll_list(NULL, &argvars[0], &argvars[1], rettv);
15600}
15601
15602/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000015603 * "setreg()" function
15604 */
15605 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015606f_setreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015607 typval_T *argvars;
15608 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015609{
15610 int regname;
15611 char_u *strregname;
15612 char_u *stropt;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015613 char_u *strval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015614 int append;
15615 char_u yank_type;
15616 long block_len;
15617
15618 block_len = -1;
15619 yank_type = MAUTO;
15620 append = FALSE;
15621
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015622 strregname = get_tv_string_chk(argvars);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015623 rettv->vval.v_number = 1; /* FAIL is default */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015624
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015625 if (strregname == NULL)
15626 return; /* type error; errmsg already given */
15627 regname = *strregname;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015628 if (regname == 0 || regname == '@')
15629 regname = '"';
15630 else if (regname == '=')
15631 return;
15632
Bram Moolenaar49cd9572005-01-03 21:06:01 +000015633 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015634 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015635 stropt = get_tv_string_chk(&argvars[2]);
15636 if (stropt == NULL)
15637 return; /* type error */
15638 for (; *stropt != NUL; ++stropt)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015639 switch (*stropt)
15640 {
15641 case 'a': case 'A': /* append */
15642 append = TRUE;
15643 break;
15644 case 'v': case 'c': /* character-wise selection */
15645 yank_type = MCHAR;
15646 break;
15647 case 'V': case 'l': /* line-wise selection */
15648 yank_type = MLINE;
15649 break;
15650#ifdef FEAT_VISUAL
15651 case 'b': case Ctrl_V: /* block-wise selection */
15652 yank_type = MBLOCK;
15653 if (VIM_ISDIGIT(stropt[1]))
15654 {
15655 ++stropt;
15656 block_len = getdigits(&stropt) - 1;
15657 --stropt;
15658 }
15659 break;
15660#endif
15661 }
15662 }
15663
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015664 strval = get_tv_string_chk(&argvars[1]);
15665 if (strval != NULL)
15666 write_reg_contents_ex(regname, strval, -1,
Bram Moolenaar071d4272004-06-13 20:20:40 +000015667 append, yank_type, block_len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015668 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015669}
15670
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015671/*
15672 * "settabwinvar()" function
15673 */
15674 static void
15675f_settabwinvar(argvars, rettv)
15676 typval_T *argvars;
15677 typval_T *rettv;
15678{
15679 setwinvar(argvars, rettv, 1);
15680}
Bram Moolenaar071d4272004-06-13 20:20:40 +000015681
15682/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015683 * "setwinvar()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015684 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015685 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015686f_setwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015687 typval_T *argvars;
15688 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015689{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015690 setwinvar(argvars, rettv, 0);
15691}
15692
15693/*
15694 * "setwinvar()" and "settabwinvar()" functions
15695 */
15696 static void
15697setwinvar(argvars, rettv, off)
15698 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015699 typval_T *rettv UNUSED;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015700 int off;
15701{
Bram Moolenaar071d4272004-06-13 20:20:40 +000015702 win_T *win;
15703#ifdef FEAT_WINDOWS
15704 win_T *save_curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015705 tabpage_T *save_curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015706#endif
15707 char_u *varname, *winvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015708 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015709 char_u nbuf[NUMBUFLEN];
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015710 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015711
15712 if (check_restricted() || check_secure())
15713 return;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015714
15715#ifdef FEAT_WINDOWS
15716 if (off == 1)
15717 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
15718 else
15719 tp = curtab;
15720#endif
15721 win = find_win_by_nr(&argvars[off], tp);
15722 varname = get_tv_string_chk(&argvars[off + 1]);
15723 varp = &argvars[off + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015724
15725 if (win != NULL && varname != NULL && varp != NULL)
15726 {
15727#ifdef FEAT_WINDOWS
15728 /* set curwin to be our win, temporarily */
15729 save_curwin = curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015730 save_curtab = curtab;
15731 goto_tabpage_tp(tp);
15732 if (!win_valid(win))
15733 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015734 curwin = win;
15735 curbuf = curwin->w_buffer;
15736#endif
15737
15738 if (*varname == '&')
15739 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015740 long numval;
15741 char_u *strval;
15742 int error = FALSE;
15743
Bram Moolenaar071d4272004-06-13 20:20:40 +000015744 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015745 numval = get_tv_number_chk(varp, &error);
15746 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015747 if (!error && strval != NULL)
15748 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015749 }
15750 else
15751 {
15752 winvarname = alloc((unsigned)STRLEN(varname) + 3);
15753 if (winvarname != NULL)
15754 {
15755 STRCPY(winvarname, "w:");
15756 STRCPY(winvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015757 set_var(winvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015758 vim_free(winvarname);
15759 }
15760 }
15761
15762#ifdef FEAT_WINDOWS
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015763 /* Restore current tabpage and window, if still valid (autocomands can
15764 * make them invalid). */
15765 if (valid_tabpage(save_curtab))
15766 goto_tabpage_tp(save_curtab);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015767 if (win_valid(save_curwin))
15768 {
15769 curwin = save_curwin;
15770 curbuf = curwin->w_buffer;
15771 }
15772#endif
15773 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015774}
15775
15776/*
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015777 * "shellescape({string})" function
15778 */
15779 static void
15780f_shellescape(argvars, rettv)
15781 typval_T *argvars;
15782 typval_T *rettv;
15783{
Bram Moolenaar05bb9532008-07-04 09:44:11 +000015784 rettv->vval.v_string = vim_strsave_shellescape(
15785 get_tv_string(&argvars[0]), non_zero_arg(&argvars[1]));
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015786 rettv->v_type = VAR_STRING;
15787}
15788
15789/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015790 * "simplify()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015791 */
15792 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015793f_simplify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015794 typval_T *argvars;
15795 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015796{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015797 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015798
Bram Moolenaar0d660222005-01-07 21:51:51 +000015799 p = get_tv_string(&argvars[0]);
15800 rettv->vval.v_string = vim_strsave(p);
15801 simplify_filename(rettv->vval.v_string); /* simplify in place */
15802 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015803}
15804
Bram Moolenaar8c8de832008-06-24 22:58:06 +000015805#ifdef FEAT_FLOAT
15806/*
15807 * "sin()" function
15808 */
15809 static void
15810f_sin(argvars, rettv)
15811 typval_T *argvars;
15812 typval_T *rettv;
15813{
15814 float_T f;
15815
15816 rettv->v_type = VAR_FLOAT;
15817 if (get_float_arg(argvars, &f) == OK)
15818 rettv->vval.v_float = sin(f);
15819 else
15820 rettv->vval.v_float = 0.0;
15821}
15822#endif
15823
Bram Moolenaar0d660222005-01-07 21:51:51 +000015824static int
15825#ifdef __BORLANDC__
15826 _RTLENTRYF
15827#endif
15828 item_compare __ARGS((const void *s1, const void *s2));
15829static int
15830#ifdef __BORLANDC__
15831 _RTLENTRYF
15832#endif
15833 item_compare2 __ARGS((const void *s1, const void *s2));
15834
15835static int item_compare_ic;
15836static char_u *item_compare_func;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015837static int item_compare_func_err;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015838#define ITEM_COMPARE_FAIL 999
15839
Bram Moolenaar071d4272004-06-13 20:20:40 +000015840/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015841 * Compare functions for f_sort() below.
Bram Moolenaar071d4272004-06-13 20:20:40 +000015842 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015843 static int
15844#ifdef __BORLANDC__
15845_RTLENTRYF
15846#endif
15847item_compare(s1, s2)
15848 const void *s1;
15849 const void *s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015850{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015851 char_u *p1, *p2;
15852 char_u *tofree1, *tofree2;
15853 int res;
15854 char_u numbuf1[NUMBUFLEN];
15855 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015856
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000015857 p1 = tv2string(&(*(listitem_T **)s1)->li_tv, &tofree1, numbuf1, 0);
15858 p2 = tv2string(&(*(listitem_T **)s2)->li_tv, &tofree2, numbuf2, 0);
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000015859 if (p1 == NULL)
15860 p1 = (char_u *)"";
15861 if (p2 == NULL)
15862 p2 = (char_u *)"";
Bram Moolenaar0d660222005-01-07 21:51:51 +000015863 if (item_compare_ic)
15864 res = STRICMP(p1, p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015865 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015866 res = STRCMP(p1, p2);
15867 vim_free(tofree1);
15868 vim_free(tofree2);
15869 return res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015870}
15871
15872 static int
Bram Moolenaar0d660222005-01-07 21:51:51 +000015873#ifdef __BORLANDC__
15874_RTLENTRYF
Bram Moolenaar071d4272004-06-13 20:20:40 +000015875#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +000015876item_compare2(s1, s2)
15877 const void *s1;
15878 const void *s2;
15879{
15880 int res;
Bram Moolenaar33570922005-01-25 22:26:29 +000015881 typval_T rettv;
Bram Moolenaareb3593b2006-04-22 22:33:57 +000015882 typval_T argv[3];
Bram Moolenaar0d660222005-01-07 21:51:51 +000015883 int dummy;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015884
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015885 /* shortcut after failure in previous call; compare all items equal */
15886 if (item_compare_func_err)
15887 return 0;
15888
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015889 /* copy the values. This is needed to be able to set v_lock to VAR_FIXED
15890 * in the copy without changing the original list items. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015891 copy_tv(&(*(listitem_T **)s1)->li_tv, &argv[0]);
15892 copy_tv(&(*(listitem_T **)s2)->li_tv, &argv[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015893
15894 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000015895 res = call_func(item_compare_func, (int)STRLEN(item_compare_func),
Bram Moolenaare9a41262005-01-15 22:18:47 +000015896 &rettv, 2, argv, 0L, 0L, &dummy, TRUE, NULL);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015897 clear_tv(&argv[0]);
15898 clear_tv(&argv[1]);
15899
15900 if (res == FAIL)
15901 res = ITEM_COMPARE_FAIL;
15902 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015903 res = get_tv_number_chk(&rettv, &item_compare_func_err);
15904 if (item_compare_func_err)
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000015905 res = ITEM_COMPARE_FAIL; /* return value has wrong type */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015906 clear_tv(&rettv);
15907 return res;
15908}
15909
15910/*
15911 * "sort({list})" function
15912 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015913 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015914f_sort(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015915 typval_T *argvars;
15916 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015917{
Bram Moolenaar33570922005-01-25 22:26:29 +000015918 list_T *l;
15919 listitem_T *li;
15920 listitem_T **ptrs;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015921 long len;
15922 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015923
Bram Moolenaar0d660222005-01-07 21:51:51 +000015924 if (argvars[0].v_type != VAR_LIST)
15925 EMSG2(_(e_listarg), "sort()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000015926 else
15927 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015928 l = argvars[0].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015929 if (l == NULL || tv_check_lock(l->lv_lock, (char_u *)"sort()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000015930 return;
15931 rettv->vval.v_list = l;
15932 rettv->v_type = VAR_LIST;
15933 ++l->lv_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015934
Bram Moolenaar0d660222005-01-07 21:51:51 +000015935 len = list_len(l);
15936 if (len <= 1)
15937 return; /* short list sorts pretty quickly */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015938
Bram Moolenaar0d660222005-01-07 21:51:51 +000015939 item_compare_ic = FALSE;
15940 item_compare_func = NULL;
15941 if (argvars[1].v_type != VAR_UNKNOWN)
15942 {
15943 if (argvars[1].v_type == VAR_FUNC)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015944 item_compare_func = argvars[1].vval.v_string;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015945 else
15946 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015947 int error = FALSE;
15948
15949 i = get_tv_number_chk(&argvars[1], &error);
15950 if (error)
15951 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015952 if (i == 1)
15953 item_compare_ic = TRUE;
15954 else
15955 item_compare_func = get_tv_string(&argvars[1]);
15956 }
15957 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015958
Bram Moolenaar0d660222005-01-07 21:51:51 +000015959 /* Make an array with each entry pointing to an item in the List. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015960 ptrs = (listitem_T **)alloc((int)(len * sizeof(listitem_T *)));
Bram Moolenaar0d660222005-01-07 21:51:51 +000015961 if (ptrs == NULL)
15962 return;
15963 i = 0;
15964 for (li = l->lv_first; li != NULL; li = li->li_next)
15965 ptrs[i++] = li;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015966
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015967 item_compare_func_err = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015968 /* test the compare function */
15969 if (item_compare_func != NULL
15970 && item_compare2((void *)&ptrs[0], (void *)&ptrs[1])
15971 == ITEM_COMPARE_FAIL)
Bram Moolenaare49b69a2005-01-08 16:11:57 +000015972 EMSG(_("E702: Sort compare function failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000015973 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015974 {
15975 /* Sort the array with item pointers. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015976 qsort((void *)ptrs, (size_t)len, sizeof(listitem_T *),
Bram Moolenaar0d660222005-01-07 21:51:51 +000015977 item_compare_func == NULL ? item_compare : item_compare2);
15978
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015979 if (!item_compare_func_err)
15980 {
15981 /* Clear the List and append the items in the sorted order. */
Bram Moolenaar52514562008-04-01 11:12:09 +000015982 l->lv_first = l->lv_last = l->lv_idx_item = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015983 l->lv_len = 0;
15984 for (i = 0; i < len; ++i)
15985 list_append(l, ptrs[i]);
15986 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015987 }
15988
15989 vim_free(ptrs);
15990 }
15991}
15992
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015993/*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015994 * "soundfold({word})" function
15995 */
15996 static void
15997f_soundfold(argvars, rettv)
15998 typval_T *argvars;
15999 typval_T *rettv;
16000{
16001 char_u *s;
16002
16003 rettv->v_type = VAR_STRING;
16004 s = get_tv_string(&argvars[0]);
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016005#ifdef FEAT_SPELL
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000016006 rettv->vval.v_string = eval_soundfold(s);
16007#else
16008 rettv->vval.v_string = vim_strsave(s);
16009#endif
16010}
16011
16012/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016013 * "spellbadword()" function
16014 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016015 static void
16016f_spellbadword(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016017 typval_T *argvars UNUSED;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016018 typval_T *rettv;
16019{
Bram Moolenaar4463f292005-09-25 22:20:24 +000016020 char_u *word = (char_u *)"";
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016021 hlf_T attr = HLF_COUNT;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000016022 int len = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016023
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016024 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar4463f292005-09-25 22:20:24 +000016025 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016026
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016027#ifdef FEAT_SPELL
Bram Moolenaar4463f292005-09-25 22:20:24 +000016028 if (argvars[0].v_type == VAR_UNKNOWN)
16029 {
16030 /* Find the start and length of the badly spelled word. */
16031 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, &attr);
16032 if (len != 0)
16033 word = ml_get_cursor();
16034 }
16035 else if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16036 {
16037 char_u *str = get_tv_string_chk(&argvars[0]);
16038 int capcol = -1;
16039
16040 if (str != NULL)
16041 {
16042 /* Check the argument for spelling. */
16043 while (*str != NUL)
16044 {
Bram Moolenaar4770d092006-01-12 23:22:24 +000016045 len = spell_check(curwin, str, &attr, &capcol, FALSE);
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016046 if (attr != HLF_COUNT)
Bram Moolenaar4463f292005-09-25 22:20:24 +000016047 {
16048 word = str;
16049 break;
16050 }
16051 str += len;
16052 }
16053 }
16054 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016055#endif
Bram Moolenaar4463f292005-09-25 22:20:24 +000016056
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016057 list_append_string(rettv->vval.v_list, word, len);
16058 list_append_string(rettv->vval.v_list, (char_u *)(
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016059 attr == HLF_SPB ? "bad" :
16060 attr == HLF_SPR ? "rare" :
16061 attr == HLF_SPL ? "local" :
16062 attr == HLF_SPC ? "caps" :
16063 ""), -1);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016064}
16065
16066/*
16067 * "spellsuggest()" function
16068 */
16069 static void
16070f_spellsuggest(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016071 typval_T *argvars UNUSED;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016072 typval_T *rettv;
16073{
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016074#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016075 char_u *str;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016076 int typeerr = FALSE;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016077 int maxcount;
16078 garray_T ga;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016079 int i;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016080 listitem_T *li;
16081 int need_capital = FALSE;
16082#endif
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016083
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016084 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016085 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016086
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016087#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016088 if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16089 {
16090 str = get_tv_string(&argvars[0]);
16091 if (argvars[1].v_type != VAR_UNKNOWN)
16092 {
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016093 maxcount = get_tv_number_chk(&argvars[1], &typeerr);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016094 if (maxcount <= 0)
16095 return;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016096 if (argvars[2].v_type != VAR_UNKNOWN)
16097 {
16098 need_capital = get_tv_number_chk(&argvars[2], &typeerr);
16099 if (typeerr)
16100 return;
16101 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016102 }
16103 else
16104 maxcount = 25;
16105
Bram Moolenaar4770d092006-01-12 23:22:24 +000016106 spell_suggest_list(&ga, str, maxcount, need_capital, FALSE);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016107
16108 for (i = 0; i < ga.ga_len; ++i)
16109 {
16110 str = ((char_u **)ga.ga_data)[i];
16111
16112 li = listitem_alloc();
16113 if (li == NULL)
16114 vim_free(str);
16115 else
16116 {
16117 li->li_tv.v_type = VAR_STRING;
16118 li->li_tv.v_lock = 0;
16119 li->li_tv.vval.v_string = str;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016120 list_append(rettv->vval.v_list, li);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016121 }
16122 }
16123 ga_clear(&ga);
16124 }
16125#endif
16126}
16127
Bram Moolenaar0d660222005-01-07 21:51:51 +000016128 static void
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000016129f_split(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016130 typval_T *argvars;
16131 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016132{
16133 char_u *str;
16134 char_u *end;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016135 char_u *pat = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016136 regmatch_T regmatch;
16137 char_u patbuf[NUMBUFLEN];
16138 char_u *save_cpo;
16139 int match;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016140 colnr_T col = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016141 int keepempty = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016142 int typeerr = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016143
16144 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
16145 save_cpo = p_cpo;
16146 p_cpo = (char_u *)"";
16147
16148 str = get_tv_string(&argvars[0]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016149 if (argvars[1].v_type != VAR_UNKNOWN)
16150 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016151 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16152 if (pat == NULL)
16153 typeerr = TRUE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016154 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016155 keepempty = get_tv_number_chk(&argvars[2], &typeerr);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016156 }
16157 if (pat == NULL || *pat == NUL)
16158 pat = (char_u *)"[\\x01- ]\\+";
Bram Moolenaar0d660222005-01-07 21:51:51 +000016159
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016160 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016161 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016162 if (typeerr)
16163 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016164
Bram Moolenaar0d660222005-01-07 21:51:51 +000016165 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
16166 if (regmatch.regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016167 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016168 regmatch.rm_ic = FALSE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016169 while (*str != NUL || keepempty)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016170 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016171 if (*str == NUL)
16172 match = FALSE; /* empty item at the end */
16173 else
16174 match = vim_regexec_nl(&regmatch, str, col);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016175 if (match)
16176 end = regmatch.startp[0];
16177 else
16178 end = str + STRLEN(str);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016179 if (keepempty || end > str || (rettv->vval.v_list->lv_len > 0
16180 && *str != NUL && match && end < regmatch.endp[0]))
Bram Moolenaar0d660222005-01-07 21:51:51 +000016181 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016182 if (list_append_string(rettv->vval.v_list, str,
16183 (int)(end - str)) == FAIL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016184 break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016185 }
16186 if (!match)
16187 break;
16188 /* Advance to just after the match. */
16189 if (regmatch.endp[0] > str)
16190 col = 0;
16191 else
16192 {
16193 /* Don't get stuck at the same match. */
16194#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000016195 col = (*mb_ptr2len)(regmatch.endp[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016196#else
16197 col = 1;
16198#endif
16199 }
16200 str = regmatch.endp[0];
16201 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016202
Bram Moolenaar0d660222005-01-07 21:51:51 +000016203 vim_free(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016204 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016205
Bram Moolenaar0d660222005-01-07 21:51:51 +000016206 p_cpo = save_cpo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016207}
16208
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016209#ifdef FEAT_FLOAT
16210/*
16211 * "sqrt()" function
16212 */
16213 static void
16214f_sqrt(argvars, rettv)
16215 typval_T *argvars;
16216 typval_T *rettv;
16217{
16218 float_T f;
16219
16220 rettv->v_type = VAR_FLOAT;
16221 if (get_float_arg(argvars, &f) == OK)
16222 rettv->vval.v_float = sqrt(f);
16223 else
16224 rettv->vval.v_float = 0.0;
16225}
16226
16227/*
16228 * "str2float()" function
16229 */
16230 static void
16231f_str2float(argvars, rettv)
16232 typval_T *argvars;
16233 typval_T *rettv;
16234{
16235 char_u *p = skipwhite(get_tv_string(&argvars[0]));
16236
16237 if (*p == '+')
16238 p = skipwhite(p + 1);
16239 (void)string2float(p, &rettv->vval.v_float);
16240 rettv->v_type = VAR_FLOAT;
16241}
16242#endif
16243
Bram Moolenaar2c932302006-03-18 21:42:09 +000016244/*
16245 * "str2nr()" function
16246 */
16247 static void
16248f_str2nr(argvars, rettv)
16249 typval_T *argvars;
16250 typval_T *rettv;
16251{
16252 int base = 10;
16253 char_u *p;
16254 long n;
16255
16256 if (argvars[1].v_type != VAR_UNKNOWN)
16257 {
16258 base = get_tv_number(&argvars[1]);
16259 if (base != 8 && base != 10 && base != 16)
16260 {
16261 EMSG(_(e_invarg));
16262 return;
16263 }
16264 }
16265
16266 p = skipwhite(get_tv_string(&argvars[0]));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016267 if (*p == '+')
16268 p = skipwhite(p + 1);
Bram Moolenaar2c932302006-03-18 21:42:09 +000016269 vim_str2nr(p, NULL, NULL, base == 8 ? 2 : 0, base == 16 ? 2 : 0, &n, NULL);
16270 rettv->vval.v_number = n;
16271}
16272
Bram Moolenaar071d4272004-06-13 20:20:40 +000016273#ifdef HAVE_STRFTIME
16274/*
16275 * "strftime({format}[, {time}])" function
16276 */
16277 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016278f_strftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016279 typval_T *argvars;
16280 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016281{
16282 char_u result_buf[256];
16283 struct tm *curtime;
16284 time_t seconds;
16285 char_u *p;
16286
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016287 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016288
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016289 p = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016290 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016291 seconds = time(NULL);
16292 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016293 seconds = (time_t)get_tv_number(&argvars[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016294 curtime = localtime(&seconds);
16295 /* MSVC returns NULL for an invalid value of seconds. */
16296 if (curtime == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016297 rettv->vval.v_string = vim_strsave((char_u *)_("(Invalid)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016298 else
16299 {
16300# ifdef FEAT_MBYTE
16301 vimconv_T conv;
16302 char_u *enc;
16303
16304 conv.vc_type = CONV_NONE;
16305 enc = enc_locale();
16306 convert_setup(&conv, p_enc, enc);
16307 if (conv.vc_type != CONV_NONE)
16308 p = string_convert(&conv, p, NULL);
16309# endif
16310 if (p != NULL)
16311 (void)strftime((char *)result_buf, sizeof(result_buf),
16312 (char *)p, curtime);
16313 else
16314 result_buf[0] = NUL;
16315
16316# ifdef FEAT_MBYTE
16317 if (conv.vc_type != CONV_NONE)
16318 vim_free(p);
16319 convert_setup(&conv, enc, p_enc);
16320 if (conv.vc_type != CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016321 rettv->vval.v_string = string_convert(&conv, result_buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016322 else
16323# endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016324 rettv->vval.v_string = vim_strsave(result_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016325
16326# ifdef FEAT_MBYTE
16327 /* Release conversion descriptors */
16328 convert_setup(&conv, NULL, NULL);
16329 vim_free(enc);
16330# endif
16331 }
16332}
16333#endif
16334
16335/*
16336 * "stridx()" function
16337 */
16338 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016339f_stridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016340 typval_T *argvars;
16341 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016342{
16343 char_u buf[NUMBUFLEN];
16344 char_u *needle;
16345 char_u *haystack;
Bram Moolenaar33570922005-01-25 22:26:29 +000016346 char_u *save_haystack;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016347 char_u *pos;
Bram Moolenaar33570922005-01-25 22:26:29 +000016348 int start_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016349
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016350 needle = get_tv_string_chk(&argvars[1]);
16351 save_haystack = haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar33570922005-01-25 22:26:29 +000016352 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016353 if (needle == NULL || haystack == NULL)
16354 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016355
Bram Moolenaar33570922005-01-25 22:26:29 +000016356 if (argvars[2].v_type != VAR_UNKNOWN)
16357 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016358 int error = FALSE;
16359
16360 start_idx = get_tv_number_chk(&argvars[2], &error);
16361 if (error || start_idx >= (int)STRLEN(haystack))
Bram Moolenaar33570922005-01-25 22:26:29 +000016362 return;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016363 if (start_idx >= 0)
16364 haystack += start_idx;
Bram Moolenaar33570922005-01-25 22:26:29 +000016365 }
16366
16367 pos = (char_u *)strstr((char *)haystack, (char *)needle);
16368 if (pos != NULL)
16369 rettv->vval.v_number = (varnumber_T)(pos - save_haystack);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016370}
16371
16372/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016373 * "string()" function
16374 */
16375 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016376f_string(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016377 typval_T *argvars;
16378 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016379{
16380 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000016381 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016382
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016383 rettv->v_type = VAR_STRING;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000016384 rettv->vval.v_string = tv2string(&argvars[0], &tofree, numbuf, 0);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016385 /* Make a copy if we have a value but it's not in allocated memory. */
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000016386 if (rettv->vval.v_string != NULL && tofree == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016387 rettv->vval.v_string = vim_strsave(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016388}
16389
16390/*
16391 * "strlen()" function
16392 */
16393 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016394f_strlen(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016395 typval_T *argvars;
16396 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016397{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016398 rettv->vval.v_number = (varnumber_T)(STRLEN(
16399 get_tv_string(&argvars[0])));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016400}
16401
16402/*
16403 * "strpart()" function
16404 */
16405 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016406f_strpart(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016407 typval_T *argvars;
16408 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016409{
16410 char_u *p;
16411 int n;
16412 int len;
16413 int slen;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016414 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016415
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016416 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016417 slen = (int)STRLEN(p);
16418
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016419 n = get_tv_number_chk(&argvars[1], &error);
16420 if (error)
16421 len = 0;
16422 else if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016423 len = get_tv_number(&argvars[2]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016424 else
16425 len = slen - n; /* default len: all bytes that are available. */
16426
16427 /*
16428 * Only return the overlap between the specified part and the actual
16429 * string.
16430 */
16431 if (n < 0)
16432 {
16433 len += n;
16434 n = 0;
16435 }
16436 else if (n > slen)
16437 n = slen;
16438 if (len < 0)
16439 len = 0;
16440 else if (n + len > slen)
16441 len = slen - n;
16442
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016443 rettv->v_type = VAR_STRING;
16444 rettv->vval.v_string = vim_strnsave(p + n, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016445}
16446
16447/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016448 * "strridx()" function
16449 */
16450 static void
16451f_strridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016452 typval_T *argvars;
16453 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016454{
16455 char_u buf[NUMBUFLEN];
16456 char_u *needle;
16457 char_u *haystack;
16458 char_u *rest;
16459 char_u *lastmatch = NULL;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016460 int haystack_len, end_idx;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016461
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016462 needle = get_tv_string_chk(&argvars[1]);
16463 haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016464
16465 rettv->vval.v_number = -1;
16466 if (needle == NULL || haystack == NULL)
16467 return; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016468
16469 haystack_len = (int)STRLEN(haystack);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016470 if (argvars[2].v_type != VAR_UNKNOWN)
16471 {
16472 /* Third argument: upper limit for index */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016473 end_idx = get_tv_number_chk(&argvars[2], NULL);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016474 if (end_idx < 0)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016475 return; /* can never find a match */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016476 }
16477 else
16478 end_idx = haystack_len;
16479
Bram Moolenaar0d660222005-01-07 21:51:51 +000016480 if (*needle == NUL)
Bram Moolenaar05159a02005-02-26 23:04:13 +000016481 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016482 /* Empty string matches past the end. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016483 lastmatch = haystack + end_idx;
16484 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016485 else
Bram Moolenaar532c7802005-01-27 14:44:31 +000016486 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016487 for (rest = haystack; *rest != '\0'; ++rest)
16488 {
16489 rest = (char_u *)strstr((char *)rest, (char *)needle);
Bram Moolenaar532c7802005-01-27 14:44:31 +000016490 if (rest == NULL || rest > haystack + end_idx)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016491 break;
16492 lastmatch = rest;
16493 }
Bram Moolenaar532c7802005-01-27 14:44:31 +000016494 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016495
16496 if (lastmatch == NULL)
16497 rettv->vval.v_number = -1;
16498 else
16499 rettv->vval.v_number = (varnumber_T)(lastmatch - haystack);
16500}
16501
16502/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016503 * "strtrans()" function
16504 */
16505 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016506f_strtrans(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016507 typval_T *argvars;
16508 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016509{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016510 rettv->v_type = VAR_STRING;
16511 rettv->vval.v_string = transstr(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016512}
16513
16514/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016515 * "submatch()" function
16516 */
16517 static void
16518f_submatch(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016519 typval_T *argvars;
16520 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016521{
16522 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016523 rettv->vval.v_string =
16524 reg_submatch((int)get_tv_number_chk(&argvars[0], NULL));
Bram Moolenaar0d660222005-01-07 21:51:51 +000016525}
16526
16527/*
16528 * "substitute()" function
16529 */
16530 static void
16531f_substitute(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016532 typval_T *argvars;
16533 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016534{
16535 char_u patbuf[NUMBUFLEN];
16536 char_u subbuf[NUMBUFLEN];
16537 char_u flagsbuf[NUMBUFLEN];
16538
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016539 char_u *str = get_tv_string_chk(&argvars[0]);
16540 char_u *pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16541 char_u *sub = get_tv_string_buf_chk(&argvars[2], subbuf);
16542 char_u *flg = get_tv_string_buf_chk(&argvars[3], flagsbuf);
16543
Bram Moolenaar0d660222005-01-07 21:51:51 +000016544 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016545 if (str == NULL || pat == NULL || sub == NULL || flg == NULL)
16546 rettv->vval.v_string = NULL;
16547 else
16548 rettv->vval.v_string = do_string_sub(str, pat, sub, flg);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016549}
16550
16551/*
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016552 * "synID(lnum, col, trans)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000016553 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016554 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016555f_synID(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016556 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016557 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016558{
16559 int id = 0;
16560#ifdef FEAT_SYN_HL
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016561 long lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016562 long col;
16563 int trans;
Bram Moolenaar92124a32005-06-17 22:03:40 +000016564 int transerr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016565
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016566 lnum = get_tv_lnum(argvars); /* -1 on type error */
16567 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16568 trans = get_tv_number_chk(&argvars[2], &transerr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016569
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016570 if (!transerr && lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016571 && col >= 0 && col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016572 id = syn_get_id(curwin, lnum, (colnr_T)col, trans, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016573#endif
16574
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016575 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016576}
16577
16578/*
16579 * "synIDattr(id, what [, mode])" function
16580 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016581 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016582f_synIDattr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016583 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016584 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016585{
16586 char_u *p = NULL;
16587#ifdef FEAT_SYN_HL
16588 int id;
16589 char_u *what;
16590 char_u *mode;
16591 char_u modebuf[NUMBUFLEN];
16592 int modec;
16593
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016594 id = get_tv_number(&argvars[0]);
16595 what = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016596 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016597 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016598 mode = get_tv_string_buf(&argvars[2], modebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016599 modec = TOLOWER_ASC(mode[0]);
16600 if (modec != 't' && modec != 'c'
16601#ifdef FEAT_GUI
16602 && modec != 'g'
16603#endif
16604 )
16605 modec = 0; /* replace invalid with current */
16606 }
16607 else
16608 {
16609#ifdef FEAT_GUI
16610 if (gui.in_use)
16611 modec = 'g';
16612 else
16613#endif
16614 if (t_colors > 1)
16615 modec = 'c';
16616 else
16617 modec = 't';
16618 }
16619
16620
16621 switch (TOLOWER_ASC(what[0]))
16622 {
16623 case 'b':
16624 if (TOLOWER_ASC(what[1]) == 'g') /* bg[#] */
16625 p = highlight_color(id, what, modec);
16626 else /* bold */
16627 p = highlight_has_attr(id, HL_BOLD, modec);
16628 break;
16629
Bram Moolenaar12682fd2010-03-10 13:43:49 +010016630 case 'f': /* fg[#] or font */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016631 p = highlight_color(id, what, modec);
16632 break;
16633
16634 case 'i':
16635 if (TOLOWER_ASC(what[1]) == 'n') /* inverse */
16636 p = highlight_has_attr(id, HL_INVERSE, modec);
16637 else /* italic */
16638 p = highlight_has_attr(id, HL_ITALIC, modec);
16639 break;
16640
16641 case 'n': /* name */
16642 p = get_highlight_name(NULL, id - 1);
16643 break;
16644
16645 case 'r': /* reverse */
16646 p = highlight_has_attr(id, HL_INVERSE, modec);
16647 break;
16648
Bram Moolenaar6f507d62008-11-28 10:16:05 +000016649 case 's':
16650 if (TOLOWER_ASC(what[1]) == 'p') /* sp[#] */
16651 p = highlight_color(id, what, modec);
16652 else /* standout */
16653 p = highlight_has_attr(id, HL_STANDOUT, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016654 break;
16655
Bram Moolenaar5b743bf2005-03-15 22:50:43 +000016656 case 'u':
16657 if (STRLEN(what) <= 5 || TOLOWER_ASC(what[5]) != 'c')
16658 /* underline */
16659 p = highlight_has_attr(id, HL_UNDERLINE, modec);
16660 else
16661 /* undercurl */
16662 p = highlight_has_attr(id, HL_UNDERCURL, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016663 break;
16664 }
16665
16666 if (p != NULL)
16667 p = vim_strsave(p);
16668#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016669 rettv->v_type = VAR_STRING;
16670 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016671}
16672
16673/*
16674 * "synIDtrans(id)" function
16675 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016676 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016677f_synIDtrans(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016678 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016679 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016680{
16681 int id;
16682
16683#ifdef FEAT_SYN_HL
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016684 id = get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016685
16686 if (id > 0)
16687 id = syn_get_final_id(id);
16688 else
16689#endif
16690 id = 0;
16691
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016692 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016693}
16694
16695/*
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016696 * "synstack(lnum, col)" function
16697 */
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016698 static void
16699f_synstack(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016700 typval_T *argvars UNUSED;
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016701 typval_T *rettv;
16702{
16703#ifdef FEAT_SYN_HL
16704 long lnum;
16705 long col;
16706 int i;
16707 int id;
16708#endif
16709
16710 rettv->v_type = VAR_LIST;
16711 rettv->vval.v_list = NULL;
16712
16713#ifdef FEAT_SYN_HL
16714 lnum = get_tv_lnum(argvars); /* -1 on type error */
16715 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16716
16717 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar6cad8bd2008-09-10 13:39:10 +000016718 && col >= 0 && (col == 0 || col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016719 && rettv_list_alloc(rettv) != FAIL)
16720 {
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016721 (void)syn_get_id(curwin, lnum, (colnr_T)col, FALSE, NULL, TRUE);
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016722 for (i = 0; ; ++i)
16723 {
16724 id = syn_get_stack_item(i);
16725 if (id < 0)
16726 break;
16727 if (list_append_number(rettv->vval.v_list, id) == FAIL)
16728 break;
16729 }
16730 }
16731#endif
16732}
16733
16734/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016735 * "system()" function
16736 */
16737 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016738f_system(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016739 typval_T *argvars;
16740 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016741{
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016742 char_u *res = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016743 char_u *p;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016744 char_u *infile = NULL;
16745 char_u buf[NUMBUFLEN];
16746 int err = FALSE;
16747 FILE *fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016748
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016749 if (check_restricted() || check_secure())
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016750 goto done;
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016751
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016752 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016753 {
16754 /*
16755 * Write the string to a temp file, to be used for input of the shell
16756 * command.
16757 */
16758 if ((infile = vim_tempname('i')) == NULL)
16759 {
16760 EMSG(_(e_notmp));
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016761 goto done;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016762 }
16763
16764 fd = mch_fopen((char *)infile, WRITEBIN);
16765 if (fd == NULL)
16766 {
16767 EMSG2(_(e_notopen), infile);
16768 goto done;
16769 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016770 p = get_tv_string_buf_chk(&argvars[1], buf);
16771 if (p == NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016772 {
16773 fclose(fd);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016774 goto done; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016775 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016776 if (fwrite(p, STRLEN(p), 1, fd) != 1)
16777 err = TRUE;
16778 if (fclose(fd) != 0)
16779 err = TRUE;
16780 if (err)
16781 {
16782 EMSG(_("E677: Error writing temp file"));
16783 goto done;
16784 }
16785 }
16786
Bram Moolenaare580b0c2006-03-21 21:33:03 +000016787 res = get_cmd_output(get_tv_string(&argvars[0]), infile,
16788 SHELL_SILENT | SHELL_COOKED);
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016789
Bram Moolenaar071d4272004-06-13 20:20:40 +000016790#ifdef USE_CR
16791 /* translate <CR> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016792 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016793 {
16794 char_u *s;
16795
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016796 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016797 {
16798 if (*s == CAR)
16799 *s = NL;
16800 }
16801 }
16802#else
16803# ifdef USE_CRNL
16804 /* translate <CR><NL> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016805 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016806 {
16807 char_u *s, *d;
16808
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016809 d = res;
16810 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016811 {
16812 if (s[0] == CAR && s[1] == NL)
16813 ++s;
16814 *d++ = *s;
16815 }
16816 *d = NUL;
16817 }
16818# endif
16819#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016820
16821done:
16822 if (infile != NULL)
16823 {
16824 mch_remove(infile);
16825 vim_free(infile);
16826 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016827 rettv->v_type = VAR_STRING;
16828 rettv->vval.v_string = res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016829}
16830
16831/*
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016832 * "tabpagebuflist()" function
16833 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016834 static void
16835f_tabpagebuflist(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016836 typval_T *argvars UNUSED;
16837 typval_T *rettv UNUSED;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016838{
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016839#ifdef FEAT_WINDOWS
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016840 tabpage_T *tp;
16841 win_T *wp = NULL;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016842
16843 if (argvars[0].v_type == VAR_UNKNOWN)
16844 wp = firstwin;
16845 else
16846 {
16847 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16848 if (tp != NULL)
Bram Moolenaar238a5642006-02-21 22:12:05 +000016849 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016850 }
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016851 if (wp != NULL && rettv_list_alloc(rettv) != FAIL)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016852 {
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016853 for (; wp != NULL; wp = wp->w_next)
16854 if (list_append_number(rettv->vval.v_list,
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016855 wp->w_buffer->b_fnum) == FAIL)
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016856 break;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016857 }
16858#endif
16859}
16860
16861
16862/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016863 * "tabpagenr()" function
16864 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016865 static void
16866f_tabpagenr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016867 typval_T *argvars UNUSED;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016868 typval_T *rettv;
16869{
16870 int nr = 1;
16871#ifdef FEAT_WINDOWS
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016872 char_u *arg;
16873
16874 if (argvars[0].v_type != VAR_UNKNOWN)
16875 {
16876 arg = get_tv_string_chk(&argvars[0]);
16877 nr = 0;
16878 if (arg != NULL)
16879 {
16880 if (STRCMP(arg, "$") == 0)
Bram Moolenaara5621492006-02-25 21:55:24 +000016881 nr = tabpage_index(NULL) - 1;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016882 else
16883 EMSG2(_(e_invexpr2), arg);
16884 }
16885 }
16886 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +000016887 nr = tabpage_index(curtab);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016888#endif
16889 rettv->vval.v_number = nr;
16890}
16891
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016892
16893#ifdef FEAT_WINDOWS
16894static int get_winnr __ARGS((tabpage_T *tp, typval_T *argvar));
16895
16896/*
16897 * Common code for tabpagewinnr() and winnr().
16898 */
16899 static int
16900get_winnr(tp, argvar)
16901 tabpage_T *tp;
16902 typval_T *argvar;
16903{
16904 win_T *twin;
16905 int nr = 1;
16906 win_T *wp;
16907 char_u *arg;
16908
16909 twin = (tp == curtab) ? curwin : tp->tp_curwin;
16910 if (argvar->v_type != VAR_UNKNOWN)
16911 {
16912 arg = get_tv_string_chk(argvar);
16913 if (arg == NULL)
16914 nr = 0; /* type error; errmsg already given */
16915 else if (STRCMP(arg, "$") == 0)
16916 twin = (tp == curtab) ? lastwin : tp->tp_lastwin;
16917 else if (STRCMP(arg, "#") == 0)
16918 {
16919 twin = (tp == curtab) ? prevwin : tp->tp_prevwin;
16920 if (twin == NULL)
16921 nr = 0;
16922 }
16923 else
16924 {
16925 EMSG2(_(e_invexpr2), arg);
16926 nr = 0;
16927 }
16928 }
16929
16930 if (nr > 0)
16931 for (wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
16932 wp != twin; wp = wp->w_next)
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016933 {
16934 if (wp == NULL)
16935 {
16936 /* didn't find it in this tabpage */
16937 nr = 0;
16938 break;
16939 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016940 ++nr;
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016941 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016942 return nr;
16943}
16944#endif
16945
16946/*
16947 * "tabpagewinnr()" function
16948 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016949 static void
16950f_tabpagewinnr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016951 typval_T *argvars UNUSED;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016952 typval_T *rettv;
16953{
16954 int nr = 1;
16955#ifdef FEAT_WINDOWS
16956 tabpage_T *tp;
16957
16958 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16959 if (tp == NULL)
16960 nr = 0;
16961 else
16962 nr = get_winnr(tp, &argvars[1]);
16963#endif
16964 rettv->vval.v_number = nr;
16965}
16966
16967
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016968/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016969 * "tagfiles()" function
16970 */
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016971 static void
16972f_tagfiles(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016973 typval_T *argvars UNUSED;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016974 typval_T *rettv;
16975{
16976 char_u fname[MAXPATHL + 1];
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016977 tagname_T tn;
16978 int first;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016979
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016980 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016981 return;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016982
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016983 for (first = TRUE; ; first = FALSE)
16984 if (get_tagfname(&tn, first, fname) == FAIL
16985 || list_append_string(rettv->vval.v_list, fname, -1) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016986 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016987 tagname_free(&tn);
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016988}
16989
16990/*
Bram Moolenaare2ac10d2005-03-07 23:26:06 +000016991 * "taglist()" function
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016992 */
16993 static void
16994f_taglist(argvars, rettv)
16995 typval_T *argvars;
16996 typval_T *rettv;
16997{
16998 char_u *tag_pattern;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016999
17000 tag_pattern = get_tv_string(&argvars[0]);
17001
17002 rettv->vval.v_number = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017003 if (*tag_pattern == NUL)
17004 return;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017005
Bram Moolenaareddf53b2006-02-27 00:11:10 +000017006 if (rettv_list_alloc(rettv) == OK)
17007 (void)get_tags(rettv->vval.v_list, tag_pattern);
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017008}
17009
17010/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017011 * "tempname()" function
17012 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017013 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017014f_tempname(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017015 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017016 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017017{
17018 static int x = 'A';
17019
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017020 rettv->v_type = VAR_STRING;
17021 rettv->vval.v_string = vim_tempname(x);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017022
17023 /* Advance 'x' to use A-Z and 0-9, so that there are at least 34 different
17024 * names. Skip 'I' and 'O', they are used for shell redirection. */
17025 do
17026 {
17027 if (x == 'Z')
17028 x = '0';
17029 else if (x == '9')
17030 x = 'A';
17031 else
17032 {
17033#ifdef EBCDIC
17034 if (x == 'I')
17035 x = 'J';
17036 else if (x == 'R')
17037 x = 'S';
17038 else
17039#endif
17040 ++x;
17041 }
17042 } while (x == 'I' || x == 'O');
17043}
17044
17045/*
Bram Moolenaard52d9742005-08-21 22:20:28 +000017046 * "test(list)" function: Just checking the walls...
17047 */
Bram Moolenaard52d9742005-08-21 22:20:28 +000017048 static void
17049f_test(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017050 typval_T *argvars UNUSED;
17051 typval_T *rettv UNUSED;
Bram Moolenaard52d9742005-08-21 22:20:28 +000017052{
17053 /* Used for unit testing. Change the code below to your liking. */
17054#if 0
17055 listitem_T *li;
17056 list_T *l;
17057 char_u *bad, *good;
17058
17059 if (argvars[0].v_type != VAR_LIST)
17060 return;
17061 l = argvars[0].vval.v_list;
17062 if (l == NULL)
17063 return;
17064 li = l->lv_first;
17065 if (li == NULL)
17066 return;
17067 bad = get_tv_string(&li->li_tv);
17068 li = li->li_next;
17069 if (li == NULL)
17070 return;
17071 good = get_tv_string(&li->li_tv);
17072 rettv->vval.v_number = test_edit_score(bad, good);
17073#endif
17074}
17075
17076/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017077 * "tolower(string)" function
17078 */
17079 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017080f_tolower(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017081 typval_T *argvars;
17082 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017083{
17084 char_u *p;
17085
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017086 p = vim_strsave(get_tv_string(&argvars[0]));
17087 rettv->v_type = VAR_STRING;
17088 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017089
17090 if (p != NULL)
17091 while (*p != NUL)
17092 {
17093#ifdef FEAT_MBYTE
17094 int l;
17095
17096 if (enc_utf8)
17097 {
17098 int c, lc;
17099
17100 c = utf_ptr2char(p);
17101 lc = utf_tolower(c);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017102 l = utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017103 /* TODO: reallocate string when byte count changes. */
17104 if (utf_char2len(lc) == l)
17105 utf_char2bytes(lc, p);
17106 p += l;
17107 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017108 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017109 p += l; /* skip multi-byte character */
17110 else
17111#endif
17112 {
17113 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
17114 ++p;
17115 }
17116 }
17117}
17118
17119/*
17120 * "toupper(string)" function
17121 */
17122 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017123f_toupper(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017124 typval_T *argvars;
17125 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017126{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017127 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017128 rettv->vval.v_string = strup_save(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000017129}
17130
17131/*
Bram Moolenaar8299df92004-07-10 09:47:34 +000017132 * "tr(string, fromstr, tostr)" function
17133 */
17134 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017135f_tr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017136 typval_T *argvars;
17137 typval_T *rettv;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017138{
17139 char_u *instr;
17140 char_u *fromstr;
17141 char_u *tostr;
17142 char_u *p;
17143#ifdef FEAT_MBYTE
Bram Moolenaar342337a2005-07-21 21:11:17 +000017144 int inlen;
17145 int fromlen;
17146 int tolen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017147 int idx;
17148 char_u *cpstr;
17149 int cplen;
17150 int first = TRUE;
17151#endif
17152 char_u buf[NUMBUFLEN];
17153 char_u buf2[NUMBUFLEN];
17154 garray_T ga;
17155
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017156 instr = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017157 fromstr = get_tv_string_buf_chk(&argvars[1], buf);
17158 tostr = get_tv_string_buf_chk(&argvars[2], buf2);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017159
17160 /* Default return value: empty string. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017161 rettv->v_type = VAR_STRING;
17162 rettv->vval.v_string = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017163 if (fromstr == NULL || tostr == NULL)
17164 return; /* type error; errmsg already given */
Bram Moolenaar8299df92004-07-10 09:47:34 +000017165 ga_init2(&ga, (int)sizeof(char), 80);
17166
17167#ifdef FEAT_MBYTE
17168 if (!has_mbyte)
17169#endif
17170 /* not multi-byte: fromstr and tostr must be the same length */
17171 if (STRLEN(fromstr) != STRLEN(tostr))
17172 {
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017173#ifdef FEAT_MBYTE
Bram Moolenaar8299df92004-07-10 09:47:34 +000017174error:
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017175#endif
Bram Moolenaar8299df92004-07-10 09:47:34 +000017176 EMSG2(_(e_invarg2), fromstr);
17177 ga_clear(&ga);
17178 return;
17179 }
17180
17181 /* fromstr and tostr have to contain the same number of chars */
17182 while (*instr != NUL)
17183 {
17184#ifdef FEAT_MBYTE
17185 if (has_mbyte)
17186 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017187 inlen = (*mb_ptr2len)(instr);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017188 cpstr = instr;
17189 cplen = inlen;
17190 idx = 0;
17191 for (p = fromstr; *p != NUL; p += fromlen)
17192 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017193 fromlen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017194 if (fromlen == inlen && STRNCMP(instr, p, inlen) == 0)
17195 {
17196 for (p = tostr; *p != NUL; p += tolen)
17197 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017198 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017199 if (idx-- == 0)
17200 {
17201 cplen = tolen;
17202 cpstr = p;
17203 break;
17204 }
17205 }
17206 if (*p == NUL) /* tostr is shorter than fromstr */
17207 goto error;
17208 break;
17209 }
17210 ++idx;
17211 }
17212
17213 if (first && cpstr == instr)
17214 {
17215 /* Check that fromstr and tostr have the same number of
17216 * (multi-byte) characters. Done only once when a character
17217 * of instr doesn't appear in fromstr. */
17218 first = FALSE;
17219 for (p = tostr; *p != NUL; p += tolen)
17220 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017221 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017222 --idx;
17223 }
17224 if (idx != 0)
17225 goto error;
17226 }
17227
17228 ga_grow(&ga, cplen);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000017229 mch_memmove((char *)ga.ga_data + ga.ga_len, cpstr, (size_t)cplen);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017230 ga.ga_len += cplen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017231
17232 instr += inlen;
17233 }
17234 else
17235#endif
17236 {
17237 /* When not using multi-byte chars we can do it faster. */
17238 p = vim_strchr(fromstr, *instr);
17239 if (p != NULL)
17240 ga_append(&ga, tostr[p - fromstr]);
17241 else
17242 ga_append(&ga, *instr);
17243 ++instr;
17244 }
17245 }
17246
Bram Moolenaar61b974b2006-12-05 09:32:29 +000017247 /* add a terminating NUL */
17248 ga_grow(&ga, 1);
17249 ga_append(&ga, NUL);
17250
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017251 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017252}
17253
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017254#ifdef FEAT_FLOAT
17255/*
17256 * "trunc({float})" function
17257 */
17258 static void
17259f_trunc(argvars, rettv)
17260 typval_T *argvars;
17261 typval_T *rettv;
17262{
17263 float_T f;
17264
17265 rettv->v_type = VAR_FLOAT;
17266 if (get_float_arg(argvars, &f) == OK)
17267 /* trunc() is not in C90, use floor() or ceil() instead. */
17268 rettv->vval.v_float = f > 0 ? floor(f) : ceil(f);
17269 else
17270 rettv->vval.v_float = 0.0;
17271}
17272#endif
17273
Bram Moolenaar8299df92004-07-10 09:47:34 +000017274/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017275 * "type(expr)" function
17276 */
17277 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017278f_type(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017279 typval_T *argvars;
17280 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017281{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017282 int n;
17283
17284 switch (argvars[0].v_type)
17285 {
17286 case VAR_NUMBER: n = 0; break;
17287 case VAR_STRING: n = 1; break;
17288 case VAR_FUNC: n = 2; break;
17289 case VAR_LIST: n = 3; break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000017290 case VAR_DICT: n = 4; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017291#ifdef FEAT_FLOAT
17292 case VAR_FLOAT: n = 5; break;
17293#endif
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017294 default: EMSG2(_(e_intern2), "f_type()"); n = 0; break;
17295 }
17296 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017297}
17298
17299/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000017300 * "values(dict)" function
17301 */
17302 static void
17303f_values(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017304 typval_T *argvars;
17305 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000017306{
17307 dict_list(argvars, rettv, 1);
17308}
17309
17310/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017311 * "virtcol(string)" function
17312 */
17313 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017314f_virtcol(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017315 typval_T *argvars;
17316 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017317{
17318 colnr_T vcol = 0;
17319 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017320 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017321
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017322 fp = var2fpos(&argvars[0], FALSE, &fnum);
17323 if (fp != NULL && fp->lnum <= curbuf->b_ml.ml_line_count
17324 && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017325 {
17326 getvvcol(curwin, fp, NULL, NULL, &vcol);
17327 ++vcol;
17328 }
17329
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017330 rettv->vval.v_number = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017331}
17332
17333/*
17334 * "visualmode()" function
17335 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017336 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017337f_visualmode(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017338 typval_T *argvars UNUSED;
17339 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017340{
17341#ifdef FEAT_VISUAL
17342 char_u str[2];
17343
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017344 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017345 str[0] = curbuf->b_visual_mode_eval;
17346 str[1] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017347 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017348
17349 /* A non-zero number or non-empty string argument: reset mode. */
Bram Moolenaar05bb9532008-07-04 09:44:11 +000017350 if (non_zero_arg(&argvars[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +000017351 curbuf->b_visual_mode_eval = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017352#endif
17353}
17354
17355/*
17356 * "winbufnr(nr)" function
17357 */
17358 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017359f_winbufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017360 typval_T *argvars;
17361 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017362{
17363 win_T *wp;
17364
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017365 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017366 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017367 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017368 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017369 rettv->vval.v_number = wp->w_buffer->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017370}
17371
17372/*
17373 * "wincol()" function
17374 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017375 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017376f_wincol(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017377 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017378 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017379{
17380 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017381 rettv->vval.v_number = curwin->w_wcol + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017382}
17383
17384/*
17385 * "winheight(nr)" function
17386 */
17387 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017388f_winheight(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017389 typval_T *argvars;
17390 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017391{
17392 win_T *wp;
17393
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017394 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017395 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017396 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017397 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017398 rettv->vval.v_number = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017399}
17400
17401/*
17402 * "winline()" function
17403 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017404 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017405f_winline(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017406 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017407 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017408{
17409 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017410 rettv->vval.v_number = curwin->w_wrow + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017411}
17412
17413/*
17414 * "winnr()" function
17415 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017416 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017417f_winnr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017418 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017419 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017420{
17421 int nr = 1;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017422
Bram Moolenaar071d4272004-06-13 20:20:40 +000017423#ifdef FEAT_WINDOWS
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017424 nr = get_winnr(curtab, &argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017425#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017426 rettv->vval.v_number = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017427}
17428
17429/*
17430 * "winrestcmd()" function
17431 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017432 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017433f_winrestcmd(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017434 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017435 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017436{
17437#ifdef FEAT_WINDOWS
17438 win_T *wp;
17439 int winnr = 1;
17440 garray_T ga;
17441 char_u buf[50];
17442
17443 ga_init2(&ga, (int)sizeof(char), 70);
17444 for (wp = firstwin; wp != NULL; wp = wp->w_next)
17445 {
17446 sprintf((char *)buf, "%dresize %d|", winnr, wp->w_height);
17447 ga_concat(&ga, buf);
17448# ifdef FEAT_VERTSPLIT
17449 sprintf((char *)buf, "vert %dresize %d|", winnr, wp->w_width);
17450 ga_concat(&ga, buf);
17451# endif
17452 ++winnr;
17453 }
Bram Moolenaar269ec652004-07-29 08:43:53 +000017454 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017455
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017456 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017457#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017458 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017459#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017460 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017461}
17462
17463/*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017464 * "winrestview()" function
17465 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017466 static void
17467f_winrestview(argvars, rettv)
17468 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017469 typval_T *rettv UNUSED;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017470{
17471 dict_T *dict;
17472
17473 if (argvars[0].v_type != VAR_DICT
17474 || (dict = argvars[0].vval.v_dict) == NULL)
17475 EMSG(_(e_invarg));
17476 else
17477 {
17478 curwin->w_cursor.lnum = get_dict_number(dict, (char_u *)"lnum");
17479 curwin->w_cursor.col = get_dict_number(dict, (char_u *)"col");
17480#ifdef FEAT_VIRTUALEDIT
17481 curwin->w_cursor.coladd = get_dict_number(dict, (char_u *)"coladd");
17482#endif
17483 curwin->w_curswant = get_dict_number(dict, (char_u *)"curswant");
Bram Moolenaar362e1a32006-03-06 23:29:24 +000017484 curwin->w_set_curswant = FALSE;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017485
Bram Moolenaar6f11a412006-09-06 20:16:42 +000017486 set_topline(curwin, get_dict_number(dict, (char_u *)"topline"));
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017487#ifdef FEAT_DIFF
17488 curwin->w_topfill = get_dict_number(dict, (char_u *)"topfill");
17489#endif
17490 curwin->w_leftcol = get_dict_number(dict, (char_u *)"leftcol");
17491 curwin->w_skipcol = get_dict_number(dict, (char_u *)"skipcol");
17492
17493 check_cursor();
17494 changed_cline_bef_curs();
17495 invalidate_botline();
17496 redraw_later(VALID);
17497
17498 if (curwin->w_topline == 0)
17499 curwin->w_topline = 1;
17500 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
17501 curwin->w_topline = curbuf->b_ml.ml_line_count;
17502#ifdef FEAT_DIFF
17503 check_topfill(curwin, TRUE);
17504#endif
17505 }
17506}
17507
17508/*
17509 * "winsaveview()" function
17510 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017511 static void
17512f_winsaveview(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017513 typval_T *argvars UNUSED;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017514 typval_T *rettv;
17515{
17516 dict_T *dict;
17517
17518 dict = dict_alloc();
17519 if (dict == NULL)
17520 return;
17521 rettv->v_type = VAR_DICT;
17522 rettv->vval.v_dict = dict;
17523 ++dict->dv_refcount;
17524
17525 dict_add_nr_str(dict, "lnum", (long)curwin->w_cursor.lnum, NULL);
17526 dict_add_nr_str(dict, "col", (long)curwin->w_cursor.col, NULL);
17527#ifdef FEAT_VIRTUALEDIT
17528 dict_add_nr_str(dict, "coladd", (long)curwin->w_cursor.coladd, NULL);
17529#endif
Bram Moolenaar9af1ba92006-08-29 19:55:53 +000017530 update_curswant();
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017531 dict_add_nr_str(dict, "curswant", (long)curwin->w_curswant, NULL);
17532
17533 dict_add_nr_str(dict, "topline", (long)curwin->w_topline, NULL);
17534#ifdef FEAT_DIFF
17535 dict_add_nr_str(dict, "topfill", (long)curwin->w_topfill, NULL);
17536#endif
17537 dict_add_nr_str(dict, "leftcol", (long)curwin->w_leftcol, NULL);
17538 dict_add_nr_str(dict, "skipcol", (long)curwin->w_skipcol, NULL);
17539}
17540
17541/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017542 * "winwidth(nr)" function
17543 */
17544 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017545f_winwidth(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017546 typval_T *argvars;
17547 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017548{
17549 win_T *wp;
17550
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017551 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017552 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017553 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017554 else
17555#ifdef FEAT_VERTSPLIT
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017556 rettv->vval.v_number = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017557#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017558 rettv->vval.v_number = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017559#endif
17560}
17561
Bram Moolenaar071d4272004-06-13 20:20:40 +000017562/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017563 * "writefile()" function
17564 */
17565 static void
17566f_writefile(argvars, rettv)
17567 typval_T *argvars;
17568 typval_T *rettv;
17569{
17570 int binary = FALSE;
17571 char_u *fname;
17572 FILE *fd;
17573 listitem_T *li;
17574 char_u *s;
17575 int ret = 0;
17576 int c;
17577
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000017578 if (check_restricted() || check_secure())
17579 return;
17580
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017581 if (argvars[0].v_type != VAR_LIST)
17582 {
17583 EMSG2(_(e_listarg), "writefile()");
17584 return;
17585 }
17586 if (argvars[0].vval.v_list == NULL)
17587 return;
17588
17589 if (argvars[2].v_type != VAR_UNKNOWN
17590 && STRCMP(get_tv_string(&argvars[2]), "b") == 0)
17591 binary = TRUE;
17592
17593 /* Always open the file in binary mode, library functions have a mind of
17594 * their own about CR-LF conversion. */
17595 fname = get_tv_string(&argvars[1]);
17596 if (*fname == NUL || (fd = mch_fopen((char *)fname, WRITEBIN)) == NULL)
17597 {
17598 EMSG2(_(e_notcreate), *fname == NUL ? (char_u *)_("<empty>") : fname);
17599 ret = -1;
17600 }
17601 else
17602 {
17603 for (li = argvars[0].vval.v_list->lv_first; li != NULL;
17604 li = li->li_next)
17605 {
17606 for (s = get_tv_string(&li->li_tv); *s != NUL; ++s)
17607 {
17608 if (*s == '\n')
17609 c = putc(NUL, fd);
17610 else
17611 c = putc(*s, fd);
17612 if (c == EOF)
17613 {
17614 ret = -1;
17615 break;
17616 }
17617 }
17618 if (!binary || li->li_next != NULL)
17619 if (putc('\n', fd) == EOF)
17620 {
17621 ret = -1;
17622 break;
17623 }
17624 if (ret < 0)
17625 {
17626 EMSG(_(e_write));
17627 break;
17628 }
17629 }
17630 fclose(fd);
17631 }
17632
17633 rettv->vval.v_number = ret;
17634}
17635
17636/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017637 * Translate a String variable into a position.
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017638 * Returns NULL when there is an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017639 */
17640 static pos_T *
Bram Moolenaar477933c2007-07-17 14:32:23 +000017641var2fpos(varp, dollar_lnum, fnum)
Bram Moolenaar33570922005-01-25 22:26:29 +000017642 typval_T *varp;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017643 int dollar_lnum; /* TRUE when $ is last line */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017644 int *fnum; /* set to fnum for '0, 'A, etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017645{
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017646 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017647 static pos_T pos;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017648 pos_T *pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017649
Bram Moolenaara5525202006-03-02 22:52:09 +000017650 /* Argument can be [lnum, col, coladd]. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017651 if (varp->v_type == VAR_LIST)
17652 {
17653 list_T *l;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017654 int len;
Bram Moolenaara5525202006-03-02 22:52:09 +000017655 int error = FALSE;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017656 listitem_T *li;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017657
17658 l = varp->vval.v_list;
17659 if (l == NULL)
17660 return NULL;
17661
17662 /* Get the line number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017663 pos.lnum = list_find_nr(l, 0L, &error);
17664 if (error || pos.lnum <= 0 || pos.lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017665 return NULL; /* invalid line number */
17666
17667 /* Get the column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017668 pos.col = list_find_nr(l, 1L, &error);
17669 if (error)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017670 return NULL;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017671 len = (long)STRLEN(ml_get(pos.lnum));
Bram Moolenaar477933c2007-07-17 14:32:23 +000017672
17673 /* We accept "$" for the column number: last column. */
17674 li = list_find(l, 1L);
17675 if (li != NULL && li->li_tv.v_type == VAR_STRING
17676 && li->li_tv.vval.v_string != NULL
17677 && STRCMP(li->li_tv.vval.v_string, "$") == 0)
17678 pos.col = len + 1;
17679
Bram Moolenaara5525202006-03-02 22:52:09 +000017680 /* Accept a position up to the NUL after the line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000017681 if (pos.col == 0 || (int)pos.col > len + 1)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017682 return NULL; /* invalid column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017683 --pos.col;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017684
Bram Moolenaara5525202006-03-02 22:52:09 +000017685#ifdef FEAT_VIRTUALEDIT
17686 /* Get the virtual offset. Defaults to zero. */
17687 pos.coladd = list_find_nr(l, 2L, &error);
17688 if (error)
17689 pos.coladd = 0;
17690#endif
17691
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017692 return &pos;
17693 }
17694
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017695 name = get_tv_string_chk(varp);
17696 if (name == NULL)
17697 return NULL;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017698 if (name[0] == '.') /* cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017699 return &curwin->w_cursor;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017700#ifdef FEAT_VISUAL
17701 if (name[0] == 'v' && name[1] == NUL) /* Visual start */
17702 {
17703 if (VIsual_active)
17704 return &VIsual;
17705 return &curwin->w_cursor;
17706 }
17707#endif
17708 if (name[0] == '\'') /* mark */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017709 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017710 pp = getmark_fnum(name[1], FALSE, fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017711 if (pp == NULL || pp == (pos_T *)-1 || pp->lnum <= 0)
17712 return NULL;
17713 return pp;
17714 }
Bram Moolenaara5525202006-03-02 22:52:09 +000017715
17716#ifdef FEAT_VIRTUALEDIT
17717 pos.coladd = 0;
17718#endif
17719
Bram Moolenaar477933c2007-07-17 14:32:23 +000017720 if (name[0] == 'w' && dollar_lnum)
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017721 {
17722 pos.col = 0;
17723 if (name[1] == '0') /* "w0": first visible line */
17724 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017725 update_topline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017726 pos.lnum = curwin->w_topline;
17727 return &pos;
17728 }
17729 else if (name[1] == '$') /* "w$": last visible line */
17730 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017731 validate_botline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017732 pos.lnum = curwin->w_botline - 1;
17733 return &pos;
17734 }
17735 }
17736 else if (name[0] == '$') /* last column or line */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017737 {
Bram Moolenaar477933c2007-07-17 14:32:23 +000017738 if (dollar_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017739 {
17740 pos.lnum = curbuf->b_ml.ml_line_count;
17741 pos.col = 0;
17742 }
17743 else
17744 {
17745 pos.lnum = curwin->w_cursor.lnum;
17746 pos.col = (colnr_T)STRLEN(ml_get_curline());
17747 }
17748 return &pos;
17749 }
17750 return NULL;
17751}
17752
17753/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017754 * Convert list in "arg" into a position and optional file number.
17755 * When "fnump" is NULL there is no file number, only 3 items.
17756 * Note that the column is passed on as-is, the caller may want to decrement
17757 * it to use 1 for the first column.
17758 * Return FAIL when conversion is not possible, doesn't check the position for
17759 * validity.
17760 */
17761 static int
17762list2fpos(arg, posp, fnump)
17763 typval_T *arg;
17764 pos_T *posp;
17765 int *fnump;
17766{
17767 list_T *l = arg->vval.v_list;
17768 long i = 0;
17769 long n;
17770
Bram Moolenaarbde35262006-07-23 20:12:24 +000017771 /* List must be: [fnum, lnum, col, coladd], where "fnum" is only there
17772 * when "fnump" isn't NULL and "coladd" is optional. */
17773 if (arg->v_type != VAR_LIST
17774 || l == NULL
17775 || l->lv_len < (fnump == NULL ? 2 : 3)
17776 || l->lv_len > (fnump == NULL ? 3 : 4))
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017777 return FAIL;
17778
17779 if (fnump != NULL)
17780 {
17781 n = list_find_nr(l, i++, NULL); /* fnum */
17782 if (n < 0)
17783 return FAIL;
17784 if (n == 0)
17785 n = curbuf->b_fnum; /* current buffer */
17786 *fnump = n;
17787 }
17788
17789 n = list_find_nr(l, i++, NULL); /* lnum */
17790 if (n < 0)
17791 return FAIL;
17792 posp->lnum = n;
17793
17794 n = list_find_nr(l, i++, NULL); /* col */
17795 if (n < 0)
17796 return FAIL;
17797 posp->col = n;
17798
17799#ifdef FEAT_VIRTUALEDIT
17800 n = list_find_nr(l, i, NULL);
17801 if (n < 0)
Bram Moolenaarbde35262006-07-23 20:12:24 +000017802 posp->coladd = 0;
17803 else
17804 posp->coladd = n;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017805#endif
17806
17807 return OK;
17808}
17809
17810/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017811 * Get the length of an environment variable name.
17812 * Advance "arg" to the first character after the name.
17813 * Return 0 for error.
17814 */
17815 static int
17816get_env_len(arg)
17817 char_u **arg;
17818{
17819 char_u *p;
17820 int len;
17821
17822 for (p = *arg; vim_isIDc(*p); ++p)
17823 ;
17824 if (p == *arg) /* no name found */
17825 return 0;
17826
17827 len = (int)(p - *arg);
17828 *arg = p;
17829 return len;
17830}
17831
17832/*
17833 * Get the length of the name of a function or internal variable.
17834 * "arg" is advanced to the first non-white character after the name.
17835 * Return 0 if something is wrong.
17836 */
17837 static int
17838get_id_len(arg)
17839 char_u **arg;
17840{
17841 char_u *p;
17842 int len;
17843
17844 /* Find the end of the name. */
17845 for (p = *arg; eval_isnamec(*p); ++p)
17846 ;
17847 if (p == *arg) /* no name found */
17848 return 0;
17849
17850 len = (int)(p - *arg);
17851 *arg = skipwhite(p);
17852
17853 return len;
17854}
17855
17856/*
Bram Moolenaara7043832005-01-21 11:56:39 +000017857 * Get the length of the name of a variable or function.
17858 * Only the name is recognized, does not handle ".key" or "[idx]".
Bram Moolenaar071d4272004-06-13 20:20:40 +000017859 * "arg" is advanced to the first non-white character after the name.
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017860 * Return -1 if curly braces expansion failed.
17861 * Return 0 if something else is wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017862 * If the name contains 'magic' {}'s, expand them and return the
17863 * expanded name in an allocated string via 'alias' - caller must free.
17864 */
17865 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017866get_name_len(arg, alias, evaluate, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017867 char_u **arg;
17868 char_u **alias;
17869 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017870 int verbose;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017871{
17872 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017873 char_u *p;
17874 char_u *expr_start;
17875 char_u *expr_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017876
17877 *alias = NULL; /* default to no alias */
17878
17879 if ((*arg)[0] == K_SPECIAL && (*arg)[1] == KS_EXTRA
17880 && (*arg)[2] == (int)KE_SNR)
17881 {
17882 /* hard coded <SNR>, already translated */
17883 *arg += 3;
17884 return get_id_len(arg) + 3;
17885 }
17886 len = eval_fname_script(*arg);
17887 if (len > 0)
17888 {
17889 /* literal "<SID>", "s:" or "<SNR>" */
17890 *arg += len;
17891 }
17892
Bram Moolenaar071d4272004-06-13 20:20:40 +000017893 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017894 * Find the end of the name; check for {} construction.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017895 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017896 p = find_name_end(*arg, &expr_start, &expr_end,
17897 len > 0 ? 0 : FNE_CHECK_START);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017898 if (expr_start != NULL)
17899 {
17900 char_u *temp_string;
17901
17902 if (!evaluate)
17903 {
17904 len += (int)(p - *arg);
17905 *arg = skipwhite(p);
17906 return len;
17907 }
17908
17909 /*
17910 * Include any <SID> etc in the expanded string:
17911 * Thus the -len here.
17912 */
17913 temp_string = make_expanded_name(*arg - len, expr_start, expr_end, p);
17914 if (temp_string == NULL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017915 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017916 *alias = temp_string;
17917 *arg = skipwhite(p);
17918 return (int)STRLEN(temp_string);
17919 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017920
17921 len += get_id_len(arg);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017922 if (len == 0 && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017923 EMSG2(_(e_invexpr2), *arg);
17924
17925 return len;
17926}
17927
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017928/*
17929 * Find the end of a variable or function name, taking care of magic braces.
17930 * If "expr_start" is not NULL then "expr_start" and "expr_end" are set to the
17931 * start and end of the first magic braces item.
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017932 * "flags" can have FNE_INCL_BR and FNE_CHECK_START.
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017933 * Return a pointer to just after the name. Equal to "arg" if there is no
17934 * valid name.
17935 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017936 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017937find_name_end(arg, expr_start, expr_end, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017938 char_u *arg;
17939 char_u **expr_start;
17940 char_u **expr_end;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017941 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017942{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017943 int mb_nest = 0;
17944 int br_nest = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017945 char_u *p;
17946
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017947 if (expr_start != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017948 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017949 *expr_start = NULL;
17950 *expr_end = NULL;
17951 }
17952
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017953 /* Quick check for valid starting character. */
17954 if ((flags & FNE_CHECK_START) && !eval_isnamec1(*arg) && *arg != '{')
17955 return arg;
17956
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017957 for (p = arg; *p != NUL
17958 && (eval_isnamec(*p)
Bram Moolenaare9a41262005-01-15 22:18:47 +000017959 || *p == '{'
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017960 || ((flags & FNE_INCL_BR) && (*p == '[' || *p == '.'))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017961 || mb_nest != 0
Bram Moolenaar8af24422005-08-08 22:06:28 +000017962 || br_nest != 0); mb_ptr_adv(p))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017963 {
Bram Moolenaar8af24422005-08-08 22:06:28 +000017964 if (*p == '\'')
17965 {
17966 /* skip over 'string' to avoid counting [ and ] inside it. */
17967 for (p = p + 1; *p != NUL && *p != '\''; mb_ptr_adv(p))
17968 ;
17969 if (*p == NUL)
17970 break;
17971 }
17972 else if (*p == '"')
17973 {
17974 /* skip over "str\"ing" to avoid counting [ and ] inside it. */
17975 for (p = p + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
17976 if (*p == '\\' && p[1] != NUL)
17977 ++p;
17978 if (*p == NUL)
17979 break;
17980 }
17981
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017982 if (mb_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017983 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017984 if (*p == '[')
17985 ++br_nest;
17986 else if (*p == ']')
17987 --br_nest;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017988 }
Bram Moolenaar8af24422005-08-08 22:06:28 +000017989
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017990 if (br_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017991 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017992 if (*p == '{')
17993 {
17994 mb_nest++;
17995 if (expr_start != NULL && *expr_start == NULL)
17996 *expr_start = p;
17997 }
17998 else if (*p == '}')
17999 {
18000 mb_nest--;
18001 if (expr_start != NULL && mb_nest == 0 && *expr_end == NULL)
18002 *expr_end = p;
18003 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018004 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018005 }
18006
18007 return p;
18008}
18009
18010/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018011 * Expands out the 'magic' {}'s in a variable/function name.
18012 * Note that this can call itself recursively, to deal with
18013 * constructs like foo{bar}{baz}{bam}
18014 * The four pointer arguments point to "foo{expre}ss{ion}bar"
18015 * "in_start" ^
18016 * "expr_start" ^
18017 * "expr_end" ^
18018 * "in_end" ^
18019 *
18020 * Returns a new allocated string, which the caller must free.
18021 * Returns NULL for failure.
18022 */
18023 static char_u *
18024make_expanded_name(in_start, expr_start, expr_end, in_end)
18025 char_u *in_start;
18026 char_u *expr_start;
18027 char_u *expr_end;
18028 char_u *in_end;
18029{
18030 char_u c1;
18031 char_u *retval = NULL;
18032 char_u *temp_result;
18033 char_u *nextcmd = NULL;
18034
18035 if (expr_end == NULL || in_end == NULL)
18036 return NULL;
18037 *expr_start = NUL;
18038 *expr_end = NUL;
18039 c1 = *in_end;
18040 *in_end = NUL;
18041
Bram Moolenaar362e1a32006-03-06 23:29:24 +000018042 temp_result = eval_to_string(expr_start + 1, &nextcmd, FALSE);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018043 if (temp_result != NULL && nextcmd == NULL)
18044 {
18045 retval = alloc((unsigned)(STRLEN(temp_result) + (expr_start - in_start)
18046 + (in_end - expr_end) + 1));
18047 if (retval != NULL)
18048 {
18049 STRCPY(retval, in_start);
18050 STRCAT(retval, temp_result);
18051 STRCAT(retval, expr_end + 1);
18052 }
18053 }
18054 vim_free(temp_result);
18055
18056 *in_end = c1; /* put char back for error messages */
18057 *expr_start = '{';
18058 *expr_end = '}';
18059
18060 if (retval != NULL)
18061 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018062 temp_result = find_name_end(retval, &expr_start, &expr_end, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018063 if (expr_start != NULL)
18064 {
18065 /* Further expansion! */
18066 temp_result = make_expanded_name(retval, expr_start,
18067 expr_end, temp_result);
18068 vim_free(retval);
18069 retval = temp_result;
18070 }
18071 }
18072
18073 return retval;
18074}
18075
18076/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018077 * Return TRUE if character "c" can be used in a variable or function name.
Bram Moolenaare9a41262005-01-15 22:18:47 +000018078 * Does not include '{' or '}' for magic braces.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018079 */
18080 static int
18081eval_isnamec(c)
18082 int c;
18083{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018084 return (ASCII_ISALNUM(c) || c == '_' || c == ':' || c == AUTOLOAD_CHAR);
18085}
18086
18087/*
18088 * Return TRUE if character "c" can be used as the first character in a
18089 * variable or function name (excluding '{' and '}').
18090 */
18091 static int
18092eval_isnamec1(c)
18093 int c;
18094{
18095 return (ASCII_ISALPHA(c) || c == '_');
Bram Moolenaar071d4272004-06-13 20:20:40 +000018096}
18097
18098/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018099 * Set number v: variable to "val".
18100 */
18101 void
18102set_vim_var_nr(idx, val)
18103 int idx;
18104 long val;
18105{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018106 vimvars[idx].vv_nr = val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018107}
18108
18109/*
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018110 * Get number v: variable value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018111 */
18112 long
18113get_vim_var_nr(idx)
18114 int idx;
18115{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018116 return vimvars[idx].vv_nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018117}
18118
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018119/*
18120 * Get string v: variable value. Uses a static buffer, can only be used once.
18121 */
18122 char_u *
18123get_vim_var_str(idx)
18124 int idx;
18125{
18126 return get_tv_string(&vimvars[idx].vv_tv);
18127}
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018128
Bram Moolenaar071d4272004-06-13 20:20:40 +000018129/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018130 * Get List v: variable value. Caller must take care of reference count when
18131 * needed.
18132 */
18133 list_T *
18134get_vim_var_list(idx)
18135 int idx;
18136{
18137 return vimvars[idx].vv_list;
18138}
18139
18140/*
Bram Moolenaarda9591e2009-09-30 13:17:02 +000018141 * Set v:char to character "c".
18142 */
18143 void
18144set_vim_var_char(c)
18145 int c;
18146{
18147#ifdef FEAT_MBYTE
18148 char_u buf[MB_MAXBYTES];
18149#else
18150 char_u buf[2];
18151#endif
18152
18153#ifdef FEAT_MBYTE
18154 if (has_mbyte)
18155 buf[(*mb_char2bytes)(c, buf)] = NUL;
18156 else
18157#endif
18158 {
18159 buf[0] = c;
18160 buf[1] = NUL;
18161 }
18162 set_vim_var_string(VV_CHAR, buf, -1);
18163}
18164
18165/*
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018166 * Set v:count to "count" and v:count1 to "count1".
18167 * When "set_prevcount" is TRUE first set v:prevcount from v:count.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018168 */
18169 void
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018170set_vcount(count, count1, set_prevcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018171 long count;
18172 long count1;
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018173 int set_prevcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018174{
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018175 if (set_prevcount)
18176 vimvars[VV_PREVCOUNT].vv_nr = vimvars[VV_COUNT].vv_nr;
Bram Moolenaare9a41262005-01-15 22:18:47 +000018177 vimvars[VV_COUNT].vv_nr = count;
18178 vimvars[VV_COUNT1].vv_nr = count1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018179}
18180
18181/*
18182 * Set string v: variable to a copy of "val".
18183 */
18184 void
18185set_vim_var_string(idx, val, len)
18186 int idx;
18187 char_u *val;
18188 int len; /* length of "val" to use or -1 (whole string) */
18189{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018190 /* Need to do this (at least) once, since we can't initialize a union.
18191 * Will always be invoked when "v:progname" is set. */
18192 vimvars[VV_VERSION].vv_nr = VIM_VERSION_100;
18193
Bram Moolenaare9a41262005-01-15 22:18:47 +000018194 vim_free(vimvars[idx].vv_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018195 if (val == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018196 vimvars[idx].vv_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018197 else if (len == -1)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018198 vimvars[idx].vv_str = vim_strsave(val);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018199 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000018200 vimvars[idx].vv_str = vim_strnsave(val, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018201}
18202
18203/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018204 * Set List v: variable to "val".
18205 */
18206 void
18207set_vim_var_list(idx, val)
18208 int idx;
18209 list_T *val;
18210{
18211 list_unref(vimvars[idx].vv_list);
18212 vimvars[idx].vv_list = val;
18213 if (val != NULL)
18214 ++val->lv_refcount;
18215}
18216
18217/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018218 * Set v:register if needed.
18219 */
18220 void
18221set_reg_var(c)
18222 int c;
18223{
18224 char_u regname;
18225
18226 if (c == 0 || c == ' ')
18227 regname = '"';
18228 else
18229 regname = c;
18230 /* Avoid free/alloc when the value is already right. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000018231 if (vimvars[VV_REG].vv_str == NULL || vimvars[VV_REG].vv_str[0] != c)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018232 set_vim_var_string(VV_REG, &regname, 1);
18233}
18234
18235/*
18236 * Get or set v:exception. If "oldval" == NULL, return the current value.
18237 * Otherwise, restore the value to "oldval" and return NULL.
18238 * Must always be called in pairs to save and restore v:exception! Does not
18239 * take care of memory allocations.
18240 */
18241 char_u *
18242v_exception(oldval)
18243 char_u *oldval;
18244{
18245 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018246 return vimvars[VV_EXCEPTION].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018247
Bram Moolenaare9a41262005-01-15 22:18:47 +000018248 vimvars[VV_EXCEPTION].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018249 return NULL;
18250}
18251
18252/*
18253 * Get or set v:throwpoint. If "oldval" == NULL, return the current value.
18254 * Otherwise, restore the value to "oldval" and return NULL.
18255 * Must always be called in pairs to save and restore v:throwpoint! Does not
18256 * take care of memory allocations.
18257 */
18258 char_u *
18259v_throwpoint(oldval)
18260 char_u *oldval;
18261{
18262 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018263 return vimvars[VV_THROWPOINT].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018264
Bram Moolenaare9a41262005-01-15 22:18:47 +000018265 vimvars[VV_THROWPOINT].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018266 return NULL;
18267}
18268
18269#if defined(FEAT_AUTOCMD) || defined(PROTO)
18270/*
18271 * Set v:cmdarg.
18272 * If "eap" != NULL, use "eap" to generate the value and return the old value.
18273 * If "oldarg" != NULL, restore the value to "oldarg" and return NULL.
18274 * Must always be called in pairs!
18275 */
18276 char_u *
18277set_cmdarg(eap, oldarg)
18278 exarg_T *eap;
18279 char_u *oldarg;
18280{
18281 char_u *oldval;
18282 char_u *newval;
18283 unsigned len;
18284
Bram Moolenaare9a41262005-01-15 22:18:47 +000018285 oldval = vimvars[VV_CMDARG].vv_str;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018286 if (eap == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018287 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018288 vim_free(oldval);
Bram Moolenaare9a41262005-01-15 22:18:47 +000018289 vimvars[VV_CMDARG].vv_str = oldarg;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018290 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018291 }
18292
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018293 if (eap->force_bin == FORCE_BIN)
18294 len = 6;
18295 else if (eap->force_bin == FORCE_NOBIN)
18296 len = 8;
18297 else
18298 len = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018299
18300 if (eap->read_edit)
18301 len += 7;
18302
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018303 if (eap->force_ff != 0)
18304 len += (unsigned)STRLEN(eap->cmd + eap->force_ff) + 6;
18305# ifdef FEAT_MBYTE
18306 if (eap->force_enc != 0)
18307 len += (unsigned)STRLEN(eap->cmd + eap->force_enc) + 7;
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018308 if (eap->bad_char != 0)
18309 len += (unsigned)STRLEN(eap->cmd + eap->bad_char) + 7;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018310# endif
18311
18312 newval = alloc(len + 1);
18313 if (newval == NULL)
18314 return NULL;
18315
18316 if (eap->force_bin == FORCE_BIN)
18317 sprintf((char *)newval, " ++bin");
18318 else if (eap->force_bin == FORCE_NOBIN)
18319 sprintf((char *)newval, " ++nobin");
18320 else
18321 *newval = NUL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018322
18323 if (eap->read_edit)
18324 STRCAT(newval, " ++edit");
18325
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018326 if (eap->force_ff != 0)
18327 sprintf((char *)newval + STRLEN(newval), " ++ff=%s",
18328 eap->cmd + eap->force_ff);
18329# ifdef FEAT_MBYTE
18330 if (eap->force_enc != 0)
18331 sprintf((char *)newval + STRLEN(newval), " ++enc=%s",
18332 eap->cmd + eap->force_enc);
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018333 if (eap->bad_char != 0)
18334 sprintf((char *)newval + STRLEN(newval), " ++bad=%s",
18335 eap->cmd + eap->bad_char);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018336# endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000018337 vimvars[VV_CMDARG].vv_str = newval;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018338 return oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018339}
18340#endif
18341
18342/*
18343 * Get the value of internal variable "name".
18344 * Return OK or FAIL.
18345 */
18346 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018347get_var_tv(name, len, rettv, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018348 char_u *name;
18349 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +000018350 typval_T *rettv; /* NULL when only checking existence */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018351 int verbose; /* may give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018352{
18353 int ret = OK;
Bram Moolenaar33570922005-01-25 22:26:29 +000018354 typval_T *tv = NULL;
18355 typval_T atv;
18356 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018357 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018358
18359 /* truncate the name, so that we can use strcmp() */
18360 cc = name[len];
18361 name[len] = NUL;
18362
18363 /*
18364 * Check for "b:changedtick".
18365 */
18366 if (STRCMP(name, "b:changedtick") == 0)
18367 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000018368 atv.v_type = VAR_NUMBER;
18369 atv.vval.v_number = curbuf->b_changedtick;
18370 tv = &atv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018371 }
18372
18373 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018374 * Check for user-defined variables.
18375 */
18376 else
18377 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018378 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018379 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018380 tv = &v->di_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018381 }
18382
Bram Moolenaare9a41262005-01-15 22:18:47 +000018383 if (tv == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018384 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018385 if (rettv != NULL && verbose)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018386 EMSG2(_(e_undefvar), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018387 ret = FAIL;
18388 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018389 else if (rettv != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018390 copy_tv(tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018391
18392 name[len] = cc;
18393
18394 return ret;
18395}
18396
18397/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018398 * Handle expr[expr], expr[expr:expr] subscript and .name lookup.
18399 * Also handle function call with Funcref variable: func(expr)
18400 * Can all be combined: dict.func(expr)[idx]['func'](expr)
18401 */
18402 static int
18403handle_subscript(arg, rettv, evaluate, verbose)
18404 char_u **arg;
18405 typval_T *rettv;
18406 int evaluate; /* do more than finding the end */
18407 int verbose; /* give error messages */
18408{
18409 int ret = OK;
18410 dict_T *selfdict = NULL;
18411 char_u *s;
18412 int len;
Bram Moolenaard9fba312005-06-26 22:34:35 +000018413 typval_T functv;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018414
18415 while (ret == OK
18416 && (**arg == '['
18417 || (**arg == '.' && rettv->v_type == VAR_DICT)
18418 || (**arg == '(' && rettv->v_type == VAR_FUNC))
18419 && !vim_iswhite(*(*arg - 1)))
18420 {
18421 if (**arg == '(')
18422 {
Bram Moolenaard9fba312005-06-26 22:34:35 +000018423 /* need to copy the funcref so that we can clear rettv */
18424 functv = *rettv;
18425 rettv->v_type = VAR_UNKNOWN;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018426
18427 /* Invoke the function. Recursive! */
Bram Moolenaard9fba312005-06-26 22:34:35 +000018428 s = functv.vval.v_string;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018429 ret = get_func_tv(s, (int)STRLEN(s), rettv, arg,
Bram Moolenaard9fba312005-06-26 22:34:35 +000018430 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
18431 &len, evaluate, selfdict);
18432
18433 /* Clear the funcref afterwards, so that deleting it while
18434 * evaluating the arguments is possible (see test55). */
18435 clear_tv(&functv);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018436
18437 /* Stop the expression evaluation when immediately aborting on
18438 * error, or when an interrupt occurred or an exception was thrown
18439 * but not caught. */
18440 if (aborting())
18441 {
18442 if (ret == OK)
18443 clear_tv(rettv);
18444 ret = FAIL;
18445 }
18446 dict_unref(selfdict);
18447 selfdict = NULL;
18448 }
18449 else /* **arg == '[' || **arg == '.' */
18450 {
18451 dict_unref(selfdict);
18452 if (rettv->v_type == VAR_DICT)
18453 {
18454 selfdict = rettv->vval.v_dict;
18455 if (selfdict != NULL)
18456 ++selfdict->dv_refcount;
18457 }
18458 else
18459 selfdict = NULL;
18460 if (eval_index(arg, rettv, evaluate, verbose) == FAIL)
18461 {
18462 clear_tv(rettv);
18463 ret = FAIL;
18464 }
18465 }
18466 }
18467 dict_unref(selfdict);
18468 return ret;
18469}
18470
18471/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018472 * Allocate memory for a variable type-value, and make it empty (0 or NULL
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018473 * value).
18474 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018475 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018476alloc_tv()
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018477{
Bram Moolenaar33570922005-01-25 22:26:29 +000018478 return (typval_T *)alloc_clear((unsigned)sizeof(typval_T));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018479}
18480
18481/*
18482 * Allocate memory for a variable type-value, and assign a string to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018483 * The string "s" must have been allocated, it is consumed.
18484 * Return NULL for out of memory, the variable otherwise.
18485 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018486 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018487alloc_string_tv(s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018488 char_u *s;
18489{
Bram Moolenaar33570922005-01-25 22:26:29 +000018490 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018491
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018492 rettv = alloc_tv();
18493 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018494 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018495 rettv->v_type = VAR_STRING;
18496 rettv->vval.v_string = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018497 }
18498 else
18499 vim_free(s);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018500 return rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018501}
18502
18503/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018504 * Free the memory for a variable type-value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018505 */
Bram Moolenaar4770d092006-01-12 23:22:24 +000018506 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018507free_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018508 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018509{
18510 if (varp != NULL)
18511 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018512 switch (varp->v_type)
18513 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018514 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018515 func_unref(varp->vval.v_string);
18516 /*FALLTHROUGH*/
18517 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018518 vim_free(varp->vval.v_string);
18519 break;
18520 case VAR_LIST:
18521 list_unref(varp->vval.v_list);
18522 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018523 case VAR_DICT:
18524 dict_unref(varp->vval.v_dict);
18525 break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000018526 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018527#ifdef FEAT_FLOAT
18528 case VAR_FLOAT:
18529#endif
Bram Moolenaar758711c2005-02-02 23:11:38 +000018530 case VAR_UNKNOWN:
18531 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018532 default:
Bram Moolenaar758711c2005-02-02 23:11:38 +000018533 EMSG2(_(e_intern2), "free_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018534 break;
18535 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018536 vim_free(varp);
18537 }
18538}
18539
18540/*
18541 * Free the memory for a variable value and set the value to NULL or 0.
18542 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018543 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018544clear_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018545 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018546{
18547 if (varp != NULL)
18548 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018549 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018550 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018551 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018552 func_unref(varp->vval.v_string);
18553 /*FALLTHROUGH*/
18554 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018555 vim_free(varp->vval.v_string);
18556 varp->vval.v_string = NULL;
18557 break;
18558 case VAR_LIST:
18559 list_unref(varp->vval.v_list);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018560 varp->vval.v_list = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018561 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018562 case VAR_DICT:
18563 dict_unref(varp->vval.v_dict);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018564 varp->vval.v_dict = NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018565 break;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018566 case VAR_NUMBER:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018567 varp->vval.v_number = 0;
18568 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018569#ifdef FEAT_FLOAT
18570 case VAR_FLOAT:
18571 varp->vval.v_float = 0.0;
18572 break;
18573#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018574 case VAR_UNKNOWN:
18575 break;
18576 default:
18577 EMSG2(_(e_intern2), "clear_tv()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000018578 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018579 varp->v_lock = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018580 }
18581}
18582
18583/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018584 * Set the value of a variable to NULL without freeing items.
18585 */
18586 static void
18587init_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018588 typval_T *varp;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018589{
18590 if (varp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018591 vim_memset(varp, 0, sizeof(typval_T));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018592}
18593
18594/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018595 * Get the number value of a variable.
18596 * If it is a String variable, uses vim_str2nr().
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018597 * For incompatible types, return 0.
18598 * get_tv_number_chk() is similar to get_tv_number(), but informs the
18599 * caller of incompatible types: it sets *denote to TRUE if "denote"
18600 * is not NULL or returns -1 otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018601 */
18602 static long
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018603get_tv_number(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018604 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018605{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018606 int error = FALSE;
18607
18608 return get_tv_number_chk(varp, &error); /* return 0L on error */
18609}
18610
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018611 long
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018612get_tv_number_chk(varp, denote)
18613 typval_T *varp;
18614 int *denote;
18615{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018616 long n = 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018617
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018618 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018619 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018620 case VAR_NUMBER:
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018621 return (long)(varp->vval.v_number);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018622#ifdef FEAT_FLOAT
18623 case VAR_FLOAT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018624 EMSG(_("E805: Using a Float as a Number"));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018625 break;
18626#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018627 case VAR_FUNC:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018628 EMSG(_("E703: Using a Funcref as a Number"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018629 break;
18630 case VAR_STRING:
18631 if (varp->vval.v_string != NULL)
18632 vim_str2nr(varp->vval.v_string, NULL, NULL,
18633 TRUE, TRUE, &n, NULL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018634 return n;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018635 case VAR_LIST:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018636 EMSG(_("E745: Using a List as a Number"));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018637 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018638 case VAR_DICT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018639 EMSG(_("E728: Using a Dictionary as a Number"));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018640 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018641 default:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018642 EMSG2(_(e_intern2), "get_tv_number()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018643 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018644 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018645 if (denote == NULL) /* useful for values that must be unsigned */
18646 n = -1;
18647 else
18648 *denote = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018649 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018650}
18651
18652/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018653 * Get the lnum from the first argument.
18654 * Also accepts ".", "$", etc., but that only works for the current buffer.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018655 * Returns -1 on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018656 */
18657 static linenr_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018658get_tv_lnum(argvars)
Bram Moolenaar33570922005-01-25 22:26:29 +000018659 typval_T *argvars;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018660{
Bram Moolenaar33570922005-01-25 22:26:29 +000018661 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018662 linenr_T lnum;
18663
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018664 lnum = get_tv_number_chk(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018665 if (lnum == 0) /* no valid number, try using line() */
18666 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018667 rettv.v_type = VAR_NUMBER;
18668 f_line(argvars, &rettv);
18669 lnum = rettv.vval.v_number;
18670 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018671 }
18672 return lnum;
18673}
18674
18675/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018676 * Get the lnum from the first argument.
18677 * Also accepts "$", then "buf" is used.
18678 * Returns 0 on error.
18679 */
18680 static linenr_T
18681get_tv_lnum_buf(argvars, buf)
18682 typval_T *argvars;
18683 buf_T *buf;
18684{
18685 if (argvars[0].v_type == VAR_STRING
18686 && argvars[0].vval.v_string != NULL
18687 && argvars[0].vval.v_string[0] == '$'
18688 && buf != NULL)
18689 return buf->b_ml.ml_line_count;
18690 return get_tv_number_chk(&argvars[0], NULL);
18691}
18692
18693/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018694 * Get the string value of a variable.
18695 * If it is a Number variable, the number is converted into a string.
Bram Moolenaara7043832005-01-21 11:56:39 +000018696 * get_tv_string() uses a single, static buffer. YOU CAN ONLY USE IT ONCE!
18697 * get_tv_string_buf() uses a given buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018698 * If the String variable has never been set, return an empty string.
18699 * Never returns NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018700 * get_tv_string_chk() and get_tv_string_buf_chk() are similar, but return
18701 * NULL on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018702 */
18703 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018704get_tv_string(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018705 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018706{
18707 static char_u mybuf[NUMBUFLEN];
18708
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018709 return get_tv_string_buf(varp, mybuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018710}
18711
18712 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018713get_tv_string_buf(varp, buf)
Bram Moolenaar33570922005-01-25 22:26:29 +000018714 typval_T *varp;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018715 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018716{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018717 char_u *res = get_tv_string_buf_chk(varp, buf);
18718
18719 return res != NULL ? res : (char_u *)"";
18720}
18721
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018722 char_u *
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018723get_tv_string_chk(varp)
18724 typval_T *varp;
18725{
18726 static char_u mybuf[NUMBUFLEN];
18727
18728 return get_tv_string_buf_chk(varp, mybuf);
18729}
18730
18731 static char_u *
18732get_tv_string_buf_chk(varp, buf)
18733 typval_T *varp;
18734 char_u *buf;
18735{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018736 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018737 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018738 case VAR_NUMBER:
18739 sprintf((char *)buf, "%ld", (long)varp->vval.v_number);
18740 return buf;
18741 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018742 EMSG(_("E729: using Funcref as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018743 break;
18744 case VAR_LIST:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018745 EMSG(_("E730: using List as a String"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000018746 break;
18747 case VAR_DICT:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018748 EMSG(_("E731: using Dictionary as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018749 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018750#ifdef FEAT_FLOAT
18751 case VAR_FLOAT:
18752 EMSG(_("E806: using Float as a String"));
18753 break;
18754#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018755 case VAR_STRING:
18756 if (varp->vval.v_string != NULL)
18757 return varp->vval.v_string;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018758 return (char_u *)"";
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018759 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018760 EMSG2(_(e_intern2), "get_tv_string_buf()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018761 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018762 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018763 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018764}
18765
18766/*
18767 * Find variable "name" in the list of variables.
18768 * Return a pointer to it if found, NULL if not found.
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018769 * Careful: "a:0" variables don't have a name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018770 * When "htp" is not NULL we are writing to the variable, set "htp" to the
Bram Moolenaar33570922005-01-25 22:26:29 +000018771 * hashtab_T used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018772 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018773 static dictitem_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018774find_var(name, htp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018775 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000018776 hashtab_T **htp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018777{
Bram Moolenaar071d4272004-06-13 20:20:40 +000018778 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000018779 hashtab_T *ht;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018780
Bram Moolenaara7043832005-01-21 11:56:39 +000018781 ht = find_var_ht(name, &varname);
18782 if (htp != NULL)
18783 *htp = ht;
18784 if (ht == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018785 return NULL;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018786 return find_var_in_ht(ht, varname, htp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018787}
18788
18789/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018790 * Find variable "varname" in hashtab "ht".
Bram Moolenaara7043832005-01-21 11:56:39 +000018791 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018792 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018793 static dictitem_T *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018794find_var_in_ht(ht, varname, writing)
Bram Moolenaar33570922005-01-25 22:26:29 +000018795 hashtab_T *ht;
Bram Moolenaara7043832005-01-21 11:56:39 +000018796 char_u *varname;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018797 int writing;
Bram Moolenaara7043832005-01-21 11:56:39 +000018798{
Bram Moolenaar33570922005-01-25 22:26:29 +000018799 hashitem_T *hi;
18800
18801 if (*varname == NUL)
18802 {
18803 /* Must be something like "s:", otherwise "ht" would be NULL. */
18804 switch (varname[-2])
18805 {
18806 case 's': return &SCRIPT_SV(current_SID).sv_var;
18807 case 'g': return &globvars_var;
18808 case 'v': return &vimvars_var;
18809 case 'b': return &curbuf->b_bufvar;
18810 case 'w': return &curwin->w_winvar;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018811#ifdef FEAT_WINDOWS
18812 case 't': return &curtab->tp_winvar;
18813#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000018814 case 'l': return current_funccal == NULL
18815 ? NULL : &current_funccal->l_vars_var;
18816 case 'a': return current_funccal == NULL
18817 ? NULL : &current_funccal->l_avars_var;
Bram Moolenaar33570922005-01-25 22:26:29 +000018818 }
18819 return NULL;
18820 }
Bram Moolenaara7043832005-01-21 11:56:39 +000018821
18822 hi = hash_find(ht, varname);
18823 if (HASHITEM_EMPTY(hi))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018824 {
18825 /* For global variables we may try auto-loading the script. If it
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018826 * worked find the variable again. Don't auto-load a script if it was
18827 * loaded already, otherwise it would be loaded every time when
18828 * checking if a function name is a Funcref variable. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018829 if (ht == &globvarht && !writing
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018830 && script_autoload(varname, FALSE) && !aborting())
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018831 hi = hash_find(ht, varname);
18832 if (HASHITEM_EMPTY(hi))
18833 return NULL;
18834 }
Bram Moolenaar33570922005-01-25 22:26:29 +000018835 return HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000018836}
18837
18838/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018839 * Find the hashtab used for a variable name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018840 * Set "varname" to the start of name without ':'.
18841 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018842 static hashtab_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018843find_var_ht(name, varname)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018844 char_u *name;
18845 char_u **varname;
18846{
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018847 hashitem_T *hi;
18848
Bram Moolenaar071d4272004-06-13 20:20:40 +000018849 if (name[1] != ':')
18850 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018851 /* The name must not start with a colon or #. */
18852 if (name[0] == ':' || name[0] == AUTOLOAD_CHAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018853 return NULL;
18854 *varname = name;
Bram Moolenaar532c7802005-01-27 14:44:31 +000018855
18856 /* "version" is "v:version" in all scopes */
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018857 hi = hash_find(&compat_hashtab, name);
18858 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar532c7802005-01-27 14:44:31 +000018859 return &compat_hashtab;
18860
Bram Moolenaar071d4272004-06-13 20:20:40 +000018861 if (current_funccal == NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018862 return &globvarht; /* global variable */
18863 return &current_funccal->l_vars.dv_hashtab; /* l: variable */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018864 }
18865 *varname = name + 2;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018866 if (*name == 'g') /* global variable */
18867 return &globvarht;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018868 /* There must be no ':' or '#' in the rest of the name, unless g: is used
18869 */
18870 if (vim_strchr(name + 2, ':') != NULL
18871 || vim_strchr(name + 2, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018872 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018873 if (*name == 'b') /* buffer variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018874 return &curbuf->b_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018875 if (*name == 'w') /* window variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018876 return &curwin->w_vars.dv_hashtab;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018877#ifdef FEAT_WINDOWS
18878 if (*name == 't') /* tab page variable */
18879 return &curtab->tp_vars.dv_hashtab;
18880#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000018881 if (*name == 'v') /* v: variable */
18882 return &vimvarht;
18883 if (*name == 'a' && current_funccal != NULL) /* function argument */
18884 return &current_funccal->l_avars.dv_hashtab;
18885 if (*name == 'l' && current_funccal != NULL) /* local function variable */
18886 return &current_funccal->l_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018887 if (*name == 's' /* script variable */
18888 && current_SID > 0 && current_SID <= ga_scripts.ga_len)
18889 return &SCRIPT_VARS(current_SID);
18890 return NULL;
18891}
18892
18893/*
18894 * Get the string value of a (global/local) variable.
18895 * Returns NULL when it doesn't exist.
18896 */
18897 char_u *
18898get_var_value(name)
18899 char_u *name;
18900{
Bram Moolenaar33570922005-01-25 22:26:29 +000018901 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018902
Bram Moolenaara7043832005-01-21 11:56:39 +000018903 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018904 if (v == NULL)
18905 return NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000018906 return get_tv_string(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018907}
18908
18909/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018910 * Allocate a new hashtab for a sourced script. It will be used while
Bram Moolenaar071d4272004-06-13 20:20:40 +000018911 * sourcing this script and when executing functions defined in the script.
18912 */
18913 void
18914new_script_vars(id)
18915 scid_T id;
18916{
Bram Moolenaara7043832005-01-21 11:56:39 +000018917 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +000018918 hashtab_T *ht;
18919 scriptvar_T *sv;
Bram Moolenaara7043832005-01-21 11:56:39 +000018920
Bram Moolenaar071d4272004-06-13 20:20:40 +000018921 if (ga_grow(&ga_scripts, (int)(id - ga_scripts.ga_len)) == OK)
18922 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018923 /* Re-allocating ga_data means that an ht_array pointing to
18924 * ht_smallarray becomes invalid. We can recognize this: ht_mask is
Bram Moolenaar33570922005-01-25 22:26:29 +000018925 * at its init value. Also reset "v_dict", it's always the same. */
Bram Moolenaara7043832005-01-21 11:56:39 +000018926 for (i = 1; i <= ga_scripts.ga_len; ++i)
18927 {
18928 ht = &SCRIPT_VARS(i);
18929 if (ht->ht_mask == HT_INIT_SIZE - 1)
18930 ht->ht_array = ht->ht_smallarray;
Bram Moolenaar33570922005-01-25 22:26:29 +000018931 sv = &SCRIPT_SV(i);
18932 sv->sv_var.di_tv.vval.v_dict = &sv->sv_dict;
Bram Moolenaara7043832005-01-21 11:56:39 +000018933 }
18934
Bram Moolenaar071d4272004-06-13 20:20:40 +000018935 while (ga_scripts.ga_len < id)
18936 {
Bram Moolenaar33570922005-01-25 22:26:29 +000018937 sv = &SCRIPT_SV(ga_scripts.ga_len + 1);
18938 init_var_dict(&sv->sv_dict, &sv->sv_var);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018939 ++ga_scripts.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018940 }
18941 }
18942}
18943
18944/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018945 * Initialize dictionary "dict" as a scope and set variable "dict_var" to
18946 * point to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018947 */
18948 void
Bram Moolenaar33570922005-01-25 22:26:29 +000018949init_var_dict(dict, dict_var)
18950 dict_T *dict;
18951 dictitem_T *dict_var;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018952{
Bram Moolenaar33570922005-01-25 22:26:29 +000018953 hash_init(&dict->dv_hashtab);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000018954 dict->dv_refcount = DO_NOT_FREE_CNT;
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +000018955 dict->dv_copyID = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000018956 dict_var->di_tv.vval.v_dict = dict;
18957 dict_var->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018958 dict_var->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000018959 dict_var->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
18960 dict_var->di_key[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018961}
18962
18963/*
18964 * Clean up a list of internal variables.
Bram Moolenaar33570922005-01-25 22:26:29 +000018965 * Frees all allocated variables and the value they contain.
18966 * Clears hashtab "ht", does not free it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018967 */
18968 void
Bram Moolenaara7043832005-01-21 11:56:39 +000018969vars_clear(ht)
Bram Moolenaar33570922005-01-25 22:26:29 +000018970 hashtab_T *ht;
18971{
18972 vars_clear_ext(ht, TRUE);
18973}
18974
18975/*
18976 * Like vars_clear(), but only free the value if "free_val" is TRUE.
18977 */
18978 static void
18979vars_clear_ext(ht, free_val)
18980 hashtab_T *ht;
18981 int free_val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018982{
Bram Moolenaara7043832005-01-21 11:56:39 +000018983 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000018984 hashitem_T *hi;
18985 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018986
Bram Moolenaar33570922005-01-25 22:26:29 +000018987 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018988 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +000018989 for (hi = ht->ht_array; todo > 0; ++hi)
18990 {
18991 if (!HASHITEM_EMPTY(hi))
18992 {
18993 --todo;
18994
Bram Moolenaar33570922005-01-25 22:26:29 +000018995 /* Free the variable. Don't remove it from the hashtab,
Bram Moolenaara7043832005-01-21 11:56:39 +000018996 * ht_array might change then. hash_clear() takes care of it
18997 * later. */
Bram Moolenaar33570922005-01-25 22:26:29 +000018998 v = HI2DI(hi);
18999 if (free_val)
19000 clear_tv(&v->di_tv);
19001 if ((v->di_flags & DI_FLAGS_FIX) == 0)
19002 vim_free(v);
Bram Moolenaara7043832005-01-21 11:56:39 +000019003 }
19004 }
19005 hash_clear(ht);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000019006 ht->ht_used = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019007}
19008
Bram Moolenaara7043832005-01-21 11:56:39 +000019009/*
Bram Moolenaar33570922005-01-25 22:26:29 +000019010 * Delete a variable from hashtab "ht" at item "hi".
19011 * Clear the variable value and free the dictitem.
Bram Moolenaara7043832005-01-21 11:56:39 +000019012 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019013 static void
Bram Moolenaara7043832005-01-21 11:56:39 +000019014delete_var(ht, hi)
Bram Moolenaar33570922005-01-25 22:26:29 +000019015 hashtab_T *ht;
19016 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019017{
Bram Moolenaar33570922005-01-25 22:26:29 +000019018 dictitem_T *di = HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000019019
19020 hash_remove(ht, hi);
Bram Moolenaar33570922005-01-25 22:26:29 +000019021 clear_tv(&di->di_tv);
19022 vim_free(di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019023}
19024
19025/*
19026 * List the value of one internal variable.
19027 */
19028 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019029list_one_var(v, prefix, first)
Bram Moolenaar33570922005-01-25 22:26:29 +000019030 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019031 char_u *prefix;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019032 int *first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019033{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019034 char_u *tofree;
19035 char_u *s;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019036 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019037
Bram Moolenaar2c2398c2009-06-03 11:22:45 +000019038 current_copyID += COPYID_INC;
19039 s = echo_string(&v->di_tv, &tofree, numbuf, current_copyID);
Bram Moolenaar33570922005-01-25 22:26:29 +000019040 list_one_var_a(prefix, v->di_key, v->di_tv.v_type,
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019041 s == NULL ? (char_u *)"" : s, first);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019042 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019043}
19044
Bram Moolenaar071d4272004-06-13 20:20:40 +000019045 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019046list_one_var_a(prefix, name, type, string, first)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019047 char_u *prefix;
19048 char_u *name;
19049 int type;
19050 char_u *string;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019051 int *first; /* when TRUE clear rest of screen and set to FALSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019052{
Bram Moolenaar31859182007-08-14 20:41:13 +000019053 /* don't use msg() or msg_attr() to avoid overwriting "v:statusmsg" */
19054 msg_start();
19055 msg_puts(prefix);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019056 if (name != NULL) /* "a:" vars don't have a name stored */
19057 msg_puts(name);
19058 msg_putchar(' ');
19059 msg_advance(22);
19060 if (type == VAR_NUMBER)
19061 msg_putchar('#');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019062 else if (type == VAR_FUNC)
19063 msg_putchar('*');
19064 else if (type == VAR_LIST)
19065 {
19066 msg_putchar('[');
19067 if (*string == '[')
19068 ++string;
19069 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000019070 else if (type == VAR_DICT)
19071 {
19072 msg_putchar('{');
19073 if (*string == '{')
19074 ++string;
19075 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019076 else
19077 msg_putchar(' ');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019078
Bram Moolenaar071d4272004-06-13 20:20:40 +000019079 msg_outtrans(string);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019080
19081 if (type == VAR_FUNC)
19082 msg_puts((char_u *)"()");
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019083 if (*first)
19084 {
19085 msg_clr_eos();
19086 *first = FALSE;
19087 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019088}
19089
19090/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019091 * Set variable "name" to value in "tv".
Bram Moolenaar071d4272004-06-13 20:20:40 +000019092 * If the variable already exists, the value is updated.
19093 * Otherwise the variable is created.
19094 */
19095 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019096set_var(name, tv, copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019097 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000019098 typval_T *tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019099 int copy; /* make copy of value in "tv" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019100{
Bram Moolenaar33570922005-01-25 22:26:29 +000019101 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019102 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000019103 hashtab_T *ht;
Bram Moolenaar92124a32005-06-17 22:03:40 +000019104 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019105
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019106 if (tv->v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019107 {
19108 if (!(vim_strchr((char_u *)"wbs", name[0]) != NULL && name[1] == ':')
19109 && !ASCII_ISUPPER((name[0] != NUL && name[1] == ':')
19110 ? name[2] : name[0]))
19111 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019112 EMSG2(_("E704: Funcref variable name must start with a capital: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019113 return;
19114 }
19115 if (function_exists(name))
19116 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000019117 EMSG2(_("E705: Variable name conflicts with existing function: %s"),
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019118 name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019119 return;
19120 }
19121 }
19122
Bram Moolenaara7043832005-01-21 11:56:39 +000019123 ht = find_var_ht(name, &varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019124 if (ht == NULL || *varname == NUL)
Bram Moolenaara7043832005-01-21 11:56:39 +000019125 {
Bram Moolenaar92124a32005-06-17 22:03:40 +000019126 EMSG2(_(e_illvar), name);
Bram Moolenaara7043832005-01-21 11:56:39 +000019127 return;
19128 }
19129
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019130 v = find_var_in_ht(ht, varname, TRUE);
Bram Moolenaar33570922005-01-25 22:26:29 +000019131 if (v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019132 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019133 /* existing variable, need to clear the value */
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019134 if (var_check_ro(v->di_flags, name)
19135 || tv_check_lock(v->di_tv.v_lock, name))
Bram Moolenaar33570922005-01-25 22:26:29 +000019136 return;
19137 if (v->di_tv.v_type != tv->v_type
19138 && !((v->di_tv.v_type == VAR_STRING
19139 || v->di_tv.v_type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019140 && (tv->v_type == VAR_STRING
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019141 || tv->v_type == VAR_NUMBER))
19142#ifdef FEAT_FLOAT
19143 && !((v->di_tv.v_type == VAR_NUMBER
19144 || v->di_tv.v_type == VAR_FLOAT)
19145 && (tv->v_type == VAR_NUMBER
19146 || tv->v_type == VAR_FLOAT))
19147#endif
19148 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019149 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019150 EMSG2(_("E706: Variable type mismatch for: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019151 return;
19152 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019153
19154 /*
Bram Moolenaar758711c2005-02-02 23:11:38 +000019155 * Handle setting internal v: variables separately: we don't change
19156 * the type.
Bram Moolenaar33570922005-01-25 22:26:29 +000019157 */
19158 if (ht == &vimvarht)
19159 {
19160 if (v->di_tv.v_type == VAR_STRING)
19161 {
19162 vim_free(v->di_tv.vval.v_string);
19163 if (copy || tv->v_type != VAR_STRING)
19164 v->di_tv.vval.v_string = vim_strsave(get_tv_string(tv));
19165 else
19166 {
19167 /* Take over the string to avoid an extra alloc/free. */
19168 v->di_tv.vval.v_string = tv->vval.v_string;
19169 tv->vval.v_string = NULL;
19170 }
19171 }
19172 else if (v->di_tv.v_type != VAR_NUMBER)
19173 EMSG2(_(e_intern2), "set_var()");
19174 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019175 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019176 v->di_tv.vval.v_number = get_tv_number(tv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019177 if (STRCMP(varname, "searchforward") == 0)
19178 set_search_direction(v->di_tv.vval.v_number ? '/' : '?');
19179 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019180 return;
19181 }
19182
19183 clear_tv(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019184 }
19185 else /* add a new variable */
19186 {
Bram Moolenaar5fcc3fe2006-06-22 15:35:14 +000019187 /* Can't add "v:" variable. */
19188 if (ht == &vimvarht)
19189 {
19190 EMSG2(_(e_illvar), name);
19191 return;
19192 }
19193
Bram Moolenaar92124a32005-06-17 22:03:40 +000019194 /* Make sure the variable name is valid. */
19195 for (p = varname; *p != NUL; ++p)
Bram Moolenaara5792f52005-11-23 21:25:05 +000019196 if (!eval_isnamec1(*p) && (p == varname || !VIM_ISDIGIT(*p))
19197 && *p != AUTOLOAD_CHAR)
Bram Moolenaar92124a32005-06-17 22:03:40 +000019198 {
19199 EMSG2(_(e_illvar), varname);
19200 return;
19201 }
19202
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019203 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
19204 + STRLEN(varname)));
Bram Moolenaara7043832005-01-21 11:56:39 +000019205 if (v == NULL)
19206 return;
Bram Moolenaar33570922005-01-25 22:26:29 +000019207 STRCPY(v->di_key, varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019208 if (hash_add(ht, DI2HIKEY(v)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019209 {
Bram Moolenaara7043832005-01-21 11:56:39 +000019210 vim_free(v);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019211 return;
19212 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019213 v->di_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019214 }
Bram Moolenaara7043832005-01-21 11:56:39 +000019215
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019216 if (copy || tv->v_type == VAR_NUMBER || tv->v_type == VAR_FLOAT)
Bram Moolenaar33570922005-01-25 22:26:29 +000019217 copy_tv(tv, &v->di_tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019218 else
19219 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019220 v->di_tv = *tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019221 v->di_tv.v_lock = 0;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019222 init_tv(tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019223 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019224}
19225
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019226/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019227 * Return TRUE if di_flags "flags" indicates variable "name" is read-only.
Bram Moolenaar33570922005-01-25 22:26:29 +000019228 * Also give an error message.
19229 */
19230 static int
19231var_check_ro(flags, name)
19232 int flags;
19233 char_u *name;
19234{
19235 if (flags & DI_FLAGS_RO)
19236 {
19237 EMSG2(_(e_readonlyvar), name);
19238 return TRUE;
19239 }
19240 if ((flags & DI_FLAGS_RO_SBX) && sandbox)
19241 {
19242 EMSG2(_(e_readonlysbx), name);
19243 return TRUE;
19244 }
19245 return FALSE;
19246}
19247
19248/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019249 * Return TRUE if di_flags "flags" indicates variable "name" is fixed.
19250 * Also give an error message.
19251 */
19252 static int
19253var_check_fixed(flags, name)
19254 int flags;
19255 char_u *name;
19256{
19257 if (flags & DI_FLAGS_FIX)
19258 {
19259 EMSG2(_("E795: Cannot delete variable %s"), name);
19260 return TRUE;
19261 }
19262 return FALSE;
19263}
19264
19265/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019266 * Return TRUE if typeval "tv" is set to be locked (immutable).
19267 * Also give an error message, using "name".
19268 */
19269 static int
19270tv_check_lock(lock, name)
19271 int lock;
19272 char_u *name;
19273{
19274 if (lock & VAR_LOCKED)
19275 {
19276 EMSG2(_("E741: Value is locked: %s"),
19277 name == NULL ? (char_u *)_("Unknown") : name);
19278 return TRUE;
19279 }
19280 if (lock & VAR_FIXED)
19281 {
19282 EMSG2(_("E742: Cannot change value of %s"),
19283 name == NULL ? (char_u *)_("Unknown") : name);
19284 return TRUE;
19285 }
19286 return FALSE;
19287}
19288
19289/*
Bram Moolenaar33570922005-01-25 22:26:29 +000019290 * Copy the values from typval_T "from" to typval_T "to".
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019291 * When needed allocates string or increases reference count.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019292 * Does not make a copy of a list or dict but copies the reference!
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000019293 * It is OK for "from" and "to" to point to the same item. This is used to
19294 * make a copy later.
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019295 */
Bram Moolenaar7e506b62010-01-19 15:55:06 +010019296 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019297copy_tv(from, to)
Bram Moolenaar33570922005-01-25 22:26:29 +000019298 typval_T *from;
19299 typval_T *to;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019300{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019301 to->v_type = from->v_type;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019302 to->v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019303 switch (from->v_type)
19304 {
19305 case VAR_NUMBER:
19306 to->vval.v_number = from->vval.v_number;
19307 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019308#ifdef FEAT_FLOAT
19309 case VAR_FLOAT:
19310 to->vval.v_float = from->vval.v_float;
19311 break;
19312#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019313 case VAR_STRING:
19314 case VAR_FUNC:
19315 if (from->vval.v_string == NULL)
19316 to->vval.v_string = NULL;
19317 else
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019318 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019319 to->vval.v_string = vim_strsave(from->vval.v_string);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019320 if (from->v_type == VAR_FUNC)
19321 func_ref(to->vval.v_string);
19322 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019323 break;
19324 case VAR_LIST:
19325 if (from->vval.v_list == NULL)
19326 to->vval.v_list = NULL;
19327 else
19328 {
19329 to->vval.v_list = from->vval.v_list;
19330 ++to->vval.v_list->lv_refcount;
19331 }
19332 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000019333 case VAR_DICT:
19334 if (from->vval.v_dict == NULL)
19335 to->vval.v_dict = NULL;
19336 else
19337 {
19338 to->vval.v_dict = from->vval.v_dict;
19339 ++to->vval.v_dict->dv_refcount;
19340 }
19341 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019342 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019343 EMSG2(_(e_intern2), "copy_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019344 break;
19345 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019346}
19347
19348/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000019349 * Make a copy of an item.
19350 * Lists and Dictionaries are also copied. A deep copy if "deep" is set.
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019351 * For deepcopy() "copyID" is zero for a full copy or the ID for when a
19352 * reference to an already copied list/dict can be used.
19353 * Returns FAIL or OK.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019354 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019355 static int
19356item_copy(from, to, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +000019357 typval_T *from;
19358 typval_T *to;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019359 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019360 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019361{
19362 static int recurse = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019363 int ret = OK;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019364
Bram Moolenaar33570922005-01-25 22:26:29 +000019365 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +000019366 {
19367 EMSG(_("E698: variable nested too deep for making a copy"));
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019368 return FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019369 }
19370 ++recurse;
19371
19372 switch (from->v_type)
19373 {
19374 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019375#ifdef FEAT_FLOAT
19376 case VAR_FLOAT:
19377#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000019378 case VAR_STRING:
19379 case VAR_FUNC:
19380 copy_tv(from, to);
19381 break;
19382 case VAR_LIST:
19383 to->v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019384 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019385 if (from->vval.v_list == NULL)
19386 to->vval.v_list = NULL;
19387 else if (copyID != 0 && from->vval.v_list->lv_copyID == copyID)
19388 {
19389 /* use the copy made earlier */
19390 to->vval.v_list = from->vval.v_list->lv_copylist;
19391 ++to->vval.v_list->lv_refcount;
19392 }
19393 else
19394 to->vval.v_list = list_copy(from->vval.v_list, deep, copyID);
19395 if (to->vval.v_list == NULL)
19396 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019397 break;
19398 case VAR_DICT:
19399 to->v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019400 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019401 if (from->vval.v_dict == NULL)
19402 to->vval.v_dict = NULL;
19403 else if (copyID != 0 && from->vval.v_dict->dv_copyID == copyID)
19404 {
19405 /* use the copy made earlier */
19406 to->vval.v_dict = from->vval.v_dict->dv_copydict;
19407 ++to->vval.v_dict->dv_refcount;
19408 }
19409 else
19410 to->vval.v_dict = dict_copy(from->vval.v_dict, deep, copyID);
19411 if (to->vval.v_dict == NULL)
19412 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019413 break;
19414 default:
19415 EMSG2(_(e_intern2), "item_copy()");
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019416 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019417 }
19418 --recurse;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019419 return ret;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019420}
19421
19422/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000019423 * ":echo expr1 ..." print each argument separated with a space, add a
19424 * newline at the end.
19425 * ":echon expr1 ..." print each argument plain.
19426 */
19427 void
19428ex_echo(eap)
19429 exarg_T *eap;
19430{
19431 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019432 typval_T rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019433 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019434 char_u *p;
19435 int needclr = TRUE;
19436 int atstart = TRUE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019437 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000019438
19439 if (eap->skip)
19440 ++emsg_skip;
19441 while (*arg != NUL && *arg != '|' && *arg != '\n' && !got_int)
19442 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019443 /* If eval1() causes an error message the text from the command may
19444 * still need to be cleared. E.g., "echo 22,44". */
19445 need_clr_eos = needclr;
19446
Bram Moolenaar071d4272004-06-13 20:20:40 +000019447 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019448 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019449 {
19450 /*
19451 * Report the invalid expression unless the expression evaluation
19452 * has been cancelled due to an aborting error, an interrupt, or an
19453 * exception.
19454 */
19455 if (!aborting())
19456 EMSG2(_(e_invexpr2), p);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019457 need_clr_eos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019458 break;
19459 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019460 need_clr_eos = FALSE;
19461
Bram Moolenaar071d4272004-06-13 20:20:40 +000019462 if (!eap->skip)
19463 {
19464 if (atstart)
19465 {
19466 atstart = FALSE;
19467 /* Call msg_start() after eval1(), evaluating the expression
19468 * may cause a message to appear. */
19469 if (eap->cmdidx == CMD_echo)
19470 msg_start();
19471 }
19472 else if (eap->cmdidx == CMD_echo)
19473 msg_puts_attr((char_u *)" ", echo_attr);
Bram Moolenaar2c2398c2009-06-03 11:22:45 +000019474 current_copyID += COPYID_INC;
19475 p = echo_string(&rettv, &tofree, numbuf, current_copyID);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019476 if (p != NULL)
19477 for ( ; *p != NUL && !got_int; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019478 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019479 if (*p == '\n' || *p == '\r' || *p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019480 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019481 if (*p != TAB && needclr)
19482 {
19483 /* remove any text still there from the command */
19484 msg_clr_eos();
19485 needclr = FALSE;
19486 }
19487 msg_putchar_attr(*p, echo_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019488 }
19489 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019490 {
19491#ifdef FEAT_MBYTE
19492 if (has_mbyte)
19493 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000019494 int i = (*mb_ptr2len)(p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019495
19496 (void)msg_outtrans_len_attr(p, i, echo_attr);
19497 p += i - 1;
19498 }
19499 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000019500#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019501 (void)msg_outtrans_len_attr(p, 1, echo_attr);
19502 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019503 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019504 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019505 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019506 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019507 arg = skipwhite(arg);
19508 }
19509 eap->nextcmd = check_nextcmd(arg);
19510
19511 if (eap->skip)
19512 --emsg_skip;
19513 else
19514 {
19515 /* remove text that may still be there from the command */
19516 if (needclr)
19517 msg_clr_eos();
19518 if (eap->cmdidx == CMD_echo)
19519 msg_end();
19520 }
19521}
19522
19523/*
19524 * ":echohl {name}".
19525 */
19526 void
19527ex_echohl(eap)
19528 exarg_T *eap;
19529{
19530 int id;
19531
19532 id = syn_name2id(eap->arg);
19533 if (id == 0)
19534 echo_attr = 0;
19535 else
19536 echo_attr = syn_id2attr(id);
19537}
19538
19539/*
19540 * ":execute expr1 ..." execute the result of an expression.
19541 * ":echomsg expr1 ..." Print a message
19542 * ":echoerr expr1 ..." Print an error
19543 * Each gets spaces around each argument and a newline at the end for
19544 * echo commands
19545 */
19546 void
19547ex_execute(eap)
19548 exarg_T *eap;
19549{
19550 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019551 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019552 int ret = OK;
19553 char_u *p;
19554 garray_T ga;
19555 int len;
19556 int save_did_emsg;
19557
19558 ga_init2(&ga, 1, 80);
19559
19560 if (eap->skip)
19561 ++emsg_skip;
19562 while (*arg != NUL && *arg != '|' && *arg != '\n')
19563 {
19564 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019565 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019566 {
19567 /*
19568 * Report the invalid expression unless the expression evaluation
19569 * has been cancelled due to an aborting error, an interrupt, or an
19570 * exception.
19571 */
19572 if (!aborting())
19573 EMSG2(_(e_invexpr2), p);
19574 ret = FAIL;
19575 break;
19576 }
19577
19578 if (!eap->skip)
19579 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019580 p = get_tv_string(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019581 len = (int)STRLEN(p);
19582 if (ga_grow(&ga, len + 2) == FAIL)
19583 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019584 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019585 ret = FAIL;
19586 break;
19587 }
19588 if (ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019589 ((char_u *)(ga.ga_data))[ga.ga_len++] = ' ';
Bram Moolenaar071d4272004-06-13 20:20:40 +000019590 STRCPY((char_u *)(ga.ga_data) + ga.ga_len, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019591 ga.ga_len += len;
19592 }
19593
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019594 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019595 arg = skipwhite(arg);
19596 }
19597
19598 if (ret != FAIL && ga.ga_data != NULL)
19599 {
19600 if (eap->cmdidx == CMD_echomsg)
Bram Moolenaar4770d092006-01-12 23:22:24 +000019601 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000019602 MSG_ATTR(ga.ga_data, echo_attr);
Bram Moolenaar4770d092006-01-12 23:22:24 +000019603 out_flush();
19604 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019605 else if (eap->cmdidx == CMD_echoerr)
19606 {
19607 /* We don't want to abort following commands, restore did_emsg. */
19608 save_did_emsg = did_emsg;
19609 EMSG((char_u *)ga.ga_data);
19610 if (!force_abort)
19611 did_emsg = save_did_emsg;
19612 }
19613 else if (eap->cmdidx == CMD_execute)
19614 do_cmdline((char_u *)ga.ga_data,
19615 eap->getline, eap->cookie, DOCMD_NOWAIT|DOCMD_VERBOSE);
19616 }
19617
19618 ga_clear(&ga);
19619
19620 if (eap->skip)
19621 --emsg_skip;
19622
19623 eap->nextcmd = check_nextcmd(arg);
19624}
19625
19626/*
19627 * Skip over the name of an option: "&option", "&g:option" or "&l:option".
19628 * "arg" points to the "&" or '+' when called, to "option" when returning.
19629 * Returns NULL when no option name found. Otherwise pointer to the char
19630 * after the option name.
19631 */
19632 static char_u *
19633find_option_end(arg, opt_flags)
19634 char_u **arg;
19635 int *opt_flags;
19636{
19637 char_u *p = *arg;
19638
19639 ++p;
19640 if (*p == 'g' && p[1] == ':')
19641 {
19642 *opt_flags = OPT_GLOBAL;
19643 p += 2;
19644 }
19645 else if (*p == 'l' && p[1] == ':')
19646 {
19647 *opt_flags = OPT_LOCAL;
19648 p += 2;
19649 }
19650 else
19651 *opt_flags = 0;
19652
19653 if (!ASCII_ISALPHA(*p))
19654 return NULL;
19655 *arg = p;
19656
19657 if (p[0] == 't' && p[1] == '_' && p[2] != NUL && p[3] != NUL)
19658 p += 4; /* termcap option */
19659 else
19660 while (ASCII_ISALPHA(*p))
19661 ++p;
19662 return p;
19663}
19664
19665/*
19666 * ":function"
19667 */
19668 void
19669ex_function(eap)
19670 exarg_T *eap;
19671{
19672 char_u *theline;
19673 int j;
19674 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019675 int saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019676 char_u *name = NULL;
19677 char_u *p;
19678 char_u *arg;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019679 char_u *line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019680 garray_T newargs;
19681 garray_T newlines;
19682 int varargs = FALSE;
19683 int mustend = FALSE;
19684 int flags = 0;
19685 ufunc_T *fp;
19686 int indent;
19687 int nesting;
19688 char_u *skip_until = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000019689 dictitem_T *v;
19690 funcdict_T fudi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019691 static int func_nr = 0; /* number for nameless function */
19692 int paren;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019693 hashtab_T *ht;
19694 int todo;
19695 hashitem_T *hi;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019696 int sourcing_lnum_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019697
19698 /*
19699 * ":function" without argument: list functions.
19700 */
19701 if (ends_excmd(*eap->arg))
19702 {
19703 if (!eap->skip)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019704 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019705 todo = (int)func_hashtab.ht_used;
Bram Moolenaar038eb0e2005-02-27 22:43:26 +000019706 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019707 {
19708 if (!HASHITEM_EMPTY(hi))
19709 {
19710 --todo;
19711 fp = HI2UF(hi);
19712 if (!isdigit(*fp->uf_name))
19713 list_func_head(fp, FALSE);
19714 }
19715 }
19716 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019717 eap->nextcmd = check_nextcmd(eap->arg);
19718 return;
19719 }
19720
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019721 /*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019722 * ":function /pat": list functions matching pattern.
19723 */
19724 if (*eap->arg == '/')
19725 {
19726 p = skip_regexp(eap->arg + 1, '/', TRUE, NULL);
19727 if (!eap->skip)
19728 {
19729 regmatch_T regmatch;
19730
19731 c = *p;
19732 *p = NUL;
19733 regmatch.regprog = vim_regcomp(eap->arg + 1, RE_MAGIC);
19734 *p = c;
19735 if (regmatch.regprog != NULL)
19736 {
19737 regmatch.rm_ic = p_ic;
19738
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019739 todo = (int)func_hashtab.ht_used;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019740 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
19741 {
19742 if (!HASHITEM_EMPTY(hi))
19743 {
19744 --todo;
19745 fp = HI2UF(hi);
19746 if (!isdigit(*fp->uf_name)
19747 && vim_regexec(&regmatch, fp->uf_name, 0))
19748 list_func_head(fp, FALSE);
19749 }
19750 }
Bram Moolenaar69f2d5a2009-04-22 14:10:39 +000019751 vim_free(regmatch.regprog);
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019752 }
19753 }
19754 if (*p == '/')
19755 ++p;
19756 eap->nextcmd = check_nextcmd(p);
19757 return;
19758 }
19759
19760 /*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019761 * Get the function name. There are these situations:
19762 * func normal function name
19763 * "name" == func, "fudi.fd_dict" == NULL
19764 * dict.func new dictionary entry
19765 * "name" == NULL, "fudi.fd_dict" set,
19766 * "fudi.fd_di" == NULL, "fudi.fd_newkey" == func
19767 * dict.func existing dict entry with a Funcref
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019768 * "name" == func, "fudi.fd_dict" set,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019769 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19770 * dict.func existing dict entry that's not a Funcref
19771 * "name" == NULL, "fudi.fd_dict" set,
19772 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19773 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019774 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019775 name = trans_function_name(&p, eap->skip, 0, &fudi);
19776 paren = (vim_strchr(p, '(') != NULL);
19777 if (name == NULL && (fudi.fd_dict == NULL || !paren) && !eap->skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019778 {
19779 /*
19780 * Return on an invalid expression in braces, unless the expression
19781 * evaluation has been cancelled due to an aborting error, an
19782 * interrupt, or an exception.
19783 */
19784 if (!aborting())
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019785 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000019786 if (!eap->skip && fudi.fd_newkey != NULL)
19787 EMSG2(_(e_dictkey), fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019788 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019789 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019790 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019791 else
19792 eap->skip = TRUE;
19793 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000019794
Bram Moolenaar071d4272004-06-13 20:20:40 +000019795 /* An error in a function call during evaluation of an expression in magic
19796 * braces should not cause the function not to be defined. */
19797 saved_did_emsg = did_emsg;
19798 did_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019799
19800 /*
19801 * ":function func" with only function name: list function.
19802 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019803 if (!paren)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019804 {
19805 if (!ends_excmd(*skipwhite(p)))
19806 {
19807 EMSG(_(e_trailing));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019808 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019809 }
19810 eap->nextcmd = check_nextcmd(p);
19811 if (eap->nextcmd != NULL)
19812 *p = NUL;
19813 if (!eap->skip && !got_int)
19814 {
19815 fp = find_func(name);
19816 if (fp != NULL)
19817 {
19818 list_func_head(fp, TRUE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019819 for (j = 0; j < fp->uf_lines.ga_len && !got_int; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019820 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019821 if (FUNCLINE(fp, j) == NULL)
19822 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019823 msg_putchar('\n');
19824 msg_outnum((long)(j + 1));
19825 if (j < 9)
19826 msg_putchar(' ');
19827 if (j < 99)
19828 msg_putchar(' ');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019829 msg_prt_line(FUNCLINE(fp, j), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019830 out_flush(); /* show a line at a time */
19831 ui_breakcheck();
19832 }
19833 if (!got_int)
19834 {
19835 msg_putchar('\n');
19836 msg_puts((char_u *)" endfunction");
19837 }
19838 }
19839 else
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +000019840 emsg_funcname(N_("E123: Undefined function: %s"), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019841 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019842 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019843 }
19844
19845 /*
19846 * ":function name(arg1, arg2)" Define function.
19847 */
19848 p = skipwhite(p);
19849 if (*p != '(')
19850 {
19851 if (!eap->skip)
19852 {
19853 EMSG2(_("E124: Missing '(': %s"), eap->arg);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019854 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019855 }
19856 /* attempt to continue by skipping some text */
19857 if (vim_strchr(p, '(') != NULL)
19858 p = vim_strchr(p, '(');
19859 }
19860 p = skipwhite(p + 1);
19861
19862 ga_init2(&newargs, (int)sizeof(char_u *), 3);
19863 ga_init2(&newlines, (int)sizeof(char_u *), 3);
19864
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019865 if (!eap->skip)
19866 {
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019867 /* Check the name of the function. Unless it's a dictionary function
19868 * (that we are overwriting). */
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019869 if (name != NULL)
19870 arg = name;
19871 else
19872 arg = fudi.fd_newkey;
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019873 if (arg != NULL && (fudi.fd_di == NULL
19874 || fudi.fd_di->di_tv.v_type != VAR_FUNC))
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019875 {
19876 if (*arg == K_SPECIAL)
19877 j = 3;
19878 else
19879 j = 0;
19880 while (arg[j] != NUL && (j == 0 ? eval_isnamec1(arg[j])
19881 : eval_isnamec(arg[j])))
19882 ++j;
19883 if (arg[j] != NUL)
Bram Moolenaarb67cc162009-02-04 15:27:06 +000019884 emsg_funcname((char *)e_invarg2, arg);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019885 }
19886 }
19887
Bram Moolenaar071d4272004-06-13 20:20:40 +000019888 /*
19889 * Isolate the arguments: "arg1, arg2, ...)"
19890 */
19891 while (*p != ')')
19892 {
19893 if (p[0] == '.' && p[1] == '.' && p[2] == '.')
19894 {
19895 varargs = TRUE;
19896 p += 3;
19897 mustend = TRUE;
19898 }
19899 else
19900 {
19901 arg = p;
19902 while (ASCII_ISALNUM(*p) || *p == '_')
19903 ++p;
19904 if (arg == p || isdigit(*arg)
19905 || (p - arg == 9 && STRNCMP(arg, "firstline", 9) == 0)
19906 || (p - arg == 8 && STRNCMP(arg, "lastline", 8) == 0))
19907 {
19908 if (!eap->skip)
19909 EMSG2(_("E125: Illegal argument: %s"), arg);
19910 break;
19911 }
19912 if (ga_grow(&newargs, 1) == FAIL)
19913 goto erret;
19914 c = *p;
19915 *p = NUL;
19916 arg = vim_strsave(arg);
19917 if (arg == NULL)
19918 goto erret;
19919 ((char_u **)(newargs.ga_data))[newargs.ga_len] = arg;
19920 *p = c;
19921 newargs.ga_len++;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019922 if (*p == ',')
19923 ++p;
19924 else
19925 mustend = TRUE;
19926 }
19927 p = skipwhite(p);
19928 if (mustend && *p != ')')
19929 {
19930 if (!eap->skip)
19931 EMSG2(_(e_invarg2), eap->arg);
19932 break;
19933 }
19934 }
19935 ++p; /* skip the ')' */
19936
Bram Moolenaare9a41262005-01-15 22:18:47 +000019937 /* find extra arguments "range", "dict" and "abort" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019938 for (;;)
19939 {
19940 p = skipwhite(p);
19941 if (STRNCMP(p, "range", 5) == 0)
19942 {
19943 flags |= FC_RANGE;
19944 p += 5;
19945 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000019946 else if (STRNCMP(p, "dict", 4) == 0)
19947 {
19948 flags |= FC_DICT;
19949 p += 4;
19950 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019951 else if (STRNCMP(p, "abort", 5) == 0)
19952 {
19953 flags |= FC_ABORT;
19954 p += 5;
19955 }
19956 else
19957 break;
19958 }
19959
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019960 /* When there is a line break use what follows for the function body.
19961 * Makes 'exe "func Test()\n...\nendfunc"' work. */
19962 if (*p == '\n')
19963 line_arg = p + 1;
19964 else if (*p != NUL && *p != '"' && !eap->skip && !did_emsg)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019965 EMSG(_(e_trailing));
19966
19967 /*
19968 * Read the body of the function, until ":endfunction" is found.
19969 */
19970 if (KeyTyped)
19971 {
19972 /* Check if the function already exists, don't let the user type the
19973 * whole function before telling him it doesn't work! For a script we
19974 * need to skip the body to be able to find what follows. */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019975 if (!eap->skip && !eap->forceit)
19976 {
19977 if (fudi.fd_dict != NULL && fudi.fd_newkey == NULL)
19978 EMSG(_(e_funcdict));
19979 else if (name != NULL && find_func(name) != NULL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019980 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019981 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019982
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019983 if (!eap->skip && did_emsg)
19984 goto erret;
19985
Bram Moolenaar071d4272004-06-13 20:20:40 +000019986 msg_putchar('\n'); /* don't overwrite the function name */
19987 cmdline_row = msg_row;
19988 }
19989
19990 indent = 2;
19991 nesting = 0;
19992 for (;;)
19993 {
19994 msg_scroll = TRUE;
19995 need_wait_return = FALSE;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019996 sourcing_lnum_off = sourcing_lnum;
19997
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019998 if (line_arg != NULL)
19999 {
20000 /* Use eap->arg, split up in parts by line breaks. */
20001 theline = line_arg;
20002 p = vim_strchr(theline, '\n');
20003 if (p == NULL)
20004 line_arg += STRLEN(line_arg);
20005 else
20006 {
20007 *p = NUL;
20008 line_arg = p + 1;
20009 }
20010 }
20011 else if (eap->getline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020012 theline = getcmdline(':', 0L, indent);
20013 else
20014 theline = eap->getline(':', eap->cookie, indent);
20015 if (KeyTyped)
20016 lines_left = Rows - 1;
20017 if (theline == NULL)
20018 {
20019 EMSG(_("E126: Missing :endfunction"));
20020 goto erret;
20021 }
20022
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020023 /* Detect line continuation: sourcing_lnum increased more than one. */
20024 if (sourcing_lnum > sourcing_lnum_off + 1)
20025 sourcing_lnum_off = sourcing_lnum - sourcing_lnum_off - 1;
20026 else
20027 sourcing_lnum_off = 0;
20028
Bram Moolenaar071d4272004-06-13 20:20:40 +000020029 if (skip_until != NULL)
20030 {
20031 /* between ":append" and "." and between ":python <<EOF" and "EOF"
20032 * don't check for ":endfunc". */
20033 if (STRCMP(theline, skip_until) == 0)
20034 {
20035 vim_free(skip_until);
20036 skip_until = NULL;
20037 }
20038 }
20039 else
20040 {
20041 /* skip ':' and blanks*/
20042 for (p = theline; vim_iswhite(*p) || *p == ':'; ++p)
20043 ;
20044
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020045 /* Check for "endfunction". */
20046 if (checkforcmd(&p, "endfunction", 4) && nesting-- == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020047 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020048 if (line_arg == NULL)
20049 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020050 break;
20051 }
20052
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020053 /* Increase indent inside "if", "while", "for" and "try", decrease
Bram Moolenaar071d4272004-06-13 20:20:40 +000020054 * at "end". */
20055 if (indent > 2 && STRNCMP(p, "end", 3) == 0)
20056 indent -= 2;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020057 else if (STRNCMP(p, "if", 2) == 0
20058 || STRNCMP(p, "wh", 2) == 0
20059 || STRNCMP(p, "for", 3) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000020060 || STRNCMP(p, "try", 3) == 0)
20061 indent += 2;
20062
20063 /* Check for defining a function inside this function. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020064 if (checkforcmd(&p, "function", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020065 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020066 if (*p == '!')
20067 p = skipwhite(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020068 p += eval_fname_script(p);
20069 if (ASCII_ISALPHA(*p))
20070 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020071 vim_free(trans_function_name(&p, TRUE, 0, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020072 if (*skipwhite(p) == '(')
20073 {
20074 ++nesting;
20075 indent += 2;
20076 }
20077 }
20078 }
20079
20080 /* Check for ":append" or ":insert". */
20081 p = skip_range(p, NULL);
20082 if ((p[0] == 'a' && (!ASCII_ISALPHA(p[1]) || p[1] == 'p'))
20083 || (p[0] == 'i'
20084 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'n'
20085 && (!ASCII_ISALPHA(p[2]) || (p[2] == 's'))))))
20086 skip_until = vim_strsave((char_u *)".");
20087
20088 /* Check for ":python <<EOF", ":tcl <<EOF", etc. */
20089 arg = skipwhite(skiptowhite(p));
20090 if (arg[0] == '<' && arg[1] =='<'
20091 && ((p[0] == 'p' && p[1] == 'y'
20092 && (!ASCII_ISALPHA(p[2]) || p[2] == 't'))
20093 || (p[0] == 'p' && p[1] == 'e'
20094 && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
20095 || (p[0] == 't' && p[1] == 'c'
20096 && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
20097 || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
20098 && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
Bram Moolenaar325b7a22004-07-05 15:58:32 +000020099 || (p[0] == 'm' && p[1] == 'z'
20100 && (!ASCII_ISALPHA(p[2]) || p[2] == 's'))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020101 ))
20102 {
20103 /* ":python <<" continues until a dot, like ":append" */
20104 p = skipwhite(arg + 2);
20105 if (*p == NUL)
20106 skip_until = vim_strsave((char_u *)".");
20107 else
20108 skip_until = vim_strsave(p);
20109 }
20110 }
20111
20112 /* Add the line to the function. */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020113 if (ga_grow(&newlines, 1 + sourcing_lnum_off) == FAIL)
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020114 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020115 if (line_arg == NULL)
20116 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020117 goto erret;
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020118 }
20119
20120 /* Copy the line to newly allocated memory. get_one_sourceline()
20121 * allocates 250 bytes per line, this saves 80% on average. The cost
20122 * is an extra alloc/free. */
20123 p = vim_strsave(theline);
20124 if (p != NULL)
20125 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020126 if (line_arg == NULL)
20127 vim_free(theline);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020128 theline = p;
20129 }
20130
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020131 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = theline;
20132
20133 /* Add NULL lines for continuation lines, so that the line count is
20134 * equal to the index in the growarray. */
20135 while (sourcing_lnum_off-- > 0)
20136 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = NULL;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020137
20138 /* Check for end of eap->arg. */
20139 if (line_arg != NULL && *line_arg == NUL)
20140 line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020141 }
20142
20143 /* Don't define the function when skipping commands or when an error was
20144 * detected. */
20145 if (eap->skip || did_emsg)
20146 goto erret;
20147
20148 /*
20149 * If there are no errors, add the function
20150 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020151 if (fudi.fd_dict == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020152 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020153 v = find_var(name, &ht);
Bram Moolenaar33570922005-01-25 22:26:29 +000020154 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020155 {
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +000020156 emsg_funcname(N_("E707: Function name conflicts with variable: %s"),
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020157 name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020158 goto erret;
20159 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020160
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020161 fp = find_func(name);
20162 if (fp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020163 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020164 if (!eap->forceit)
20165 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020166 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020167 goto erret;
20168 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020169 if (fp->uf_calls > 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020170 {
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +000020171 emsg_funcname(N_("E127: Cannot redefine function %s: It is in use"),
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020172 name);
20173 goto erret;
20174 }
20175 /* redefine existing function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020176 ga_clear_strings(&(fp->uf_args));
20177 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020178 vim_free(name);
20179 name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020180 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020181 }
20182 else
20183 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020184 char numbuf[20];
20185
20186 fp = NULL;
20187 if (fudi.fd_newkey == NULL && !eap->forceit)
20188 {
20189 EMSG(_(e_funcdict));
20190 goto erret;
20191 }
Bram Moolenaar758711c2005-02-02 23:11:38 +000020192 if (fudi.fd_di == NULL)
20193 {
20194 /* Can't add a function to a locked dictionary */
20195 if (tv_check_lock(fudi.fd_dict->dv_lock, eap->arg))
20196 goto erret;
20197 }
20198 /* Can't change an existing function if it is locked */
20199 else if (tv_check_lock(fudi.fd_di->di_tv.v_lock, eap->arg))
20200 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020201
20202 /* Give the function a sequential number. Can only be used with a
20203 * Funcref! */
20204 vim_free(name);
20205 sprintf(numbuf, "%d", ++func_nr);
20206 name = vim_strsave((char_u *)numbuf);
20207 if (name == NULL)
20208 goto erret;
20209 }
20210
20211 if (fp == NULL)
20212 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020213 if (fudi.fd_dict == NULL && vim_strchr(name, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020214 {
20215 int slen, plen;
20216 char_u *scriptname;
20217
20218 /* Check that the autoload name matches the script name. */
20219 j = FAIL;
20220 if (sourcing_name != NULL)
20221 {
20222 scriptname = autoload_name(name);
20223 if (scriptname != NULL)
20224 {
20225 p = vim_strchr(scriptname, '/');
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020226 plen = (int)STRLEN(p);
20227 slen = (int)STRLEN(sourcing_name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020228 if (slen > plen && fnamecmp(p,
20229 sourcing_name + slen - plen) == 0)
20230 j = OK;
20231 vim_free(scriptname);
20232 }
20233 }
20234 if (j == FAIL)
20235 {
20236 EMSG2(_("E746: Function name does not match script file name: %s"), name);
20237 goto erret;
20238 }
20239 }
20240
20241 fp = (ufunc_T *)alloc((unsigned)(sizeof(ufunc_T) + STRLEN(name)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020242 if (fp == NULL)
20243 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020244
20245 if (fudi.fd_dict != NULL)
20246 {
20247 if (fudi.fd_di == NULL)
20248 {
20249 /* add new dict entry */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020250 fudi.fd_di = dictitem_alloc(fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020251 if (fudi.fd_di == NULL)
20252 {
20253 vim_free(fp);
20254 goto erret;
20255 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020256 if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
20257 {
20258 vim_free(fudi.fd_di);
Bram Moolenaar0a5fd8b2006-08-16 20:02:22 +000020259 vim_free(fp);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020260 goto erret;
20261 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020262 }
20263 else
20264 /* overwrite existing dict entry */
20265 clear_tv(&fudi.fd_di->di_tv);
20266 fudi.fd_di->di_tv.v_type = VAR_FUNC;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000020267 fudi.fd_di->di_tv.v_lock = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020268 fudi.fd_di->di_tv.vval.v_string = vim_strsave(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020269 fp->uf_refcount = 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000020270
20271 /* behave like "dict" was used */
20272 flags |= FC_DICT;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020273 }
20274
Bram Moolenaar071d4272004-06-13 20:20:40 +000020275 /* insert the new function in the function list */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020276 STRCPY(fp->uf_name, name);
20277 hash_add(&func_hashtab, UF2HIKEY(fp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020278 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020279 fp->uf_args = newargs;
20280 fp->uf_lines = newlines;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020281#ifdef FEAT_PROFILE
20282 fp->uf_tml_count = NULL;
20283 fp->uf_tml_total = NULL;
20284 fp->uf_tml_self = NULL;
20285 fp->uf_profiling = FALSE;
20286 if (prof_def_func())
20287 func_do_profile(fp);
20288#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020289 fp->uf_varargs = varargs;
20290 fp->uf_flags = flags;
20291 fp->uf_calls = 0;
20292 fp->uf_script_ID = current_SID;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020293 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020294
20295erret:
Bram Moolenaar071d4272004-06-13 20:20:40 +000020296 ga_clear_strings(&newargs);
20297 ga_clear_strings(&newlines);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020298ret_free:
20299 vim_free(skip_until);
20300 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020301 vim_free(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020302 did_emsg |= saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020303}
20304
20305/*
20306 * Get a function name, translating "<SID>" and "<SNR>".
Bram Moolenaara7043832005-01-21 11:56:39 +000020307 * Also handles a Funcref in a List or Dictionary.
Bram Moolenaar071d4272004-06-13 20:20:40 +000020308 * Returns the function name in allocated memory, or NULL for failure.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020309 * flags:
20310 * TFN_INT: internal function name OK
20311 * TFN_QUIET: be quiet
Bram Moolenaar071d4272004-06-13 20:20:40 +000020312 * Advances "pp" to just after the function name (if no error).
20313 */
20314 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020315trans_function_name(pp, skip, flags, fdp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020316 char_u **pp;
20317 int skip; /* only find the end, don't evaluate */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020318 int flags;
Bram Moolenaar33570922005-01-25 22:26:29 +000020319 funcdict_T *fdp; /* return: info about dictionary used */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020320{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020321 char_u *name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020322 char_u *start;
20323 char_u *end;
20324 int lead;
20325 char_u sid_buf[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +000020326 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +000020327 lval_T lv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020328
20329 if (fdp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000020330 vim_memset(fdp, 0, sizeof(funcdict_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020331 start = *pp;
Bram Moolenaara7043832005-01-21 11:56:39 +000020332
20333 /* Check for hard coded <SNR>: already translated function ID (from a user
20334 * command). */
20335 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA
20336 && (*pp)[2] == (int)KE_SNR)
20337 {
20338 *pp += 3;
20339 len = get_id_len(pp) + 3;
20340 return vim_strnsave(start, len);
20341 }
20342
20343 /* A name starting with "<SID>" or "<SNR>" is local to a script. But
20344 * don't skip over "s:", get_lval() needs it for "s:dict.func". */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020345 lead = eval_fname_script(start);
Bram Moolenaara7043832005-01-21 11:56:39 +000020346 if (lead > 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020347 start += lead;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020348
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020349 end = get_lval(start, NULL, &lv, FALSE, skip, flags & TFN_QUIET,
20350 lead > 2 ? 0 : FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020351 if (end == start)
20352 {
20353 if (!skip)
20354 EMSG(_("E129: Function name required"));
20355 goto theend;
20356 }
Bram Moolenaara7043832005-01-21 11:56:39 +000020357 if (end == NULL || (lv.ll_tv != NULL && (lead > 2 || lv.ll_range)))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020358 {
20359 /*
20360 * Report an invalid expression in braces, unless the expression
20361 * evaluation has been cancelled due to an aborting error, an
20362 * interrupt, or an exception.
20363 */
20364 if (!aborting())
20365 {
20366 if (end != NULL)
20367 EMSG2(_(e_invarg2), start);
20368 }
20369 else
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020370 *pp = find_name_end(start, NULL, NULL, FNE_INCL_BR);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020371 goto theend;
20372 }
20373
20374 if (lv.ll_tv != NULL)
20375 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020376 if (fdp != NULL)
20377 {
20378 fdp->fd_dict = lv.ll_dict;
20379 fdp->fd_newkey = lv.ll_newkey;
20380 lv.ll_newkey = NULL;
20381 fdp->fd_di = lv.ll_di;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020382 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020383 if (lv.ll_tv->v_type == VAR_FUNC && lv.ll_tv->vval.v_string != NULL)
20384 {
20385 name = vim_strsave(lv.ll_tv->vval.v_string);
20386 *pp = end;
20387 }
20388 else
20389 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020390 if (!skip && !(flags & TFN_QUIET) && (fdp == NULL
20391 || lv.ll_dict == NULL || fdp->fd_newkey == NULL))
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020392 EMSG(_(e_funcref));
20393 else
20394 *pp = end;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020395 name = NULL;
20396 }
20397 goto theend;
20398 }
20399
20400 if (lv.ll_name == NULL)
20401 {
20402 /* Error found, but continue after the function name. */
20403 *pp = end;
20404 goto theend;
20405 }
20406
Bram Moolenaar33e1a802007-09-06 12:26:44 +000020407 /* Check if the name is a Funcref. If so, use the value. */
20408 if (lv.ll_exp_name != NULL)
20409 {
20410 len = (int)STRLEN(lv.ll_exp_name);
20411 name = deref_func_name(lv.ll_exp_name, &len);
20412 if (name == lv.ll_exp_name)
20413 name = NULL;
20414 }
20415 else
20416 {
20417 len = (int)(end - *pp);
20418 name = deref_func_name(*pp, &len);
20419 if (name == *pp)
20420 name = NULL;
20421 }
20422 if (name != NULL)
20423 {
20424 name = vim_strsave(name);
20425 *pp = end;
20426 goto theend;
20427 }
20428
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020429 if (lv.ll_exp_name != NULL)
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020430 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020431 len = (int)STRLEN(lv.ll_exp_name);
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020432 if (lead <= 2 && lv.ll_name == lv.ll_exp_name
20433 && STRNCMP(lv.ll_name, "s:", 2) == 0)
20434 {
20435 /* When there was "s:" already or the name expanded to get a
20436 * leading "s:" then remove it. */
20437 lv.ll_name += 2;
20438 len -= 2;
20439 lead = 2;
20440 }
20441 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020442 else
Bram Moolenaara7043832005-01-21 11:56:39 +000020443 {
20444 if (lead == 2) /* skip over "s:" */
20445 lv.ll_name += 2;
20446 len = (int)(end - lv.ll_name);
20447 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020448
20449 /*
20450 * Copy the function name to allocated memory.
20451 * Accept <SID>name() inside a script, translate into <SNR>123_name().
20452 * Accept <SNR>123_name() outside a script.
20453 */
20454 if (skip)
20455 lead = 0; /* do nothing */
20456 else if (lead > 0)
20457 {
20458 lead = 3;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000020459 if ((lv.ll_exp_name != NULL && eval_fname_sid(lv.ll_exp_name))
20460 || eval_fname_sid(*pp))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020461 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +000020462 /* It's "s:" or "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020463 if (current_SID <= 0)
20464 {
20465 EMSG(_(e_usingsid));
20466 goto theend;
20467 }
20468 sprintf((char *)sid_buf, "%ld_", (long)current_SID);
20469 lead += (int)STRLEN(sid_buf);
20470 }
20471 }
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020472 else if (!(flags & TFN_INT) && builtin_function(lv.ll_name))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020473 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020474 EMSG2(_("E128: Function name must start with a capital or contain a colon: %s"), lv.ll_name);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020475 goto theend;
20476 }
20477 name = alloc((unsigned)(len + lead + 1));
20478 if (name != NULL)
20479 {
20480 if (lead > 0)
20481 {
20482 name[0] = K_SPECIAL;
20483 name[1] = KS_EXTRA;
20484 name[2] = (int)KE_SNR;
Bram Moolenaara7043832005-01-21 11:56:39 +000020485 if (lead > 3) /* If it's "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020486 STRCPY(name + 3, sid_buf);
20487 }
20488 mch_memmove(name + lead, lv.ll_name, (size_t)len);
20489 name[len + lead] = NUL;
20490 }
20491 *pp = end;
20492
20493theend:
20494 clear_lval(&lv);
20495 return name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020496}
20497
20498/*
20499 * Return 5 if "p" starts with "<SID>" or "<SNR>" (ignoring case).
20500 * Return 2 if "p" starts with "s:".
20501 * Return 0 otherwise.
20502 */
20503 static int
20504eval_fname_script(p)
20505 char_u *p;
20506{
20507 if (p[0] == '<' && (STRNICMP(p + 1, "SID>", 4) == 0
20508 || STRNICMP(p + 1, "SNR>", 4) == 0))
20509 return 5;
20510 if (p[0] == 's' && p[1] == ':')
20511 return 2;
20512 return 0;
20513}
20514
20515/*
20516 * Return TRUE if "p" starts with "<SID>" or "s:".
20517 * Only works if eval_fname_script() returned non-zero for "p"!
20518 */
20519 static int
20520eval_fname_sid(p)
20521 char_u *p;
20522{
20523 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I');
20524}
20525
20526/*
20527 * List the head of the function: "name(arg1, arg2)".
20528 */
20529 static void
20530list_func_head(fp, indent)
20531 ufunc_T *fp;
20532 int indent;
20533{
20534 int j;
20535
20536 msg_start();
20537 if (indent)
20538 MSG_PUTS(" ");
20539 MSG_PUTS("function ");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020540 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020541 {
20542 MSG_PUTS_ATTR("<SNR>", hl_attr(HLF_8));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020543 msg_puts(fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020544 }
20545 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020546 msg_puts(fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020547 msg_putchar('(');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020548 for (j = 0; j < fp->uf_args.ga_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020549 {
20550 if (j)
20551 MSG_PUTS(", ");
20552 msg_puts(FUNCARG(fp, j));
20553 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020554 if (fp->uf_varargs)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020555 {
20556 if (j)
20557 MSG_PUTS(", ");
20558 MSG_PUTS("...");
20559 }
20560 msg_putchar(')');
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000020561 msg_clr_eos();
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000020562 if (p_verbose > 0)
20563 last_set_msg(fp->uf_script_ID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020564}
20565
20566/*
20567 * Find a function by name, return pointer to it in ufuncs.
20568 * Return NULL for unknown function.
20569 */
20570 static ufunc_T *
20571find_func(name)
20572 char_u *name;
20573{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020574 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020575
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020576 hi = hash_find(&func_hashtab, name);
20577 if (!HASHITEM_EMPTY(hi))
20578 return HI2UF(hi);
20579 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020580}
20581
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020582#if defined(EXITFREE) || defined(PROTO)
20583 void
20584free_all_functions()
20585{
20586 hashitem_T *hi;
20587
20588 /* Need to start all over every time, because func_free() may change the
20589 * hash table. */
20590 while (func_hashtab.ht_used > 0)
20591 for (hi = func_hashtab.ht_array; ; ++hi)
20592 if (!HASHITEM_EMPTY(hi))
20593 {
20594 func_free(HI2UF(hi));
20595 break;
20596 }
20597}
20598#endif
20599
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020600/*
20601 * Return TRUE if a function "name" exists.
20602 */
20603 static int
20604function_exists(name)
20605 char_u *name;
20606{
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020607 char_u *nm = name;
20608 char_u *p;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020609 int n = FALSE;
20610
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020611 p = trans_function_name(&nm, FALSE, TFN_INT|TFN_QUIET, NULL);
Bram Moolenaar79783442006-05-05 21:18:03 +000020612 nm = skipwhite(nm);
20613
20614 /* Only accept "funcname", "funcname ", "funcname (..." and
20615 * "funcname(...", not "funcname!...". */
20616 if (p != NULL && (*nm == NUL || *nm == '('))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020617 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020618 if (builtin_function(p))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020619 n = (find_internal_func(p) >= 0);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020620 else
20621 n = (find_func(p) != NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020622 }
Bram Moolenaar79783442006-05-05 21:18:03 +000020623 vim_free(p);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020624 return n;
20625}
20626
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020627/*
20628 * Return TRUE if "name" looks like a builtin function name: starts with a
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020629 * lower case letter and doesn't contain a ':' or AUTOLOAD_CHAR.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020630 */
20631 static int
20632builtin_function(name)
20633 char_u *name;
20634{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020635 return ASCII_ISLOWER(name[0]) && vim_strchr(name, ':') == NULL
20636 && vim_strchr(name, AUTOLOAD_CHAR) == NULL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020637}
20638
Bram Moolenaar05159a02005-02-26 23:04:13 +000020639#if defined(FEAT_PROFILE) || defined(PROTO)
20640/*
20641 * Start profiling function "fp".
20642 */
20643 static void
20644func_do_profile(fp)
20645 ufunc_T *fp;
20646{
20647 fp->uf_tm_count = 0;
20648 profile_zero(&fp->uf_tm_self);
20649 profile_zero(&fp->uf_tm_total);
20650 if (fp->uf_tml_count == NULL)
20651 fp->uf_tml_count = (int *)alloc_clear((unsigned)
20652 (sizeof(int) * fp->uf_lines.ga_len));
20653 if (fp->uf_tml_total == NULL)
20654 fp->uf_tml_total = (proftime_T *)alloc_clear((unsigned)
20655 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20656 if (fp->uf_tml_self == NULL)
20657 fp->uf_tml_self = (proftime_T *)alloc_clear((unsigned)
20658 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20659 fp->uf_tml_idx = -1;
20660 if (fp->uf_tml_count == NULL || fp->uf_tml_total == NULL
20661 || fp->uf_tml_self == NULL)
20662 return; /* out of memory */
20663
20664 fp->uf_profiling = TRUE;
20665}
20666
20667/*
20668 * Dump the profiling results for all functions in file "fd".
20669 */
20670 void
20671func_dump_profile(fd)
20672 FILE *fd;
20673{
20674 hashitem_T *hi;
20675 int todo;
20676 ufunc_T *fp;
20677 int i;
Bram Moolenaar73830342005-02-28 22:48:19 +000020678 ufunc_T **sorttab;
20679 int st_len = 0;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020680
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020681 todo = (int)func_hashtab.ht_used;
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020682 if (todo == 0)
20683 return; /* nothing to dump */
20684
Bram Moolenaar73830342005-02-28 22:48:19 +000020685 sorttab = (ufunc_T **)alloc((unsigned)(sizeof(ufunc_T) * todo));
20686
Bram Moolenaar05159a02005-02-26 23:04:13 +000020687 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
20688 {
20689 if (!HASHITEM_EMPTY(hi))
20690 {
20691 --todo;
20692 fp = HI2UF(hi);
20693 if (fp->uf_profiling)
20694 {
Bram Moolenaar73830342005-02-28 22:48:19 +000020695 if (sorttab != NULL)
20696 sorttab[st_len++] = fp;
20697
Bram Moolenaar05159a02005-02-26 23:04:13 +000020698 if (fp->uf_name[0] == K_SPECIAL)
20699 fprintf(fd, "FUNCTION <SNR>%s()\n", fp->uf_name + 3);
20700 else
20701 fprintf(fd, "FUNCTION %s()\n", fp->uf_name);
20702 if (fp->uf_tm_count == 1)
20703 fprintf(fd, "Called 1 time\n");
20704 else
20705 fprintf(fd, "Called %d times\n", fp->uf_tm_count);
20706 fprintf(fd, "Total time: %s\n", profile_msg(&fp->uf_tm_total));
20707 fprintf(fd, " Self time: %s\n", profile_msg(&fp->uf_tm_self));
20708 fprintf(fd, "\n");
20709 fprintf(fd, "count total (s) self (s)\n");
20710
20711 for (i = 0; i < fp->uf_lines.ga_len; ++i)
20712 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020713 if (FUNCLINE(fp, i) == NULL)
20714 continue;
Bram Moolenaar73830342005-02-28 22:48:19 +000020715 prof_func_line(fd, fp->uf_tml_count[i],
20716 &fp->uf_tml_total[i], &fp->uf_tml_self[i], TRUE);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020717 fprintf(fd, "%s\n", FUNCLINE(fp, i));
20718 }
20719 fprintf(fd, "\n");
20720 }
20721 }
20722 }
Bram Moolenaar73830342005-02-28 22:48:19 +000020723
20724 if (sorttab != NULL && st_len > 0)
20725 {
20726 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20727 prof_total_cmp);
20728 prof_sort_list(fd, sorttab, st_len, "TOTAL", FALSE);
20729 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20730 prof_self_cmp);
20731 prof_sort_list(fd, sorttab, st_len, "SELF", TRUE);
20732 }
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020733
20734 vim_free(sorttab);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020735}
Bram Moolenaar73830342005-02-28 22:48:19 +000020736
20737 static void
20738prof_sort_list(fd, sorttab, st_len, title, prefer_self)
20739 FILE *fd;
20740 ufunc_T **sorttab;
20741 int st_len;
20742 char *title;
20743 int prefer_self; /* when equal print only self time */
20744{
20745 int i;
20746 ufunc_T *fp;
20747
20748 fprintf(fd, "FUNCTIONS SORTED ON %s TIME\n", title);
20749 fprintf(fd, "count total (s) self (s) function\n");
20750 for (i = 0; i < 20 && i < st_len; ++i)
20751 {
20752 fp = sorttab[i];
20753 prof_func_line(fd, fp->uf_tm_count, &fp->uf_tm_total, &fp->uf_tm_self,
20754 prefer_self);
20755 if (fp->uf_name[0] == K_SPECIAL)
20756 fprintf(fd, " <SNR>%s()\n", fp->uf_name + 3);
20757 else
20758 fprintf(fd, " %s()\n", fp->uf_name);
20759 }
20760 fprintf(fd, "\n");
20761}
20762
20763/*
20764 * Print the count and times for one function or function line.
20765 */
20766 static void
20767prof_func_line(fd, count, total, self, prefer_self)
20768 FILE *fd;
20769 int count;
20770 proftime_T *total;
20771 proftime_T *self;
20772 int prefer_self; /* when equal print only self time */
20773{
20774 if (count > 0)
20775 {
20776 fprintf(fd, "%5d ", count);
20777 if (prefer_self && profile_equal(total, self))
20778 fprintf(fd, " ");
20779 else
20780 fprintf(fd, "%s ", profile_msg(total));
20781 if (!prefer_self && profile_equal(total, self))
20782 fprintf(fd, " ");
20783 else
20784 fprintf(fd, "%s ", profile_msg(self));
20785 }
20786 else
20787 fprintf(fd, " ");
20788}
20789
20790/*
20791 * Compare function for total time sorting.
20792 */
20793 static int
20794#ifdef __BORLANDC__
20795_RTLENTRYF
20796#endif
20797prof_total_cmp(s1, s2)
20798 const void *s1;
20799 const void *s2;
20800{
20801 ufunc_T *p1, *p2;
20802
20803 p1 = *(ufunc_T **)s1;
20804 p2 = *(ufunc_T **)s2;
20805 return profile_cmp(&p1->uf_tm_total, &p2->uf_tm_total);
20806}
20807
20808/*
20809 * Compare function for self time sorting.
20810 */
20811 static int
20812#ifdef __BORLANDC__
20813_RTLENTRYF
20814#endif
20815prof_self_cmp(s1, s2)
20816 const void *s1;
20817 const void *s2;
20818{
20819 ufunc_T *p1, *p2;
20820
20821 p1 = *(ufunc_T **)s1;
20822 p2 = *(ufunc_T **)s2;
20823 return profile_cmp(&p1->uf_tm_self, &p2->uf_tm_self);
20824}
20825
Bram Moolenaar05159a02005-02-26 23:04:13 +000020826#endif
20827
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020828/*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020829 * If "name" has a package name try autoloading the script for it.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020830 * Return TRUE if a package was loaded.
20831 */
20832 static int
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020833script_autoload(name, reload)
20834 char_u *name;
20835 int reload; /* load script again when already loaded */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020836{
20837 char_u *p;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020838 char_u *scriptname, *tofree;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020839 int ret = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020840 int i;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020841
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020842 /* If there is no '#' after name[0] there is no package name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020843 p = vim_strchr(name, AUTOLOAD_CHAR);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020844 if (p == NULL || p == name)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020845 return FALSE;
20846
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020847 tofree = scriptname = autoload_name(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020848
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020849 /* Find the name in the list of previously loaded package names. Skip
20850 * "autoload/", it's always the same. */
20851 for (i = 0; i < ga_loaded.ga_len; ++i)
20852 if (STRCMP(((char_u **)ga_loaded.ga_data)[i] + 9, scriptname + 9) == 0)
20853 break;
20854 if (!reload && i < ga_loaded.ga_len)
20855 ret = FALSE; /* was loaded already */
20856 else
20857 {
20858 /* Remember the name if it wasn't loaded already. */
20859 if (i == ga_loaded.ga_len && ga_grow(&ga_loaded, 1) == OK)
20860 {
20861 ((char_u **)ga_loaded.ga_data)[ga_loaded.ga_len++] = scriptname;
20862 tofree = NULL;
20863 }
20864
20865 /* Try loading the package from $VIMRUNTIME/autoload/<name>.vim */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +000020866 if (source_runtime(scriptname, FALSE) == OK)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020867 ret = TRUE;
20868 }
20869
20870 vim_free(tofree);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020871 return ret;
20872}
20873
20874/*
20875 * Return the autoload script name for a function or variable name.
20876 * Returns NULL when out of memory.
20877 */
20878 static char_u *
20879autoload_name(name)
20880 char_u *name;
20881{
20882 char_u *p;
20883 char_u *scriptname;
20884
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020885 /* Get the script file name: replace '#' with '/', append ".vim". */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020886 scriptname = alloc((unsigned)(STRLEN(name) + 14));
20887 if (scriptname == NULL)
20888 return FALSE;
20889 STRCPY(scriptname, "autoload/");
20890 STRCAT(scriptname, name);
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020891 *vim_strrchr(scriptname, AUTOLOAD_CHAR) = NUL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020892 STRCAT(scriptname, ".vim");
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020893 while ((p = vim_strchr(scriptname, AUTOLOAD_CHAR)) != NULL)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020894 *p = '/';
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020895 return scriptname;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020896}
20897
Bram Moolenaar071d4272004-06-13 20:20:40 +000020898#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
20899
20900/*
20901 * Function given to ExpandGeneric() to obtain the list of user defined
20902 * function names.
20903 */
20904 char_u *
20905get_user_func_name(xp, idx)
20906 expand_T *xp;
20907 int idx;
20908{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020909 static long_u done;
20910 static hashitem_T *hi;
20911 ufunc_T *fp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020912
20913 if (idx == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020914 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020915 done = 0;
20916 hi = func_hashtab.ht_array;
20917 }
20918 if (done < func_hashtab.ht_used)
20919 {
20920 if (done++ > 0)
20921 ++hi;
20922 while (HASHITEM_EMPTY(hi))
20923 ++hi;
20924 fp = HI2UF(hi);
20925
20926 if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
20927 return fp->uf_name; /* prevents overflow */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020928
20929 cat_func_name(IObuff, fp);
20930 if (xp->xp_context != EXPAND_USER_FUNC)
20931 {
20932 STRCAT(IObuff, "(");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020933 if (!fp->uf_varargs && fp->uf_args.ga_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020934 STRCAT(IObuff, ")");
20935 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020936 return IObuff;
20937 }
20938 return NULL;
20939}
20940
20941#endif /* FEAT_CMDL_COMPL */
20942
20943/*
20944 * Copy the function name of "fp" to buffer "buf".
20945 * "buf" must be able to hold the function name plus three bytes.
20946 * Takes care of script-local function names.
20947 */
20948 static void
20949cat_func_name(buf, fp)
20950 char_u *buf;
20951 ufunc_T *fp;
20952{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020953 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020954 {
20955 STRCPY(buf, "<SNR>");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020956 STRCAT(buf, fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020957 }
20958 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020959 STRCPY(buf, fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020960}
20961
20962/*
20963 * ":delfunction {name}"
20964 */
20965 void
20966ex_delfunction(eap)
20967 exarg_T *eap;
20968{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020969 ufunc_T *fp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020970 char_u *p;
20971 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000020972 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020973
20974 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020975 name = trans_function_name(&p, eap->skip, 0, &fudi);
20976 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020977 if (name == NULL)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020978 {
20979 if (fudi.fd_dict != NULL && !eap->skip)
20980 EMSG(_(e_funcref));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020981 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020982 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020983 if (!ends_excmd(*skipwhite(p)))
20984 {
20985 vim_free(name);
20986 EMSG(_(e_trailing));
20987 return;
20988 }
20989 eap->nextcmd = check_nextcmd(p);
20990 if (eap->nextcmd != NULL)
20991 *p = NUL;
20992
20993 if (!eap->skip)
20994 fp = find_func(name);
20995 vim_free(name);
20996
20997 if (!eap->skip)
20998 {
20999 if (fp == NULL)
21000 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021001 EMSG2(_(e_nofunc), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021002 return;
21003 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021004 if (fp->uf_calls > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021005 {
21006 EMSG2(_("E131: Cannot delete function %s: It is in use"), eap->arg);
21007 return;
21008 }
21009
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021010 if (fudi.fd_dict != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021011 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021012 /* Delete the dict item that refers to the function, it will
21013 * invoke func_unref() and possibly delete the function. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000021014 dictitem_remove(fudi.fd_dict, fudi.fd_di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021015 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021016 else
21017 func_free(fp);
21018 }
21019}
21020
21021/*
21022 * Free a function and remove it from the list of functions.
21023 */
21024 static void
21025func_free(fp)
21026 ufunc_T *fp;
21027{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021028 hashitem_T *hi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021029
21030 /* clear this function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021031 ga_clear_strings(&(fp->uf_args));
21032 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar05159a02005-02-26 23:04:13 +000021033#ifdef FEAT_PROFILE
21034 vim_free(fp->uf_tml_count);
21035 vim_free(fp->uf_tml_total);
21036 vim_free(fp->uf_tml_self);
21037#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021038
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021039 /* remove the function from the function hashtable */
21040 hi = hash_find(&func_hashtab, UF2HIKEY(fp));
21041 if (HASHITEM_EMPTY(hi))
21042 EMSG2(_(e_intern2), "func_free()");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021043 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021044 hash_remove(&func_hashtab, hi);
21045
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021046 vim_free(fp);
21047}
21048
21049/*
21050 * Unreference a Function: decrement the reference count and free it when it
21051 * becomes zero. Only for numbered functions.
21052 */
21053 static void
21054func_unref(name)
21055 char_u *name;
21056{
21057 ufunc_T *fp;
21058
21059 if (name != NULL && isdigit(*name))
21060 {
21061 fp = find_func(name);
21062 if (fp == NULL)
21063 EMSG2(_(e_intern2), "func_unref()");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021064 else if (--fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021065 {
21066 /* Only delete it when it's not being used. Otherwise it's done
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021067 * when "uf_calls" becomes zero. */
21068 if (fp->uf_calls == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021069 func_free(fp);
21070 }
21071 }
21072}
21073
21074/*
21075 * Count a reference to a Function.
21076 */
21077 static void
21078func_ref(name)
21079 char_u *name;
21080{
21081 ufunc_T *fp;
21082
21083 if (name != NULL && isdigit(*name))
21084 {
21085 fp = find_func(name);
21086 if (fp == NULL)
21087 EMSG2(_(e_intern2), "func_ref()");
21088 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021089 ++fp->uf_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021090 }
21091}
21092
21093/*
21094 * Call a user function.
21095 */
21096 static void
Bram Moolenaare9a41262005-01-15 22:18:47 +000021097call_user_func(fp, argcount, argvars, rettv, firstline, lastline, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021098 ufunc_T *fp; /* pointer to function */
21099 int argcount; /* nr of args */
Bram Moolenaar33570922005-01-25 22:26:29 +000021100 typval_T *argvars; /* arguments */
21101 typval_T *rettv; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021102 linenr_T firstline; /* first line of range */
21103 linenr_T lastline; /* last line of range */
Bram Moolenaar33570922005-01-25 22:26:29 +000021104 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021105{
Bram Moolenaar33570922005-01-25 22:26:29 +000021106 char_u *save_sourcing_name;
21107 linenr_T save_sourcing_lnum;
21108 scid_T save_current_SID;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021109 funccall_T *fc;
Bram Moolenaar33570922005-01-25 22:26:29 +000021110 int save_did_emsg;
21111 static int depth = 0;
21112 dictitem_T *v;
21113 int fixvar_idx = 0; /* index in fixvar[] */
21114 int i;
21115 int ai;
21116 char_u numbuf[NUMBUFLEN];
21117 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021118#ifdef FEAT_PROFILE
21119 proftime_T wait_start;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021120 proftime_T call_start;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021121#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021122
21123 /* If depth of calling is getting too high, don't execute the function */
21124 if (depth >= p_mfd)
21125 {
21126 EMSG(_("E132: Function call depth is higher than 'maxfuncdepth'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021127 rettv->v_type = VAR_NUMBER;
21128 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021129 return;
21130 }
21131 ++depth;
21132
21133 line_breakcheck(); /* check for CTRL-C hit */
21134
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021135 fc = (funccall_T *)alloc(sizeof(funccall_T));
21136 fc->caller = current_funccal;
21137 current_funccal = fc;
21138 fc->func = fp;
21139 fc->rettv = rettv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021140 rettv->vval.v_number = 0;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021141 fc->linenr = 0;
21142 fc->returned = FALSE;
21143 fc->level = ex_nesting_level;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021144 /* Check if this function has a breakpoint. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021145 fc->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0);
21146 fc->dbg_tick = debug_tick;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021147
Bram Moolenaar33570922005-01-25 22:26:29 +000021148 /*
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021149 * Note about using fc->fixvar[]: This is an array of FIXVAR_CNT variables
Bram Moolenaar33570922005-01-25 22:26:29 +000021150 * with names up to VAR_SHORT_LEN long. This avoids having to alloc/free
21151 * each argument variable and saves a lot of time.
21152 */
21153 /*
21154 * Init l: variables.
21155 */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021156 init_var_dict(&fc->l_vars, &fc->l_vars_var);
Bram Moolenaara7043832005-01-21 11:56:39 +000021157 if (selfdict != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000021158 {
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021159 /* Set l:self to "selfdict". Use "name" to avoid a warning from
21160 * some compiler that checks the destination size. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021161 v = &fc->fixvar[fixvar_idx++].var;
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021162 name = v->di_key;
21163 STRCPY(name, "self");
Bram Moolenaar33570922005-01-25 22:26:29 +000021164 v->di_flags = DI_FLAGS_RO + DI_FLAGS_FIX;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021165 hash_add(&fc->l_vars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaar33570922005-01-25 22:26:29 +000021166 v->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021167 v->di_tv.v_lock = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000021168 v->di_tv.vval.v_dict = selfdict;
21169 ++selfdict->dv_refcount;
21170 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000021171
Bram Moolenaar33570922005-01-25 22:26:29 +000021172 /*
21173 * Init a: variables.
21174 * Set a:0 to "argcount".
21175 * Set a:000 to a list with room for the "..." arguments.
21176 */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021177 init_var_dict(&fc->l_avars, &fc->l_avars_var);
21178 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "0",
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021179 (varnumber_T)(argcount - fp->uf_args.ga_len));
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021180 /* Use "name" to avoid a warning from some compiler that checks the
21181 * destination size. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021182 v = &fc->fixvar[fixvar_idx++].var;
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021183 name = v->di_key;
21184 STRCPY(name, "000");
Bram Moolenaar33570922005-01-25 22:26:29 +000021185 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021186 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaar33570922005-01-25 22:26:29 +000021187 v->di_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021188 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021189 v->di_tv.vval.v_list = &fc->l_varlist;
21190 vim_memset(&fc->l_varlist, 0, sizeof(list_T));
21191 fc->l_varlist.lv_refcount = DO_NOT_FREE_CNT;
21192 fc->l_varlist.lv_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021193
21194 /*
21195 * Set a:firstline to "firstline" and a:lastline to "lastline".
21196 * Set a:name to named arguments.
21197 * Set a:N to the "..." arguments.
21198 */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021199 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "firstline",
Bram Moolenaar33570922005-01-25 22:26:29 +000021200 (varnumber_T)firstline);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021201 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "lastline",
Bram Moolenaar33570922005-01-25 22:26:29 +000021202 (varnumber_T)lastline);
21203 for (i = 0; i < argcount; ++i)
21204 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021205 ai = i - fp->uf_args.ga_len;
Bram Moolenaar33570922005-01-25 22:26:29 +000021206 if (ai < 0)
21207 /* named argument a:name */
21208 name = FUNCARG(fp, i);
21209 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000021210 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021211 /* "..." argument a:1, a:2, etc. */
21212 sprintf((char *)numbuf, "%d", ai + 1);
21213 name = numbuf;
21214 }
21215 if (fixvar_idx < FIXVAR_CNT && STRLEN(name) <= VAR_SHORT_LEN)
21216 {
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021217 v = &fc->fixvar[fixvar_idx++].var;
Bram Moolenaar33570922005-01-25 22:26:29 +000021218 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21219 }
21220 else
21221 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021222 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
21223 + STRLEN(name)));
Bram Moolenaar33570922005-01-25 22:26:29 +000021224 if (v == NULL)
21225 break;
21226 v->di_flags = DI_FLAGS_RO;
21227 }
21228 STRCPY(v->di_key, name);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021229 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaar33570922005-01-25 22:26:29 +000021230
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021231 /* Note: the values are copied directly to avoid alloc/free.
21232 * "argvars" must have VAR_FIXED for v_lock. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021233 v->di_tv = argvars[i];
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021234 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021235
21236 if (ai >= 0 && ai < MAX_FUNC_ARGS)
21237 {
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021238 list_append(&fc->l_varlist, &fc->l_listitems[ai]);
21239 fc->l_listitems[ai].li_tv = argvars[i];
21240 fc->l_listitems[ai].li_tv.v_lock = VAR_FIXED;
Bram Moolenaare9a41262005-01-15 22:18:47 +000021241 }
21242 }
21243
Bram Moolenaar071d4272004-06-13 20:20:40 +000021244 /* Don't redraw while executing the function. */
21245 ++RedrawingDisabled;
21246 save_sourcing_name = sourcing_name;
21247 save_sourcing_lnum = sourcing_lnum;
21248 sourcing_lnum = 1;
21249 sourcing_name = alloc((unsigned)((save_sourcing_name == NULL ? 0
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021250 : STRLEN(save_sourcing_name)) + STRLEN(fp->uf_name) + 13));
Bram Moolenaar071d4272004-06-13 20:20:40 +000021251 if (sourcing_name != NULL)
21252 {
21253 if (save_sourcing_name != NULL
21254 && STRNCMP(save_sourcing_name, "function ", 9) == 0)
21255 sprintf((char *)sourcing_name, "%s..", save_sourcing_name);
21256 else
21257 STRCPY(sourcing_name, "function ");
21258 cat_func_name(sourcing_name + STRLEN(sourcing_name), fp);
21259
21260 if (p_verbose >= 12)
21261 {
21262 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021263 verbose_enter_scroll();
21264
Bram Moolenaar555b2802005-05-19 21:08:39 +000021265 smsg((char_u *)_("calling %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021266 if (p_verbose >= 14)
21267 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021268 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021269 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021270 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021271 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021272
21273 msg_puts((char_u *)"(");
21274 for (i = 0; i < argcount; ++i)
21275 {
21276 if (i > 0)
21277 msg_puts((char_u *)", ");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000021278 if (argvars[i].v_type == VAR_NUMBER)
21279 msg_outnum((long)argvars[i].vval.v_number);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021280 else
21281 {
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021282 s = tv2string(&argvars[i], &tofree, numbuf2, 0);
21283 if (s != NULL)
21284 {
21285 trunc_string(s, buf, MSG_BUF_CLEN);
21286 msg_puts(buf);
21287 vim_free(tofree);
21288 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021289 }
21290 }
21291 msg_puts((char_u *)")");
21292 }
21293 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021294
21295 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021296 --no_wait_return;
21297 }
21298 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021299#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021300 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021301 {
21302 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
21303 func_do_profile(fp);
21304 if (fp->uf_profiling
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021305 || (fc->caller != NULL && fc->caller->func->uf_profiling))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021306 {
21307 ++fp->uf_tm_count;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021308 profile_start(&call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021309 profile_zero(&fp->uf_tm_children);
21310 }
21311 script_prof_save(&wait_start);
21312 }
21313#endif
21314
Bram Moolenaar071d4272004-06-13 20:20:40 +000021315 save_current_SID = current_SID;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021316 current_SID = fp->uf_script_ID;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021317 save_did_emsg = did_emsg;
21318 did_emsg = FALSE;
21319
21320 /* call do_cmdline() to execute the lines */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021321 do_cmdline(NULL, get_func_line, (void *)fc,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021322 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
21323
21324 --RedrawingDisabled;
21325
21326 /* when the function was aborted because of an error, return -1 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021327 if ((did_emsg && (fp->uf_flags & FC_ABORT)) || rettv->v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021328 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021329 clear_tv(rettv);
21330 rettv->v_type = VAR_NUMBER;
21331 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021332 }
21333
Bram Moolenaar05159a02005-02-26 23:04:13 +000021334#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021335 if (do_profiling == PROF_YES && (fp->uf_profiling
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021336 || (fc->caller != NULL && fc->caller->func->uf_profiling)))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021337 {
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021338 profile_end(&call_start);
21339 profile_sub_wait(&wait_start, &call_start);
21340 profile_add(&fp->uf_tm_total, &call_start);
21341 profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021342 if (fc->caller != NULL && fc->caller->func->uf_profiling)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021343 {
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021344 profile_add(&fc->caller->func->uf_tm_children, &call_start);
21345 profile_add(&fc->caller->func->uf_tml_children, &call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021346 }
21347 }
21348#endif
21349
Bram Moolenaar071d4272004-06-13 20:20:40 +000021350 /* when being verbose, mention the return value */
21351 if (p_verbose >= 12)
21352 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021353 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021354 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021355
Bram Moolenaar071d4272004-06-13 20:20:40 +000021356 if (aborting())
Bram Moolenaar555b2802005-05-19 21:08:39 +000021357 smsg((char_u *)_("%s aborted"), sourcing_name);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021358 else if (fc->rettv->v_type == VAR_NUMBER)
Bram Moolenaar555b2802005-05-19 21:08:39 +000021359 smsg((char_u *)_("%s returning #%ld"), sourcing_name,
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021360 (long)fc->rettv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +000021361 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000021362 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000021363 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021364 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021365 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021366 char_u *s;
Bram Moolenaar758711c2005-02-02 23:11:38 +000021367
Bram Moolenaar555b2802005-05-19 21:08:39 +000021368 /* The value may be very long. Skip the middle part, so that we
21369 * have some idea how it starts and ends. smsg() would always
21370 * truncate it at the end. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021371 s = tv2string(fc->rettv, &tofree, numbuf2, 0);
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021372 if (s != NULL)
21373 {
21374 trunc_string(s, buf, MSG_BUF_CLEN);
21375 smsg((char_u *)_("%s returning %s"), sourcing_name, buf);
21376 vim_free(tofree);
21377 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021378 }
21379 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021380
21381 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021382 --no_wait_return;
21383 }
21384
21385 vim_free(sourcing_name);
21386 sourcing_name = save_sourcing_name;
21387 sourcing_lnum = save_sourcing_lnum;
21388 current_SID = save_current_SID;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021389#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021390 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021391 script_prof_restore(&wait_start);
21392#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021393
21394 if (p_verbose >= 12 && sourcing_name != NULL)
21395 {
21396 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021397 verbose_enter_scroll();
21398
Bram Moolenaar555b2802005-05-19 21:08:39 +000021399 smsg((char_u *)_("continuing in %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021400 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021401
21402 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021403 --no_wait_return;
21404 }
21405
21406 did_emsg |= save_did_emsg;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021407 current_funccal = fc->caller;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021408 --depth;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021409
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +000021410 /* If the a:000 list and the l: and a: dicts are not referenced we can
21411 * free the funccall_T and what's in it. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021412 if (fc->l_varlist.lv_refcount == DO_NOT_FREE_CNT
21413 && fc->l_vars.dv_refcount == DO_NOT_FREE_CNT
21414 && fc->l_avars.dv_refcount == DO_NOT_FREE_CNT)
21415 {
21416 free_funccal(fc, FALSE);
21417 }
21418 else
21419 {
21420 hashitem_T *hi;
21421 listitem_T *li;
21422 int todo;
21423
21424 /* "fc" is still in use. This can happen when returning "a:000" or
21425 * assigning "l:" to a global variable.
21426 * Link "fc" in the list for garbage collection later. */
21427 fc->caller = previous_funccal;
21428 previous_funccal = fc;
21429
21430 /* Make a copy of the a: variables, since we didn't do that above. */
21431 todo = (int)fc->l_avars.dv_hashtab.ht_used;
21432 for (hi = fc->l_avars.dv_hashtab.ht_array; todo > 0; ++hi)
21433 {
21434 if (!HASHITEM_EMPTY(hi))
21435 {
21436 --todo;
21437 v = HI2DI(hi);
21438 copy_tv(&v->di_tv, &v->di_tv);
21439 }
21440 }
21441
21442 /* Make a copy of the a:000 items, since we didn't do that above. */
21443 for (li = fc->l_varlist.lv_first; li != NULL; li = li->li_next)
21444 copy_tv(&li->li_tv, &li->li_tv);
21445 }
21446}
21447
21448/*
21449 * Return TRUE if items in "fc" do not have "copyID". That means they are not
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +000021450 * referenced from anywhere that is in use.
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021451 */
21452 static int
21453can_free_funccal(fc, copyID)
21454 funccall_T *fc;
21455 int copyID;
21456{
21457 return (fc->l_varlist.lv_copyID != copyID
21458 && fc->l_vars.dv_copyID != copyID
21459 && fc->l_avars.dv_copyID != copyID);
21460}
21461
21462/*
21463 * Free "fc" and what it contains.
21464 */
21465 static void
21466free_funccal(fc, free_val)
21467 funccall_T *fc;
21468 int free_val; /* a: vars were allocated */
21469{
21470 listitem_T *li;
21471
21472 /* The a: variables typevals may not have been allocated, only free the
21473 * allocated variables. */
21474 vars_clear_ext(&fc->l_avars.dv_hashtab, free_val);
21475
21476 /* free all l: variables */
21477 vars_clear(&fc->l_vars.dv_hashtab);
21478
21479 /* Free the a:000 variables if they were allocated. */
21480 if (free_val)
21481 for (li = fc->l_varlist.lv_first; li != NULL; li = li->li_next)
21482 clear_tv(&li->li_tv);
21483
21484 vim_free(fc);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021485}
21486
21487/*
Bram Moolenaar33570922005-01-25 22:26:29 +000021488 * Add a number variable "name" to dict "dp" with value "nr".
21489 */
21490 static void
21491add_nr_var(dp, v, name, nr)
21492 dict_T *dp;
21493 dictitem_T *v;
21494 char *name;
21495 varnumber_T nr;
21496{
21497 STRCPY(v->di_key, name);
21498 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21499 hash_add(&dp->dv_hashtab, DI2HIKEY(v));
21500 v->di_tv.v_type = VAR_NUMBER;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021501 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021502 v->di_tv.vval.v_number = nr;
21503}
21504
21505/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000021506 * ":return [expr]"
21507 */
21508 void
21509ex_return(eap)
21510 exarg_T *eap;
21511{
21512 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000021513 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021514 int returning = FALSE;
21515
21516 if (current_funccal == NULL)
21517 {
21518 EMSG(_("E133: :return not inside a function"));
21519 return;
21520 }
21521
21522 if (eap->skip)
21523 ++emsg_skip;
21524
21525 eap->nextcmd = NULL;
21526 if ((*arg != NUL && *arg != '|' && *arg != '\n')
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021527 && eval0(arg, &rettv, &eap->nextcmd, !eap->skip) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021528 {
21529 if (!eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021530 returning = do_return(eap, FALSE, TRUE, &rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021531 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021532 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021533 }
21534 /* It's safer to return also on error. */
21535 else if (!eap->skip)
21536 {
21537 /*
21538 * Return unless the expression evaluation has been cancelled due to an
21539 * aborting error, an interrupt, or an exception.
21540 */
21541 if (!aborting())
21542 returning = do_return(eap, FALSE, TRUE, NULL);
21543 }
21544
21545 /* When skipping or the return gets pending, advance to the next command
21546 * in this line (!returning). Otherwise, ignore the rest of the line.
21547 * Following lines will be ignored by get_func_line(). */
21548 if (returning)
21549 eap->nextcmd = NULL;
21550 else if (eap->nextcmd == NULL) /* no argument */
21551 eap->nextcmd = check_nextcmd(arg);
21552
21553 if (eap->skip)
21554 --emsg_skip;
21555}
21556
21557/*
21558 * Return from a function. Possibly makes the return pending. Also called
21559 * for a pending return at the ":endtry" or after returning from an extra
21560 * do_cmdline(). "reanimate" is used in the latter case. "is_cmd" is set
Bram Moolenaar33570922005-01-25 22:26:29 +000021561 * when called due to a ":return" command. "rettv" may point to a typval_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021562 * with the return rettv. Returns TRUE when the return can be carried out,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021563 * FALSE when the return gets pending.
21564 */
21565 int
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021566do_return(eap, reanimate, is_cmd, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021567 exarg_T *eap;
21568 int reanimate;
21569 int is_cmd;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021570 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021571{
21572 int idx;
21573 struct condstack *cstack = eap->cstack;
21574
21575 if (reanimate)
21576 /* Undo the return. */
21577 current_funccal->returned = FALSE;
21578
21579 /*
21580 * Cleanup (and inactivate) conditionals, but stop when a try conditional
21581 * not in its finally clause (which then is to be executed next) is found.
21582 * In this case, make the ":return" pending for execution at the ":endtry".
21583 * Otherwise, return normally.
21584 */
21585 idx = cleanup_conditionals(eap->cstack, 0, TRUE);
21586 if (idx >= 0)
21587 {
21588 cstack->cs_pending[idx] = CSTP_RETURN;
21589
21590 if (!is_cmd && !reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021591 /* A pending return again gets pending. "rettv" points to an
21592 * allocated variable with the rettv of the original ":return"'s
Bram Moolenaar071d4272004-06-13 20:20:40 +000021593 * argument if present or is NULL else. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021594 cstack->cs_rettv[idx] = rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021595 else
21596 {
21597 /* When undoing a return in order to make it pending, get the stored
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021598 * return rettv. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021599 if (reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021600 rettv = current_funccal->rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021601
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021602 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021603 {
21604 /* Store the value of the pending return. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021605 if ((cstack->cs_rettv[idx] = alloc_tv()) != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000021606 *(typval_T *)cstack->cs_rettv[idx] = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021607 else
21608 EMSG(_(e_outofmem));
21609 }
21610 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021611 cstack->cs_rettv[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021612
21613 if (reanimate)
21614 {
21615 /* The pending return value could be overwritten by a ":return"
21616 * without argument in a finally clause; reset the default
21617 * return value. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021618 current_funccal->rettv->v_type = VAR_NUMBER;
21619 current_funccal->rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021620 }
21621 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021622 report_make_pending(CSTP_RETURN, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021623 }
21624 else
21625 {
21626 current_funccal->returned = TRUE;
21627
21628 /* If the return is carried out now, store the return value. For
21629 * a return immediately after reanimation, the value is already
21630 * there. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021631 if (!reanimate && rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021632 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021633 clear_tv(current_funccal->rettv);
Bram Moolenaar33570922005-01-25 22:26:29 +000021634 *current_funccal->rettv = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021635 if (!is_cmd)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021636 vim_free(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021637 }
21638 }
21639
21640 return idx < 0;
21641}
21642
21643/*
21644 * Free the variable with a pending return value.
21645 */
21646 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021647discard_pending_return(rettv)
21648 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021649{
Bram Moolenaar33570922005-01-25 22:26:29 +000021650 free_tv((typval_T *)rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021651}
21652
21653/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021654 * Generate a return command for producing the value of "rettv". The result
Bram Moolenaar071d4272004-06-13 20:20:40 +000021655 * is an allocated string. Used by report_pending() for verbose messages.
21656 */
21657 char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021658get_return_cmd(rettv)
21659 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021660{
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021661 char_u *s = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021662 char_u *tofree = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021663 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021664
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021665 if (rettv != NULL)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021666 s = echo_string((typval_T *)rettv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021667 if (s == NULL)
21668 s = (char_u *)"";
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021669
21670 STRCPY(IObuff, ":return ");
21671 STRNCPY(IObuff + 8, s, IOSIZE - 8);
21672 if (STRLEN(s) + 8 >= IOSIZE)
21673 STRCPY(IObuff + IOSIZE - 4, "...");
21674 vim_free(tofree);
21675 return vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021676}
21677
21678/*
21679 * Get next function line.
21680 * Called by do_cmdline() to get the next line.
21681 * Returns allocated string, or NULL for end of function.
21682 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021683 char_u *
21684get_func_line(c, cookie, indent)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000021685 int c UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021686 void *cookie;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000021687 int indent UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021688{
Bram Moolenaar33570922005-01-25 22:26:29 +000021689 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021690 ufunc_T *fp = fcp->func;
21691 char_u *retval;
21692 garray_T *gap; /* growarray with function lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021693
21694 /* If breakpoints have been added/deleted need to check for it. */
21695 if (fcp->dbg_tick != debug_tick)
21696 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021697 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021698 sourcing_lnum);
21699 fcp->dbg_tick = debug_tick;
21700 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021701#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021702 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021703 func_line_end(cookie);
21704#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021705
Bram Moolenaar05159a02005-02-26 23:04:13 +000021706 gap = &fp->uf_lines;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021707 if (((fp->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
21708 || fcp->returned)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021709 retval = NULL;
21710 else
21711 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021712 /* Skip NULL lines (continuation lines). */
21713 while (fcp->linenr < gap->ga_len
21714 && ((char_u **)(gap->ga_data))[fcp->linenr] == NULL)
21715 ++fcp->linenr;
21716 if (fcp->linenr >= gap->ga_len)
21717 retval = NULL;
21718 else
21719 {
21720 retval = vim_strsave(((char_u **)(gap->ga_data))[fcp->linenr++]);
21721 sourcing_lnum = fcp->linenr;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021722#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021723 if (do_profiling == PROF_YES)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021724 func_line_start(cookie);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021725#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021726 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021727 }
21728
21729 /* Did we encounter a breakpoint? */
21730 if (fcp->breakpoint != 0 && fcp->breakpoint <= sourcing_lnum)
21731 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021732 dbg_breakpoint(fp->uf_name, sourcing_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021733 /* Find next breakpoint. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000021734 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021735 sourcing_lnum);
21736 fcp->dbg_tick = debug_tick;
21737 }
21738
21739 return retval;
21740}
21741
Bram Moolenaar05159a02005-02-26 23:04:13 +000021742#if defined(FEAT_PROFILE) || defined(PROTO)
21743/*
21744 * Called when starting to read a function line.
21745 * "sourcing_lnum" must be correct!
21746 * When skipping lines it may not actually be executed, but we won't find out
21747 * until later and we need to store the time now.
21748 */
21749 void
21750func_line_start(cookie)
21751 void *cookie;
21752{
21753 funccall_T *fcp = (funccall_T *)cookie;
21754 ufunc_T *fp = fcp->func;
21755
21756 if (fp->uf_profiling && sourcing_lnum >= 1
21757 && sourcing_lnum <= fp->uf_lines.ga_len)
21758 {
21759 fp->uf_tml_idx = sourcing_lnum - 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021760 /* Skip continuation lines. */
21761 while (fp->uf_tml_idx > 0 && FUNCLINE(fp, fp->uf_tml_idx) == NULL)
21762 --fp->uf_tml_idx;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021763 fp->uf_tml_execed = FALSE;
21764 profile_start(&fp->uf_tml_start);
21765 profile_zero(&fp->uf_tml_children);
21766 profile_get_wait(&fp->uf_tml_wait);
21767 }
21768}
21769
21770/*
21771 * Called when actually executing a function line.
21772 */
21773 void
21774func_line_exec(cookie)
21775 void *cookie;
21776{
21777 funccall_T *fcp = (funccall_T *)cookie;
21778 ufunc_T *fp = fcp->func;
21779
21780 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21781 fp->uf_tml_execed = TRUE;
21782}
21783
21784/*
21785 * Called when done with a function line.
21786 */
21787 void
21788func_line_end(cookie)
21789 void *cookie;
21790{
21791 funccall_T *fcp = (funccall_T *)cookie;
21792 ufunc_T *fp = fcp->func;
21793
21794 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21795 {
21796 if (fp->uf_tml_execed)
21797 {
21798 ++fp->uf_tml_count[fp->uf_tml_idx];
21799 profile_end(&fp->uf_tml_start);
21800 profile_sub_wait(&fp->uf_tml_wait, &fp->uf_tml_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021801 profile_add(&fp->uf_tml_total[fp->uf_tml_idx], &fp->uf_tml_start);
Bram Moolenaar1056d982006-03-09 22:37:52 +000021802 profile_self(&fp->uf_tml_self[fp->uf_tml_idx], &fp->uf_tml_start,
21803 &fp->uf_tml_children);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021804 }
21805 fp->uf_tml_idx = -1;
21806 }
21807}
21808#endif
21809
Bram Moolenaar071d4272004-06-13 20:20:40 +000021810/*
21811 * Return TRUE if the currently active function should be ended, because a
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021812 * return was encountered or an error occurred. Used inside a ":while".
Bram Moolenaar071d4272004-06-13 20:20:40 +000021813 */
21814 int
21815func_has_ended(cookie)
21816 void *cookie;
21817{
Bram Moolenaar33570922005-01-25 22:26:29 +000021818 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021819
21820 /* Ignore the "abort" flag if the abortion behavior has been changed due to
21821 * an error inside a try conditional. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021822 return (((fcp->func->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
Bram Moolenaar071d4272004-06-13 20:20:40 +000021823 || fcp->returned);
21824}
21825
21826/*
21827 * return TRUE if cookie indicates a function which "abort"s on errors.
21828 */
21829 int
21830func_has_abort(cookie)
21831 void *cookie;
21832{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021833 return ((funccall_T *)cookie)->func->uf_flags & FC_ABORT;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021834}
21835
21836#if defined(FEAT_VIMINFO) || defined(FEAT_SESSION)
21837typedef enum
21838{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021839 VAR_FLAVOUR_DEFAULT, /* doesn't start with uppercase */
21840 VAR_FLAVOUR_SESSION, /* starts with uppercase, some lower */
21841 VAR_FLAVOUR_VIMINFO /* all uppercase */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021842} var_flavour_T;
21843
21844static var_flavour_T var_flavour __ARGS((char_u *varname));
21845
21846 static var_flavour_T
21847var_flavour(varname)
21848 char_u *varname;
21849{
21850 char_u *p = varname;
21851
21852 if (ASCII_ISUPPER(*p))
21853 {
21854 while (*(++p))
21855 if (ASCII_ISLOWER(*p))
21856 return VAR_FLAVOUR_SESSION;
21857 return VAR_FLAVOUR_VIMINFO;
21858 }
21859 else
21860 return VAR_FLAVOUR_DEFAULT;
21861}
21862#endif
21863
21864#if defined(FEAT_VIMINFO) || defined(PROTO)
21865/*
21866 * Restore global vars that start with a capital from the viminfo file
21867 */
21868 int
21869read_viminfo_varlist(virp, writing)
21870 vir_T *virp;
21871 int writing;
21872{
21873 char_u *tab;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021874 int type = VAR_NUMBER;
Bram Moolenaar33570922005-01-25 22:26:29 +000021875 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021876
21877 if (!writing && (find_viminfo_parameter('!') != NULL))
21878 {
21879 tab = vim_strchr(virp->vir_line + 1, '\t');
21880 if (tab != NULL)
21881 {
21882 *tab++ = '\0'; /* isolate the variable name */
21883 if (*tab == 'S') /* string var */
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021884 type = VAR_STRING;
21885#ifdef FEAT_FLOAT
21886 else if (*tab == 'F')
21887 type = VAR_FLOAT;
21888#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021889
21890 tab = vim_strchr(tab, '\t');
21891 if (tab != NULL)
21892 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021893 tv.v_type = type;
21894 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021895 tv.vval.v_string = viminfo_readstring(virp,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021896 (int)(tab - virp->vir_line + 1), TRUE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021897#ifdef FEAT_FLOAT
21898 else if (type == VAR_FLOAT)
21899 (void)string2float(tab + 1, &tv.vval.v_float);
21900#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021901 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021902 tv.vval.v_number = atol((char *)tab + 1);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021903 set_var(virp->vir_line + 1, &tv, FALSE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021904 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021905 vim_free(tv.vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021906 }
21907 }
21908 }
21909
21910 return viminfo_readline(virp);
21911}
21912
21913/*
21914 * Write global vars that start with a capital to the viminfo file
21915 */
21916 void
21917write_viminfo_varlist(fp)
21918 FILE *fp;
21919{
Bram Moolenaar33570922005-01-25 22:26:29 +000021920 hashitem_T *hi;
21921 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021922 int todo;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021923 char *s;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021924 char_u *p;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021925 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021926 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021927
21928 if (find_viminfo_parameter('!') == NULL)
21929 return;
21930
21931 fprintf(fp, _("\n# global variables:\n"));
Bram Moolenaara7043832005-01-21 11:56:39 +000021932
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021933 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021934 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021935 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021936 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021937 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021938 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021939 this_var = HI2DI(hi);
21940 if (var_flavour(this_var->di_key) == VAR_FLAVOUR_VIMINFO)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021941 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021942 switch (this_var->di_tv.v_type)
Bram Moolenaara7043832005-01-21 11:56:39 +000021943 {
21944 case VAR_STRING: s = "STR"; break;
21945 case VAR_NUMBER: s = "NUM"; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021946#ifdef FEAT_FLOAT
21947 case VAR_FLOAT: s = "FLO"; break;
21948#endif
Bram Moolenaara7043832005-01-21 11:56:39 +000021949 default: continue;
21950 }
Bram Moolenaar33570922005-01-25 22:26:29 +000021951 fprintf(fp, "!%s\t%s\t", this_var->di_key, s);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021952 p = echo_string(&this_var->di_tv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021953 if (p != NULL)
21954 viminfo_writestring(fp, p);
Bram Moolenaara7043832005-01-21 11:56:39 +000021955 vim_free(tofree);
21956 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021957 }
21958 }
21959}
21960#endif
21961
21962#if defined(FEAT_SESSION) || defined(PROTO)
21963 int
21964store_session_globals(fd)
21965 FILE *fd;
21966{
Bram Moolenaar33570922005-01-25 22:26:29 +000021967 hashitem_T *hi;
21968 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021969 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021970 char_u *p, *t;
21971
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021972 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021973 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021974 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021975 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021976 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021977 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021978 this_var = HI2DI(hi);
21979 if ((this_var->di_tv.v_type == VAR_NUMBER
21980 || this_var->di_tv.v_type == VAR_STRING)
21981 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021982 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021983 /* Escape special characters with a backslash. Turn a LF and
21984 * CR into \n and \r. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021985 p = vim_strsave_escaped(get_tv_string(&this_var->di_tv),
Bram Moolenaara7043832005-01-21 11:56:39 +000021986 (char_u *)"\\\"\n\r");
21987 if (p == NULL) /* out of memory */
21988 break;
21989 for (t = p; *t != NUL; ++t)
21990 if (*t == '\n')
21991 *t = 'n';
21992 else if (*t == '\r')
21993 *t = 'r';
21994 if ((fprintf(fd, "let %s = %c%s%c",
Bram Moolenaar33570922005-01-25 22:26:29 +000021995 this_var->di_key,
21996 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21997 : ' ',
21998 p,
21999 (this_var->di_tv.v_type == VAR_STRING) ? '"'
22000 : ' ') < 0)
Bram Moolenaara7043832005-01-21 11:56:39 +000022001 || put_eol(fd) == FAIL)
22002 {
22003 vim_free(p);
22004 return FAIL;
22005 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022006 vim_free(p);
22007 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022008#ifdef FEAT_FLOAT
22009 else if (this_var->di_tv.v_type == VAR_FLOAT
22010 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
22011 {
22012 float_T f = this_var->di_tv.vval.v_float;
22013 int sign = ' ';
22014
22015 if (f < 0)
22016 {
22017 f = -f;
22018 sign = '-';
22019 }
22020 if ((fprintf(fd, "let %s = %c&%f",
22021 this_var->di_key, sign, f) < 0)
22022 || put_eol(fd) == FAIL)
22023 return FAIL;
22024 }
22025#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000022026 }
22027 }
22028 return OK;
22029}
22030#endif
22031
Bram Moolenaar661b1822005-07-28 22:36:45 +000022032/*
22033 * Display script name where an item was last set.
22034 * Should only be invoked when 'verbose' is non-zero.
22035 */
22036 void
22037last_set_msg(scriptID)
22038 scid_T scriptID;
22039{
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000022040 char_u *p;
22041
Bram Moolenaar661b1822005-07-28 22:36:45 +000022042 if (scriptID != 0)
22043 {
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000022044 p = home_replace_save(NULL, get_scriptname(scriptID));
22045 if (p != NULL)
22046 {
22047 verbose_enter();
22048 MSG_PUTS(_("\n\tLast set from "));
22049 MSG_PUTS(p);
22050 vim_free(p);
22051 verbose_leave();
22052 }
Bram Moolenaar661b1822005-07-28 22:36:45 +000022053 }
22054}
22055
Bram Moolenaard812df62008-11-09 12:46:09 +000022056/*
22057 * List v:oldfiles in a nice way.
22058 */
Bram Moolenaard812df62008-11-09 12:46:09 +000022059 void
22060ex_oldfiles(eap)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000022061 exarg_T *eap UNUSED;
Bram Moolenaard812df62008-11-09 12:46:09 +000022062{
22063 list_T *l = vimvars[VV_OLDFILES].vv_list;
22064 listitem_T *li;
22065 int nr = 0;
22066
22067 if (l == NULL)
22068 msg((char_u *)_("No old files"));
22069 else
22070 {
22071 msg_start();
22072 msg_scroll = TRUE;
22073 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
22074 {
22075 msg_outnum((long)++nr);
22076 MSG_PUTS(": ");
22077 msg_outtrans(get_tv_string(&li->li_tv));
22078 msg_putchar('\n');
22079 out_flush(); /* output one line at a time */
22080 ui_breakcheck();
22081 }
22082 /* Assume "got_int" was set to truncate the listing. */
22083 got_int = FALSE;
22084
22085#ifdef FEAT_BROWSE_CMD
22086 if (cmdmod.browse)
22087 {
22088 quit_more = FALSE;
22089 nr = prompt_for_number(FALSE);
22090 msg_starthere();
22091 if (nr > 0)
22092 {
22093 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
22094 (long)nr);
22095
22096 if (p != NULL)
22097 {
22098 p = expand_env_save(p);
22099 eap->arg = p;
22100 eap->cmdidx = CMD_edit;
22101 cmdmod.browse = FALSE;
22102 do_exedit(eap, NULL);
22103 vim_free(p);
22104 }
22105 }
22106 }
22107#endif
22108 }
22109}
22110
Bram Moolenaar071d4272004-06-13 20:20:40 +000022111#endif /* FEAT_EVAL */
22112
Bram Moolenaar071d4272004-06-13 20:20:40 +000022113
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022114#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022115
22116#ifdef WIN3264
22117/*
22118 * Functions for ":8" filename modifier: get 8.3 version of a filename.
22119 */
22120static int get_short_pathname __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22121static int shortpath_for_invalid_fname __ARGS((char_u **fname, char_u **bufp, int *fnamelen));
22122static int shortpath_for_partial __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22123
22124/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022125 * Get the short path (8.3) for the filename in "fnamep".
22126 * Only works for a valid file name.
22127 * When the path gets longer "fnamep" is changed and the allocated buffer
22128 * is put in "bufp".
22129 * *fnamelen is the length of "fnamep" and set to 0 for a nonexistent path.
22130 * Returns OK on success, FAIL on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022131 */
22132 static int
22133get_short_pathname(fnamep, bufp, fnamelen)
22134 char_u **fnamep;
22135 char_u **bufp;
22136 int *fnamelen;
22137{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022138 int l, len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022139 char_u *newbuf;
22140
22141 len = *fnamelen;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022142 l = GetShortPathName(*fnamep, *fnamep, len);
22143 if (l > len - 1)
22144 {
22145 /* If that doesn't work (not enough space), then save the string
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022146 * and try again with a new buffer big enough. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022147 newbuf = vim_strnsave(*fnamep, l);
22148 if (newbuf == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022149 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022150
22151 vim_free(*bufp);
22152 *fnamep = *bufp = newbuf;
22153
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022154 /* Really should always succeed, as the buffer is big enough. */
22155 l = GetShortPathName(*fnamep, *fnamep, l+1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022156 }
22157
22158 *fnamelen = l;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022159 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022160}
22161
22162/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022163 * Get the short path (8.3) for the filename in "fname". The converted
22164 * path is returned in "bufp".
22165 *
22166 * Some of the directories specified in "fname" may not exist. This function
22167 * will shorten the existing directories at the beginning of the path and then
22168 * append the remaining non-existing path.
22169 *
22170 * fname - Pointer to the filename to shorten. On return, contains the
22171 * pointer to the shortened pathname
22172 * bufp - Pointer to an allocated buffer for the filename.
22173 * fnamelen - Length of the filename pointed to by fname
22174 *
22175 * Returns OK on success (or nothing done) and FAIL on failure (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +000022176 */
22177 static int
22178shortpath_for_invalid_fname(fname, bufp, fnamelen)
22179 char_u **fname;
22180 char_u **bufp;
22181 int *fnamelen;
22182{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022183 char_u *short_fname, *save_fname, *pbuf_unused;
22184 char_u *endp, *save_endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022185 char_u ch;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022186 int old_len, len;
22187 int new_len, sfx_len;
22188 int retval = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022189
22190 /* Make a copy */
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022191 old_len = *fnamelen;
22192 save_fname = vim_strnsave(*fname, old_len);
22193 pbuf_unused = NULL;
22194 short_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022195
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022196 endp = save_fname + old_len - 1; /* Find the end of the copy */
22197 save_endp = endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022198
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022199 /*
22200 * Try shortening the supplied path till it succeeds by removing one
22201 * directory at a time from the tail of the path.
22202 */
22203 len = 0;
22204 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022205 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022206 /* go back one path-separator */
22207 while (endp > save_fname && !after_pathsep(save_fname, endp + 1))
22208 --endp;
22209 if (endp <= save_fname)
22210 break; /* processed the complete path */
22211
22212 /*
22213 * Replace the path separator with a NUL and try to shorten the
22214 * resulting path.
22215 */
22216 ch = *endp;
22217 *endp = 0;
22218 short_fname = save_fname;
Bram Moolenaarc236c162008-07-13 17:41:49 +000022219 len = (int)STRLEN(short_fname) + 1;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022220 if (get_short_pathname(&short_fname, &pbuf_unused, &len) == FAIL)
22221 {
22222 retval = FAIL;
22223 goto theend;
22224 }
22225 *endp = ch; /* preserve the string */
22226
22227 if (len > 0)
22228 break; /* successfully shortened the path */
22229
22230 /* failed to shorten the path. Skip the path separator */
22231 --endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022232 }
22233
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022234 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022235 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022236 /*
22237 * Succeeded in shortening the path. Now concatenate the shortened
22238 * path with the remaining path at the tail.
22239 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022240
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022241 /* Compute the length of the new path. */
22242 sfx_len = (int)(save_endp - endp) + 1;
22243 new_len = len + sfx_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022244
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022245 *fnamelen = new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022246 vim_free(*bufp);
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022247 if (new_len > old_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022248 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022249 /* There is not enough space in the currently allocated string,
22250 * copy it to a buffer big enough. */
22251 *fname = *bufp = vim_strnsave(short_fname, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022252 if (*fname == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022253 {
22254 retval = FAIL;
22255 goto theend;
22256 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022257 }
22258 else
22259 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022260 /* Transfer short_fname to the main buffer (it's big enough),
22261 * unless get_short_pathname() did its work in-place. */
22262 *fname = *bufp = save_fname;
22263 if (short_fname != save_fname)
22264 vim_strncpy(save_fname, short_fname, len);
22265 save_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022266 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022267
22268 /* concat the not-shortened part of the path */
22269 vim_strncpy(*fname + len, endp, sfx_len);
22270 (*fname)[new_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022271 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022272
22273theend:
22274 vim_free(pbuf_unused);
22275 vim_free(save_fname);
22276
22277 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022278}
22279
22280/*
22281 * Get a pathname for a partial path.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022282 * Returns OK for success, FAIL for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022283 */
22284 static int
22285shortpath_for_partial(fnamep, bufp, fnamelen)
22286 char_u **fnamep;
22287 char_u **bufp;
22288 int *fnamelen;
22289{
22290 int sepcount, len, tflen;
22291 char_u *p;
22292 char_u *pbuf, *tfname;
22293 int hasTilde;
22294
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022295 /* Count up the path separators from the RHS.. so we know which part
22296 * of the path to return. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022297 sepcount = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022298 for (p = *fnamep; p < *fnamep + *fnamelen; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022299 if (vim_ispathsep(*p))
22300 ++sepcount;
22301
22302 /* Need full path first (use expand_env() to remove a "~/") */
22303 hasTilde = (**fnamep == '~');
22304 if (hasTilde)
22305 pbuf = tfname = expand_env_save(*fnamep);
22306 else
22307 pbuf = tfname = FullName_save(*fnamep, FALSE);
22308
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000022309 len = tflen = (int)STRLEN(tfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022310
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022311 if (get_short_pathname(&tfname, &pbuf, &len) == FAIL)
22312 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022313
22314 if (len == 0)
22315 {
22316 /* Don't have a valid filename, so shorten the rest of the
22317 * path if we can. This CAN give us invalid 8.3 filenames, but
22318 * there's not a lot of point in guessing what it might be.
22319 */
22320 len = tflen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022321 if (shortpath_for_invalid_fname(&tfname, &pbuf, &len) == FAIL)
22322 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022323 }
22324
22325 /* Count the paths backward to find the beginning of the desired string. */
22326 for (p = tfname + len - 1; p >= tfname; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022327 {
22328#ifdef FEAT_MBYTE
22329 if (has_mbyte)
22330 p -= mb_head_off(tfname, p);
22331#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000022332 if (vim_ispathsep(*p))
22333 {
22334 if (sepcount == 0 || (hasTilde && sepcount == 1))
22335 break;
22336 else
22337 sepcount --;
22338 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022339 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022340 if (hasTilde)
22341 {
22342 --p;
22343 if (p >= tfname)
22344 *p = '~';
22345 else
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022346 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022347 }
22348 else
22349 ++p;
22350
22351 /* Copy in the string - p indexes into tfname - allocated at pbuf */
22352 vim_free(*bufp);
22353 *fnamelen = (int)STRLEN(p);
22354 *bufp = pbuf;
22355 *fnamep = p;
22356
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022357 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022358}
22359#endif /* WIN3264 */
22360
22361/*
22362 * Adjust a filename, according to a string of modifiers.
22363 * *fnamep must be NUL terminated when called. When returning, the length is
22364 * determined by *fnamelen.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022365 * Returns VALID_ flags or -1 for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022366 * When there is an error, *fnamep is set to NULL.
22367 */
22368 int
22369modify_fname(src, usedlen, fnamep, bufp, fnamelen)
22370 char_u *src; /* string with modifiers */
22371 int *usedlen; /* characters after src that are used */
22372 char_u **fnamep; /* file name so far */
22373 char_u **bufp; /* buffer for allocated file name or NULL */
22374 int *fnamelen; /* length of fnamep */
22375{
22376 int valid = 0;
22377 char_u *tail;
22378 char_u *s, *p, *pbuf;
22379 char_u dirname[MAXPATHL];
22380 int c;
22381 int has_fullname = 0;
22382#ifdef WIN3264
22383 int has_shortname = 0;
22384#endif
22385
22386repeat:
22387 /* ":p" - full path/file_name */
22388 if (src[*usedlen] == ':' && src[*usedlen + 1] == 'p')
22389 {
22390 has_fullname = 1;
22391
22392 valid |= VALID_PATH;
22393 *usedlen += 2;
22394
22395 /* Expand "~/path" for all systems and "~user/path" for Unix and VMS */
22396 if ((*fnamep)[0] == '~'
22397#if !defined(UNIX) && !(defined(VMS) && defined(USER_HOME))
22398 && ((*fnamep)[1] == '/'
22399# ifdef BACKSLASH_IN_FILENAME
22400 || (*fnamep)[1] == '\\'
22401# endif
22402 || (*fnamep)[1] == NUL)
22403
22404#endif
22405 )
22406 {
22407 *fnamep = expand_env_save(*fnamep);
22408 vim_free(*bufp); /* free any allocated file name */
22409 *bufp = *fnamep;
22410 if (*fnamep == NULL)
22411 return -1;
22412 }
22413
22414 /* When "/." or "/.." is used: force expansion to get rid of it. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022415 for (p = *fnamep; *p != NUL; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022416 {
22417 if (vim_ispathsep(*p)
22418 && p[1] == '.'
22419 && (p[2] == NUL
22420 || vim_ispathsep(p[2])
22421 || (p[2] == '.'
22422 && (p[3] == NUL || vim_ispathsep(p[3])))))
22423 break;
22424 }
22425
22426 /* FullName_save() is slow, don't use it when not needed. */
22427 if (*p != NUL || !vim_isAbsName(*fnamep))
22428 {
22429 *fnamep = FullName_save(*fnamep, *p != NUL);
22430 vim_free(*bufp); /* free any allocated file name */
22431 *bufp = *fnamep;
22432 if (*fnamep == NULL)
22433 return -1;
22434 }
22435
22436 /* Append a path separator to a directory. */
22437 if (mch_isdir(*fnamep))
22438 {
22439 /* Make room for one or two extra characters. */
22440 *fnamep = vim_strnsave(*fnamep, (int)STRLEN(*fnamep) + 2);
22441 vim_free(*bufp); /* free any allocated file name */
22442 *bufp = *fnamep;
22443 if (*fnamep == NULL)
22444 return -1;
22445 add_pathsep(*fnamep);
22446 }
22447 }
22448
22449 /* ":." - path relative to the current directory */
22450 /* ":~" - path relative to the home directory */
22451 /* ":8" - shortname path - postponed till after */
22452 while (src[*usedlen] == ':'
22453 && ((c = src[*usedlen + 1]) == '.' || c == '~' || c == '8'))
22454 {
22455 *usedlen += 2;
22456 if (c == '8')
22457 {
22458#ifdef WIN3264
22459 has_shortname = 1; /* Postpone this. */
22460#endif
22461 continue;
22462 }
22463 pbuf = NULL;
22464 /* Need full path first (use expand_env() to remove a "~/") */
22465 if (!has_fullname)
22466 {
22467 if (c == '.' && **fnamep == '~')
22468 p = pbuf = expand_env_save(*fnamep);
22469 else
22470 p = pbuf = FullName_save(*fnamep, FALSE);
22471 }
22472 else
22473 p = *fnamep;
22474
22475 has_fullname = 0;
22476
22477 if (p != NULL)
22478 {
22479 if (c == '.')
22480 {
22481 mch_dirname(dirname, MAXPATHL);
22482 s = shorten_fname(p, dirname);
22483 if (s != NULL)
22484 {
22485 *fnamep = s;
22486 if (pbuf != NULL)
22487 {
22488 vim_free(*bufp); /* free any allocated file name */
22489 *bufp = pbuf;
22490 pbuf = NULL;
22491 }
22492 }
22493 }
22494 else
22495 {
22496 home_replace(NULL, p, dirname, MAXPATHL, TRUE);
22497 /* Only replace it when it starts with '~' */
22498 if (*dirname == '~')
22499 {
22500 s = vim_strsave(dirname);
22501 if (s != NULL)
22502 {
22503 *fnamep = s;
22504 vim_free(*bufp);
22505 *bufp = s;
22506 }
22507 }
22508 }
22509 vim_free(pbuf);
22510 }
22511 }
22512
22513 tail = gettail(*fnamep);
22514 *fnamelen = (int)STRLEN(*fnamep);
22515
22516 /* ":h" - head, remove "/file_name", can be repeated */
22517 /* Don't remove the first "/" or "c:\" */
22518 while (src[*usedlen] == ':' && src[*usedlen + 1] == 'h')
22519 {
22520 valid |= VALID_HEAD;
22521 *usedlen += 2;
22522 s = get_past_head(*fnamep);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022523 while (tail > s && after_pathsep(s, tail))
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022524 mb_ptr_back(*fnamep, tail);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022525 *fnamelen = (int)(tail - *fnamep);
22526#ifdef VMS
22527 if (*fnamelen > 0)
22528 *fnamelen += 1; /* the path separator is part of the path */
22529#endif
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022530 if (*fnamelen == 0)
22531 {
22532 /* Result is empty. Turn it into "." to make ":cd %:h" work. */
22533 p = vim_strsave((char_u *)".");
22534 if (p == NULL)
22535 return -1;
22536 vim_free(*bufp);
22537 *bufp = *fnamep = tail = p;
22538 *fnamelen = 1;
22539 }
22540 else
22541 {
22542 while (tail > s && !after_pathsep(s, tail))
22543 mb_ptr_back(*fnamep, tail);
22544 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022545 }
22546
22547 /* ":8" - shortname */
22548 if (src[*usedlen] == ':' && src[*usedlen + 1] == '8')
22549 {
22550 *usedlen += 2;
22551#ifdef WIN3264
22552 has_shortname = 1;
22553#endif
22554 }
22555
22556#ifdef WIN3264
22557 /* Check shortname after we have done 'heads' and before we do 'tails'
22558 */
22559 if (has_shortname)
22560 {
22561 pbuf = NULL;
22562 /* Copy the string if it is shortened by :h */
22563 if (*fnamelen < (int)STRLEN(*fnamep))
22564 {
22565 p = vim_strnsave(*fnamep, *fnamelen);
22566 if (p == 0)
22567 return -1;
22568 vim_free(*bufp);
22569 *bufp = *fnamep = p;
22570 }
22571
22572 /* Split into two implementations - makes it easier. First is where
22573 * there isn't a full name already, second is where there is.
22574 */
22575 if (!has_fullname && !vim_isAbsName(*fnamep))
22576 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022577 if (shortpath_for_partial(fnamep, bufp, fnamelen) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022578 return -1;
22579 }
22580 else
22581 {
22582 int l;
22583
22584 /* Simple case, already have the full-name
22585 * Nearly always shorter, so try first time. */
22586 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022587 if (get_short_pathname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022588 return -1;
22589
22590 if (l == 0)
22591 {
22592 /* Couldn't find the filename.. search the paths.
22593 */
22594 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022595 if (shortpath_for_invalid_fname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022596 return -1;
22597 }
22598 *fnamelen = l;
22599 }
22600 }
22601#endif /* WIN3264 */
22602
22603 /* ":t" - tail, just the basename */
22604 if (src[*usedlen] == ':' && src[*usedlen + 1] == 't')
22605 {
22606 *usedlen += 2;
22607 *fnamelen -= (int)(tail - *fnamep);
22608 *fnamep = tail;
22609 }
22610
22611 /* ":e" - extension, can be repeated */
22612 /* ":r" - root, without extension, can be repeated */
22613 while (src[*usedlen] == ':'
22614 && (src[*usedlen + 1] == 'e' || src[*usedlen + 1] == 'r'))
22615 {
22616 /* find a '.' in the tail:
22617 * - for second :e: before the current fname
22618 * - otherwise: The last '.'
22619 */
22620 if (src[*usedlen + 1] == 'e' && *fnamep > tail)
22621 s = *fnamep - 2;
22622 else
22623 s = *fnamep + *fnamelen - 1;
22624 for ( ; s > tail; --s)
22625 if (s[0] == '.')
22626 break;
22627 if (src[*usedlen + 1] == 'e') /* :e */
22628 {
22629 if (s > tail)
22630 {
22631 *fnamelen += (int)(*fnamep - (s + 1));
22632 *fnamep = s + 1;
22633#ifdef VMS
22634 /* cut version from the extension */
22635 s = *fnamep + *fnamelen - 1;
22636 for ( ; s > *fnamep; --s)
22637 if (s[0] == ';')
22638 break;
22639 if (s > *fnamep)
22640 *fnamelen = s - *fnamep;
22641#endif
22642 }
22643 else if (*fnamep <= tail)
22644 *fnamelen = 0;
22645 }
22646 else /* :r */
22647 {
22648 if (s > tail) /* remove one extension */
22649 *fnamelen = (int)(s - *fnamep);
22650 }
22651 *usedlen += 2;
22652 }
22653
22654 /* ":s?pat?foo?" - substitute */
22655 /* ":gs?pat?foo?" - global substitute */
22656 if (src[*usedlen] == ':'
22657 && (src[*usedlen + 1] == 's'
22658 || (src[*usedlen + 1] == 'g' && src[*usedlen + 2] == 's')))
22659 {
22660 char_u *str;
22661 char_u *pat;
22662 char_u *sub;
22663 int sep;
22664 char_u *flags;
22665 int didit = FALSE;
22666
22667 flags = (char_u *)"";
22668 s = src + *usedlen + 2;
22669 if (src[*usedlen + 1] == 'g')
22670 {
22671 flags = (char_u *)"g";
22672 ++s;
22673 }
22674
22675 sep = *s++;
22676 if (sep)
22677 {
22678 /* find end of pattern */
22679 p = vim_strchr(s, sep);
22680 if (p != NULL)
22681 {
22682 pat = vim_strnsave(s, (int)(p - s));
22683 if (pat != NULL)
22684 {
22685 s = p + 1;
22686 /* find end of substitution */
22687 p = vim_strchr(s, sep);
22688 if (p != NULL)
22689 {
22690 sub = vim_strnsave(s, (int)(p - s));
22691 str = vim_strnsave(*fnamep, *fnamelen);
22692 if (sub != NULL && str != NULL)
22693 {
22694 *usedlen = (int)(p + 1 - src);
22695 s = do_string_sub(str, pat, sub, flags);
22696 if (s != NULL)
22697 {
22698 *fnamep = s;
22699 *fnamelen = (int)STRLEN(s);
22700 vim_free(*bufp);
22701 *bufp = s;
22702 didit = TRUE;
22703 }
22704 }
22705 vim_free(sub);
22706 vim_free(str);
22707 }
22708 vim_free(pat);
22709 }
22710 }
22711 /* after using ":s", repeat all the modifiers */
22712 if (didit)
22713 goto repeat;
22714 }
22715 }
22716
22717 return valid;
22718}
22719
22720/*
22721 * Perform a substitution on "str" with pattern "pat" and substitute "sub".
22722 * "flags" can be "g" to do a global substitute.
22723 * Returns an allocated string, NULL for error.
22724 */
22725 char_u *
22726do_string_sub(str, pat, sub, flags)
22727 char_u *str;
22728 char_u *pat;
22729 char_u *sub;
22730 char_u *flags;
22731{
22732 int sublen;
22733 regmatch_T regmatch;
22734 int i;
22735 int do_all;
22736 char_u *tail;
22737 garray_T ga;
22738 char_u *ret;
22739 char_u *save_cpo;
22740
22741 /* Make 'cpoptions' empty, so that the 'l' flag doesn't work here */
22742 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022743 p_cpo = empty_option;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022744
22745 ga_init2(&ga, 1, 200);
22746
22747 do_all = (flags[0] == 'g');
22748
22749 regmatch.rm_ic = p_ic;
22750 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
22751 if (regmatch.regprog != NULL)
22752 {
22753 tail = str;
22754 while (vim_regexec_nl(&regmatch, str, (colnr_T)(tail - str)))
22755 {
22756 /*
22757 * Get some space for a temporary buffer to do the substitution
22758 * into. It will contain:
22759 * - The text up to where the match is.
22760 * - The substituted text.
22761 * - The text after the match.
22762 */
22763 sublen = vim_regsub(&regmatch, sub, tail, FALSE, TRUE, FALSE);
22764 if (ga_grow(&ga, (int)(STRLEN(tail) + sublen -
22765 (regmatch.endp[0] - regmatch.startp[0]))) == FAIL)
22766 {
22767 ga_clear(&ga);
22768 break;
22769 }
22770
22771 /* copy the text up to where the match is */
22772 i = (int)(regmatch.startp[0] - tail);
22773 mch_memmove((char_u *)ga.ga_data + ga.ga_len, tail, (size_t)i);
22774 /* add the substituted text */
22775 (void)vim_regsub(&regmatch, sub, (char_u *)ga.ga_data
22776 + ga.ga_len + i, TRUE, TRUE, FALSE);
22777 ga.ga_len += i + sublen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022778 /* avoid getting stuck on a match with an empty string */
22779 if (tail == regmatch.endp[0])
22780 {
22781 if (*tail == NUL)
22782 break;
22783 *((char_u *)ga.ga_data + ga.ga_len) = *tail++;
22784 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022785 }
22786 else
22787 {
22788 tail = regmatch.endp[0];
22789 if (*tail == NUL)
22790 break;
22791 }
22792 if (!do_all)
22793 break;
22794 }
22795
22796 if (ga.ga_data != NULL)
22797 STRCPY((char *)ga.ga_data + ga.ga_len, tail);
22798
22799 vim_free(regmatch.regprog);
22800 }
22801
22802 ret = vim_strsave(ga.ga_data == NULL ? str : (char_u *)ga.ga_data);
22803 ga_clear(&ga);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022804 if (p_cpo == empty_option)
22805 p_cpo = save_cpo;
22806 else
22807 /* Darn, evaluating {sub} expression changed the value. */
22808 free_string_option(save_cpo);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022809
22810 return ret;
22811}
22812
22813#endif /* defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) */