blob: e5ed0fa52046a52d3c3834b3ff2b14bcef6084ef [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
35/*
Bram Moolenaar33570922005-01-25 22:26:29 +000036 * In a hashtab item "hi_key" points to "di_key" in a dictitem.
37 * This avoids adding a pointer to the hashtab item.
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000038 * DI2HIKEY() converts a dictitem pointer to a hashitem key pointer.
39 * HIKEY2DI() converts a hashitem key pointer to a dictitem pointer.
40 * HI2DI() converts a hashitem pointer to a dictitem pointer.
41 */
Bram Moolenaar33570922005-01-25 22:26:29 +000042static dictitem_T dumdi;
Bram Moolenaara7043832005-01-21 11:56:39 +000043#define DI2HIKEY(di) ((di)->di_key)
Bram Moolenaar33570922005-01-25 22:26:29 +000044#define HIKEY2DI(p) ((dictitem_T *)(p - (dumdi.di_key - (char_u *)&dumdi)))
Bram Moolenaara7043832005-01-21 11:56:39 +000045#define HI2DI(hi) HIKEY2DI((hi)->hi_key)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000046
47/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000048 * Structure returned by get_lval() and used by set_var_lval().
49 * For a plain name:
50 * "name" points to the variable name.
51 * "exp_name" is NULL.
52 * "tv" is NULL
53 * For a magic braces name:
54 * "name" points to the expanded variable name.
55 * "exp_name" is non-NULL, to be freed later.
56 * "tv" is NULL
57 * For an index in a list:
58 * "name" points to the (expanded) variable name.
59 * "exp_name" NULL or non-NULL, to be freed later.
60 * "tv" points to the (first) list item value
61 * "li" points to the (first) list item
62 * "range", "n1", "n2" and "empty2" indicate what items are used.
63 * For an existing Dict item:
64 * "name" points to the (expanded) variable name.
65 * "exp_name" NULL or non-NULL, to be freed later.
66 * "tv" points to the dict item value
67 * "newkey" is NULL
68 * For a non-existing Dict item:
69 * "name" points to the (expanded) variable name.
70 * "exp_name" NULL or non-NULL, to be freed later.
Bram Moolenaar33570922005-01-25 22:26:29 +000071 * "tv" points to the Dictionary typval_T
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000072 * "newkey" is the key for the new item.
73 */
74typedef struct lval_S
75{
76 char_u *ll_name; /* start of variable name (can be NULL) */
77 char_u *ll_exp_name; /* NULL or expanded name in allocated memory. */
Bram Moolenaar33570922005-01-25 22:26:29 +000078 typval_T *ll_tv; /* Typeval of item being used. If "newkey"
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000079 isn't NULL it's the Dict to which to add
80 the item. */
Bram Moolenaar33570922005-01-25 22:26:29 +000081 listitem_T *ll_li; /* The list item or NULL. */
82 list_T *ll_list; /* The list or NULL. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000083 int ll_range; /* TRUE when a [i:j] range was used */
84 long ll_n1; /* First index for list */
85 long ll_n2; /* Second index for list range */
86 int ll_empty2; /* Second index is empty: [i:] */
Bram Moolenaar33570922005-01-25 22:26:29 +000087 dict_T *ll_dict; /* The Dictionary or NULL */
88 dictitem_T *ll_di; /* The dictitem or NULL */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000089 char_u *ll_newkey; /* New key for Dict in alloc. mem or NULL. */
Bram Moolenaar33570922005-01-25 22:26:29 +000090} lval_T;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000091
Bram Moolenaar8c711452005-01-14 21:53:12 +000092
Bram Moolenaarc70646c2005-01-04 21:52:38 +000093static char *e_letunexp = N_("E18: Unexpected characters in :let");
Bram Moolenaare49b69a2005-01-08 16:11:57 +000094static char *e_listidx = N_("E684: list index out of range: %ld");
Bram Moolenaarc70646c2005-01-04 21:52:38 +000095static char *e_undefvar = N_("E121: Undefined variable: %s");
96static char *e_missbrac = N_("E111: Missing ']'");
Bram Moolenaar8c711452005-01-14 21:53:12 +000097static char *e_listarg = N_("E686: Argument of %s must be a List");
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +000098static char *e_listdictarg = N_("E712: Argument of %s must be a List or Dictionary");
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000099static char *e_emptykey = N_("E713: Cannot use empty key for Dictionary");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000100static char *e_listreq = N_("E714: List required");
101static char *e_dictreq = N_("E715: Dictionary required");
Bram Moolenaar8c711452005-01-14 21:53:12 +0000102static char *e_toomanyarg = N_("E118: Too many arguments for function: %s");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000103static char *e_dictkey = N_("E716: Key not present in Dictionary: %s");
104static char *e_funcexts = N_("E122: Function %s already exists, add ! to replace it");
105static char *e_funcdict = N_("E717: Dictionary entry already exists");
106static char *e_funcref = N_("E718: Funcref required");
107static char *e_dictrange = N_("E719: Cannot use [:] with a Dictionary");
108static char *e_letwrong = N_("E734: Wrong variable type for %s=");
Bram Moolenaar05159a02005-02-26 23:04:13 +0000109static char *e_nofunc = N_("E130: Unknown function: %s");
Bram Moolenaar92124a32005-06-17 22:03:40 +0000110static char *e_illvar = N_("E461: Illegal variable name: %s");
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000111
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000112/*
Bram Moolenaar33570922005-01-25 22:26:29 +0000113 * All user-defined global variables are stored in dictionary "globvardict".
114 * "globvars_var" is the variable that is used for "g:".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115 */
Bram Moolenaar33570922005-01-25 22:26:29 +0000116static dict_T globvardict;
117static dictitem_T globvars_var;
118#define globvarht globvardict.dv_hashtab
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119
120/*
Bram Moolenaar532c7802005-01-27 14:44:31 +0000121 * Old Vim variables such as "v:version" are also available without the "v:".
122 * Also in functions. We need a special hashtable for them.
123 */
Bram Moolenaar4debb442005-06-01 21:57:40 +0000124static hashtab_T compat_hashtab;
Bram Moolenaar532c7802005-01-27 14:44:31 +0000125
126/*
Bram Moolenaard9fba312005-06-26 22:34:35 +0000127 * When recursively copying lists and dicts we need to remember which ones we
128 * have done to avoid endless recursiveness. This unique ID is used for that.
129 */
130static int current_copyID = 0;
131
132/*
Bram Moolenaar33570922005-01-25 22:26:29 +0000133 * Array to hold the hashtab with variables local to each sourced script.
134 * Each item holds a variable (nameless) that points to the dict_T.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135 */
Bram Moolenaar33570922005-01-25 22:26:29 +0000136typedef struct
137{
138 dictitem_T sv_var;
139 dict_T sv_dict;
140} scriptvar_T;
141
142static garray_T ga_scripts = {0, 0, sizeof(scriptvar_T), 4, NULL};
143#define SCRIPT_SV(id) (((scriptvar_T *)ga_scripts.ga_data)[(id) - 1])
144#define SCRIPT_VARS(id) (SCRIPT_SV(id).sv_dict.dv_hashtab)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145
146static int echo_attr = 0; /* attributes used for ":echo" */
147
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000148/* Values for trans_function_name() argument: */
149#define TFN_INT 1 /* internal function name OK */
150#define TFN_QUIET 2 /* no error messages */
151
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152/*
153 * Structure to hold info for a user function.
154 */
155typedef struct ufunc ufunc_T;
156
157struct ufunc
158{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000159 int uf_varargs; /* variable nr of arguments */
160 int uf_flags;
161 int uf_calls; /* nr of active calls */
162 garray_T uf_args; /* arguments */
163 garray_T uf_lines; /* function lines */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000164#ifdef FEAT_PROFILE
165 int uf_profiling; /* TRUE when func is being profiled */
166 /* profiling the function as a whole */
167 int uf_tm_count; /* nr of calls */
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000168 proftime_T uf_tm_total; /* time spent in function + children */
169 proftime_T uf_tm_self; /* time spent in function itself */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000170 proftime_T uf_tm_children; /* time spent in children this call */
171 /* profiling the function per line */
172 int *uf_tml_count; /* nr of times line was executed */
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000173 proftime_T *uf_tml_total; /* time spent in a line + children */
174 proftime_T *uf_tml_self; /* time spent in a line itself */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000175 proftime_T uf_tml_start; /* start time for current line */
176 proftime_T uf_tml_children; /* time spent in children for this line */
177 proftime_T uf_tml_wait; /* start wait time for current line */
178 int uf_tml_idx; /* index of line being timed; -1 if none */
179 int uf_tml_execed; /* line being timed was executed */
180#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000181 scid_T uf_script_ID; /* ID of script where function was defined,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182 used for s: variables */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000183 int uf_refcount; /* for numbered function: reference count */
184 char_u uf_name[1]; /* name of function (actually longer); can
185 start with <SNR>123_ (<SNR> is K_SPECIAL
186 KS_EXTRA KE_SNR) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187};
188
189/* function flags */
190#define FC_ABORT 1 /* abort function on error */
191#define FC_RANGE 2 /* function accepts range */
Bram Moolenaare9a41262005-01-15 22:18:47 +0000192#define FC_DICT 4 /* Dict function, uses "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193
194/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000195 * All user-defined functions are found in this hashtable.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 */
Bram Moolenaar4debb442005-06-01 21:57:40 +0000197static hashtab_T func_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000199/* The names of packages that once were loaded are remembered. */
Bram Moolenaaraa35dd12006-04-29 22:03:41 +0000200static garray_T ga_loaded = {0, 0, sizeof(char_u *), 4, NULL};
201
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000202/* list heads for garbage collection */
203static dict_T *first_dict = NULL; /* list of all dicts */
204static list_T *first_list = NULL; /* list of all lists */
205
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000206/* From user function to hashitem and back. */
207static ufunc_T dumuf;
208#define UF2HIKEY(fp) ((fp)->uf_name)
209#define HIKEY2UF(p) ((ufunc_T *)(p - (dumuf.uf_name - (char_u *)&dumuf)))
210#define HI2UF(hi) HIKEY2UF((hi)->hi_key)
211
212#define FUNCARG(fp, j) ((char_u **)(fp->uf_args.ga_data))[j]
213#define FUNCLINE(fp, j) ((char_u **)(fp->uf_lines.ga_data))[j]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214
Bram Moolenaar33570922005-01-25 22:26:29 +0000215#define MAX_FUNC_ARGS 20 /* maximum number of function arguments */
216#define VAR_SHORT_LEN 20 /* short variable name length */
217#define FIXVAR_CNT 12 /* number of fixed variables */
218
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219/* structure to hold info for a function that is currently being executed. */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000220typedef struct funccall_S funccall_T;
221
222struct funccall_S
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223{
224 ufunc_T *func; /* function being called */
225 int linenr; /* next line to be executed */
226 int returned; /* ":return" used */
Bram Moolenaar33570922005-01-25 22:26:29 +0000227 struct /* fixed variables for arguments */
228 {
229 dictitem_T var; /* variable (without room for name) */
230 char_u room[VAR_SHORT_LEN]; /* room for the name */
231 } fixvar[FIXVAR_CNT];
232 dict_T l_vars; /* l: local function variables */
233 dictitem_T l_vars_var; /* variable for l: scope */
234 dict_T l_avars; /* a: argument variables */
235 dictitem_T l_avars_var; /* variable for a: scope */
236 list_T l_varlist; /* list for a:000 */
237 listitem_T l_listitems[MAX_FUNC_ARGS]; /* listitems for a:000 */
238 typval_T *rettv; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239 linenr_T breakpoint; /* next line with breakpoint or zero */
240 int dbg_tick; /* debug_tick when breakpoint was set */
241 int level; /* top nesting level of executed function */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000242#ifdef FEAT_PROFILE
243 proftime_T prof_child; /* time spent in a child */
244#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000245 funccall_T *caller; /* calling function or NULL */
246};
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247
248/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +0000249 * Info used by a ":for" loop.
250 */
Bram Moolenaar33570922005-01-25 22:26:29 +0000251typedef struct
Bram Moolenaar3d60ec22005-01-05 22:19:46 +0000252{
253 int fi_semicolon; /* TRUE if ending in '; var]' */
254 int fi_varcount; /* nr of variables in the list */
Bram Moolenaar33570922005-01-25 22:26:29 +0000255 listwatch_T fi_lw; /* keep an eye on the item used. */
256 list_T *fi_list; /* list being used */
257} forinfo_T;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +0000258
Bram Moolenaar3d60ec22005-01-05 22:19:46 +0000259/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000260 * Struct used by trans_function_name()
261 */
262typedef struct
263{
Bram Moolenaar33570922005-01-25 22:26:29 +0000264 dict_T *fd_dict; /* Dictionary used */
Bram Moolenaar532c7802005-01-27 14:44:31 +0000265 char_u *fd_newkey; /* new key in "dict" in allocated memory */
Bram Moolenaar33570922005-01-25 22:26:29 +0000266 dictitem_T *fd_di; /* Dictionary item used */
267} funcdict_T;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000268
Bram Moolenaara7043832005-01-21 11:56:39 +0000269
270/*
Bram Moolenaar33570922005-01-25 22:26:29 +0000271 * Array to hold the value of v: variables.
272 * The value is in a dictitem, so that it can also be used in the v: scope.
273 * The reason to use this table anyway is for very quick access to the
274 * variables with the VV_ defines.
275 */
276#include "version.h"
277
278/* values for vv_flags: */
279#define VV_COMPAT 1 /* compatible, also used without "v:" */
280#define VV_RO 2 /* read-only */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000281#define VV_RO_SBX 4 /* read-only in the sandbox */
Bram Moolenaar33570922005-01-25 22:26:29 +0000282
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000283#define VV_NAME(s, t) s, {{t}}, {0}
Bram Moolenaar33570922005-01-25 22:26:29 +0000284
285static struct vimvar
286{
287 char *vv_name; /* name of variable, without v: */
Bram Moolenaar33570922005-01-25 22:26:29 +0000288 dictitem_T vv_di; /* value and name for key */
289 char vv_filler[16]; /* space for LONGEST name below!!! */
290 char vv_flags; /* VV_COMPAT, VV_RO, VV_RO_SBX */
291} vimvars[VV_LEN] =
292{
293 /*
294 * The order here must match the VV_ defines in vim.h!
295 * Initializing a union does not work, leave tv.vval empty to get zero's.
296 */
297 {VV_NAME("count", VAR_NUMBER), VV_COMPAT+VV_RO},
298 {VV_NAME("count1", VAR_NUMBER), VV_RO},
299 {VV_NAME("prevcount", VAR_NUMBER), VV_RO},
300 {VV_NAME("errmsg", VAR_STRING), VV_COMPAT},
301 {VV_NAME("warningmsg", VAR_STRING), 0},
302 {VV_NAME("statusmsg", VAR_STRING), 0},
303 {VV_NAME("shell_error", VAR_NUMBER), VV_COMPAT+VV_RO},
304 {VV_NAME("this_session", VAR_STRING), VV_COMPAT},
305 {VV_NAME("version", VAR_NUMBER), VV_COMPAT+VV_RO},
306 {VV_NAME("lnum", VAR_NUMBER), VV_RO_SBX},
307 {VV_NAME("termresponse", VAR_STRING), VV_RO},
308 {VV_NAME("fname", VAR_STRING), VV_RO},
309 {VV_NAME("lang", VAR_STRING), VV_RO},
310 {VV_NAME("lc_time", VAR_STRING), VV_RO},
311 {VV_NAME("ctype", VAR_STRING), VV_RO},
312 {VV_NAME("charconvert_from", VAR_STRING), VV_RO},
313 {VV_NAME("charconvert_to", VAR_STRING), VV_RO},
314 {VV_NAME("fname_in", VAR_STRING), VV_RO},
315 {VV_NAME("fname_out", VAR_STRING), VV_RO},
316 {VV_NAME("fname_new", VAR_STRING), VV_RO},
317 {VV_NAME("fname_diff", VAR_STRING), VV_RO},
318 {VV_NAME("cmdarg", VAR_STRING), VV_RO},
319 {VV_NAME("foldstart", VAR_NUMBER), VV_RO_SBX},
320 {VV_NAME("foldend", VAR_NUMBER), VV_RO_SBX},
321 {VV_NAME("folddashes", VAR_STRING), VV_RO_SBX},
322 {VV_NAME("foldlevel", VAR_NUMBER), VV_RO_SBX},
323 {VV_NAME("progname", VAR_STRING), VV_RO},
324 {VV_NAME("servername", VAR_STRING), VV_RO},
325 {VV_NAME("dying", VAR_NUMBER), VV_RO},
326 {VV_NAME("exception", VAR_STRING), VV_RO},
327 {VV_NAME("throwpoint", VAR_STRING), VV_RO},
328 {VV_NAME("register", VAR_STRING), VV_RO},
329 {VV_NAME("cmdbang", VAR_NUMBER), VV_RO},
330 {VV_NAME("insertmode", VAR_STRING), VV_RO},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000331 {VV_NAME("val", VAR_UNKNOWN), VV_RO},
332 {VV_NAME("key", VAR_UNKNOWN), VV_RO},
Bram Moolenaar05159a02005-02-26 23:04:13 +0000333 {VV_NAME("profiling", VAR_NUMBER), VV_RO},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000334 {VV_NAME("fcs_reason", VAR_STRING), VV_RO},
335 {VV_NAME("fcs_choice", VAR_STRING), 0},
Bram Moolenaare2ac10d2005-03-07 23:26:06 +0000336 {VV_NAME("beval_bufnr", VAR_NUMBER), VV_RO},
337 {VV_NAME("beval_winnr", VAR_NUMBER), VV_RO},
338 {VV_NAME("beval_lnum", VAR_NUMBER), VV_RO},
339 {VV_NAME("beval_col", VAR_NUMBER), VV_RO},
340 {VV_NAME("beval_text", VAR_STRING), VV_RO},
Bram Moolenaar761b1132005-10-03 22:05:45 +0000341 {VV_NAME("scrollstart", VAR_STRING), 0},
Bram Moolenaard5bc83f2005-12-07 21:07:59 +0000342 {VV_NAME("swapname", VAR_STRING), VV_RO},
343 {VV_NAME("swapchoice", VAR_STRING), 0},
Bram Moolenaar63a121b2005-12-11 21:36:39 +0000344 {VV_NAME("swapcommand", VAR_STRING), VV_RO},
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000345 {VV_NAME("char", VAR_STRING), VV_RO},
Bram Moolenaar219b8702006-11-01 14:32:36 +0000346 {VV_NAME("mouse_win", VAR_NUMBER), 0},
347 {VV_NAME("mouse_lnum", VAR_NUMBER), 0},
348 {VV_NAME("mouse_col", VAR_NUMBER), 0},
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +0000349 {VV_NAME("operator", VAR_STRING), VV_RO},
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000350 {VV_NAME("searchforward", VAR_NUMBER), 0},
Bram Moolenaar33570922005-01-25 22:26:29 +0000351};
352
353/* shorthand */
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000354#define vv_type vv_di.di_tv.v_type
355#define vv_nr vv_di.di_tv.vval.v_number
356#define vv_float vv_di.di_tv.vval.v_float
357#define vv_str vv_di.di_tv.vval.v_string
358#define vv_tv vv_di.di_tv
Bram Moolenaar33570922005-01-25 22:26:29 +0000359
360/*
361 * The v: variables are stored in dictionary "vimvardict".
362 * "vimvars_var" is the variable that is used for the "l:" scope.
363 */
364static dict_T vimvardict;
365static dictitem_T vimvars_var;
366#define vimvarht vimvardict.dv_hashtab
367
Bram Moolenaara40058a2005-07-11 22:42:07 +0000368static void prepare_vimvar __ARGS((int idx, typval_T *save_tv));
369static void restore_vimvar __ARGS((int idx, typval_T *save_tv));
370#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
371static int call_vim_function __ARGS((char_u *func, int argc, char_u **argv, int safe, typval_T *rettv));
372#endif
373static int ex_let_vars __ARGS((char_u *arg, typval_T *tv, int copy, int semicolon, int var_count, char_u *nextchars));
374static char_u *skip_var_list __ARGS((char_u *arg, int *var_count, int *semicolon));
375static char_u *skip_var_one __ARGS((char_u *arg));
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000376static void list_hashtable_vars __ARGS((hashtab_T *ht, char_u *prefix, int empty, int *first));
377static void list_glob_vars __ARGS((int *first));
378static void list_buf_vars __ARGS((int *first));
379static void list_win_vars __ARGS((int *first));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000380#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000381static void list_tab_vars __ARGS((int *first));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000382#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000383static void list_vim_vars __ARGS((int *first));
384static void list_script_vars __ARGS((int *first));
385static void list_func_vars __ARGS((int *first));
386static char_u *list_arg_vars __ARGS((exarg_T *eap, char_u *arg, int *first));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000387static char_u *ex_let_one __ARGS((char_u *arg, typval_T *tv, int copy, char_u *endchars, char_u *op));
388static int check_changedtick __ARGS((char_u *arg));
389static char_u *get_lval __ARGS((char_u *name, typval_T *rettv, lval_T *lp, int unlet, int skip, int quiet, int fne_flags));
390static void clear_lval __ARGS((lval_T *lp));
391static void set_var_lval __ARGS((lval_T *lp, char_u *endp, typval_T *rettv, int copy, char_u *op));
392static int tv_op __ARGS((typval_T *tv1, typval_T *tv2, char_u *op));
393static void list_add_watch __ARGS((list_T *l, listwatch_T *lw));
394static void list_rem_watch __ARGS((list_T *l, listwatch_T *lwrem));
395static void list_fix_watch __ARGS((list_T *l, listitem_T *item));
396static void ex_unletlock __ARGS((exarg_T *eap, char_u *argstart, int deep));
397static int do_unlet_var __ARGS((lval_T *lp, char_u *name_end, int forceit));
398static int do_lock_var __ARGS((lval_T *lp, char_u *name_end, int deep, int lock));
399static void item_lock __ARGS((typval_T *tv, int deep, int lock));
400static int tv_islocked __ARGS((typval_T *tv));
401
Bram Moolenaar33570922005-01-25 22:26:29 +0000402static int eval0 __ARGS((char_u *arg, typval_T *rettv, char_u **nextcmd, int evaluate));
403static int eval1 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
404static int eval2 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
405static int eval3 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
406static int eval4 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
407static int eval5 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +0000408static int eval6 __ARGS((char_u **arg, typval_T *rettv, int evaluate, int want_string));
409static int eval7 __ARGS((char_u **arg, typval_T *rettv, int evaluate, int want_string));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000410
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000411static int eval_index __ARGS((char_u **arg, typval_T *rettv, int evaluate, int verbose));
Bram Moolenaar33570922005-01-25 22:26:29 +0000412static int get_option_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
413static int get_string_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
414static int get_lit_string_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
415static int get_list_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaareddf53b2006-02-27 00:11:10 +0000416static int rettv_list_alloc __ARGS((typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000417static listitem_T *listitem_alloc __ARGS((void));
418static void listitem_free __ARGS((listitem_T *item));
419static void listitem_remove __ARGS((list_T *l, listitem_T *item));
420static long list_len __ARGS((list_T *l));
421static int list_equal __ARGS((list_T *l1, list_T *l2, int ic));
422static int dict_equal __ARGS((dict_T *d1, dict_T *d2, int ic));
423static int tv_equal __ARGS((typval_T *tv1, typval_T *tv2, int ic));
Bram Moolenaar33570922005-01-25 22:26:29 +0000424static listitem_T *list_find __ARGS((list_T *l, long n));
Bram Moolenaara5525202006-03-02 22:52:09 +0000425static long list_find_nr __ARGS((list_T *l, long idx, int *errorp));
Bram Moolenaar33570922005-01-25 22:26:29 +0000426static long list_idx_of_item __ARGS((list_T *l, listitem_T *item));
Bram Moolenaar33570922005-01-25 22:26:29 +0000427static void list_append __ARGS((list_T *l, listitem_T *item));
428static int list_append_tv __ARGS((list_T *l, typval_T *tv));
Bram Moolenaar4463f292005-09-25 22:20:24 +0000429static int list_append_string __ARGS((list_T *l, char_u *str, int len));
430static int list_append_number __ARGS((list_T *l, varnumber_T n));
Bram Moolenaar33570922005-01-25 22:26:29 +0000431static int list_insert_tv __ARGS((list_T *l, typval_T *tv, listitem_T *item));
432static int list_extend __ARGS((list_T *l1, list_T *l2, listitem_T *bef));
433static int list_concat __ARGS((list_T *l1, list_T *l2, typval_T *tv));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000434static list_T *list_copy __ARGS((list_T *orig, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000435static void list_remove __ARGS((list_T *l, listitem_T *item, listitem_T *item2));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000436static char_u *list2string __ARGS((typval_T *tv, int copyID));
437static int list_join __ARGS((garray_T *gap, list_T *l, char_u *sep, int echo, int copyID));
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000438static void set_ref_in_ht __ARGS((hashtab_T *ht, int copyID));
439static void set_ref_in_list __ARGS((list_T *l, int copyID));
440static void set_ref_in_item __ARGS((typval_T *tv, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000441static void dict_unref __ARGS((dict_T *d));
Bram Moolenaar685295c2006-10-15 20:37:38 +0000442static void dict_free __ARGS((dict_T *d, int recurse));
Bram Moolenaar33570922005-01-25 22:26:29 +0000443static dictitem_T *dictitem_alloc __ARGS((char_u *key));
444static dictitem_T *dictitem_copy __ARGS((dictitem_T *org));
445static void dictitem_remove __ARGS((dict_T *dict, dictitem_T *item));
446static void dictitem_free __ARGS((dictitem_T *item));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000447static dict_T *dict_copy __ARGS((dict_T *orig, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000448static int dict_add __ARGS((dict_T *d, dictitem_T *item));
449static long dict_len __ARGS((dict_T *d));
450static dictitem_T *dict_find __ARGS((dict_T *d, char_u *key, int len));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000451static char_u *dict2string __ARGS((typval_T *tv, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000452static int get_dict_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000453static char_u *echo_string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
454static char_u *tv2string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000455static char_u *string_quote __ARGS((char_u *str, int function));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000456#ifdef FEAT_FLOAT
457static int string2float __ARGS((char_u *text, float_T *value));
458#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000459static int get_env_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
460static int find_internal_func __ARGS((char_u *name));
461static char_u *deref_func_name __ARGS((char_u *name, int *lenp));
462static 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));
463static 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 +0000464static void emsg_funcname __ARGS((char *ermsg, char_u *name));
Bram Moolenaar05bb9532008-07-04 09:44:11 +0000465static int non_zero_arg __ARGS((typval_T *argvars));
Bram Moolenaar33570922005-01-25 22:26:29 +0000466
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000467#ifdef FEAT_FLOAT
468static void f_abs __ARGS((typval_T *argvars, typval_T *rettv));
469#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000470static void f_add __ARGS((typval_T *argvars, typval_T *rettv));
471static void f_append __ARGS((typval_T *argvars, typval_T *rettv));
472static void f_argc __ARGS((typval_T *argvars, typval_T *rettv));
473static void f_argidx __ARGS((typval_T *argvars, typval_T *rettv));
474static void f_argv __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000475#ifdef FEAT_FLOAT
476static void f_atan __ARGS((typval_T *argvars, typval_T *rettv));
477#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000478static void f_browse __ARGS((typval_T *argvars, typval_T *rettv));
479static void f_browsedir __ARGS((typval_T *argvars, typval_T *rettv));
480static void f_bufexists __ARGS((typval_T *argvars, typval_T *rettv));
481static void f_buflisted __ARGS((typval_T *argvars, typval_T *rettv));
482static void f_bufloaded __ARGS((typval_T *argvars, typval_T *rettv));
483static void f_bufname __ARGS((typval_T *argvars, typval_T *rettv));
484static void f_bufnr __ARGS((typval_T *argvars, typval_T *rettv));
485static void f_bufwinnr __ARGS((typval_T *argvars, typval_T *rettv));
486static void f_byte2line __ARGS((typval_T *argvars, typval_T *rettv));
487static void f_byteidx __ARGS((typval_T *argvars, typval_T *rettv));
488static void f_call __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000489#ifdef FEAT_FLOAT
490static void f_ceil __ARGS((typval_T *argvars, typval_T *rettv));
491#endif
Bram Moolenaarf0acfce2006-03-17 23:21:19 +0000492static void f_changenr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000493static void f_char2nr __ARGS((typval_T *argvars, typval_T *rettv));
494static void f_cindent __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000495static void f_clearmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000496static void f_col __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar572cb562005-08-05 21:35:02 +0000497#if defined(FEAT_INS_EXPAND)
Bram Moolenaarade00832006-03-10 21:46:58 +0000498static void f_complete __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar572cb562005-08-05 21:35:02 +0000499static void f_complete_add __ARGS((typval_T *argvars, typval_T *rettv));
500static void f_complete_check __ARGS((typval_T *argvars, typval_T *rettv));
501#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000502static void f_confirm __ARGS((typval_T *argvars, typval_T *rettv));
503static void f_copy __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000504#ifdef FEAT_FLOAT
505static void f_cos __ARGS((typval_T *argvars, typval_T *rettv));
506#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000507static void f_count __ARGS((typval_T *argvars, typval_T *rettv));
508static void f_cscope_connection __ARGS((typval_T *argvars, typval_T *rettv));
509static void f_cursor __ARGS((typval_T *argsvars, typval_T *rettv));
510static void f_deepcopy __ARGS((typval_T *argvars, typval_T *rettv));
511static void f_delete __ARGS((typval_T *argvars, typval_T *rettv));
512static void f_did_filetype __ARGS((typval_T *argvars, typval_T *rettv));
513static void f_diff_filler __ARGS((typval_T *argvars, typval_T *rettv));
514static void f_diff_hlID __ARGS((typval_T *argvars, typval_T *rettv));
515static void f_empty __ARGS((typval_T *argvars, typval_T *rettv));
516static void f_escape __ARGS((typval_T *argvars, typval_T *rettv));
517static void f_eval __ARGS((typval_T *argvars, typval_T *rettv));
518static void f_eventhandler __ARGS((typval_T *argvars, typval_T *rettv));
519static void f_executable __ARGS((typval_T *argvars, typval_T *rettv));
520static void f_exists __ARGS((typval_T *argvars, typval_T *rettv));
521static void f_expand __ARGS((typval_T *argvars, typval_T *rettv));
522static void f_extend __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000523static void f_feedkeys __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000524static void f_filereadable __ARGS((typval_T *argvars, typval_T *rettv));
525static void f_filewritable __ARGS((typval_T *argvars, typval_T *rettv));
526static void f_filter __ARGS((typval_T *argvars, typval_T *rettv));
527static void f_finddir __ARGS((typval_T *argvars, typval_T *rettv));
528static void f_findfile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000529#ifdef FEAT_FLOAT
530static void f_float2nr __ARGS((typval_T *argvars, typval_T *rettv));
531static void f_floor __ARGS((typval_T *argvars, typval_T *rettv));
532#endif
Bram Moolenaaraebaf892008-05-28 14:49:58 +0000533static void f_fnameescape __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000534static void f_fnamemodify __ARGS((typval_T *argvars, typval_T *rettv));
535static void f_foldclosed __ARGS((typval_T *argvars, typval_T *rettv));
536static void f_foldclosedend __ARGS((typval_T *argvars, typval_T *rettv));
537static void f_foldlevel __ARGS((typval_T *argvars, typval_T *rettv));
538static void f_foldtext __ARGS((typval_T *argvars, typval_T *rettv));
539static void f_foldtextresult __ARGS((typval_T *argvars, typval_T *rettv));
540static void f_foreground __ARGS((typval_T *argvars, typval_T *rettv));
541static void f_function __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000542static void f_garbagecollect __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000543static void f_get __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar80fc0432005-07-20 22:06:07 +0000544static void f_getbufline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000545static void f_getbufvar __ARGS((typval_T *argvars, typval_T *rettv));
546static void f_getchar __ARGS((typval_T *argvars, typval_T *rettv));
547static void f_getcharmod __ARGS((typval_T *argvars, typval_T *rettv));
548static void f_getcmdline __ARGS((typval_T *argvars, typval_T *rettv));
549static void f_getcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000550static void f_getcmdtype __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000551static void f_getcwd __ARGS((typval_T *argvars, typval_T *rettv));
552static void f_getfontname __ARGS((typval_T *argvars, typval_T *rettv));
553static void f_getfperm __ARGS((typval_T *argvars, typval_T *rettv));
554static void f_getfsize __ARGS((typval_T *argvars, typval_T *rettv));
555static void f_getftime __ARGS((typval_T *argvars, typval_T *rettv));
556static void f_getftype __ARGS((typval_T *argvars, typval_T *rettv));
557static void f_getline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000558static void f_getmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar18081e32008-02-20 19:11:07 +0000559static void f_getpid __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaara5525202006-03-02 22:52:09 +0000560static void f_getpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2641f772005-03-25 21:58:17 +0000561static void f_getqflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000562static void f_getreg __ARGS((typval_T *argvars, typval_T *rettv));
563static void f_getregtype __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000564static void f_gettabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000565static void f_getwinposx __ARGS((typval_T *argvars, typval_T *rettv));
566static void f_getwinposy __ARGS((typval_T *argvars, typval_T *rettv));
567static void f_getwinvar __ARGS((typval_T *argvars, typval_T *rettv));
568static void f_glob __ARGS((typval_T *argvars, typval_T *rettv));
569static void f_globpath __ARGS((typval_T *argvars, typval_T *rettv));
570static void f_has __ARGS((typval_T *argvars, typval_T *rettv));
571static void f_has_key __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard267b9c2007-04-26 15:06:45 +0000572static void f_haslocaldir __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000573static void f_hasmapto __ARGS((typval_T *argvars, typval_T *rettv));
574static void f_histadd __ARGS((typval_T *argvars, typval_T *rettv));
575static void f_histdel __ARGS((typval_T *argvars, typval_T *rettv));
576static void f_histget __ARGS((typval_T *argvars, typval_T *rettv));
577static void f_histnr __ARGS((typval_T *argvars, typval_T *rettv));
578static void f_hlID __ARGS((typval_T *argvars, typval_T *rettv));
579static void f_hlexists __ARGS((typval_T *argvars, typval_T *rettv));
580static void f_hostname __ARGS((typval_T *argvars, typval_T *rettv));
581static void f_iconv __ARGS((typval_T *argvars, typval_T *rettv));
582static void f_indent __ARGS((typval_T *argvars, typval_T *rettv));
583static void f_index __ARGS((typval_T *argvars, typval_T *rettv));
584static void f_input __ARGS((typval_T *argvars, typval_T *rettv));
585static void f_inputdialog __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6efa2b32005-09-10 19:26:26 +0000586static void f_inputlist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000587static void f_inputrestore __ARGS((typval_T *argvars, typval_T *rettv));
588static void f_inputsave __ARGS((typval_T *argvars, typval_T *rettv));
589static void f_inputsecret __ARGS((typval_T *argvars, typval_T *rettv));
590static void f_insert __ARGS((typval_T *argvars, typval_T *rettv));
591static void f_isdirectory __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000592static void f_islocked __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000593static void f_items __ARGS((typval_T *argvars, typval_T *rettv));
594static void f_join __ARGS((typval_T *argvars, typval_T *rettv));
595static void f_keys __ARGS((typval_T *argvars, typval_T *rettv));
596static void f_last_buffer_nr __ARGS((typval_T *argvars, typval_T *rettv));
597static void f_len __ARGS((typval_T *argvars, typval_T *rettv));
598static void f_libcall __ARGS((typval_T *argvars, typval_T *rettv));
599static void f_libcallnr __ARGS((typval_T *argvars, typval_T *rettv));
600static void f_line __ARGS((typval_T *argvars, typval_T *rettv));
601static void f_line2byte __ARGS((typval_T *argvars, typval_T *rettv));
602static void f_lispindent __ARGS((typval_T *argvars, typval_T *rettv));
603static void f_localtime __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000604#ifdef FEAT_FLOAT
605static void f_log10 __ARGS((typval_T *argvars, typval_T *rettv));
606#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000607static void f_map __ARGS((typval_T *argvars, typval_T *rettv));
608static void f_maparg __ARGS((typval_T *argvars, typval_T *rettv));
609static void f_mapcheck __ARGS((typval_T *argvars, typval_T *rettv));
610static void f_match __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000611static void f_matchadd __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000612static void f_matcharg __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000613static void f_matchdelete __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000614static void f_matchend __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000615static void f_matchlist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000616static void f_matchstr __ARGS((typval_T *argvars, typval_T *rettv));
617static void f_max __ARGS((typval_T *argvars, typval_T *rettv));
618static void f_min __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000619#ifdef vim_mkdir
620static void f_mkdir __ARGS((typval_T *argvars, typval_T *rettv));
621#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000622static void f_mode __ARGS((typval_T *argvars, typval_T *rettv));
623static void f_nextnonblank __ARGS((typval_T *argvars, typval_T *rettv));
624static void f_nr2char __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000625static void f_pathshorten __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000626#ifdef FEAT_FLOAT
627static void f_pow __ARGS((typval_T *argvars, typval_T *rettv));
628#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000629static void f_prevnonblank __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000630static void f_printf __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000631static void f_pumvisible __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000632static void f_range __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000633static void f_readfile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaare580b0c2006-03-21 21:33:03 +0000634static void f_reltime __ARGS((typval_T *argvars, typval_T *rettv));
635static void f_reltimestr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000636static void f_remote_expr __ARGS((typval_T *argvars, typval_T *rettv));
637static void f_remote_foreground __ARGS((typval_T *argvars, typval_T *rettv));
638static void f_remote_peek __ARGS((typval_T *argvars, typval_T *rettv));
639static void f_remote_read __ARGS((typval_T *argvars, typval_T *rettv));
640static void f_remote_send __ARGS((typval_T *argvars, typval_T *rettv));
641static void f_remove __ARGS((typval_T *argvars, typval_T *rettv));
642static void f_rename __ARGS((typval_T *argvars, typval_T *rettv));
643static void f_repeat __ARGS((typval_T *argvars, typval_T *rettv));
644static void f_resolve __ARGS((typval_T *argvars, typval_T *rettv));
645static void f_reverse __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000646#ifdef FEAT_FLOAT
647static void f_round __ARGS((typval_T *argvars, typval_T *rettv));
648#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000649static void f_search __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaardd2436f2005-09-05 22:14:46 +0000650static void f_searchdecl __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000651static void f_searchpair __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000652static void f_searchpairpos __ARGS((typval_T *argvars, typval_T *rettv));
653static void f_searchpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000654static void f_server2client __ARGS((typval_T *argvars, typval_T *rettv));
655static void f_serverlist __ARGS((typval_T *argvars, typval_T *rettv));
656static void f_setbufvar __ARGS((typval_T *argvars, typval_T *rettv));
657static void f_setcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
658static void f_setline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000659static void f_setloclist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000660static void f_setmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar0e34f622006-03-03 23:00:03 +0000661static void f_setpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2641f772005-03-25 21:58:17 +0000662static void f_setqflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000663static void f_setreg __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000664static void f_settabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000665static void f_setwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar60a495f2006-10-03 12:44:42 +0000666static void f_shellescape __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000667static void f_simplify __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000668#ifdef FEAT_FLOAT
669static void f_sin __ARGS((typval_T *argvars, typval_T *rettv));
670#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000671static void f_sort __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +0000672static void f_soundfold __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000673static void f_spellbadword __ARGS((typval_T *argvars, typval_T *rettv));
674static void f_spellsuggest __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000675static void f_split __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000676#ifdef FEAT_FLOAT
677static void f_sqrt __ARGS((typval_T *argvars, typval_T *rettv));
678static void f_str2float __ARGS((typval_T *argvars, typval_T *rettv));
679#endif
Bram Moolenaar2c932302006-03-18 21:42:09 +0000680static void f_str2nr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000681#ifdef HAVE_STRFTIME
682static void f_strftime __ARGS((typval_T *argvars, typval_T *rettv));
683#endif
684static void f_stridx __ARGS((typval_T *argvars, typval_T *rettv));
685static void f_string __ARGS((typval_T *argvars, typval_T *rettv));
686static void f_strlen __ARGS((typval_T *argvars, typval_T *rettv));
687static void f_strpart __ARGS((typval_T *argvars, typval_T *rettv));
688static void f_strridx __ARGS((typval_T *argvars, typval_T *rettv));
689static void f_strtrans __ARGS((typval_T *argvars, typval_T *rettv));
690static void f_submatch __ARGS((typval_T *argvars, typval_T *rettv));
691static void f_substitute __ARGS((typval_T *argvars, typval_T *rettv));
692static void f_synID __ARGS((typval_T *argvars, typval_T *rettv));
693static void f_synIDattr __ARGS((typval_T *argvars, typval_T *rettv));
694static void f_synIDtrans __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar9d188ab2008-01-10 21:24:39 +0000695static void f_synstack __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000696static void f_system __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000697static void f_tabpagebuflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000698static void f_tabpagenr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000699static void f_tabpagewinnr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000700static void f_taglist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard43b6cf2005-09-09 19:53:42 +0000701static void f_tagfiles __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000702static void f_tempname __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard52d9742005-08-21 22:20:28 +0000703static void f_test __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000704static void f_tolower __ARGS((typval_T *argvars, typval_T *rettv));
705static void f_toupper __ARGS((typval_T *argvars, typval_T *rettv));
706static void f_tr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000707#ifdef FEAT_FLOAT
708static void f_trunc __ARGS((typval_T *argvars, typval_T *rettv));
709#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000710static void f_type __ARGS((typval_T *argvars, typval_T *rettv));
711static void f_values __ARGS((typval_T *argvars, typval_T *rettv));
712static void f_virtcol __ARGS((typval_T *argvars, typval_T *rettv));
713static void f_visualmode __ARGS((typval_T *argvars, typval_T *rettv));
714static void f_winbufnr __ARGS((typval_T *argvars, typval_T *rettv));
715static void f_wincol __ARGS((typval_T *argvars, typval_T *rettv));
716static void f_winheight __ARGS((typval_T *argvars, typval_T *rettv));
717static void f_winline __ARGS((typval_T *argvars, typval_T *rettv));
718static void f_winnr __ARGS((typval_T *argvars, typval_T *rettv));
719static void f_winrestcmd __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar768b8c42006-03-04 21:58:33 +0000720static void f_winrestview __ARGS((typval_T *argvars, typval_T *rettv));
721static void f_winsaveview __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000722static void f_winwidth __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000723static void f_writefile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000724
Bram Moolenaar0e34f622006-03-03 23:00:03 +0000725static int list2fpos __ARGS((typval_T *arg, pos_T *posp, int *fnump));
Bram Moolenaar477933c2007-07-17 14:32:23 +0000726static pos_T *var2fpos __ARGS((typval_T *varp, int dollar_lnum, int *fnum));
Bram Moolenaar33570922005-01-25 22:26:29 +0000727static int get_env_len __ARGS((char_u **arg));
728static int get_id_len __ARGS((char_u **arg));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000729static int get_name_len __ARGS((char_u **arg, char_u **alias, int evaluate, int verbose));
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000730static char_u *find_name_end __ARGS((char_u *arg, char_u **expr_start, char_u **expr_end, int flags));
731#define FNE_INCL_BR 1 /* find_name_end(): include [] in name */
732#define FNE_CHECK_START 2 /* find_name_end(): check name starts with
733 valid character */
Bram Moolenaara40058a2005-07-11 22:42:07 +0000734static 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 +0000735static int eval_isnamec __ARGS((int c));
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000736static int eval_isnamec1 __ARGS((int c));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000737static int get_var_tv __ARGS((char_u *name, int len, typval_T *rettv, int verbose));
738static int handle_subscript __ARGS((char_u **arg, typval_T *rettv, int evaluate, int verbose));
Bram Moolenaar33570922005-01-25 22:26:29 +0000739static typval_T *alloc_tv __ARGS((void));
740static typval_T *alloc_string_tv __ARGS((char_u *string));
Bram Moolenaar33570922005-01-25 22:26:29 +0000741static void init_tv __ARGS((typval_T *varp));
742static long get_tv_number __ARGS((typval_T *varp));
743static linenr_T get_tv_lnum __ARGS((typval_T *argvars));
Bram Moolenaar661b1822005-07-28 22:36:45 +0000744static linenr_T get_tv_lnum_buf __ARGS((typval_T *argvars, buf_T *buf));
Bram Moolenaar33570922005-01-25 22:26:29 +0000745static char_u *get_tv_string __ARGS((typval_T *varp));
746static char_u *get_tv_string_buf __ARGS((typval_T *varp, char_u *buf));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000747static char_u *get_tv_string_buf_chk __ARGS((typval_T *varp, char_u *buf));
Bram Moolenaar33570922005-01-25 22:26:29 +0000748static dictitem_T *find_var __ARGS((char_u *name, hashtab_T **htp));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000749static dictitem_T *find_var_in_ht __ARGS((hashtab_T *ht, char_u *varname, int writing));
Bram Moolenaar33570922005-01-25 22:26:29 +0000750static hashtab_T *find_var_ht __ARGS((char_u *name, char_u **varname));
751static void vars_clear_ext __ARGS((hashtab_T *ht, int free_val));
752static void delete_var __ARGS((hashtab_T *ht, hashitem_T *hi));
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000753static void list_one_var __ARGS((dictitem_T *v, char_u *prefix, int *first));
754static 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 +0000755static void set_var __ARGS((char_u *name, typval_T *varp, int copy));
756static int var_check_ro __ARGS((int flags, char_u *name));
Bram Moolenaar4e957af2006-09-02 11:41:07 +0000757static int var_check_fixed __ARGS((int flags, char_u *name));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000758static int tv_check_lock __ARGS((int lock, char_u *name));
Bram Moolenaar33570922005-01-25 22:26:29 +0000759static void copy_tv __ARGS((typval_T *from, typval_T *to));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000760static int item_copy __ARGS((typval_T *from, typval_T *to, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000761static char_u *find_option_end __ARGS((char_u **arg, int *opt_flags));
762static char_u *trans_function_name __ARGS((char_u **pp, int skip, int flags, funcdict_T *fd));
763static int eval_fname_script __ARGS((char_u *p));
764static int eval_fname_sid __ARGS((char_u *p));
765static void list_func_head __ARGS((ufunc_T *fp, int indent));
Bram Moolenaar33570922005-01-25 22:26:29 +0000766static ufunc_T *find_func __ARGS((char_u *name));
767static int function_exists __ARGS((char_u *name));
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000768static int builtin_function __ARGS((char_u *name));
Bram Moolenaar05159a02005-02-26 23:04:13 +0000769#ifdef FEAT_PROFILE
770static void func_do_profile __ARGS((ufunc_T *fp));
Bram Moolenaar73830342005-02-28 22:48:19 +0000771static void prof_sort_list __ARGS((FILE *fd, ufunc_T **sorttab, int st_len, char *title, int prefer_self));
772static void prof_func_line __ARGS((FILE *fd, int count, proftime_T *total, proftime_T *self, int prefer_self));
773static int
774# ifdef __BORLANDC__
775 _RTLENTRYF
776# endif
777 prof_total_cmp __ARGS((const void *s1, const void *s2));
778static int
779# ifdef __BORLANDC__
780 _RTLENTRYF
781# endif
782 prof_self_cmp __ARGS((const void *s1, const void *s2));
Bram Moolenaar05159a02005-02-26 23:04:13 +0000783#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000784static int script_autoload __ARGS((char_u *name, int reload));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000785static char_u *autoload_name __ARGS((char_u *name));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000786static void cat_func_name __ARGS((char_u *buf, ufunc_T *fp));
Bram Moolenaar33570922005-01-25 22:26:29 +0000787static void func_free __ARGS((ufunc_T *fp));
788static void func_unref __ARGS((char_u *name));
789static void func_ref __ARGS((char_u *name));
790static 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));
791static void add_nr_var __ARGS((dict_T *dp, dictitem_T *v, char *name, varnumber_T nr));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000792static win_T *find_win_by_nr __ARGS((typval_T *vp, tabpage_T *tp));
793static void getwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000794static int searchpair_cmn __ARGS((typval_T *argvars, pos_T *match_pos));
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000795static int search_cmn __ARGS((typval_T *argvars, pos_T *match_pos, int *flagsp));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000796static void setwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
Bram Moolenaar33570922005-01-25 22:26:29 +0000797
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000798/* Character used as separated in autoload function/variable names. */
799#define AUTOLOAD_CHAR '#'
800
Bram Moolenaar33570922005-01-25 22:26:29 +0000801/*
802 * Initialize the global and v: variables.
Bram Moolenaara7043832005-01-21 11:56:39 +0000803 */
804 void
805eval_init()
806{
Bram Moolenaar33570922005-01-25 22:26:29 +0000807 int i;
808 struct vimvar *p;
809
810 init_var_dict(&globvardict, &globvars_var);
811 init_var_dict(&vimvardict, &vimvars_var);
Bram Moolenaar532c7802005-01-27 14:44:31 +0000812 hash_init(&compat_hashtab);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000813 hash_init(&func_hashtab);
Bram Moolenaar33570922005-01-25 22:26:29 +0000814
815 for (i = 0; i < VV_LEN; ++i)
816 {
817 p = &vimvars[i];
818 STRCPY(p->vv_di.di_key, p->vv_name);
819 if (p->vv_flags & VV_RO)
820 p->vv_di.di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
821 else if (p->vv_flags & VV_RO_SBX)
822 p->vv_di.di_flags = DI_FLAGS_RO_SBX | DI_FLAGS_FIX;
823 else
824 p->vv_di.di_flags = DI_FLAGS_FIX;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000825
826 /* add to v: scope dict, unless the value is not always available */
827 if (p->vv_type != VAR_UNKNOWN)
828 hash_add(&vimvarht, p->vv_di.di_key);
Bram Moolenaar33570922005-01-25 22:26:29 +0000829 if (p->vv_flags & VV_COMPAT)
Bram Moolenaar532c7802005-01-27 14:44:31 +0000830 /* add to compat scope dict */
831 hash_add(&compat_hashtab, p->vv_di.di_key);
Bram Moolenaar33570922005-01-25 22:26:29 +0000832 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000833 set_vim_var_nr(VV_SEARCHFORWARD, 1L);
Bram Moolenaara7043832005-01-21 11:56:39 +0000834}
835
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000836#if defined(EXITFREE) || defined(PROTO)
837 void
838eval_clear()
839{
840 int i;
841 struct vimvar *p;
842
843 for (i = 0; i < VV_LEN; ++i)
844 {
845 p = &vimvars[i];
846 if (p->vv_di.di_tv.v_type == VAR_STRING)
Bram Moolenaard9fba312005-06-26 22:34:35 +0000847 {
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000848 vim_free(p->vv_di.di_tv.vval.v_string);
Bram Moolenaard9fba312005-06-26 22:34:35 +0000849 p->vv_di.di_tv.vval.v_string = NULL;
850 }
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000851 }
852 hash_clear(&vimvarht);
853 hash_clear(&compat_hashtab);
854
855 /* script-local variables */
856 for (i = 1; i <= ga_scripts.ga_len; ++i)
857 vars_clear(&SCRIPT_VARS(i));
858 ga_clear(&ga_scripts);
Bram Moolenaard9fba312005-06-26 22:34:35 +0000859 free_scriptnames();
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000860
861 /* global variables */
862 vars_clear(&globvarht);
Bram Moolenaard9fba312005-06-26 22:34:35 +0000863
Bram Moolenaaraa35dd12006-04-29 22:03:41 +0000864 /* autoloaded script names */
865 ga_clear_strings(&ga_loaded);
866
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000867 /* unreferenced lists and dicts */
868 (void)garbage_collect();
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000869
870 /* functions */
871 free_all_functions();
872 hash_clear(&func_hashtab);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000873}
874#endif
875
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000876/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 * Return the name of the executed function.
878 */
879 char_u *
880func_name(cookie)
881 void *cookie;
882{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000883 return ((funccall_T *)cookie)->func->uf_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884}
885
886/*
887 * Return the address holding the next breakpoint line for a funccall cookie.
888 */
889 linenr_T *
890func_breakpoint(cookie)
891 void *cookie;
892{
Bram Moolenaar33570922005-01-25 22:26:29 +0000893 return &((funccall_T *)cookie)->breakpoint;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894}
895
896/*
897 * Return the address holding the debug tick for a funccall cookie.
898 */
899 int *
900func_dbg_tick(cookie)
901 void *cookie;
902{
Bram Moolenaar33570922005-01-25 22:26:29 +0000903 return &((funccall_T *)cookie)->dbg_tick;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904}
905
906/*
907 * Return the nesting level for a funccall cookie.
908 */
909 int
910func_level(cookie)
911 void *cookie;
912{
Bram Moolenaar33570922005-01-25 22:26:29 +0000913 return ((funccall_T *)cookie)->level;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914}
915
916/* pointer to funccal for currently active function */
Bram Moolenaar33570922005-01-25 22:26:29 +0000917funccall_T *current_funccal = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918
919/*
920 * Return TRUE when a function was ended by a ":return" command.
921 */
922 int
923current_func_returned()
924{
925 return current_funccal->returned;
926}
927
928
929/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 * Set an internal variable to a string value. Creates the variable if it does
931 * not already exist.
932 */
933 void
934set_internal_string_var(name, value)
935 char_u *name;
936 char_u *value;
937{
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000938 char_u *val;
Bram Moolenaar33570922005-01-25 22:26:29 +0000939 typval_T *tvp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940
941 val = vim_strsave(value);
942 if (val != NULL)
943 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +0000944 tvp = alloc_string_tv(val);
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000945 if (tvp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000947 set_var(name, tvp, FALSE);
Bram Moolenaarc70646c2005-01-04 21:52:38 +0000948 free_tv(tvp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 }
950 }
951}
952
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000953static lval_T *redir_lval = NULL;
Bram Moolenaar863b53b2007-01-14 14:28:34 +0000954static garray_T redir_ga; /* only valid when redir_lval is not NULL */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000955static char_u *redir_endp = NULL;
956static char_u *redir_varname = NULL;
957
958/*
959 * Start recording command output to a variable
960 * Returns OK if successfully completed the setup. FAIL otherwise.
961 */
962 int
963var_redir_start(name, append)
964 char_u *name;
965 int append; /* append to an existing variable */
966{
967 int save_emsg;
968 int err;
969 typval_T tv;
970
971 /* Make sure a valid variable name is specified */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000972 if (!eval_isnamec1(*name))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000973 {
974 EMSG(_(e_invarg));
975 return FAIL;
976 }
977
978 redir_varname = vim_strsave(name);
979 if (redir_varname == NULL)
980 return FAIL;
981
982 redir_lval = (lval_T *)alloc_clear((unsigned)sizeof(lval_T));
983 if (redir_lval == NULL)
984 {
985 var_redir_stop();
986 return FAIL;
987 }
988
Bram Moolenaar863b53b2007-01-14 14:28:34 +0000989 /* The output is stored in growarray "redir_ga" until redirection ends. */
990 ga_init2(&redir_ga, (int)sizeof(char), 500);
991
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000992 /* Parse the variable name (can be a dict or list entry). */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000993 redir_endp = get_lval(redir_varname, NULL, redir_lval, FALSE, FALSE, FALSE,
994 FNE_CHECK_START);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000995 if (redir_endp == NULL || redir_lval->ll_name == NULL || *redir_endp != NUL)
996 {
997 if (redir_endp != NULL && *redir_endp != NUL)
998 /* Trailing characters are present after the variable name */
999 EMSG(_(e_trailing));
1000 else
1001 EMSG(_(e_invarg));
1002 var_redir_stop();
1003 return FAIL;
1004 }
1005
1006 /* check if we can write to the variable: set it to or append an empty
1007 * string */
1008 save_emsg = did_emsg;
1009 did_emsg = FALSE;
1010 tv.v_type = VAR_STRING;
1011 tv.vval.v_string = (char_u *)"";
1012 if (append)
1013 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)".");
1014 else
1015 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)"=");
1016 err = did_emsg;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00001017 did_emsg |= save_emsg;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001018 if (err)
1019 {
1020 var_redir_stop();
1021 return FAIL;
1022 }
1023 if (redir_lval->ll_newkey != NULL)
1024 {
1025 /* Dictionary item was created, don't do it again. */
1026 vim_free(redir_lval->ll_newkey);
1027 redir_lval->ll_newkey = NULL;
1028 }
1029
1030 return OK;
1031}
1032
1033/*
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001034 * Append "value[value_len]" to the variable set by var_redir_start().
1035 * The actual appending is postponed until redirection ends, because the value
1036 * appended may in fact be the string we write to, changing it may cause freed
1037 * memory to be used:
1038 * :redir => foo
1039 * :let foo
1040 * :redir END
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001041 */
1042 void
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001043var_redir_str(value, value_len)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001044 char_u *value;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001045 int value_len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001046{
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001047 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001048
1049 if (redir_lval == NULL)
1050 return;
1051
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001052 if (value_len == -1)
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001053 len = (int)STRLEN(value); /* Append the entire string */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001054 else
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001055 len = value_len; /* Append only "value_len" characters */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001056
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001057 if (ga_grow(&redir_ga, len) == OK)
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001058 {
1059 mch_memmove((char *)redir_ga.ga_data + redir_ga.ga_len, value, len);
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001060 redir_ga.ga_len += len;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001061 }
1062 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001063 var_redir_stop();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001064}
1065
1066/*
1067 * Stop redirecting command output to a variable.
1068 */
1069 void
1070var_redir_stop()
1071{
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001072 typval_T tv;
1073
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001074 if (redir_lval != NULL)
1075 {
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001076 /* Append the trailing NUL. */
1077 ga_append(&redir_ga, NUL);
1078
1079 /* Assign the text to the variable. */
1080 tv.v_type = VAR_STRING;
1081 tv.vval.v_string = redir_ga.ga_data;
1082 set_var_lval(redir_lval, redir_endp, &tv, FALSE, (char_u *)".");
1083 vim_free(tv.vval.v_string);
1084
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001085 clear_lval(redir_lval);
1086 vim_free(redir_lval);
1087 redir_lval = NULL;
1088 }
1089 vim_free(redir_varname);
1090 redir_varname = NULL;
1091}
1092
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093# if defined(FEAT_MBYTE) || defined(PROTO)
1094 int
1095eval_charconvert(enc_from, enc_to, fname_from, fname_to)
1096 char_u *enc_from;
1097 char_u *enc_to;
1098 char_u *fname_from;
1099 char_u *fname_to;
1100{
1101 int err = FALSE;
1102
1103 set_vim_var_string(VV_CC_FROM, enc_from, -1);
1104 set_vim_var_string(VV_CC_TO, enc_to, -1);
1105 set_vim_var_string(VV_FNAME_IN, fname_from, -1);
1106 set_vim_var_string(VV_FNAME_OUT, fname_to, -1);
1107 if (eval_to_bool(p_ccv, &err, NULL, FALSE))
1108 err = TRUE;
1109 set_vim_var_string(VV_CC_FROM, NULL, -1);
1110 set_vim_var_string(VV_CC_TO, NULL, -1);
1111 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1112 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1113
1114 if (err)
1115 return FAIL;
1116 return OK;
1117}
1118# endif
1119
1120# if defined(FEAT_POSTSCRIPT) || defined(PROTO)
1121 int
1122eval_printexpr(fname, args)
1123 char_u *fname;
1124 char_u *args;
1125{
1126 int err = FALSE;
1127
1128 set_vim_var_string(VV_FNAME_IN, fname, -1);
1129 set_vim_var_string(VV_CMDARG, args, -1);
1130 if (eval_to_bool(p_pexpr, &err, NULL, FALSE))
1131 err = TRUE;
1132 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1133 set_vim_var_string(VV_CMDARG, NULL, -1);
1134
1135 if (err)
1136 {
1137 mch_remove(fname);
1138 return FAIL;
1139 }
1140 return OK;
1141}
1142# endif
1143
1144# if defined(FEAT_DIFF) || defined(PROTO)
1145 void
1146eval_diff(origfile, newfile, outfile)
1147 char_u *origfile;
1148 char_u *newfile;
1149 char_u *outfile;
1150{
1151 int err = FALSE;
1152
1153 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1154 set_vim_var_string(VV_FNAME_NEW, newfile, -1);
1155 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1156 (void)eval_to_bool(p_dex, &err, NULL, FALSE);
1157 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1158 set_vim_var_string(VV_FNAME_NEW, NULL, -1);
1159 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1160}
1161
1162 void
1163eval_patch(origfile, difffile, outfile)
1164 char_u *origfile;
1165 char_u *difffile;
1166 char_u *outfile;
1167{
1168 int err;
1169
1170 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1171 set_vim_var_string(VV_FNAME_DIFF, difffile, -1);
1172 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1173 (void)eval_to_bool(p_pex, &err, NULL, FALSE);
1174 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1175 set_vim_var_string(VV_FNAME_DIFF, NULL, -1);
1176 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1177}
1178# endif
1179
1180/*
1181 * Top level evaluation function, returning a boolean.
1182 * Sets "error" to TRUE if there was an error.
1183 * Return TRUE or FALSE.
1184 */
1185 int
1186eval_to_bool(arg, error, nextcmd, skip)
1187 char_u *arg;
1188 int *error;
1189 char_u **nextcmd;
1190 int skip; /* only parse, don't execute */
1191{
Bram Moolenaar33570922005-01-25 22:26:29 +00001192 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 int retval = FALSE;
1194
1195 if (skip)
1196 ++emsg_skip;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001197 if (eval0(arg, &tv, nextcmd, !skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 *error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 else
1200 {
1201 *error = FALSE;
1202 if (!skip)
1203 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001204 retval = (get_tv_number_chk(&tv, error) != 0);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001205 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 }
1207 }
1208 if (skip)
1209 --emsg_skip;
1210
1211 return retval;
1212}
1213
1214/*
1215 * Top level evaluation function, returning a string. If "skip" is TRUE,
1216 * only parsing to "nextcmd" is done, without reporting errors. Return
1217 * pointer to allocated memory, or NULL for failure or when "skip" is TRUE.
1218 */
1219 char_u *
1220eval_to_string_skip(arg, nextcmd, skip)
1221 char_u *arg;
1222 char_u **nextcmd;
1223 int skip; /* only parse, don't execute */
1224{
Bram Moolenaar33570922005-01-25 22:26:29 +00001225 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 char_u *retval;
1227
1228 if (skip)
1229 ++emsg_skip;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001230 if (eval0(arg, &tv, nextcmd, !skip) == FAIL || skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 retval = NULL;
1232 else
1233 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001234 retval = vim_strsave(get_tv_string(&tv));
1235 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 }
1237 if (skip)
1238 --emsg_skip;
1239
1240 return retval;
1241}
1242
1243/*
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001244 * Skip over an expression at "*pp".
1245 * Return FAIL for an error, OK otherwise.
1246 */
1247 int
1248skip_expr(pp)
1249 char_u **pp;
1250{
Bram Moolenaar33570922005-01-25 22:26:29 +00001251 typval_T rettv;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001252
1253 *pp = skipwhite(*pp);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001254 return eval1(pp, &rettv, FALSE);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001255}
1256
1257/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 * Top level evaluation function, returning a string.
Bram Moolenaara85fb752008-09-07 11:55:43 +00001259 * When "convert" is TRUE convert a List into a sequence of lines and convert
1260 * a Float to a String.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 * Return pointer to allocated memory, or NULL for failure.
1262 */
1263 char_u *
Bram Moolenaara85fb752008-09-07 11:55:43 +00001264eval_to_string(arg, nextcmd, convert)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 char_u *arg;
1266 char_u **nextcmd;
Bram Moolenaara85fb752008-09-07 11:55:43 +00001267 int convert;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268{
Bram Moolenaar33570922005-01-25 22:26:29 +00001269 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 char_u *retval;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001271 garray_T ga;
Bram Moolenaara85fb752008-09-07 11:55:43 +00001272 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001274 if (eval0(arg, &tv, nextcmd, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 retval = NULL;
1276 else
1277 {
Bram Moolenaara85fb752008-09-07 11:55:43 +00001278 if (convert && tv.v_type == VAR_LIST)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001279 {
1280 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001281 if (tv.vval.v_list != NULL)
1282 list_join(&ga, tv.vval.v_list, (char_u *)"\n", TRUE, 0);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001283 ga_append(&ga, NUL);
1284 retval = (char_u *)ga.ga_data;
1285 }
Bram Moolenaara85fb752008-09-07 11:55:43 +00001286#ifdef FEAT_FLOAT
1287 else if (convert && tv.v_type == VAR_FLOAT)
1288 {
1289 vim_snprintf((char *)numbuf, NUMBUFLEN, "%g", tv.vval.v_float);
1290 retval = vim_strsave(numbuf);
1291 }
1292#endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001293 else
1294 retval = vim_strsave(get_tv_string(&tv));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001295 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296 }
1297
1298 return retval;
1299}
1300
1301/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001302 * Call eval_to_string() without using current local variables and using
1303 * textlock. When "use_sandbox" is TRUE use the sandbox.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 */
1305 char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001306eval_to_string_safe(arg, nextcmd, use_sandbox)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 char_u *arg;
1308 char_u **nextcmd;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001309 int use_sandbox;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310{
1311 char_u *retval;
1312 void *save_funccalp;
1313
1314 save_funccalp = save_funccal();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001315 if (use_sandbox)
1316 ++sandbox;
1317 ++textlock;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001318 retval = eval_to_string(arg, nextcmd, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001319 if (use_sandbox)
1320 --sandbox;
1321 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 restore_funccal(save_funccalp);
1323 return retval;
1324}
1325
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326/*
1327 * Top level evaluation function, returning a number.
1328 * Evaluates "expr" silently.
1329 * Returns -1 for an error.
1330 */
1331 int
1332eval_to_number(expr)
1333 char_u *expr;
1334{
Bram Moolenaar33570922005-01-25 22:26:29 +00001335 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 int retval;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00001337 char_u *p = skipwhite(expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338
1339 ++emsg_off;
1340
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001341 if (eval1(&p, &rettv, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342 retval = -1;
1343 else
1344 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001345 retval = get_tv_number_chk(&rettv, NULL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001346 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 }
1348 --emsg_off;
1349
1350 return retval;
1351}
1352
Bram Moolenaara40058a2005-07-11 22:42:07 +00001353/*
1354 * Prepare v: variable "idx" to be used.
1355 * Save the current typeval in "save_tv".
1356 * When not used yet add the variable to the v: hashtable.
1357 */
1358 static void
1359prepare_vimvar(idx, save_tv)
1360 int idx;
1361 typval_T *save_tv;
1362{
1363 *save_tv = vimvars[idx].vv_tv;
1364 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1365 hash_add(&vimvarht, vimvars[idx].vv_di.di_key);
1366}
1367
1368/*
1369 * Restore v: variable "idx" to typeval "save_tv".
1370 * When no longer defined, remove the variable from the v: hashtable.
1371 */
1372 static void
1373restore_vimvar(idx, save_tv)
1374 int idx;
1375 typval_T *save_tv;
1376{
1377 hashitem_T *hi;
1378
Bram Moolenaara40058a2005-07-11 22:42:07 +00001379 vimvars[idx].vv_tv = *save_tv;
1380 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1381 {
1382 hi = hash_find(&vimvarht, vimvars[idx].vv_di.di_key);
1383 if (HASHITEM_EMPTY(hi))
1384 EMSG2(_(e_intern2), "restore_vimvar()");
1385 else
1386 hash_remove(&vimvarht, hi);
1387 }
1388}
1389
Bram Moolenaar3c56a962006-03-12 22:19:04 +00001390#if defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001391/*
1392 * Evaluate an expression to a list with suggestions.
1393 * For the "expr:" part of 'spellsuggest'.
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001394 * Returns NULL when there is an error.
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001395 */
1396 list_T *
1397eval_spell_expr(badword, expr)
1398 char_u *badword;
1399 char_u *expr;
1400{
1401 typval_T save_val;
1402 typval_T rettv;
1403 list_T *list = NULL;
1404 char_u *p = skipwhite(expr);
1405
1406 /* Set "v:val" to the bad word. */
1407 prepare_vimvar(VV_VAL, &save_val);
1408 vimvars[VV_VAL].vv_type = VAR_STRING;
1409 vimvars[VV_VAL].vv_str = badword;
1410 if (p_verbose == 0)
1411 ++emsg_off;
1412
1413 if (eval1(&p, &rettv, TRUE) == OK)
1414 {
1415 if (rettv.v_type != VAR_LIST)
1416 clear_tv(&rettv);
1417 else
1418 list = rettv.vval.v_list;
1419 }
1420
1421 if (p_verbose == 0)
1422 --emsg_off;
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001423 restore_vimvar(VV_VAL, &save_val);
1424
1425 return list;
1426}
1427
1428/*
1429 * "list" is supposed to contain two items: a word and a number. Return the
1430 * word in "pp" and the number as the return value.
1431 * Return -1 if anything isn't right.
1432 * Used to get the good word and score from the eval_spell_expr() result.
1433 */
1434 int
1435get_spellword(list, pp)
1436 list_T *list;
1437 char_u **pp;
1438{
1439 listitem_T *li;
1440
1441 li = list->lv_first;
1442 if (li == NULL)
1443 return -1;
1444 *pp = get_tv_string(&li->li_tv);
1445
1446 li = li->li_next;
1447 if (li == NULL)
1448 return -1;
1449 return get_tv_number(&li->li_tv);
1450}
1451#endif
1452
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001453/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001454 * Top level evaluation function.
1455 * Returns an allocated typval_T with the result.
1456 * Returns NULL when there is an error.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001457 */
1458 typval_T *
1459eval_expr(arg, nextcmd)
1460 char_u *arg;
1461 char_u **nextcmd;
1462{
1463 typval_T *tv;
1464
1465 tv = (typval_T *)alloc(sizeof(typval_T));
Bram Moolenaar4770d092006-01-12 23:22:24 +00001466 if (tv != NULL && eval0(arg, tv, nextcmd, TRUE) == FAIL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001467 {
1468 vim_free(tv);
Bram Moolenaar4770d092006-01-12 23:22:24 +00001469 tv = NULL;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001470 }
1471
1472 return tv;
1473}
1474
1475
Bram Moolenaar4f688582007-07-24 12:34:30 +00001476#if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) \
1477 || defined(FEAT_COMPL_FUNC) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001478/*
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001479 * Call some vimL function and return the result in "*rettv".
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001480 * Uses argv[argc] for the function arguments. Only Number and String
1481 * arguments are currently supported.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001482 * Returns OK or FAIL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 */
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001484 static int
1485call_vim_function(func, argc, argv, safe, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 char_u *func;
1487 int argc;
1488 char_u **argv;
1489 int safe; /* use the sandbox */
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001490 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491{
Bram Moolenaar33570922005-01-25 22:26:29 +00001492 typval_T *argvars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 long n;
1494 int len;
1495 int i;
1496 int doesrange;
1497 void *save_funccalp = NULL;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001498 int ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001500 argvars = (typval_T *)alloc((unsigned)((argc + 1) * sizeof(typval_T)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501 if (argvars == NULL)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001502 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503
1504 for (i = 0; i < argc; i++)
1505 {
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001506 /* Pass a NULL or empty argument as an empty string */
1507 if (argv[i] == NULL || *argv[i] == NUL)
1508 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001509 argvars[i].v_type = VAR_STRING;
1510 argvars[i].vval.v_string = (char_u *)"";
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001511 continue;
1512 }
1513
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 /* Recognize a number argument, the others must be strings. */
1515 vim_str2nr(argv[i], NULL, &len, TRUE, TRUE, &n, NULL);
1516 if (len != 0 && len == (int)STRLEN(argv[i]))
1517 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001518 argvars[i].v_type = VAR_NUMBER;
1519 argvars[i].vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520 }
1521 else
1522 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001523 argvars[i].v_type = VAR_STRING;
1524 argvars[i].vval.v_string = argv[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 }
1526 }
1527
1528 if (safe)
1529 {
1530 save_funccalp = save_funccal();
1531 ++sandbox;
1532 }
1533
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001534 rettv->v_type = VAR_UNKNOWN; /* clear_tv() uses this */
1535 ret = call_func(func, (int)STRLEN(func), rettv, argc, argvars,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001537 &doesrange, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 if (safe)
1539 {
1540 --sandbox;
1541 restore_funccal(save_funccalp);
1542 }
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001543 vim_free(argvars);
1544
1545 if (ret == FAIL)
1546 clear_tv(rettv);
1547
1548 return ret;
1549}
1550
Bram Moolenaar4f688582007-07-24 12:34:30 +00001551# if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) || defined(PROTO)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001552/*
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001553 * Call vimL function "func" and return the result as a string.
1554 * Returns NULL when calling the function fails.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001555 * Uses argv[argc] for the function arguments.
1556 */
1557 void *
1558call_func_retstr(func, argc, argv, safe)
1559 char_u *func;
1560 int argc;
1561 char_u **argv;
1562 int safe; /* use the sandbox */
1563{
1564 typval_T rettv;
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001565 char_u *retval;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001566
1567 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1568 return NULL;
1569
1570 retval = vim_strsave(get_tv_string(&rettv));
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001571 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 return retval;
1573}
Bram Moolenaar4f688582007-07-24 12:34:30 +00001574# endif
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001575
Bram Moolenaar4f688582007-07-24 12:34:30 +00001576# if defined(FEAT_COMPL_FUNC) || defined(PROTO)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001577/*
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001578 * Call vimL function "func" and return the result as a number.
1579 * Returns -1 when calling the function fails.
1580 * Uses argv[argc] for the function arguments.
1581 */
1582 long
1583call_func_retnr(func, argc, argv, safe)
1584 char_u *func;
1585 int argc;
1586 char_u **argv;
1587 int safe; /* use the sandbox */
1588{
1589 typval_T rettv;
1590 long retval;
1591
1592 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1593 return -1;
1594
1595 retval = get_tv_number_chk(&rettv, NULL);
1596 clear_tv(&rettv);
1597 return retval;
1598}
Bram Moolenaar4f688582007-07-24 12:34:30 +00001599# endif
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001600
1601/*
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001602 * Call vimL function "func" and return the result as a List.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001603 * Uses argv[argc] for the function arguments.
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001604 * Returns NULL when there is something wrong.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001605 */
1606 void *
1607call_func_retlist(func, argc, argv, safe)
1608 char_u *func;
1609 int argc;
1610 char_u **argv;
1611 int safe; /* use the sandbox */
1612{
1613 typval_T rettv;
1614
1615 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1616 return NULL;
1617
1618 if (rettv.v_type != VAR_LIST)
1619 {
1620 clear_tv(&rettv);
1621 return NULL;
1622 }
1623
1624 return rettv.vval.v_list;
1625}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626#endif
1627
Bram Moolenaar4f688582007-07-24 12:34:30 +00001628
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629/*
1630 * Save the current function call pointer, and set it to NULL.
1631 * Used when executing autocommands and for ":source".
1632 */
1633 void *
1634save_funccal()
1635{
Bram Moolenaar05159a02005-02-26 23:04:13 +00001636 funccall_T *fc = current_funccal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 current_funccal = NULL;
1639 return (void *)fc;
1640}
1641
1642 void
Bram Moolenaar05159a02005-02-26 23:04:13 +00001643restore_funccal(vfc)
1644 void *vfc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645{
Bram Moolenaar05159a02005-02-26 23:04:13 +00001646 funccall_T *fc = (funccall_T *)vfc;
1647
1648 current_funccal = fc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649}
1650
Bram Moolenaar05159a02005-02-26 23:04:13 +00001651#if defined(FEAT_PROFILE) || defined(PROTO)
1652/*
1653 * Prepare profiling for entering a child or something else that is not
1654 * counted for the script/function itself.
1655 * Should always be called in pair with prof_child_exit().
1656 */
1657 void
1658prof_child_enter(tm)
1659 proftime_T *tm; /* place to store waittime */
1660{
1661 funccall_T *fc = current_funccal;
1662
1663 if (fc != NULL && fc->func->uf_profiling)
1664 profile_start(&fc->prof_child);
1665 script_prof_save(tm);
1666}
1667
1668/*
1669 * Take care of time spent in a child.
1670 * Should always be called after prof_child_enter().
1671 */
1672 void
1673prof_child_exit(tm)
1674 proftime_T *tm; /* where waittime was stored */
1675{
1676 funccall_T *fc = current_funccal;
1677
1678 if (fc != NULL && fc->func->uf_profiling)
1679 {
1680 profile_end(&fc->prof_child);
1681 profile_sub_wait(tm, &fc->prof_child); /* don't count waiting time */
1682 profile_add(&fc->func->uf_tm_children, &fc->prof_child);
1683 profile_add(&fc->func->uf_tml_children, &fc->prof_child);
1684 }
1685 script_prof_restore(tm);
1686}
1687#endif
1688
1689
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690#ifdef FEAT_FOLDING
1691/*
1692 * Evaluate 'foldexpr'. Returns the foldlevel, and any character preceding
1693 * it in "*cp". Doesn't give error messages.
1694 */
1695 int
1696eval_foldexpr(arg, cp)
1697 char_u *arg;
1698 int *cp;
1699{
Bram Moolenaar33570922005-01-25 22:26:29 +00001700 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701 int retval;
1702 char_u *s;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001703 int use_sandbox = was_set_insecurely((char_u *)"foldexpr",
1704 OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705
1706 ++emsg_off;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001707 if (use_sandbox)
1708 ++sandbox;
1709 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710 *cp = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001711 if (eval0(arg, &tv, NULL, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712 retval = 0;
1713 else
1714 {
1715 /* If the result is a number, just return the number. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001716 if (tv.v_type == VAR_NUMBER)
1717 retval = tv.vval.v_number;
Bram Moolenaar758711c2005-02-02 23:11:38 +00001718 else if (tv.v_type != VAR_STRING || tv.vval.v_string == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719 retval = 0;
1720 else
1721 {
1722 /* If the result is a string, check if there is a non-digit before
1723 * the number. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001724 s = tv.vval.v_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725 if (!VIM_ISDIGIT(*s) && *s != '-')
1726 *cp = *s++;
1727 retval = atol((char *)s);
1728 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001729 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 }
1731 --emsg_off;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001732 if (use_sandbox)
1733 --sandbox;
1734 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735
1736 return retval;
1737}
1738#endif
1739
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001741 * ":let" list all variable values
1742 * ":let var1 var2" list variable values
1743 * ":let var = expr" assignment command.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001744 * ":let var += expr" assignment command.
1745 * ":let var -= expr" assignment command.
1746 * ":let var .= expr" assignment command.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001747 * ":let [var1, var2] = expr" unpack list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 */
1749 void
1750ex_let(eap)
1751 exarg_T *eap;
1752{
1753 char_u *arg = eap->arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001754 char_u *expr = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00001755 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 int i;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001757 int var_count = 0;
1758 int semicolon = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001759 char_u op[2];
Bram Moolenaardb552d602006-03-23 22:59:57 +00001760 char_u *argend;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001761 int first = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762
Bram Moolenaardb552d602006-03-23 22:59:57 +00001763 argend = skip_var_list(arg, &var_count, &semicolon);
1764 if (argend == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001765 return;
Bram Moolenaar76b92b22006-03-24 22:46:53 +00001766 if (argend > arg && argend[-1] == '.') /* for var.='str' */
1767 --argend;
Bram Moolenaardb552d602006-03-23 22:59:57 +00001768 expr = vim_strchr(argend, '=');
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001769 if (expr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00001771 /*
1772 * ":let" without "=": list variables
1773 */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001774 if (*arg == '[')
1775 EMSG(_(e_invarg));
1776 else if (!ends_excmd(*arg))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001777 /* ":let var1 var2" */
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001778 arg = list_arg_vars(eap, arg, &first);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001779 else if (!eap->skip)
Bram Moolenaara7043832005-01-21 11:56:39 +00001780 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001781 /* ":let" */
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001782 list_glob_vars(&first);
1783 list_buf_vars(&first);
1784 list_win_vars(&first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001785#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001786 list_tab_vars(&first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001787#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001788 list_script_vars(&first);
1789 list_func_vars(&first);
1790 list_vim_vars(&first);
Bram Moolenaara7043832005-01-21 11:56:39 +00001791 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 eap->nextcmd = check_nextcmd(arg);
1793 }
1794 else
1795 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001796 op[0] = '=';
1797 op[1] = NUL;
Bram Moolenaardb552d602006-03-23 22:59:57 +00001798 if (expr > argend)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001799 {
1800 if (vim_strchr((char_u *)"+-.", expr[-1]) != NULL)
1801 op[0] = expr[-1]; /* +=, -= or .= */
1802 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001803 expr = skipwhite(expr + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001804
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 if (eap->skip)
1806 ++emsg_skip;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001807 i = eval0(expr, &rettv, &eap->nextcmd, !eap->skip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808 if (eap->skip)
1809 {
1810 if (i != FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001811 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812 --emsg_skip;
1813 }
1814 else if (i != FAIL)
1815 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001816 (void)ex_let_vars(eap->arg, &rettv, FALSE, semicolon, var_count,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001817 op);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001818 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819 }
1820 }
1821}
1822
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001823/*
1824 * Assign the typevalue "tv" to the variable or variables at "arg_start".
1825 * Handles both "var" with any type and "[var, var; var]" with a list type.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001826 * When "nextchars" is not NULL it points to a string with characters that
1827 * must appear after the variable(s). Use "+", "-" or "." for add, subtract
1828 * or concatenate.
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001829 * Returns OK or FAIL;
1830 */
1831 static int
1832ex_let_vars(arg_start, tv, copy, semicolon, var_count, nextchars)
1833 char_u *arg_start;
Bram Moolenaar33570922005-01-25 22:26:29 +00001834 typval_T *tv;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001835 int copy; /* copy values from "tv", don't move */
1836 int semicolon; /* from skip_var_list() */
1837 int var_count; /* from skip_var_list() */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001838 char_u *nextchars;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001839{
1840 char_u *arg = arg_start;
Bram Moolenaar33570922005-01-25 22:26:29 +00001841 list_T *l;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001842 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +00001843 listitem_T *item;
1844 typval_T ltv;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001845
1846 if (*arg != '[')
1847 {
1848 /*
1849 * ":let var = expr" or ":for var in list"
1850 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001851 if (ex_let_one(arg, tv, copy, nextchars, nextchars) == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001852 return FAIL;
1853 return OK;
1854 }
1855
1856 /*
1857 * ":let [v1, v2] = list" or ":for [v1, v2] in listlist"
1858 */
Bram Moolenaar758711c2005-02-02 23:11:38 +00001859 if (tv->v_type != VAR_LIST || (l = tv->vval.v_list) == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001860 {
1861 EMSG(_(e_listreq));
1862 return FAIL;
1863 }
1864
1865 i = list_len(l);
1866 if (semicolon == 0 && var_count < i)
1867 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00001868 EMSG(_("E687: Less targets than List items"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001869 return FAIL;
1870 }
1871 if (var_count - semicolon > i)
1872 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00001873 EMSG(_("E688: More targets than List items"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001874 return FAIL;
1875 }
1876
1877 item = l->lv_first;
1878 while (*arg != ']')
1879 {
1880 arg = skipwhite(arg + 1);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001881 arg = ex_let_one(arg, &item->li_tv, TRUE, (char_u *)",;]", nextchars);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001882 item = item->li_next;
1883 if (arg == NULL)
1884 return FAIL;
1885
1886 arg = skipwhite(arg);
1887 if (*arg == ';')
1888 {
1889 /* Put the rest of the list (may be empty) in the var after ';'.
1890 * Create a new list for this. */
1891 l = list_alloc();
1892 if (l == NULL)
1893 return FAIL;
1894 while (item != NULL)
1895 {
1896 list_append_tv(l, &item->li_tv);
1897 item = item->li_next;
1898 }
1899
1900 ltv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00001901 ltv.v_lock = 0;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001902 ltv.vval.v_list = l;
1903 l->lv_refcount = 1;
1904
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001905 arg = ex_let_one(skipwhite(arg + 1), &ltv, FALSE,
1906 (char_u *)"]", nextchars);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001907 clear_tv(&ltv);
1908 if (arg == NULL)
1909 return FAIL;
1910 break;
1911 }
1912 else if (*arg != ',' && *arg != ']')
1913 {
1914 EMSG2(_(e_intern2), "ex_let_vars()");
1915 return FAIL;
1916 }
1917 }
1918
1919 return OK;
1920}
1921
1922/*
1923 * Skip over assignable variable "var" or list of variables "[var, var]".
1924 * Used for ":let varvar = expr" and ":for varvar in expr".
1925 * For "[var, var]" increment "*var_count" for each variable.
1926 * for "[var, var; var]" set "semicolon".
1927 * Return NULL for an error.
1928 */
1929 static char_u *
1930skip_var_list(arg, var_count, semicolon)
1931 char_u *arg;
1932 int *var_count;
1933 int *semicolon;
1934{
1935 char_u *p, *s;
1936
1937 if (*arg == '[')
1938 {
1939 /* "[var, var]": find the matching ']'. */
1940 p = arg;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001941 for (;;)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001942 {
1943 p = skipwhite(p + 1); /* skip whites after '[', ';' or ',' */
1944 s = skip_var_one(p);
1945 if (s == p)
1946 {
1947 EMSG2(_(e_invarg2), p);
1948 return NULL;
1949 }
1950 ++*var_count;
1951
1952 p = skipwhite(s);
1953 if (*p == ']')
1954 break;
1955 else if (*p == ';')
1956 {
1957 if (*semicolon == 1)
1958 {
1959 EMSG(_("Double ; in list of variables"));
1960 return NULL;
1961 }
1962 *semicolon = 1;
1963 }
1964 else if (*p != ',')
1965 {
1966 EMSG2(_(e_invarg2), p);
1967 return NULL;
1968 }
1969 }
1970 return p + 1;
1971 }
1972 else
1973 return skip_var_one(arg);
1974}
1975
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00001976/*
Bram Moolenaarbae0c162007-05-10 19:30:25 +00001977 * Skip one (assignable) variable name, including @r, $VAR, &option, d.key,
Bram Moolenaar92124a32005-06-17 22:03:40 +00001978 * l[idx].
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00001979 */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001980 static char_u *
1981skip_var_one(arg)
1982 char_u *arg;
1983{
Bram Moolenaar92124a32005-06-17 22:03:40 +00001984 if (*arg == '@' && arg[1] != NUL)
1985 return arg + 2;
1986 return find_name_end(*arg == '$' || *arg == '&' ? arg + 1 : arg,
1987 NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001988}
1989
Bram Moolenaara7043832005-01-21 11:56:39 +00001990/*
Bram Moolenaar33570922005-01-25 22:26:29 +00001991 * List variables for hashtab "ht" with prefix "prefix".
1992 * If "empty" is TRUE also list NULL strings as empty strings.
Bram Moolenaara7043832005-01-21 11:56:39 +00001993 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001994 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001995list_hashtable_vars(ht, prefix, empty, first)
Bram Moolenaar33570922005-01-25 22:26:29 +00001996 hashtab_T *ht;
Bram Moolenaara7043832005-01-21 11:56:39 +00001997 char_u *prefix;
Bram Moolenaar33570922005-01-25 22:26:29 +00001998 int empty;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001999 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002000{
Bram Moolenaar33570922005-01-25 22:26:29 +00002001 hashitem_T *hi;
2002 dictitem_T *di;
Bram Moolenaara7043832005-01-21 11:56:39 +00002003 int todo;
2004
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002005 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +00002006 for (hi = ht->ht_array; todo > 0 && !got_int; ++hi)
2007 {
2008 if (!HASHITEM_EMPTY(hi))
2009 {
2010 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00002011 di = HI2DI(hi);
2012 if (empty || di->di_tv.v_type != VAR_STRING
2013 || di->di_tv.vval.v_string != NULL)
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002014 list_one_var(di, prefix, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002015 }
2016 }
2017}
2018
2019/*
2020 * List global variables.
2021 */
2022 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002023list_glob_vars(first)
2024 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002025{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002026 list_hashtable_vars(&globvarht, (char_u *)"", TRUE, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002027}
2028
2029/*
2030 * List buffer variables.
2031 */
2032 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002033list_buf_vars(first)
2034 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002035{
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002036 char_u numbuf[NUMBUFLEN];
2037
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002038 list_hashtable_vars(&curbuf->b_vars.dv_hashtab, (char_u *)"b:",
2039 TRUE, first);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002040
2041 sprintf((char *)numbuf, "%ld", (long)curbuf->b_changedtick);
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002042 list_one_var_a((char_u *)"b:", (char_u *)"changedtick", VAR_NUMBER,
2043 numbuf, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002044}
2045
2046/*
2047 * List window variables.
2048 */
2049 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002050list_win_vars(first)
2051 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002052{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002053 list_hashtable_vars(&curwin->w_vars.dv_hashtab,
2054 (char_u *)"w:", TRUE, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002055}
2056
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002057#ifdef FEAT_WINDOWS
2058/*
2059 * List tab page variables.
2060 */
2061 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002062list_tab_vars(first)
2063 int *first;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002064{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002065 list_hashtable_vars(&curtab->tp_vars.dv_hashtab,
2066 (char_u *)"t:", TRUE, first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002067}
2068#endif
2069
Bram Moolenaara7043832005-01-21 11:56:39 +00002070/*
2071 * List Vim variables.
2072 */
2073 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002074list_vim_vars(first)
2075 int *first;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002076{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002077 list_hashtable_vars(&vimvarht, (char_u *)"v:", FALSE, first);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002078}
2079
2080/*
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002081 * List script-local variables, if there is a script.
2082 */
2083 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002084list_script_vars(first)
2085 int *first;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002086{
2087 if (current_SID > 0 && current_SID <= ga_scripts.ga_len)
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002088 list_hashtable_vars(&SCRIPT_VARS(current_SID),
2089 (char_u *)"s:", FALSE, first);
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002090}
2091
2092/*
2093 * List function variables, if there is a function.
2094 */
2095 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002096list_func_vars(first)
2097 int *first;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002098{
2099 if (current_funccal != NULL)
2100 list_hashtable_vars(&current_funccal->l_vars.dv_hashtab,
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002101 (char_u *)"l:", FALSE, first);
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002102}
2103
2104/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002105 * List variables in "arg".
2106 */
2107 static char_u *
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002108list_arg_vars(eap, arg, first)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002109 exarg_T *eap;
2110 char_u *arg;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002111 int *first;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002112{
2113 int error = FALSE;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002114 int len;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002115 char_u *name;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002116 char_u *name_start;
2117 char_u *arg_subsc;
2118 char_u *tofree;
2119 typval_T tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002120
2121 while (!ends_excmd(*arg) && !got_int)
2122 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002123 if (error || eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002124 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002125 arg = find_name_end(arg, NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002126 if (!vim_iswhite(*arg) && !ends_excmd(*arg))
2127 {
2128 emsg_severe = TRUE;
2129 EMSG(_(e_trailing));
2130 break;
2131 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002132 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002133 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002134 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002135 /* get_name_len() takes care of expanding curly braces */
2136 name_start = name = arg;
2137 len = get_name_len(&arg, &tofree, TRUE, TRUE);
2138 if (len <= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002139 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002140 /* This is mainly to keep test 49 working: when expanding
2141 * curly braces fails overrule the exception error message. */
2142 if (len < 0 && !aborting())
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002143 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002144 emsg_severe = TRUE;
2145 EMSG2(_(e_invarg2), arg);
2146 break;
2147 }
2148 error = TRUE;
2149 }
2150 else
2151 {
2152 if (tofree != NULL)
2153 name = tofree;
2154 if (get_var_tv(name, len, &tv, TRUE) == FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002155 error = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002156 else
2157 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002158 /* handle d.key, l[idx], f(expr) */
2159 arg_subsc = arg;
2160 if (handle_subscript(&arg, &tv, TRUE, TRUE) == FAIL)
Bram Moolenaara7043832005-01-21 11:56:39 +00002161 error = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002162 else
Bram Moolenaara7043832005-01-21 11:56:39 +00002163 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002164 if (arg == arg_subsc && len == 2 && name[1] == ':')
Bram Moolenaara7043832005-01-21 11:56:39 +00002165 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002166 switch (*name)
Bram Moolenaara7043832005-01-21 11:56:39 +00002167 {
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002168 case 'g': list_glob_vars(first); break;
2169 case 'b': list_buf_vars(first); break;
2170 case 'w': list_win_vars(first); break;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002171#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002172 case 't': list_tab_vars(first); break;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002173#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002174 case 'v': list_vim_vars(first); break;
2175 case 's': list_script_vars(first); break;
2176 case 'l': list_func_vars(first); break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002177 default:
2178 EMSG2(_("E738: Can't list variables for %s"), name);
Bram Moolenaara7043832005-01-21 11:56:39 +00002179 }
Bram Moolenaara7043832005-01-21 11:56:39 +00002180 }
2181 else
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002182 {
2183 char_u numbuf[NUMBUFLEN];
2184 char_u *tf;
2185 int c;
2186 char_u *s;
2187
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002188 s = echo_string(&tv, &tf, numbuf, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002189 c = *arg;
2190 *arg = NUL;
2191 list_one_var_a((char_u *)"",
2192 arg == arg_subsc ? name : name_start,
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002193 tv.v_type,
2194 s == NULL ? (char_u *)"" : s,
2195 first);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002196 *arg = c;
2197 vim_free(tf);
2198 }
2199 clear_tv(&tv);
Bram Moolenaara7043832005-01-21 11:56:39 +00002200 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002201 }
2202 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002203
2204 vim_free(tofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002205 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002206
2207 arg = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002208 }
2209
2210 return arg;
2211}
2212
2213/*
2214 * Set one item of ":let var = expr" or ":let [v1, v2] = list" to its value.
2215 * Returns a pointer to the char just after the var name.
2216 * Returns NULL if there is an error.
2217 */
2218 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002219ex_let_one(arg, tv, copy, endchars, op)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002220 char_u *arg; /* points to variable name */
Bram Moolenaar33570922005-01-25 22:26:29 +00002221 typval_T *tv; /* value to assign to variable */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002222 int copy; /* copy value from "tv" */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002223 char_u *endchars; /* valid chars after variable name or NULL */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002224 char_u *op; /* "+", "-", "." or NULL*/
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002225{
2226 int c1;
2227 char_u *name;
2228 char_u *p;
2229 char_u *arg_end = NULL;
2230 int len;
2231 int opt_flags;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002232 char_u *tofree = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002233
2234 /*
2235 * ":let $VAR = expr": Set environment variable.
2236 */
2237 if (*arg == '$')
2238 {
2239 /* Find the end of the name. */
2240 ++arg;
2241 name = arg;
2242 len = get_env_len(&arg);
2243 if (len == 0)
2244 EMSG2(_(e_invarg2), name - 1);
2245 else
2246 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002247 if (op != NULL && (*op == '+' || *op == '-'))
2248 EMSG2(_(e_letwrong), op);
2249 else if (endchars != NULL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002250 && vim_strchr(endchars, *skipwhite(arg)) == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002251 EMSG(_(e_letunexp));
2252 else
2253 {
2254 c1 = name[len];
2255 name[len] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002256 p = get_tv_string_chk(tv);
2257 if (p != NULL && op != NULL && *op == '.')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002258 {
2259 int mustfree = FALSE;
2260 char_u *s = vim_getenv(name, &mustfree);
2261
2262 if (s != NULL)
2263 {
2264 p = tofree = concat_str(s, p);
2265 if (mustfree)
2266 vim_free(s);
2267 }
2268 }
2269 if (p != NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002270 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002271 vim_setenv(name, p);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002272 if (STRICMP(name, "HOME") == 0)
2273 init_homedir();
2274 else if (didset_vim && STRICMP(name, "VIM") == 0)
2275 didset_vim = FALSE;
2276 else if (didset_vimruntime
2277 && STRICMP(name, "VIMRUNTIME") == 0)
2278 didset_vimruntime = FALSE;
2279 arg_end = arg;
2280 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002281 name[len] = c1;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002282 vim_free(tofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002283 }
2284 }
2285 }
2286
2287 /*
2288 * ":let &option = expr": Set option value.
2289 * ":let &l:option = expr": Set local option value.
2290 * ":let &g:option = expr": Set global option value.
2291 */
2292 else if (*arg == '&')
2293 {
2294 /* Find the end of the name. */
2295 p = find_option_end(&arg, &opt_flags);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002296 if (p == NULL || (endchars != NULL
2297 && vim_strchr(endchars, *skipwhite(p)) == NULL))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002298 EMSG(_(e_letunexp));
2299 else
2300 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002301 long n;
2302 int opt_type;
2303 long numval;
2304 char_u *stringval = NULL;
2305 char_u *s;
2306
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002307 c1 = *p;
2308 *p = NUL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002309
2310 n = get_tv_number(tv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002311 s = get_tv_string_chk(tv); /* != NULL if number or string */
2312 if (s != NULL && op != NULL && *op != '=')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002313 {
2314 opt_type = get_option_value(arg, &numval,
2315 &stringval, opt_flags);
2316 if ((opt_type == 1 && *op == '.')
2317 || (opt_type == 0 && *op != '.'))
2318 EMSG2(_(e_letwrong), op);
2319 else
2320 {
2321 if (opt_type == 1) /* number */
2322 {
2323 if (*op == '+')
2324 n = numval + n;
2325 else
2326 n = numval - n;
2327 }
2328 else if (opt_type == 0 && stringval != NULL) /* string */
2329 {
2330 s = concat_str(stringval, s);
2331 vim_free(stringval);
2332 stringval = s;
2333 }
2334 }
2335 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002336 if (s != NULL)
2337 {
2338 set_option_value(arg, n, s, opt_flags);
2339 arg_end = p;
2340 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002341 *p = c1;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002342 vim_free(stringval);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002343 }
2344 }
2345
2346 /*
2347 * ":let @r = expr": Set register contents.
2348 */
2349 else if (*arg == '@')
2350 {
2351 ++arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002352 if (op != NULL && (*op == '+' || *op == '-'))
2353 EMSG2(_(e_letwrong), op);
2354 else if (endchars != NULL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002355 && vim_strchr(endchars, *skipwhite(arg + 1)) == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002356 EMSG(_(e_letunexp));
2357 else
2358 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002359 char_u *ptofree = NULL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002360 char_u *s;
2361
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002362 p = get_tv_string_chk(tv);
2363 if (p != NULL && op != NULL && *op == '.')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002364 {
Bram Moolenaar92124a32005-06-17 22:03:40 +00002365 s = get_reg_contents(*arg == '@' ? '"' : *arg, TRUE, TRUE);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002366 if (s != NULL)
2367 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002368 p = ptofree = concat_str(s, p);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002369 vim_free(s);
2370 }
2371 }
2372 if (p != NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002373 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002374 write_reg_contents(*arg == '@' ? '"' : *arg, p, -1, FALSE);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002375 arg_end = arg + 1;
2376 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002377 vim_free(ptofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002378 }
2379 }
2380
2381 /*
2382 * ":let var = expr": Set internal variable.
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002383 * ":let {expr} = expr": Idem, name made with curly braces
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002384 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002385 else if (eval_isnamec1(*arg) || *arg == '{')
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002386 {
Bram Moolenaar33570922005-01-25 22:26:29 +00002387 lval_T lv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002388
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002389 p = get_lval(arg, tv, &lv, FALSE, FALSE, FALSE, FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002390 if (p != NULL && lv.ll_name != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002391 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002392 if (endchars != NULL && vim_strchr(endchars, *skipwhite(p)) == NULL)
2393 EMSG(_(e_letunexp));
2394 else
2395 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002396 set_var_lval(&lv, p, tv, copy, op);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002397 arg_end = p;
2398 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002399 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002400 clear_lval(&lv);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002401 }
2402
2403 else
2404 EMSG2(_(e_invarg2), arg);
2405
2406 return arg_end;
2407}
2408
2409/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00002410 * If "arg" is equal to "b:changedtick" give an error and return TRUE.
2411 */
2412 static int
2413check_changedtick(arg)
2414 char_u *arg;
2415{
2416 if (STRNCMP(arg, "b:changedtick", 13) == 0 && !eval_isnamec(arg[13]))
2417 {
2418 EMSG2(_(e_readonlyvar), arg);
2419 return TRUE;
2420 }
2421 return FALSE;
2422}
2423
2424/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002425 * Get an lval: variable, Dict item or List item that can be assigned a value
2426 * to: "name", "na{me}", "name[expr]", "name[expr:expr]", "name[expr][expr]",
2427 * "name.key", "name.key[expr]" etc.
2428 * Indexing only works if "name" is an existing List or Dictionary.
2429 * "name" points to the start of the name.
2430 * If "rettv" is not NULL it points to the value to be assigned.
2431 * "unlet" is TRUE for ":unlet": slightly different behavior when something is
2432 * wrong; must end in space or cmd separator.
2433 *
2434 * Returns a pointer to just after the name, including indexes.
Bram Moolenaara7043832005-01-21 11:56:39 +00002435 * When an evaluation error occurs "lp->ll_name" is NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002436 * Returns NULL for a parsing error. Still need to free items in "lp"!
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002437 */
2438 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002439get_lval(name, rettv, lp, unlet, skip, quiet, fne_flags)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002440 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +00002441 typval_T *rettv;
2442 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002443 int unlet;
2444 int skip;
2445 int quiet; /* don't give error messages */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002446 int fne_flags; /* flags for find_name_end() */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002447{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002448 char_u *p;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002449 char_u *expr_start, *expr_end;
2450 int cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00002451 dictitem_T *v;
2452 typval_T var1;
2453 typval_T var2;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002454 int empty1 = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00002455 listitem_T *ni;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002456 char_u *key = NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002457 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +00002458 hashtab_T *ht;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002459
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002460 /* Clear everything in "lp". */
Bram Moolenaar33570922005-01-25 22:26:29 +00002461 vim_memset(lp, 0, sizeof(lval_T));
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002462
2463 if (skip)
2464 {
2465 /* When skipping just find the end of the name. */
2466 lp->ll_name = name;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002467 return find_name_end(name, NULL, NULL, FNE_INCL_BR | fne_flags);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002468 }
2469
2470 /* Find the end of the name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002471 p = find_name_end(name, &expr_start, &expr_end, fne_flags);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002472 if (expr_start != NULL)
2473 {
2474 /* Don't expand the name when we already know there is an error. */
2475 if (unlet && !vim_iswhite(*p) && !ends_excmd(*p)
2476 && *p != '[' && *p != '.')
2477 {
2478 EMSG(_(e_trailing));
2479 return NULL;
2480 }
2481
2482 lp->ll_exp_name = make_expanded_name(name, expr_start, expr_end, p);
2483 if (lp->ll_exp_name == NULL)
2484 {
2485 /* Report an invalid expression in braces, unless the
2486 * expression evaluation has been cancelled due to an
2487 * aborting error, an interrupt, or an exception. */
2488 if (!aborting() && !quiet)
2489 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002490 emsg_severe = TRUE;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002491 EMSG2(_(e_invarg2), name);
2492 return NULL;
2493 }
2494 }
2495 lp->ll_name = lp->ll_exp_name;
2496 }
2497 else
2498 lp->ll_name = name;
2499
2500 /* Without [idx] or .key we are done. */
2501 if ((*p != '[' && *p != '.') || lp->ll_name == NULL)
2502 return p;
2503
2504 cc = *p;
2505 *p = NUL;
Bram Moolenaara7043832005-01-21 11:56:39 +00002506 v = find_var(lp->ll_name, &ht);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002507 if (v == NULL && !quiet)
2508 EMSG2(_(e_undefvar), lp->ll_name);
2509 *p = cc;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002510 if (v == NULL)
2511 return NULL;
2512
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002513 /*
2514 * Loop until no more [idx] or .key is following.
2515 */
Bram Moolenaar33570922005-01-25 22:26:29 +00002516 lp->ll_tv = &v->di_tv;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002517 while (*p == '[' || (*p == '.' && lp->ll_tv->v_type == VAR_DICT))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002518 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002519 if (!(lp->ll_tv->v_type == VAR_LIST && lp->ll_tv->vval.v_list != NULL)
2520 && !(lp->ll_tv->v_type == VAR_DICT
2521 && lp->ll_tv->vval.v_dict != NULL))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002522 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002523 if (!quiet)
2524 EMSG(_("E689: Can only index a List or Dictionary"));
2525 return NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002526 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002527 if (lp->ll_range)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002528 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002529 if (!quiet)
2530 EMSG(_("E708: [:] must come last"));
2531 return NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002532 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002533
Bram Moolenaar8c711452005-01-14 21:53:12 +00002534 len = -1;
2535 if (*p == '.')
2536 {
2537 key = p + 1;
2538 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
2539 ;
2540 if (len == 0)
2541 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002542 if (!quiet)
2543 EMSG(_(e_emptykey));
2544 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002545 }
2546 p = key + len;
2547 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002548 else
2549 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002550 /* Get the index [expr] or the first index [expr: ]. */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002551 p = skipwhite(p + 1);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002552 if (*p == ':')
2553 empty1 = TRUE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002554 else
2555 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002556 empty1 = FALSE;
2557 if (eval1(&p, &var1, TRUE) == FAIL) /* recursive! */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002558 return NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002559 if (get_tv_string_chk(&var1) == NULL)
2560 {
2561 /* not a number or string */
2562 clear_tv(&var1);
2563 return NULL;
2564 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002565 }
2566
2567 /* Optionally get the second index [ :expr]. */
2568 if (*p == ':')
2569 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002570 if (lp->ll_tv->v_type == VAR_DICT)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002571 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002572 if (!quiet)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002573 EMSG(_(e_dictrange));
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002574 if (!empty1)
2575 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002576 return NULL;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002577 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002578 if (rettv != NULL && (rettv->v_type != VAR_LIST
2579 || rettv->vval.v_list == NULL))
Bram Moolenaar8c711452005-01-14 21:53:12 +00002580 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002581 if (!quiet)
2582 EMSG(_("E709: [:] requires a List value"));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002583 if (!empty1)
2584 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002585 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002586 }
2587 p = skipwhite(p + 1);
2588 if (*p == ']')
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002589 lp->ll_empty2 = TRUE;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002590 else
2591 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002592 lp->ll_empty2 = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002593 if (eval1(&p, &var2, TRUE) == FAIL) /* recursive! */
2594 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002595 if (!empty1)
2596 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002597 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002598 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002599 if (get_tv_string_chk(&var2) == NULL)
2600 {
2601 /* not a number or string */
2602 if (!empty1)
2603 clear_tv(&var1);
2604 clear_tv(&var2);
2605 return NULL;
2606 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002607 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002608 lp->ll_range = TRUE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002609 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002610 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002611 lp->ll_range = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002612
Bram Moolenaar8c711452005-01-14 21:53:12 +00002613 if (*p != ']')
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002614 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002615 if (!quiet)
2616 EMSG(_(e_missbrac));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002617 if (!empty1)
2618 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002619 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002620 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002621 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002622 }
2623
2624 /* Skip to past ']'. */
2625 ++p;
2626 }
2627
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002628 if (lp->ll_tv->v_type == VAR_DICT)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002629 {
2630 if (len == -1)
2631 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002632 /* "[key]": get key from "var1" */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002633 key = get_tv_string(&var1); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002634 if (*key == NUL)
2635 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002636 if (!quiet)
2637 EMSG(_(e_emptykey));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002638 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002639 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002640 }
2641 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002642 lp->ll_list = NULL;
2643 lp->ll_dict = lp->ll_tv->vval.v_dict;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002644 lp->ll_di = dict_find(lp->ll_dict, key, len);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002645 if (lp->ll_di == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002646 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002647 /* Key does not exist in dict: may need to add it. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002648 if (*p == '[' || *p == '.' || unlet)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002649 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002650 if (!quiet)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002651 EMSG2(_(e_dictkey), key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002652 if (len == -1)
2653 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002654 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002655 }
2656 if (len == -1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002657 lp->ll_newkey = vim_strsave(key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002658 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002659 lp->ll_newkey = vim_strnsave(key, len);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002660 if (len == -1)
2661 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002662 if (lp->ll_newkey == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002663 p = NULL;
2664 break;
2665 }
2666 if (len == -1)
2667 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002668 lp->ll_tv = &lp->ll_di->di_tv;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002669 }
2670 else
2671 {
2672 /*
2673 * Get the number and item for the only or first index of the List.
2674 */
2675 if (empty1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002676 lp->ll_n1 = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002677 else
2678 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002679 lp->ll_n1 = get_tv_number(&var1); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002680 clear_tv(&var1);
2681 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002682 lp->ll_dict = NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002683 lp->ll_list = lp->ll_tv->vval.v_list;
2684 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2685 if (lp->ll_li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002686 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002687 if (lp->ll_n1 < 0)
2688 {
2689 lp->ll_n1 = 0;
2690 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2691 }
2692 }
2693 if (lp->ll_li == NULL)
2694 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002695 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002696 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002697 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002698 }
2699
2700 /*
2701 * May need to find the item or absolute index for the second
2702 * index of a range.
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002703 * When no index given: "lp->ll_empty2" is TRUE.
2704 * Otherwise "lp->ll_n2" is set to the second index.
Bram Moolenaar8c711452005-01-14 21:53:12 +00002705 */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002706 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002707 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002708 lp->ll_n2 = get_tv_number(&var2); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002709 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002710 if (lp->ll_n2 < 0)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002711 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002712 ni = list_find(lp->ll_list, lp->ll_n2);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002713 if (ni == NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002714 return NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002715 lp->ll_n2 = list_idx_of_item(lp->ll_list, ni);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002716 }
2717
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002718 /* Check that lp->ll_n2 isn't before lp->ll_n1. */
2719 if (lp->ll_n1 < 0)
2720 lp->ll_n1 = list_idx_of_item(lp->ll_list, lp->ll_li);
2721 if (lp->ll_n2 < lp->ll_n1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002722 return NULL;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002723 }
2724
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002725 lp->ll_tv = &lp->ll_li->li_tv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002726 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002727 }
2728
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002729 return p;
2730}
2731
2732/*
Bram Moolenaar33570922005-01-25 22:26:29 +00002733 * Clear lval "lp" that was filled by get_lval().
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002734 */
2735 static void
2736clear_lval(lp)
Bram Moolenaar33570922005-01-25 22:26:29 +00002737 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002738{
2739 vim_free(lp->ll_exp_name);
2740 vim_free(lp->ll_newkey);
2741}
2742
2743/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002744 * Set a variable that was parsed by get_lval() to "rettv".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002745 * "endp" points to just after the parsed name.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002746 * "op" is NULL, "+" for "+=", "-" for "-=", "." for ".=" or "=" for "=".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002747 */
2748 static void
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002749set_var_lval(lp, endp, rettv, copy, op)
Bram Moolenaar33570922005-01-25 22:26:29 +00002750 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002751 char_u *endp;
Bram Moolenaar33570922005-01-25 22:26:29 +00002752 typval_T *rettv;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002753 int copy;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002754 char_u *op;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002755{
2756 int cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00002757 listitem_T *ri;
2758 dictitem_T *di;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002759
2760 if (lp->ll_tv == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002761 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002762 if (!check_changedtick(lp->ll_name))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002763 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002764 cc = *endp;
2765 *endp = NUL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002766 if (op != NULL && *op != '=')
2767 {
Bram Moolenaar33570922005-01-25 22:26:29 +00002768 typval_T tv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002769
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002770 /* handle +=, -= and .= */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002771 if (get_var_tv(lp->ll_name, (int)STRLEN(lp->ll_name),
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002772 &tv, TRUE) == OK)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002773 {
2774 if (tv_op(&tv, rettv, op) == OK)
2775 set_var(lp->ll_name, &tv, FALSE);
2776 clear_tv(&tv);
2777 }
2778 }
2779 else
2780 set_var(lp->ll_name, rettv, copy);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002781 *endp = cc;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002782 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002783 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002784 else if (tv_check_lock(lp->ll_newkey == NULL
2785 ? lp->ll_tv->v_lock
2786 : lp->ll_tv->vval.v_dict->dv_lock, lp->ll_name))
2787 ;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002788 else if (lp->ll_range)
2789 {
2790 /*
2791 * Assign the List values to the list items.
2792 */
2793 for (ri = rettv->vval.v_list->lv_first; ri != NULL; )
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002794 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002795 if (op != NULL && *op != '=')
2796 tv_op(&lp->ll_li->li_tv, &ri->li_tv, op);
2797 else
2798 {
2799 clear_tv(&lp->ll_li->li_tv);
2800 copy_tv(&ri->li_tv, &lp->ll_li->li_tv);
2801 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002802 ri = ri->li_next;
2803 if (ri == NULL || (!lp->ll_empty2 && lp->ll_n2 == lp->ll_n1))
2804 break;
2805 if (lp->ll_li->li_next == NULL)
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002806 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002807 /* Need to add an empty item. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00002808 if (list_append_number(lp->ll_list, 0) == FAIL)
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002809 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002810 ri = NULL;
2811 break;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002812 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002813 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002814 lp->ll_li = lp->ll_li->li_next;
2815 ++lp->ll_n1;
2816 }
2817 if (ri != NULL)
2818 EMSG(_("E710: List value has more items than target"));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002819 else if (lp->ll_empty2
2820 ? (lp->ll_li != NULL && lp->ll_li->li_next != NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002821 : lp->ll_n1 != lp->ll_n2)
2822 EMSG(_("E711: List value has not enough items"));
2823 }
2824 else
2825 {
2826 /*
2827 * Assign to a List or Dictionary item.
2828 */
2829 if (lp->ll_newkey != NULL)
2830 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002831 if (op != NULL && *op != '=')
2832 {
2833 EMSG2(_(e_letwrong), op);
2834 return;
2835 }
2836
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002837 /* Need to add an item to the Dictionary. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002838 di = dictitem_alloc(lp->ll_newkey);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002839 if (di == NULL)
2840 return;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002841 if (dict_add(lp->ll_tv->vval.v_dict, di) == FAIL)
2842 {
2843 vim_free(di);
2844 return;
2845 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002846 lp->ll_tv = &di->di_tv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002847 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002848 else if (op != NULL && *op != '=')
2849 {
2850 tv_op(lp->ll_tv, rettv, op);
2851 return;
2852 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002853 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002854 clear_tv(lp->ll_tv);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002855
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002856 /*
2857 * Assign the value to the variable or list item.
2858 */
2859 if (copy)
2860 copy_tv(rettv, lp->ll_tv);
2861 else
2862 {
2863 *lp->ll_tv = *rettv;
Bram Moolenaar758711c2005-02-02 23:11:38 +00002864 lp->ll_tv->v_lock = 0;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002865 init_tv(rettv);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002866 }
2867 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002868}
2869
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002870/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002871 * Handle "tv1 += tv2", "tv1 -= tv2" and "tv1 .= tv2"
2872 * Returns OK or FAIL.
2873 */
2874 static int
2875tv_op(tv1, tv2, op)
Bram Moolenaar33570922005-01-25 22:26:29 +00002876 typval_T *tv1;
2877 typval_T *tv2;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002878 char_u *op;
2879{
2880 long n;
2881 char_u numbuf[NUMBUFLEN];
2882 char_u *s;
2883
2884 /* Can't do anything with a Funcref or a Dict on the right. */
2885 if (tv2->v_type != VAR_FUNC && tv2->v_type != VAR_DICT)
2886 {
2887 switch (tv1->v_type)
2888 {
2889 case VAR_DICT:
2890 case VAR_FUNC:
2891 break;
2892
2893 case VAR_LIST:
2894 if (*op != '+' || tv2->v_type != VAR_LIST)
2895 break;
2896 /* List += List */
2897 if (tv1->vval.v_list != NULL && tv2->vval.v_list != NULL)
2898 list_extend(tv1->vval.v_list, tv2->vval.v_list, NULL);
2899 return OK;
2900
2901 case VAR_NUMBER:
2902 case VAR_STRING:
2903 if (tv2->v_type == VAR_LIST)
2904 break;
2905 if (*op == '+' || *op == '-')
2906 {
2907 /* nr += nr or nr -= nr*/
2908 n = get_tv_number(tv1);
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002909#ifdef FEAT_FLOAT
2910 if (tv2->v_type == VAR_FLOAT)
2911 {
2912 float_T f = n;
2913
2914 if (*op == '+')
2915 f += tv2->vval.v_float;
2916 else
2917 f -= tv2->vval.v_float;
2918 clear_tv(tv1);
2919 tv1->v_type = VAR_FLOAT;
2920 tv1->vval.v_float = f;
2921 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002922 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002923#endif
2924 {
2925 if (*op == '+')
2926 n += get_tv_number(tv2);
2927 else
2928 n -= get_tv_number(tv2);
2929 clear_tv(tv1);
2930 tv1->v_type = VAR_NUMBER;
2931 tv1->vval.v_number = n;
2932 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002933 }
2934 else
2935 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002936 if (tv2->v_type == VAR_FLOAT)
2937 break;
2938
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002939 /* str .= str */
2940 s = get_tv_string(tv1);
2941 s = concat_str(s, get_tv_string_buf(tv2, numbuf));
2942 clear_tv(tv1);
2943 tv1->v_type = VAR_STRING;
2944 tv1->vval.v_string = s;
2945 }
2946 return OK;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002947
2948#ifdef FEAT_FLOAT
2949 case VAR_FLOAT:
2950 {
2951 float_T f;
2952
2953 if (*op == '.' || (tv2->v_type != VAR_FLOAT
2954 && tv2->v_type != VAR_NUMBER
2955 && tv2->v_type != VAR_STRING))
2956 break;
2957 if (tv2->v_type == VAR_FLOAT)
2958 f = tv2->vval.v_float;
2959 else
2960 f = get_tv_number(tv2);
2961 if (*op == '+')
2962 tv1->vval.v_float += f;
2963 else
2964 tv1->vval.v_float -= f;
2965 }
2966 return OK;
2967#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002968 }
2969 }
2970
2971 EMSG2(_(e_letwrong), op);
2972 return FAIL;
2973}
2974
2975/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002976 * Add a watcher to a list.
2977 */
2978 static void
2979list_add_watch(l, lw)
Bram Moolenaar33570922005-01-25 22:26:29 +00002980 list_T *l;
2981 listwatch_T *lw;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002982{
2983 lw->lw_next = l->lv_watch;
2984 l->lv_watch = lw;
2985}
2986
2987/*
Bram Moolenaar758711c2005-02-02 23:11:38 +00002988 * Remove a watcher from a list.
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002989 * No warning when it isn't found...
2990 */
2991 static void
2992list_rem_watch(l, lwrem)
Bram Moolenaar33570922005-01-25 22:26:29 +00002993 list_T *l;
2994 listwatch_T *lwrem;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002995{
Bram Moolenaar33570922005-01-25 22:26:29 +00002996 listwatch_T *lw, **lwp;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002997
2998 lwp = &l->lv_watch;
2999 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3000 {
3001 if (lw == lwrem)
3002 {
3003 *lwp = lw->lw_next;
3004 break;
3005 }
3006 lwp = &lw->lw_next;
3007 }
3008}
3009
3010/*
3011 * Just before removing an item from a list: advance watchers to the next
3012 * item.
3013 */
3014 static void
3015list_fix_watch(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00003016 list_T *l;
3017 listitem_T *item;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003018{
Bram Moolenaar33570922005-01-25 22:26:29 +00003019 listwatch_T *lw;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003020
3021 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3022 if (lw->lw_item == item)
3023 lw->lw_item = item->li_next;
3024}
3025
3026/*
3027 * Evaluate the expression used in a ":for var in expr" command.
3028 * "arg" points to "var".
3029 * Set "*errp" to TRUE for an error, FALSE otherwise;
3030 * Return a pointer that holds the info. Null when there is an error.
3031 */
3032 void *
3033eval_for_line(arg, errp, nextcmdp, skip)
3034 char_u *arg;
3035 int *errp;
3036 char_u **nextcmdp;
3037 int skip;
3038{
Bram Moolenaar33570922005-01-25 22:26:29 +00003039 forinfo_T *fi;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003040 char_u *expr;
Bram Moolenaar33570922005-01-25 22:26:29 +00003041 typval_T tv;
3042 list_T *l;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003043
3044 *errp = TRUE; /* default: there is an error */
3045
Bram Moolenaar33570922005-01-25 22:26:29 +00003046 fi = (forinfo_T *)alloc_clear(sizeof(forinfo_T));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003047 if (fi == NULL)
3048 return NULL;
3049
3050 expr = skip_var_list(arg, &fi->fi_varcount, &fi->fi_semicolon);
3051 if (expr == NULL)
3052 return fi;
3053
3054 expr = skipwhite(expr);
3055 if (expr[0] != 'i' || expr[1] != 'n' || !vim_iswhite(expr[2]))
3056 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00003057 EMSG(_("E690: Missing \"in\" after :for"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003058 return fi;
3059 }
3060
3061 if (skip)
3062 ++emsg_skip;
3063 if (eval0(skipwhite(expr + 2), &tv, nextcmdp, !skip) == OK)
3064 {
3065 *errp = FALSE;
3066 if (!skip)
3067 {
3068 l = tv.vval.v_list;
3069 if (tv.v_type != VAR_LIST || l == NULL)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003070 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003071 EMSG(_(e_listreq));
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003072 clear_tv(&tv);
3073 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003074 else
3075 {
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00003076 /* No need to increment the refcount, it's already set for the
3077 * list being used in "tv". */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003078 fi->fi_list = l;
3079 list_add_watch(l, &fi->fi_lw);
3080 fi->fi_lw.lw_item = l->lv_first;
3081 }
3082 }
3083 }
3084 if (skip)
3085 --emsg_skip;
3086
3087 return fi;
3088}
3089
3090/*
3091 * Use the first item in a ":for" list. Advance to the next.
3092 * Assign the values to the variable (list). "arg" points to the first one.
3093 * Return TRUE when a valid item was found, FALSE when at end of list or
3094 * something wrong.
3095 */
3096 int
3097next_for_item(fi_void, arg)
3098 void *fi_void;
3099 char_u *arg;
3100{
Bram Moolenaar33570922005-01-25 22:26:29 +00003101 forinfo_T *fi = (forinfo_T *)fi_void;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003102 int result;
Bram Moolenaar33570922005-01-25 22:26:29 +00003103 listitem_T *item;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003104
3105 item = fi->fi_lw.lw_item;
3106 if (item == NULL)
3107 result = FALSE;
3108 else
3109 {
3110 fi->fi_lw.lw_item = item->li_next;
3111 result = (ex_let_vars(arg, &item->li_tv, TRUE,
3112 fi->fi_semicolon, fi->fi_varcount, NULL) == OK);
3113 }
3114 return result;
3115}
3116
3117/*
3118 * Free the structure used to store info used by ":for".
3119 */
3120 void
3121free_for_info(fi_void)
3122 void *fi_void;
3123{
Bram Moolenaar33570922005-01-25 22:26:29 +00003124 forinfo_T *fi = (forinfo_T *)fi_void;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003125
Bram Moolenaarab7013c2005-01-09 21:23:56 +00003126 if (fi != NULL && fi->fi_list != NULL)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003127 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003128 list_rem_watch(fi->fi_list, &fi->fi_lw);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003129 list_unref(fi->fi_list);
3130 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003131 vim_free(fi);
3132}
3133
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3135
3136 void
3137set_context_for_expression(xp, arg, cmdidx)
3138 expand_T *xp;
3139 char_u *arg;
3140 cmdidx_T cmdidx;
3141{
3142 int got_eq = FALSE;
3143 int c;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003144 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003146 if (cmdidx == CMD_let)
3147 {
3148 xp->xp_context = EXPAND_USER_VARS;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003149 if (vim_strpbrk(arg, (char_u *)"\"'+-*/%.=!?~|&$([<>,#") == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003150 {
3151 /* ":let var1 var2 ...": find last space. */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003152 for (p = arg + STRLEN(arg); p >= arg; )
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003153 {
3154 xp->xp_pattern = p;
Bram Moolenaar33570922005-01-25 22:26:29 +00003155 mb_ptr_back(arg, p);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003156 if (vim_iswhite(*p))
3157 break;
3158 }
3159 return;
3160 }
3161 }
3162 else
3163 xp->xp_context = cmdidx == CMD_call ? EXPAND_FUNCTIONS
3164 : EXPAND_EXPRESSION;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165 while ((xp->xp_pattern = vim_strpbrk(arg,
3166 (char_u *)"\"'+-*/%.=!?~|&$([<>,#")) != NULL)
3167 {
3168 c = *xp->xp_pattern;
3169 if (c == '&')
3170 {
3171 c = xp->xp_pattern[1];
3172 if (c == '&')
3173 {
3174 ++xp->xp_pattern;
3175 xp->xp_context = cmdidx != CMD_let || got_eq
3176 ? EXPAND_EXPRESSION : EXPAND_NOTHING;
3177 }
3178 else if (c != ' ')
Bram Moolenaar11cbeb12005-03-11 22:51:16 +00003179 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180 xp->xp_context = EXPAND_SETTINGS;
Bram Moolenaar11cbeb12005-03-11 22:51:16 +00003181 if ((c == 'l' || c == 'g') && xp->xp_pattern[2] == ':')
3182 xp->xp_pattern += 2;
3183
3184 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185 }
3186 else if (c == '$')
3187 {
3188 /* environment variable */
3189 xp->xp_context = EXPAND_ENV_VARS;
3190 }
3191 else if (c == '=')
3192 {
3193 got_eq = TRUE;
3194 xp->xp_context = EXPAND_EXPRESSION;
3195 }
3196 else if (c == '<'
3197 && xp->xp_context == EXPAND_FUNCTIONS
3198 && vim_strchr(xp->xp_pattern, '(') == NULL)
3199 {
3200 /* Function name can start with "<SNR>" */
3201 break;
3202 }
3203 else if (cmdidx != CMD_let || got_eq)
3204 {
3205 if (c == '"') /* string */
3206 {
3207 while ((c = *++xp->xp_pattern) != NUL && c != '"')
3208 if (c == '\\' && xp->xp_pattern[1] != NUL)
3209 ++xp->xp_pattern;
3210 xp->xp_context = EXPAND_NOTHING;
3211 }
3212 else if (c == '\'') /* literal string */
3213 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00003214 /* Trick: '' is like stopping and starting a literal string. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215 while ((c = *++xp->xp_pattern) != NUL && c != '\'')
3216 /* skip */ ;
3217 xp->xp_context = EXPAND_NOTHING;
3218 }
3219 else if (c == '|')
3220 {
3221 if (xp->xp_pattern[1] == '|')
3222 {
3223 ++xp->xp_pattern;
3224 xp->xp_context = EXPAND_EXPRESSION;
3225 }
3226 else
3227 xp->xp_context = EXPAND_COMMANDS;
3228 }
3229 else
3230 xp->xp_context = EXPAND_EXPRESSION;
3231 }
3232 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003233 /* Doesn't look like something valid, expand as an expression
3234 * anyway. */
3235 xp->xp_context = EXPAND_EXPRESSION;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003236 arg = xp->xp_pattern;
3237 if (*arg != NUL)
3238 while ((c = *++arg) != NUL && (c == ' ' || c == '\t'))
3239 /* skip */ ;
3240 }
3241 xp->xp_pattern = arg;
3242}
3243
3244#endif /* FEAT_CMDL_COMPL */
3245
3246/*
3247 * ":1,25call func(arg1, arg2)" function call.
3248 */
3249 void
3250ex_call(eap)
3251 exarg_T *eap;
3252{
3253 char_u *arg = eap->arg;
3254 char_u *startarg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255 char_u *name;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003256 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +00003258 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259 linenr_T lnum;
3260 int doesrange;
3261 int failed = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00003262 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003264 tofree = trans_function_name(&arg, eap->skip, TFN_INT, &fudi);
Bram Moolenaara2a31752006-10-24 11:49:25 +00003265 if (fudi.fd_newkey != NULL)
3266 {
3267 /* Still need to give an error message for missing key. */
3268 EMSG2(_(e_dictkey), fudi.fd_newkey);
3269 vim_free(fudi.fd_newkey);
3270 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003271 if (tofree == NULL)
3272 return;
3273
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003274 /* Increase refcount on dictionary, it could get deleted when evaluating
3275 * the arguments. */
3276 if (fudi.fd_dict != NULL)
3277 ++fudi.fd_dict->dv_refcount;
3278
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003279 /* If it is the name of a variable of type VAR_FUNC use its contents. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003280 len = (int)STRLEN(tofree);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003281 name = deref_func_name(tofree, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282
Bram Moolenaar532c7802005-01-27 14:44:31 +00003283 /* Skip white space to allow ":call func ()". Not good, but required for
3284 * backward compatibility. */
3285 startarg = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003286 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287
3288 if (*startarg != '(')
3289 {
Bram Moolenaar8dd9ac52008-11-06 10:05:42 +00003290 EMSG2(_("E107: Missing parentheses: %s"), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291 goto end;
3292 }
3293
3294 /*
3295 * When skipping, evaluate the function once, to find the end of the
3296 * arguments.
3297 * When the function takes a range, this is discovered after the first
3298 * call, and the loop is broken.
3299 */
3300 if (eap->skip)
3301 {
3302 ++emsg_skip;
3303 lnum = eap->line2; /* do it once, also with an invalid range */
3304 }
3305 else
3306 lnum = eap->line1;
3307 for ( ; lnum <= eap->line2; ++lnum)
3308 {
3309 if (!eap->skip && eap->addr_count > 0)
3310 {
3311 curwin->w_cursor.lnum = lnum;
3312 curwin->w_cursor.col = 0;
3313 }
3314 arg = startarg;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003315 if (get_func_tv(name, (int)STRLEN(name), &rettv, &arg,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003316 eap->line1, eap->line2, &doesrange,
3317 !eap->skip, fudi.fd_dict) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318 {
3319 failed = TRUE;
3320 break;
3321 }
Bram Moolenaarf2789872006-11-28 19:54:04 +00003322
3323 /* Handle a function returning a Funcref, Dictionary or List. */
3324 if (handle_subscript(&arg, &rettv, !eap->skip, TRUE) == FAIL)
3325 {
3326 failed = TRUE;
3327 break;
3328 }
3329
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003330 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331 if (doesrange || eap->skip)
3332 break;
Bram Moolenaarf2789872006-11-28 19:54:04 +00003333
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334 /* Stop when immediately aborting on error, or when an interrupt
Bram Moolenaar49cd9572005-01-03 21:06:01 +00003335 * occurred or an exception was thrown but not caught.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003336 * get_func_tv() returned OK, so that the check for trailing
Bram Moolenaar49cd9572005-01-03 21:06:01 +00003337 * characters below is executed. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003338 if (aborting())
3339 break;
3340 }
3341 if (eap->skip)
3342 --emsg_skip;
3343
3344 if (!failed)
3345 {
3346 /* Check for trailing illegal characters and a following command. */
3347 if (!ends_excmd(*arg))
3348 {
3349 emsg_severe = TRUE;
3350 EMSG(_(e_trailing));
3351 }
3352 else
3353 eap->nextcmd = check_nextcmd(arg);
3354 }
3355
3356end:
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003357 dict_unref(fudi.fd_dict);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003358 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359}
3360
3361/*
3362 * ":unlet[!] var1 ... " command.
3363 */
3364 void
3365ex_unlet(eap)
3366 exarg_T *eap;
3367{
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003368 ex_unletlock(eap, eap->arg, 0);
3369}
3370
3371/*
3372 * ":lockvar" and ":unlockvar" commands
3373 */
3374 void
3375ex_lockvar(eap)
3376 exarg_T *eap;
3377{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378 char_u *arg = eap->arg;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003379 int deep = 2;
3380
3381 if (eap->forceit)
3382 deep = -1;
3383 else if (vim_isdigit(*arg))
3384 {
3385 deep = getdigits(&arg);
3386 arg = skipwhite(arg);
3387 }
3388
3389 ex_unletlock(eap, arg, deep);
3390}
3391
3392/*
3393 * ":unlet", ":lockvar" and ":unlockvar" are quite similar.
3394 */
3395 static void
3396ex_unletlock(eap, argstart, deep)
3397 exarg_T *eap;
3398 char_u *argstart;
3399 int deep;
3400{
3401 char_u *arg = argstart;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402 char_u *name_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 int error = FALSE;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003404 lval_T lv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405
3406 do
3407 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003408 /* Parse the name and find the end. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00003409 name_end = get_lval(arg, NULL, &lv, TRUE, eap->skip || error, FALSE,
3410 FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003411 if (lv.ll_name == NULL)
3412 error = TRUE; /* error but continue parsing */
3413 if (name_end == NULL || (!vim_iswhite(*name_end)
3414 && !ends_excmd(*name_end)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003416 if (name_end != NULL)
3417 {
3418 emsg_severe = TRUE;
3419 EMSG(_(e_trailing));
3420 }
3421 if (!(eap->skip || error))
3422 clear_lval(&lv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003423 break;
3424 }
3425
3426 if (!error && !eap->skip)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003427 {
3428 if (eap->cmdidx == CMD_unlet)
3429 {
3430 if (do_unlet_var(&lv, name_end, eap->forceit) == FAIL)
3431 error = TRUE;
3432 }
3433 else
3434 {
3435 if (do_lock_var(&lv, name_end, deep,
3436 eap->cmdidx == CMD_lockvar) == FAIL)
3437 error = TRUE;
3438 }
3439 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003441 if (!eap->skip)
3442 clear_lval(&lv);
3443
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 arg = skipwhite(name_end);
3445 } while (!ends_excmd(*arg));
3446
3447 eap->nextcmd = check_nextcmd(arg);
3448}
3449
Bram Moolenaar8c711452005-01-14 21:53:12 +00003450 static int
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003451do_unlet_var(lp, name_end, forceit)
Bram Moolenaar33570922005-01-25 22:26:29 +00003452 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003453 char_u *name_end;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003454 int forceit;
3455{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003456 int ret = OK;
3457 int cc;
3458
3459 if (lp->ll_tv == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00003460 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003461 cc = *name_end;
3462 *name_end = NUL;
3463
3464 /* Normal name or expanded name. */
3465 if (check_changedtick(lp->ll_name))
3466 ret = FAIL;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003467 else if (do_unlet(lp->ll_name, forceit) == FAIL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003468 ret = FAIL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003469 *name_end = cc;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003470 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003471 else if (tv_check_lock(lp->ll_tv->v_lock, lp->ll_name))
3472 return FAIL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003473 else if (lp->ll_range)
3474 {
Bram Moolenaar33570922005-01-25 22:26:29 +00003475 listitem_T *li;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003476
3477 /* Delete a range of List items. */
3478 while (lp->ll_li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3479 {
3480 li = lp->ll_li->li_next;
3481 listitem_remove(lp->ll_list, lp->ll_li);
3482 lp->ll_li = li;
3483 ++lp->ll_n1;
3484 }
3485 }
3486 else
3487 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003488 if (lp->ll_list != NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003489 /* unlet a List item. */
3490 listitem_remove(lp->ll_list, lp->ll_li);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003491 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003492 /* unlet a Dictionary item. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003493 dictitem_remove(lp->ll_dict, lp->ll_di);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003494 }
3495
3496 return ret;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003497}
3498
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499/*
3500 * "unlet" a variable. Return OK if it existed, FAIL if not.
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003501 * When "forceit" is TRUE don't complain if the variable doesn't exist.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 */
3503 int
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003504do_unlet(name, forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505 char_u *name;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003506 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507{
Bram Moolenaar33570922005-01-25 22:26:29 +00003508 hashtab_T *ht;
3509 hashitem_T *hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003510 char_u *varname;
Bram Moolenaarafbdeb82008-01-05 21:16:31 +00003511 dictitem_T *di;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512
Bram Moolenaar33570922005-01-25 22:26:29 +00003513 ht = find_var_ht(name, &varname);
3514 if (ht != NULL && *varname != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515 {
Bram Moolenaar33570922005-01-25 22:26:29 +00003516 hi = hash_find(ht, varname);
3517 if (!HASHITEM_EMPTY(hi))
Bram Moolenaara7043832005-01-21 11:56:39 +00003518 {
Bram Moolenaarafbdeb82008-01-05 21:16:31 +00003519 di = HI2DI(hi);
3520 if (var_check_fixed(di->di_flags, name)
3521 || var_check_ro(di->di_flags, name))
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003522 return FAIL;
3523 delete_var(ht, hi);
3524 return OK;
Bram Moolenaara7043832005-01-21 11:56:39 +00003525 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003526 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003527 if (forceit)
3528 return OK;
3529 EMSG2(_("E108: No such variable: \"%s\""), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530 return FAIL;
3531}
3532
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003533/*
3534 * Lock or unlock variable indicated by "lp".
3535 * "deep" is the levels to go (-1 for unlimited);
3536 * "lock" is TRUE for ":lockvar", FALSE for ":unlockvar".
3537 */
3538 static int
3539do_lock_var(lp, name_end, deep, lock)
3540 lval_T *lp;
3541 char_u *name_end;
3542 int deep;
3543 int lock;
3544{
3545 int ret = OK;
3546 int cc;
3547 dictitem_T *di;
3548
3549 if (deep == 0) /* nothing to do */
3550 return OK;
3551
3552 if (lp->ll_tv == NULL)
3553 {
3554 cc = *name_end;
3555 *name_end = NUL;
3556
3557 /* Normal name or expanded name. */
3558 if (check_changedtick(lp->ll_name))
3559 ret = FAIL;
3560 else
3561 {
3562 di = find_var(lp->ll_name, NULL);
3563 if (di == NULL)
3564 ret = FAIL;
3565 else
3566 {
3567 if (lock)
3568 di->di_flags |= DI_FLAGS_LOCK;
3569 else
3570 di->di_flags &= ~DI_FLAGS_LOCK;
3571 item_lock(&di->di_tv, deep, lock);
3572 }
3573 }
3574 *name_end = cc;
3575 }
3576 else if (lp->ll_range)
3577 {
3578 listitem_T *li = lp->ll_li;
3579
3580 /* (un)lock a range of List items. */
3581 while (li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3582 {
3583 item_lock(&li->li_tv, deep, lock);
3584 li = li->li_next;
3585 ++lp->ll_n1;
3586 }
3587 }
3588 else if (lp->ll_list != NULL)
3589 /* (un)lock a List item. */
3590 item_lock(&lp->ll_li->li_tv, deep, lock);
3591 else
3592 /* un(lock) a Dictionary item. */
3593 item_lock(&lp->ll_di->di_tv, deep, lock);
3594
3595 return ret;
3596}
3597
3598/*
3599 * Lock or unlock an item. "deep" is nr of levels to go.
3600 */
3601 static void
3602item_lock(tv, deep, lock)
3603 typval_T *tv;
3604 int deep;
3605 int lock;
3606{
3607 static int recurse = 0;
3608 list_T *l;
3609 listitem_T *li;
3610 dict_T *d;
3611 hashitem_T *hi;
3612 int todo;
3613
3614 if (recurse >= DICT_MAXNEST)
3615 {
3616 EMSG(_("E743: variable nested too deep for (un)lock"));
3617 return;
3618 }
3619 if (deep == 0)
3620 return;
3621 ++recurse;
3622
3623 /* lock/unlock the item itself */
3624 if (lock)
3625 tv->v_lock |= VAR_LOCKED;
3626 else
3627 tv->v_lock &= ~VAR_LOCKED;
3628
3629 switch (tv->v_type)
3630 {
3631 case VAR_LIST:
3632 if ((l = tv->vval.v_list) != NULL)
3633 {
3634 if (lock)
3635 l->lv_lock |= VAR_LOCKED;
3636 else
3637 l->lv_lock &= ~VAR_LOCKED;
3638 if (deep < 0 || deep > 1)
3639 /* recursive: lock/unlock the items the List contains */
3640 for (li = l->lv_first; li != NULL; li = li->li_next)
3641 item_lock(&li->li_tv, deep - 1, lock);
3642 }
3643 break;
3644 case VAR_DICT:
3645 if ((d = tv->vval.v_dict) != NULL)
3646 {
3647 if (lock)
3648 d->dv_lock |= VAR_LOCKED;
3649 else
3650 d->dv_lock &= ~VAR_LOCKED;
3651 if (deep < 0 || deep > 1)
3652 {
3653 /* recursive: lock/unlock the items the List contains */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003654 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003655 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
3656 {
3657 if (!HASHITEM_EMPTY(hi))
3658 {
3659 --todo;
3660 item_lock(&HI2DI(hi)->di_tv, deep - 1, lock);
3661 }
3662 }
3663 }
3664 }
3665 }
3666 --recurse;
3667}
3668
Bram Moolenaara40058a2005-07-11 22:42:07 +00003669/*
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +00003670 * Return TRUE if typeval "tv" is locked: Either that value is locked itself
3671 * or it refers to a List or Dictionary that is locked.
Bram Moolenaara40058a2005-07-11 22:42:07 +00003672 */
3673 static int
3674tv_islocked(tv)
3675 typval_T *tv;
3676{
3677 return (tv->v_lock & VAR_LOCKED)
3678 || (tv->v_type == VAR_LIST
3679 && tv->vval.v_list != NULL
3680 && (tv->vval.v_list->lv_lock & VAR_LOCKED))
3681 || (tv->v_type == VAR_DICT
3682 && tv->vval.v_dict != NULL
3683 && (tv->vval.v_dict->dv_lock & VAR_LOCKED));
3684}
3685
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686#if (defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)) || defined(PROTO)
3687/*
3688 * Delete all "menutrans_" variables.
3689 */
3690 void
3691del_menutrans_vars()
3692{
Bram Moolenaar33570922005-01-25 22:26:29 +00003693 hashitem_T *hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003694 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695
Bram Moolenaar33570922005-01-25 22:26:29 +00003696 hash_lock(&globvarht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003697 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00003698 for (hi = globvarht.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaara7043832005-01-21 11:56:39 +00003699 {
3700 if (!HASHITEM_EMPTY(hi))
3701 {
3702 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00003703 if (STRNCMP(HI2DI(hi)->di_key, "menutrans_", 10) == 0)
3704 delete_var(&globvarht, hi);
Bram Moolenaara7043832005-01-21 11:56:39 +00003705 }
3706 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003707 hash_unlock(&globvarht);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708}
3709#endif
3710
3711#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3712
3713/*
3714 * Local string buffer for the next two functions to store a variable name
3715 * with its prefix. Allocated in cat_prefix_varname(), freed later in
3716 * get_user_var_name().
3717 */
3718
3719static char_u *cat_prefix_varname __ARGS((int prefix, char_u *name));
3720
3721static char_u *varnamebuf = NULL;
3722static int varnamebuflen = 0;
3723
3724/*
3725 * Function to concatenate a prefix and a variable name.
3726 */
3727 static char_u *
3728cat_prefix_varname(prefix, name)
3729 int prefix;
3730 char_u *name;
3731{
3732 int len;
3733
3734 len = (int)STRLEN(name) + 3;
3735 if (len > varnamebuflen)
3736 {
3737 vim_free(varnamebuf);
3738 len += 10; /* some additional space */
3739 varnamebuf = alloc(len);
3740 if (varnamebuf == NULL)
3741 {
3742 varnamebuflen = 0;
3743 return NULL;
3744 }
3745 varnamebuflen = len;
3746 }
3747 *varnamebuf = prefix;
3748 varnamebuf[1] = ':';
3749 STRCPY(varnamebuf + 2, name);
3750 return varnamebuf;
3751}
3752
3753/*
3754 * Function given to ExpandGeneric() to obtain the list of user defined
3755 * (global/buffer/window/built-in) variable names.
3756 */
3757/*ARGSUSED*/
3758 char_u *
3759get_user_var_name(xp, idx)
3760 expand_T *xp;
3761 int idx;
3762{
Bram Moolenaar532c7802005-01-27 14:44:31 +00003763 static long_u gdone;
3764 static long_u bdone;
3765 static long_u wdone;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003766#ifdef FEAT_WINDOWS
3767 static long_u tdone;
3768#endif
Bram Moolenaar532c7802005-01-27 14:44:31 +00003769 static int vidx;
3770 static hashitem_T *hi;
3771 hashtab_T *ht;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772
3773 if (idx == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003774 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003775 gdone = bdone = wdone = vidx = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003776#ifdef FEAT_WINDOWS
3777 tdone = 0;
3778#endif
3779 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003780
3781 /* Global variables */
3782 if (gdone < globvarht.ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003784 if (gdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003785 hi = globvarht.ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003786 else
3787 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003788 while (HASHITEM_EMPTY(hi))
3789 ++hi;
3790 if (STRNCMP("g:", xp->xp_pattern, 2) == 0)
3791 return cat_prefix_varname('g', hi->hi_key);
3792 return hi->hi_key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003794
3795 /* b: variables */
3796 ht = &curbuf->b_vars.dv_hashtab;
3797 if (bdone < ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003799 if (bdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003800 hi = ht->ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003801 else
3802 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003803 while (HASHITEM_EMPTY(hi))
3804 ++hi;
3805 return cat_prefix_varname('b', hi->hi_key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003807 if (bdone == ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003809 ++bdone;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810 return (char_u *)"b:changedtick";
3811 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003812
3813 /* w: variables */
3814 ht = &curwin->w_vars.dv_hashtab;
3815 if (wdone < ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00003817 if (wdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003818 hi = ht->ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003819 else
3820 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003821 while (HASHITEM_EMPTY(hi))
3822 ++hi;
3823 return cat_prefix_varname('w', hi->hi_key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003825
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003826#ifdef FEAT_WINDOWS
3827 /* t: variables */
3828 ht = &curtab->tp_vars.dv_hashtab;
3829 if (tdone < ht->ht_used)
3830 {
3831 if (tdone++ == 0)
3832 hi = ht->ht_array;
3833 else
3834 ++hi;
3835 while (HASHITEM_EMPTY(hi))
3836 ++hi;
3837 return cat_prefix_varname('t', hi->hi_key);
3838 }
3839#endif
3840
Bram Moolenaar33570922005-01-25 22:26:29 +00003841 /* v: variables */
3842 if (vidx < VV_LEN)
3843 return cat_prefix_varname('v', (char_u *)vimvars[vidx++].vv_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844
3845 vim_free(varnamebuf);
3846 varnamebuf = NULL;
3847 varnamebuflen = 0;
3848 return NULL;
3849}
3850
3851#endif /* FEAT_CMDL_COMPL */
3852
3853/*
3854 * types for expressions.
3855 */
3856typedef enum
3857{
3858 TYPE_UNKNOWN = 0
3859 , TYPE_EQUAL /* == */
3860 , TYPE_NEQUAL /* != */
3861 , TYPE_GREATER /* > */
3862 , TYPE_GEQUAL /* >= */
3863 , TYPE_SMALLER /* < */
3864 , TYPE_SEQUAL /* <= */
3865 , TYPE_MATCH /* =~ */
3866 , TYPE_NOMATCH /* !~ */
3867} exptype_T;
3868
3869/*
3870 * The "evaluate" argument: When FALSE, the argument is only parsed but not
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003871 * executed. The function may return OK, but the rettv will be of type
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872 * VAR_UNKNOWN. The function still returns FAIL for a syntax error.
3873 */
3874
3875/*
3876 * Handle zero level expression.
3877 * This calls eval1() and handles error message and nextcmd.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003878 * Put the result in "rettv" when returning OK and "evaluate" is TRUE.
Bram Moolenaar4463f292005-09-25 22:20:24 +00003879 * Note: "rettv.v_lock" is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880 * Return OK or FAIL.
3881 */
3882 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003883eval0(arg, rettv, nextcmd, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 char_u *arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00003885 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886 char_u **nextcmd;
3887 int evaluate;
3888{
3889 int ret;
3890 char_u *p;
3891
3892 p = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003893 ret = eval1(&p, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003894 if (ret == FAIL || !ends_excmd(*p))
3895 {
3896 if (ret != FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003897 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003898 /*
3899 * Report the invalid expression unless the expression evaluation has
3900 * been cancelled due to an aborting error, an interrupt, or an
3901 * exception.
3902 */
3903 if (!aborting())
3904 EMSG2(_(e_invexpr2), arg);
3905 ret = FAIL;
3906 }
3907 if (nextcmd != NULL)
3908 *nextcmd = check_nextcmd(p);
3909
3910 return ret;
3911}
3912
3913/*
3914 * Handle top level expression:
3915 * expr1 ? expr0 : expr0
3916 *
3917 * "arg" must point to the first non-white of the expression.
3918 * "arg" is advanced to the next non-white after the recognized expression.
3919 *
Bram Moolenaar4463f292005-09-25 22:20:24 +00003920 * Note: "rettv.v_lock" is not set.
3921 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922 * Return OK or FAIL.
3923 */
3924 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003925eval1(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00003927 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928 int evaluate;
3929{
3930 int result;
Bram Moolenaar33570922005-01-25 22:26:29 +00003931 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003932
3933 /*
3934 * Get the first variable.
3935 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003936 if (eval2(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937 return FAIL;
3938
3939 if ((*arg)[0] == '?')
3940 {
3941 result = FALSE;
3942 if (evaluate)
3943 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003944 int error = FALSE;
3945
3946 if (get_tv_number_chk(rettv, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003947 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003948 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003949 if (error)
3950 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 }
3952
3953 /*
3954 * Get the second variable.
3955 */
3956 *arg = skipwhite(*arg + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003957 if (eval1(arg, rettv, evaluate && result) == FAIL) /* recursive! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958 return FAIL;
3959
3960 /*
3961 * Check for the ":".
3962 */
3963 if ((*arg)[0] != ':')
3964 {
3965 EMSG(_("E109: Missing ':' after '?'"));
3966 if (evaluate && result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003967 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968 return FAIL;
3969 }
3970
3971 /*
3972 * Get the third variable.
3973 */
3974 *arg = skipwhite(*arg + 1);
3975 if (eval1(arg, &var2, evaluate && !result) == FAIL) /* recursive! */
3976 {
3977 if (evaluate && result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003978 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979 return FAIL;
3980 }
3981 if (evaluate && !result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003982 *rettv = var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 }
3984
3985 return OK;
3986}
3987
3988/*
3989 * Handle first level expression:
3990 * expr2 || expr2 || expr2 logical OR
3991 *
3992 * "arg" must point to the first non-white of the expression.
3993 * "arg" is advanced to the next non-white after the recognized expression.
3994 *
3995 * Return OK or FAIL.
3996 */
3997 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003998eval2(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004000 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001 int evaluate;
4002{
Bram Moolenaar33570922005-01-25 22:26:29 +00004003 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004 long result;
4005 int first;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004006 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007
4008 /*
4009 * Get the first variable.
4010 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004011 if (eval3(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012 return FAIL;
4013
4014 /*
4015 * Repeat until there is no following "||".
4016 */
4017 first = TRUE;
4018 result = FALSE;
4019 while ((*arg)[0] == '|' && (*arg)[1] == '|')
4020 {
4021 if (evaluate && first)
4022 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004023 if (get_tv_number_chk(rettv, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004025 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004026 if (error)
4027 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028 first = FALSE;
4029 }
4030
4031 /*
4032 * Get the second variable.
4033 */
4034 *arg = skipwhite(*arg + 2);
4035 if (eval3(arg, &var2, evaluate && !result) == FAIL)
4036 return FAIL;
4037
4038 /*
4039 * Compute the result.
4040 */
4041 if (evaluate && !result)
4042 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004043 if (get_tv_number_chk(&var2, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004045 clear_tv(&var2);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004046 if (error)
4047 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048 }
4049 if (evaluate)
4050 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004051 rettv->v_type = VAR_NUMBER;
4052 rettv->vval.v_number = result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 }
4054 }
4055
4056 return OK;
4057}
4058
4059/*
4060 * Handle second level expression:
4061 * expr3 && expr3 && expr3 logical AND
4062 *
4063 * "arg" must point to the first non-white of the expression.
4064 * "arg" is advanced to the next non-white after the recognized expression.
4065 *
4066 * Return OK or FAIL.
4067 */
4068 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004069eval3(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004070 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004071 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072 int evaluate;
4073{
Bram Moolenaar33570922005-01-25 22:26:29 +00004074 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 long result;
4076 int first;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004077 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078
4079 /*
4080 * Get the first variable.
4081 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004082 if (eval4(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083 return FAIL;
4084
4085 /*
4086 * Repeat until there is no following "&&".
4087 */
4088 first = TRUE;
4089 result = TRUE;
4090 while ((*arg)[0] == '&' && (*arg)[1] == '&')
4091 {
4092 if (evaluate && first)
4093 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004094 if (get_tv_number_chk(rettv, &error) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004095 result = FALSE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004096 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004097 if (error)
4098 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 first = FALSE;
4100 }
4101
4102 /*
4103 * Get the second variable.
4104 */
4105 *arg = skipwhite(*arg + 2);
4106 if (eval4(arg, &var2, evaluate && result) == FAIL)
4107 return FAIL;
4108
4109 /*
4110 * Compute the result.
4111 */
4112 if (evaluate && result)
4113 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004114 if (get_tv_number_chk(&var2, &error) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115 result = FALSE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004116 clear_tv(&var2);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004117 if (error)
4118 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004119 }
4120 if (evaluate)
4121 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004122 rettv->v_type = VAR_NUMBER;
4123 rettv->vval.v_number = result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 }
4125 }
4126
4127 return OK;
4128}
4129
4130/*
4131 * Handle third level expression:
4132 * var1 == var2
4133 * var1 =~ var2
4134 * var1 != var2
4135 * var1 !~ var2
4136 * var1 > var2
4137 * var1 >= var2
4138 * var1 < var2
4139 * var1 <= var2
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004140 * var1 is var2
4141 * var1 isnot var2
Bram Moolenaar071d4272004-06-13 20:20:40 +00004142 *
4143 * "arg" must point to the first non-white of the expression.
4144 * "arg" is advanced to the next non-white after the recognized expression.
4145 *
4146 * Return OK or FAIL.
4147 */
4148 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004149eval4(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004151 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152 int evaluate;
4153{
Bram Moolenaar33570922005-01-25 22:26:29 +00004154 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155 char_u *p;
4156 int i;
4157 exptype_T type = TYPE_UNKNOWN;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004158 int type_is = FALSE; /* TRUE for "is" and "isnot" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159 int len = 2;
4160 long n1, n2;
4161 char_u *s1, *s2;
4162 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4163 regmatch_T regmatch;
4164 int ic;
4165 char_u *save_cpo;
4166
4167 /*
4168 * Get the first variable.
4169 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004170 if (eval5(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171 return FAIL;
4172
4173 p = *arg;
4174 switch (p[0])
4175 {
4176 case '=': if (p[1] == '=')
4177 type = TYPE_EQUAL;
4178 else if (p[1] == '~')
4179 type = TYPE_MATCH;
4180 break;
4181 case '!': if (p[1] == '=')
4182 type = TYPE_NEQUAL;
4183 else if (p[1] == '~')
4184 type = TYPE_NOMATCH;
4185 break;
4186 case '>': if (p[1] != '=')
4187 {
4188 type = TYPE_GREATER;
4189 len = 1;
4190 }
4191 else
4192 type = TYPE_GEQUAL;
4193 break;
4194 case '<': if (p[1] != '=')
4195 {
4196 type = TYPE_SMALLER;
4197 len = 1;
4198 }
4199 else
4200 type = TYPE_SEQUAL;
4201 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004202 case 'i': if (p[1] == 's')
4203 {
4204 if (p[2] == 'n' && p[3] == 'o' && p[4] == 't')
4205 len = 5;
4206 if (!vim_isIDc(p[len]))
4207 {
4208 type = len == 2 ? TYPE_EQUAL : TYPE_NEQUAL;
4209 type_is = TRUE;
4210 }
4211 }
4212 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004213 }
4214
4215 /*
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004216 * If there is a comparative operator, use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217 */
4218 if (type != TYPE_UNKNOWN)
4219 {
4220 /* extra question mark appended: ignore case */
4221 if (p[len] == '?')
4222 {
4223 ic = TRUE;
4224 ++len;
4225 }
4226 /* extra '#' appended: match case */
4227 else if (p[len] == '#')
4228 {
4229 ic = FALSE;
4230 ++len;
4231 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004232 /* nothing appended: use 'ignorecase' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004233 else
4234 ic = p_ic;
4235
4236 /*
4237 * Get the second variable.
4238 */
4239 *arg = skipwhite(p + len);
4240 if (eval5(arg, &var2, evaluate) == FAIL)
4241 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004242 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 return FAIL;
4244 }
4245
4246 if (evaluate)
4247 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004248 if (type_is && rettv->v_type != var2.v_type)
4249 {
4250 /* For "is" a different type always means FALSE, for "notis"
4251 * it means TRUE. */
4252 n1 = (type == TYPE_NEQUAL);
4253 }
4254 else if (rettv->v_type == VAR_LIST || var2.v_type == VAR_LIST)
4255 {
4256 if (type_is)
4257 {
4258 n1 = (rettv->v_type == var2.v_type
4259 && rettv->vval.v_list == var2.vval.v_list);
4260 if (type == TYPE_NEQUAL)
4261 n1 = !n1;
4262 }
4263 else if (rettv->v_type != var2.v_type
4264 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4265 {
4266 if (rettv->v_type != var2.v_type)
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004267 EMSG(_("E691: Can only compare List with List"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004268 else
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004269 EMSG(_("E692: Invalid operation for Lists"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004270 clear_tv(rettv);
4271 clear_tv(&var2);
4272 return FAIL;
4273 }
4274 else
4275 {
4276 /* Compare two Lists for being equal or unequal. */
4277 n1 = list_equal(rettv->vval.v_list, var2.vval.v_list, ic);
4278 if (type == TYPE_NEQUAL)
4279 n1 = !n1;
4280 }
4281 }
4282
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00004283 else if (rettv->v_type == VAR_DICT || var2.v_type == VAR_DICT)
4284 {
4285 if (type_is)
4286 {
4287 n1 = (rettv->v_type == var2.v_type
4288 && rettv->vval.v_dict == var2.vval.v_dict);
4289 if (type == TYPE_NEQUAL)
4290 n1 = !n1;
4291 }
4292 else if (rettv->v_type != var2.v_type
4293 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4294 {
4295 if (rettv->v_type != var2.v_type)
4296 EMSG(_("E735: Can only compare Dictionary with Dictionary"));
4297 else
4298 EMSG(_("E736: Invalid operation for Dictionary"));
4299 clear_tv(rettv);
4300 clear_tv(&var2);
4301 return FAIL;
4302 }
4303 else
4304 {
4305 /* Compare two Dictionaries for being equal or unequal. */
4306 n1 = dict_equal(rettv->vval.v_dict, var2.vval.v_dict, ic);
4307 if (type == TYPE_NEQUAL)
4308 n1 = !n1;
4309 }
4310 }
4311
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004312 else if (rettv->v_type == VAR_FUNC || var2.v_type == VAR_FUNC)
4313 {
4314 if (rettv->v_type != var2.v_type
4315 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4316 {
4317 if (rettv->v_type != var2.v_type)
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004318 EMSG(_("E693: Can only compare Funcref with Funcref"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004319 else
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004320 EMSG(_("E694: Invalid operation for Funcrefs"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004321 clear_tv(rettv);
4322 clear_tv(&var2);
4323 return FAIL;
4324 }
4325 else
4326 {
4327 /* Compare two Funcrefs for being equal or unequal. */
4328 if (rettv->vval.v_string == NULL
4329 || var2.vval.v_string == NULL)
4330 n1 = FALSE;
4331 else
4332 n1 = STRCMP(rettv->vval.v_string,
4333 var2.vval.v_string) == 0;
4334 if (type == TYPE_NEQUAL)
4335 n1 = !n1;
4336 }
4337 }
4338
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004339#ifdef FEAT_FLOAT
4340 /*
4341 * If one of the two variables is a float, compare as a float.
4342 * When using "=~" or "!~", always compare as string.
4343 */
4344 else if ((rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4345 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4346 {
4347 float_T f1, f2;
4348
4349 if (rettv->v_type == VAR_FLOAT)
4350 f1 = rettv->vval.v_float;
4351 else
4352 f1 = get_tv_number(rettv);
4353 if (var2.v_type == VAR_FLOAT)
4354 f2 = var2.vval.v_float;
4355 else
4356 f2 = get_tv_number(&var2);
4357 n1 = FALSE;
4358 switch (type)
4359 {
4360 case TYPE_EQUAL: n1 = (f1 == f2); break;
4361 case TYPE_NEQUAL: n1 = (f1 != f2); break;
4362 case TYPE_GREATER: n1 = (f1 > f2); break;
4363 case TYPE_GEQUAL: n1 = (f1 >= f2); break;
4364 case TYPE_SMALLER: n1 = (f1 < f2); break;
4365 case TYPE_SEQUAL: n1 = (f1 <= f2); break;
4366 case TYPE_UNKNOWN:
4367 case TYPE_MATCH:
4368 case TYPE_NOMATCH: break; /* avoid gcc warning */
4369 }
4370 }
4371#endif
4372
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373 /*
4374 * If one of the two variables is a number, compare as a number.
4375 * When using "=~" or "!~", always compare as string.
4376 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004377 else if ((rettv->v_type == VAR_NUMBER || var2.v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4379 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004380 n1 = get_tv_number(rettv);
4381 n2 = get_tv_number(&var2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382 switch (type)
4383 {
4384 case TYPE_EQUAL: n1 = (n1 == n2); break;
4385 case TYPE_NEQUAL: n1 = (n1 != n2); break;
4386 case TYPE_GREATER: n1 = (n1 > n2); break;
4387 case TYPE_GEQUAL: n1 = (n1 >= n2); break;
4388 case TYPE_SMALLER: n1 = (n1 < n2); break;
4389 case TYPE_SEQUAL: n1 = (n1 <= n2); break;
4390 case TYPE_UNKNOWN:
4391 case TYPE_MATCH:
4392 case TYPE_NOMATCH: break; /* avoid gcc warning */
4393 }
4394 }
4395 else
4396 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004397 s1 = get_tv_string_buf(rettv, buf1);
4398 s2 = get_tv_string_buf(&var2, buf2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 if (type != TYPE_MATCH && type != TYPE_NOMATCH)
4400 i = ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2);
4401 else
4402 i = 0;
4403 n1 = FALSE;
4404 switch (type)
4405 {
4406 case TYPE_EQUAL: n1 = (i == 0); break;
4407 case TYPE_NEQUAL: n1 = (i != 0); break;
4408 case TYPE_GREATER: n1 = (i > 0); break;
4409 case TYPE_GEQUAL: n1 = (i >= 0); break;
4410 case TYPE_SMALLER: n1 = (i < 0); break;
4411 case TYPE_SEQUAL: n1 = (i <= 0); break;
4412
4413 case TYPE_MATCH:
4414 case TYPE_NOMATCH:
4415 /* avoid 'l' flag in 'cpoptions' */
4416 save_cpo = p_cpo;
4417 p_cpo = (char_u *)"";
4418 regmatch.regprog = vim_regcomp(s2,
4419 RE_MAGIC + RE_STRING);
4420 regmatch.rm_ic = ic;
4421 if (regmatch.regprog != NULL)
4422 {
4423 n1 = vim_regexec_nl(&regmatch, s1, (colnr_T)0);
4424 vim_free(regmatch.regprog);
4425 if (type == TYPE_NOMATCH)
4426 n1 = !n1;
4427 }
4428 p_cpo = save_cpo;
4429 break;
4430
4431 case TYPE_UNKNOWN: break; /* avoid gcc warning */
4432 }
4433 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004434 clear_tv(rettv);
4435 clear_tv(&var2);
4436 rettv->v_type = VAR_NUMBER;
4437 rettv->vval.v_number = n1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438 }
4439 }
4440
4441 return OK;
4442}
4443
4444/*
4445 * Handle fourth level expression:
4446 * + number addition
4447 * - number subtraction
4448 * . string concatenation
4449 *
4450 * "arg" must point to the first non-white of the expression.
4451 * "arg" is advanced to the next non-white after the recognized expression.
4452 *
4453 * Return OK or FAIL.
4454 */
4455 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004456eval5(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004458 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 int evaluate;
4460{
Bram Moolenaar33570922005-01-25 22:26:29 +00004461 typval_T var2;
4462 typval_T var3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 int op;
4464 long n1, n2;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004465#ifdef FEAT_FLOAT
4466 float_T f1 = 0, f2 = 0;
4467#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468 char_u *s1, *s2;
4469 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4470 char_u *p;
4471
4472 /*
4473 * Get the first variable.
4474 */
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004475 if (eval6(arg, rettv, evaluate, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004476 return FAIL;
4477
4478 /*
4479 * Repeat computing, until no '+', '-' or '.' is following.
4480 */
4481 for (;;)
4482 {
4483 op = **arg;
4484 if (op != '+' && op != '-' && op != '.')
4485 break;
4486
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004487 if ((op != '+' || rettv->v_type != VAR_LIST)
4488#ifdef FEAT_FLOAT
4489 && (op == '.' || rettv->v_type != VAR_FLOAT)
4490#endif
4491 )
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004492 {
4493 /* For "list + ...", an illegal use of the first operand as
4494 * a number cannot be determined before evaluating the 2nd
4495 * operand: if this is also a list, all is ok.
4496 * For "something . ...", "something - ..." or "non-list + ...",
4497 * we know that the first operand needs to be a string or number
4498 * without evaluating the 2nd operand. So check before to avoid
4499 * side effects after an error. */
4500 if (evaluate && get_tv_string_chk(rettv) == NULL)
4501 {
4502 clear_tv(rettv);
4503 return FAIL;
4504 }
4505 }
4506
Bram Moolenaar071d4272004-06-13 20:20:40 +00004507 /*
4508 * Get the second variable.
4509 */
4510 *arg = skipwhite(*arg + 1);
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004511 if (eval6(arg, &var2, evaluate, op == '.') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004513 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514 return FAIL;
4515 }
4516
4517 if (evaluate)
4518 {
4519 /*
4520 * Compute the result.
4521 */
4522 if (op == '.')
4523 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004524 s1 = get_tv_string_buf(rettv, buf1); /* already checked */
4525 s2 = get_tv_string_buf_chk(&var2, buf2);
4526 if (s2 == NULL) /* type error ? */
4527 {
4528 clear_tv(rettv);
4529 clear_tv(&var2);
4530 return FAIL;
4531 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00004532 p = concat_str(s1, s2);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004533 clear_tv(rettv);
4534 rettv->v_type = VAR_STRING;
4535 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00004537 else if (op == '+' && rettv->v_type == VAR_LIST
4538 && var2.v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004539 {
4540 /* concatenate Lists */
4541 if (list_concat(rettv->vval.v_list, var2.vval.v_list,
4542 &var3) == FAIL)
4543 {
4544 clear_tv(rettv);
4545 clear_tv(&var2);
4546 return FAIL;
4547 }
4548 clear_tv(rettv);
4549 *rettv = var3;
4550 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551 else
4552 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004553 int error = FALSE;
4554
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004555#ifdef FEAT_FLOAT
4556 if (rettv->v_type == VAR_FLOAT)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004557 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004558 f1 = rettv->vval.v_float;
4559 n1 = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004560 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004561 else
4562#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004563 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004564 n1 = get_tv_number_chk(rettv, &error);
4565 if (error)
4566 {
4567 /* This can only happen for "list + non-list". For
4568 * "non-list + ..." or "something - ...", we returned
4569 * before evaluating the 2nd operand. */
4570 clear_tv(rettv);
4571 return FAIL;
4572 }
4573#ifdef FEAT_FLOAT
4574 if (var2.v_type == VAR_FLOAT)
4575 f1 = n1;
4576#endif
4577 }
4578#ifdef FEAT_FLOAT
4579 if (var2.v_type == VAR_FLOAT)
4580 {
4581 f2 = var2.vval.v_float;
4582 n2 = 0;
4583 }
4584 else
4585#endif
4586 {
4587 n2 = get_tv_number_chk(&var2, &error);
4588 if (error)
4589 {
4590 clear_tv(rettv);
4591 clear_tv(&var2);
4592 return FAIL;
4593 }
4594#ifdef FEAT_FLOAT
4595 if (rettv->v_type == VAR_FLOAT)
4596 f2 = n2;
4597#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004598 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004599 clear_tv(rettv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004600
4601#ifdef FEAT_FLOAT
4602 /* If there is a float on either side the result is a float. */
4603 if (rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4604 {
4605 if (op == '+')
4606 f1 = f1 + f2;
4607 else
4608 f1 = f1 - f2;
4609 rettv->v_type = VAR_FLOAT;
4610 rettv->vval.v_float = f1;
4611 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004612 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004613#endif
4614 {
4615 if (op == '+')
4616 n1 = n1 + n2;
4617 else
4618 n1 = n1 - n2;
4619 rettv->v_type = VAR_NUMBER;
4620 rettv->vval.v_number = n1;
4621 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004622 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004623 clear_tv(&var2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 }
4625 }
4626 return OK;
4627}
4628
4629/*
4630 * Handle fifth level expression:
4631 * * number multiplication
4632 * / number division
4633 * % number modulo
4634 *
4635 * "arg" must point to the first non-white of the expression.
4636 * "arg" is advanced to the next non-white after the recognized expression.
4637 *
4638 * Return OK or FAIL.
4639 */
4640 static int
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004641eval6(arg, rettv, evaluate, want_string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004643 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644 int evaluate;
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004645 int want_string; /* after "." operator */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646{
Bram Moolenaar33570922005-01-25 22:26:29 +00004647 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648 int op;
4649 long n1, n2;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004650#ifdef FEAT_FLOAT
4651 int use_float = FALSE;
4652 float_T f1 = 0, f2;
4653#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004654 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655
4656 /*
4657 * Get the first variable.
4658 */
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004659 if (eval7(arg, rettv, evaluate, want_string) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660 return FAIL;
4661
4662 /*
4663 * Repeat computing, until no '*', '/' or '%' is following.
4664 */
4665 for (;;)
4666 {
4667 op = **arg;
4668 if (op != '*' && op != '/' && op != '%')
4669 break;
4670
4671 if (evaluate)
4672 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004673#ifdef FEAT_FLOAT
4674 if (rettv->v_type == VAR_FLOAT)
4675 {
4676 f1 = rettv->vval.v_float;
4677 use_float = TRUE;
4678 n1 = 0;
4679 }
4680 else
4681#endif
4682 n1 = get_tv_number_chk(rettv, &error);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004683 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004684 if (error)
4685 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686 }
4687 else
4688 n1 = 0;
4689
4690 /*
4691 * Get the second variable.
4692 */
4693 *arg = skipwhite(*arg + 1);
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004694 if (eval7(arg, &var2, evaluate, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695 return FAIL;
4696
4697 if (evaluate)
4698 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004699#ifdef FEAT_FLOAT
4700 if (var2.v_type == VAR_FLOAT)
4701 {
4702 if (!use_float)
4703 {
4704 f1 = n1;
4705 use_float = TRUE;
4706 }
4707 f2 = var2.vval.v_float;
4708 n2 = 0;
4709 }
4710 else
4711#endif
4712 {
4713 n2 = get_tv_number_chk(&var2, &error);
4714 clear_tv(&var2);
4715 if (error)
4716 return FAIL;
4717#ifdef FEAT_FLOAT
4718 if (use_float)
4719 f2 = n2;
4720#endif
4721 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722
4723 /*
4724 * Compute the result.
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004725 * When either side is a float the result is a float.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004727#ifdef FEAT_FLOAT
4728 if (use_float)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004730 if (op == '*')
4731 f1 = f1 * f2;
4732 else if (op == '/')
4733 {
4734 /* We rely on the floating point library to handle divide
4735 * by zero to result in "inf" and not a crash. */
4736 f1 = f1 / f2;
4737 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004738 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004739 {
Bram Moolenaar1378fca2008-07-04 16:51:55 +00004740 EMSG(_("E804: Cannot use '%' with Float"));
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004741 return FAIL;
4742 }
4743 rettv->v_type = VAR_FLOAT;
4744 rettv->vval.v_float = f1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745 }
4746 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004747#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004749 if (op == '*')
4750 n1 = n1 * n2;
4751 else if (op == '/')
4752 {
4753 if (n2 == 0) /* give an error message? */
4754 {
4755 if (n1 == 0)
4756 n1 = -0x7fffffffL - 1L; /* similar to NaN */
4757 else if (n1 < 0)
4758 n1 = -0x7fffffffL;
4759 else
4760 n1 = 0x7fffffffL;
4761 }
4762 else
4763 n1 = n1 / n2;
4764 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004765 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004766 {
4767 if (n2 == 0) /* give an error message? */
4768 n1 = 0;
4769 else
4770 n1 = n1 % n2;
4771 }
4772 rettv->v_type = VAR_NUMBER;
4773 rettv->vval.v_number = n1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775 }
4776 }
4777
4778 return OK;
4779}
4780
4781/*
4782 * Handle sixth level expression:
4783 * number number constant
Bram Moolenaarbae0c162007-05-10 19:30:25 +00004784 * "string" string constant
4785 * 'string' literal string constant
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786 * &option-name option value
4787 * @r register contents
4788 * identifier variable value
4789 * function() function call
4790 * $VAR environment variable
4791 * (expression) nested expression
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00004792 * [expr, expr] List
4793 * {key: val, key: val} Dictionary
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794 *
4795 * Also handle:
4796 * ! in front logical NOT
4797 * - in front unary minus
4798 * + in front unary plus (ignored)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004799 * trailing [] subscript in String or List
4800 * trailing .name entry in Dictionary
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 *
4802 * "arg" must point to the first non-white of the expression.
4803 * "arg" is advanced to the next non-white after the recognized expression.
4804 *
4805 * Return OK or FAIL.
4806 */
4807 static int
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004808eval7(arg, rettv, evaluate, want_string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004810 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811 int evaluate;
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004812 int want_string; /* after "." operator */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004813{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 long n;
4815 int len;
4816 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817 char_u *start_leader, *end_leader;
4818 int ret = OK;
4819 char_u *alias;
4820
4821 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004822 * Initialise variable so that clear_tv() can't mistake this for a
Bram Moolenaar49cd9572005-01-03 21:06:01 +00004823 * string and free a string that isn't there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004825 rettv->v_type = VAR_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826
4827 /*
4828 * Skip '!' and '-' characters. They are handled later.
4829 */
4830 start_leader = *arg;
4831 while (**arg == '!' || **arg == '-' || **arg == '+')
4832 *arg = skipwhite(*arg + 1);
4833 end_leader = *arg;
4834
4835 switch (**arg)
4836 {
4837 /*
4838 * Number constant.
4839 */
4840 case '0':
4841 case '1':
4842 case '2':
4843 case '3':
4844 case '4':
4845 case '5':
4846 case '6':
4847 case '7':
4848 case '8':
4849 case '9':
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004850 {
4851#ifdef FEAT_FLOAT
4852 char_u *p = skipdigits(*arg + 1);
4853 int get_float = FALSE;
4854
4855 /* We accept a float when the format matches
4856 * "[0-9]\+\.[0-9]\+\([eE][+-]\?[0-9]\+\)\?". This is very
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004857 * strict to avoid backwards compatibility problems.
4858 * Don't look for a float after the "." operator, so that
4859 * ":let vers = 1.2.3" doesn't fail. */
4860 if (!want_string && p[0] == '.' && vim_isdigit(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004862 get_float = TRUE;
4863 p = skipdigits(p + 2);
4864 if (*p == 'e' || *p == 'E')
4865 {
4866 ++p;
4867 if (*p == '-' || *p == '+')
4868 ++p;
4869 if (!vim_isdigit(*p))
4870 get_float = FALSE;
4871 else
4872 p = skipdigits(p + 1);
4873 }
4874 if (ASCII_ISALPHA(*p) || *p == '.')
4875 get_float = FALSE;
4876 }
4877 if (get_float)
4878 {
4879 float_T f;
4880
4881 *arg += string2float(*arg, &f);
4882 if (evaluate)
4883 {
4884 rettv->v_type = VAR_FLOAT;
4885 rettv->vval.v_float = f;
4886 }
4887 }
4888 else
4889#endif
4890 {
4891 vim_str2nr(*arg, NULL, &len, TRUE, TRUE, &n, NULL);
4892 *arg += len;
4893 if (evaluate)
4894 {
4895 rettv->v_type = VAR_NUMBER;
4896 rettv->vval.v_number = n;
4897 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898 }
4899 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004900 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901
4902 /*
4903 * String constant: "string".
4904 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004905 case '"': ret = get_string_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906 break;
4907
4908 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00004909 * Literal string constant: 'str''ing'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004911 case '\'': ret = get_lit_string_tv(arg, rettv, evaluate);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00004912 break;
4913
4914 /*
4915 * List: [expr, expr]
4916 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004917 case '[': ret = get_list_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 break;
4919
4920 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00004921 * Dictionary: {key: val, key: val}
4922 */
4923 case '{': ret = get_dict_tv(arg, rettv, evaluate);
4924 break;
4925
4926 /*
Bram Moolenaare9a41262005-01-15 22:18:47 +00004927 * Option value: &name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 */
Bram Moolenaare9a41262005-01-15 22:18:47 +00004929 case '&': ret = get_option_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930 break;
4931
4932 /*
4933 * Environment variable: $VAR.
4934 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004935 case '$': ret = get_env_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 break;
4937
4938 /*
4939 * Register contents: @r.
4940 */
4941 case '@': ++*arg;
4942 if (evaluate)
4943 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004944 rettv->v_type = VAR_STRING;
Bram Moolenaar92124a32005-06-17 22:03:40 +00004945 rettv->vval.v_string = get_reg_contents(**arg, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946 }
4947 if (**arg != NUL)
4948 ++*arg;
4949 break;
4950
4951 /*
4952 * nested expression: (expression).
4953 */
4954 case '(': *arg = skipwhite(*arg + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004955 ret = eval1(arg, rettv, evaluate); /* recursive! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956 if (**arg == ')')
4957 ++*arg;
4958 else if (ret == OK)
4959 {
4960 EMSG(_("E110: Missing ')'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004961 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 ret = FAIL;
4963 }
4964 break;
4965
Bram Moolenaar8c711452005-01-14 21:53:12 +00004966 default: ret = NOTDONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 break;
4968 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00004969
4970 if (ret == NOTDONE)
4971 {
4972 /*
4973 * Must be a variable or function name.
4974 * Can also be a curly-braces kind of name: {expr}.
4975 */
4976 s = *arg;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004977 len = get_name_len(arg, &alias, evaluate, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00004978 if (alias != NULL)
4979 s = alias;
4980
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004981 if (len <= 0)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004982 ret = FAIL;
4983 else
4984 {
4985 if (**arg == '(') /* recursive! */
4986 {
4987 /* If "s" is the name of a variable of type VAR_FUNC
4988 * use its contents. */
4989 s = deref_func_name(s, &len);
4990
4991 /* Invoke the function. */
4992 ret = get_func_tv(s, len, rettv, arg,
4993 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
Bram Moolenaare9a41262005-01-15 22:18:47 +00004994 &len, evaluate, NULL);
Bram Moolenaar8c711452005-01-14 21:53:12 +00004995 /* Stop the expression evaluation when immediately
4996 * aborting on error, or when an interrupt occurred or
4997 * an exception was thrown but not caught. */
4998 if (aborting())
4999 {
5000 if (ret == OK)
5001 clear_tv(rettv);
5002 ret = FAIL;
5003 }
5004 }
5005 else if (evaluate)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005006 ret = get_var_tv(s, len, rettv, TRUE);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005007 else
5008 ret = OK;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005009 }
5010
5011 if (alias != NULL)
5012 vim_free(alias);
5013 }
5014
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 *arg = skipwhite(*arg);
5016
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005017 /* Handle following '[', '(' and '.' for expr[expr], expr.name,
5018 * expr(expr). */
5019 if (ret == OK)
5020 ret = handle_subscript(arg, rettv, evaluate, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021
5022 /*
5023 * Apply logical NOT and unary '-', from right to left, ignore '+'.
5024 */
5025 if (ret == OK && evaluate && end_leader > start_leader)
5026 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005027 int error = FALSE;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005028 int val = 0;
5029#ifdef FEAT_FLOAT
5030 float_T f = 0.0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005031
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005032 if (rettv->v_type == VAR_FLOAT)
5033 f = rettv->vval.v_float;
5034 else
5035#endif
5036 val = get_tv_number_chk(rettv, &error);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005037 if (error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005039 clear_tv(rettv);
5040 ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005042 else
5043 {
5044 while (end_leader > start_leader)
5045 {
5046 --end_leader;
5047 if (*end_leader == '!')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005048 {
5049#ifdef FEAT_FLOAT
5050 if (rettv->v_type == VAR_FLOAT)
5051 f = !f;
5052 else
5053#endif
5054 val = !val;
5055 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005056 else if (*end_leader == '-')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005057 {
5058#ifdef FEAT_FLOAT
5059 if (rettv->v_type == VAR_FLOAT)
5060 f = -f;
5061 else
5062#endif
5063 val = -val;
5064 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005065 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005066#ifdef FEAT_FLOAT
5067 if (rettv->v_type == VAR_FLOAT)
5068 {
5069 clear_tv(rettv);
5070 rettv->vval.v_float = f;
5071 }
5072 else
5073#endif
5074 {
5075 clear_tv(rettv);
5076 rettv->v_type = VAR_NUMBER;
5077 rettv->vval.v_number = val;
5078 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005079 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 }
5081
5082 return ret;
5083}
5084
5085/*
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005086 * Evaluate an "[expr]" or "[expr:expr]" index. Also "dict.key".
5087 * "*arg" points to the '[' or '.'.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005088 * Returns FAIL or OK. "*arg" is advanced to after the ']'.
5089 */
5090 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005091eval_index(arg, rettv, evaluate, verbose)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005092 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005093 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005094 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005095 int verbose; /* give error messages */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005096{
5097 int empty1 = FALSE, empty2 = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00005098 typval_T var1, var2;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005099 long n1, n2 = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005100 long len = -1;
5101 int range = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005102 char_u *s;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005103 char_u *key = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005104
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005105 if (rettv->v_type == VAR_FUNC
5106#ifdef FEAT_FLOAT
5107 || rettv->v_type == VAR_FLOAT
5108#endif
5109 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005110 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005111 if (verbose)
5112 EMSG(_("E695: Cannot index a Funcref"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005113 return FAIL;
5114 }
5115
Bram Moolenaar8c711452005-01-14 21:53:12 +00005116 if (**arg == '.')
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005117 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005118 /*
5119 * dict.name
5120 */
5121 key = *arg + 1;
5122 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
5123 ;
5124 if (len == 0)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005125 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005126 *arg = skipwhite(key + len);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005127 }
5128 else
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005129 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005130 /*
5131 * something[idx]
5132 *
5133 * Get the (first) variable from inside the [].
5134 */
5135 *arg = skipwhite(*arg + 1);
5136 if (**arg == ':')
5137 empty1 = TRUE;
5138 else if (eval1(arg, &var1, evaluate) == FAIL) /* recursive! */
5139 return FAIL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005140 else if (evaluate && get_tv_string_chk(&var1) == NULL)
5141 {
5142 /* not a number or string */
5143 clear_tv(&var1);
5144 return FAIL;
5145 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005146
5147 /*
5148 * Get the second variable from inside the [:].
5149 */
5150 if (**arg == ':')
5151 {
5152 range = TRUE;
5153 *arg = skipwhite(*arg + 1);
5154 if (**arg == ']')
5155 empty2 = TRUE;
5156 else if (eval1(arg, &var2, evaluate) == FAIL) /* recursive! */
5157 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005158 if (!empty1)
5159 clear_tv(&var1);
5160 return FAIL;
5161 }
5162 else if (evaluate && get_tv_string_chk(&var2) == NULL)
5163 {
5164 /* not a number or string */
5165 if (!empty1)
5166 clear_tv(&var1);
5167 clear_tv(&var2);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005168 return FAIL;
5169 }
5170 }
5171
5172 /* Check for the ']'. */
5173 if (**arg != ']')
5174 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005175 if (verbose)
5176 EMSG(_(e_missbrac));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005177 clear_tv(&var1);
5178 if (range)
5179 clear_tv(&var2);
5180 return FAIL;
5181 }
5182 *arg = skipwhite(*arg + 1); /* skip the ']' */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005183 }
5184
5185 if (evaluate)
5186 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005187 n1 = 0;
5188 if (!empty1 && rettv->v_type != VAR_DICT)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005189 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005190 n1 = get_tv_number(&var1);
5191 clear_tv(&var1);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005192 }
5193 if (range)
5194 {
5195 if (empty2)
5196 n2 = -1;
5197 else
5198 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005199 n2 = get_tv_number(&var2);
5200 clear_tv(&var2);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005201 }
5202 }
5203
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005204 switch (rettv->v_type)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005205 {
5206 case VAR_NUMBER:
5207 case VAR_STRING:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005208 s = get_tv_string(rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005209 len = (long)STRLEN(s);
5210 if (range)
5211 {
5212 /* The resulting variable is a substring. If the indexes
5213 * are out of range the result is empty. */
5214 if (n1 < 0)
5215 {
5216 n1 = len + n1;
5217 if (n1 < 0)
5218 n1 = 0;
5219 }
5220 if (n2 < 0)
5221 n2 = len + n2;
5222 else if (n2 >= len)
5223 n2 = len;
5224 if (n1 >= len || n2 < 0 || n1 > n2)
5225 s = NULL;
5226 else
5227 s = vim_strnsave(s + n1, (int)(n2 - n1 + 1));
5228 }
5229 else
5230 {
5231 /* The resulting variable is a string of a single
5232 * character. If the index is too big or negative the
5233 * result is empty. */
5234 if (n1 >= len || n1 < 0)
5235 s = NULL;
5236 else
5237 s = vim_strnsave(s + n1, 1);
5238 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005239 clear_tv(rettv);
5240 rettv->v_type = VAR_STRING;
5241 rettv->vval.v_string = s;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005242 break;
5243
5244 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005245 len = list_len(rettv->vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005246 if (n1 < 0)
5247 n1 = len + n1;
5248 if (!empty1 && (n1 < 0 || n1 >= len))
5249 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005250 /* For a range we allow invalid values and return an empty
5251 * list. A list index out of range is an error. */
5252 if (!range)
5253 {
5254 if (verbose)
5255 EMSGN(_(e_listidx), n1);
5256 return FAIL;
5257 }
5258 n1 = len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005259 }
5260 if (range)
5261 {
Bram Moolenaar33570922005-01-25 22:26:29 +00005262 list_T *l;
5263 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005264
5265 if (n2 < 0)
5266 n2 = len + n2;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005267 else if (n2 >= len)
5268 n2 = len - 1;
5269 if (!empty2 && (n2 < 0 || n2 + 1 < n1))
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005270 n2 = -1;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005271 l = list_alloc();
5272 if (l == NULL)
5273 return FAIL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005274 for (item = list_find(rettv->vval.v_list, n1);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005275 n1 <= n2; ++n1)
5276 {
5277 if (list_append_tv(l, &item->li_tv) == FAIL)
5278 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00005279 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005280 return FAIL;
5281 }
5282 item = item->li_next;
5283 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005284 clear_tv(rettv);
5285 rettv->v_type = VAR_LIST;
5286 rettv->vval.v_list = l;
Bram Moolenaar0d660222005-01-07 21:51:51 +00005287 ++l->lv_refcount;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005288 }
5289 else
5290 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005291 copy_tv(&list_find(rettv->vval.v_list, n1)->li_tv, &var1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005292 clear_tv(rettv);
5293 *rettv = var1;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005294 }
5295 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005296
5297 case VAR_DICT:
5298 if (range)
5299 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005300 if (verbose)
5301 EMSG(_(e_dictrange));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005302 if (len == -1)
5303 clear_tv(&var1);
5304 return FAIL;
5305 }
5306 {
Bram Moolenaar33570922005-01-25 22:26:29 +00005307 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005308
5309 if (len == -1)
5310 {
5311 key = get_tv_string(&var1);
5312 if (*key == NUL)
5313 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005314 if (verbose)
5315 EMSG(_(e_emptykey));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005316 clear_tv(&var1);
5317 return FAIL;
5318 }
5319 }
5320
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005321 item = dict_find(rettv->vval.v_dict, key, (int)len);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005322
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005323 if (item == NULL && verbose)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005324 EMSG2(_(e_dictkey), key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005325 if (len == -1)
5326 clear_tv(&var1);
5327 if (item == NULL)
5328 return FAIL;
5329
5330 copy_tv(&item->di_tv, &var1);
5331 clear_tv(rettv);
5332 *rettv = var1;
5333 }
5334 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005335 }
5336 }
5337
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005338 return OK;
5339}
5340
5341/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342 * Get an option value.
5343 * "arg" points to the '&' or '+' before the option name.
5344 * "arg" is advanced to character after the option name.
5345 * Return OK or FAIL.
5346 */
5347 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005348get_option_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005350 typval_T *rettv; /* when NULL, only check if option exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005351 int evaluate;
5352{
5353 char_u *option_end;
5354 long numval;
5355 char_u *stringval;
5356 int opt_type;
5357 int c;
5358 int working = (**arg == '+'); /* has("+option") */
5359 int ret = OK;
5360 int opt_flags;
5361
5362 /*
5363 * Isolate the option name and find its value.
5364 */
5365 option_end = find_option_end(arg, &opt_flags);
5366 if (option_end == NULL)
5367 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005368 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005369 EMSG2(_("E112: Option name missing: %s"), *arg);
5370 return FAIL;
5371 }
5372
5373 if (!evaluate)
5374 {
5375 *arg = option_end;
5376 return OK;
5377 }
5378
5379 c = *option_end;
5380 *option_end = NUL;
5381 opt_type = get_option_value(*arg, &numval,
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005382 rettv == NULL ? NULL : &stringval, opt_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383
5384 if (opt_type == -3) /* invalid name */
5385 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005386 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005387 EMSG2(_("E113: Unknown option: %s"), *arg);
5388 ret = FAIL;
5389 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005390 else if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391 {
5392 if (opt_type == -2) /* hidden string option */
5393 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005394 rettv->v_type = VAR_STRING;
5395 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005396 }
5397 else if (opt_type == -1) /* hidden number option */
5398 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005399 rettv->v_type = VAR_NUMBER;
5400 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401 }
5402 else if (opt_type == 1) /* number option */
5403 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005404 rettv->v_type = VAR_NUMBER;
5405 rettv->vval.v_number = numval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005406 }
5407 else /* string option */
5408 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005409 rettv->v_type = VAR_STRING;
5410 rettv->vval.v_string = stringval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005411 }
5412 }
5413 else if (working && (opt_type == -2 || opt_type == -1))
5414 ret = FAIL;
5415
5416 *option_end = c; /* put back for error messages */
5417 *arg = option_end;
5418
5419 return ret;
5420}
5421
5422/*
5423 * Allocate a variable for a string constant.
5424 * Return OK or FAIL.
5425 */
5426 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005427get_string_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005429 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430 int evaluate;
5431{
5432 char_u *p;
5433 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434 int extra = 0;
5435
5436 /*
5437 * Find the end of the string, skipping backslashed characters.
5438 */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005439 for (p = *arg + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440 {
5441 if (*p == '\\' && p[1] != NUL)
5442 {
5443 ++p;
5444 /* A "\<x>" form occupies at least 4 characters, and produces up
5445 * to 6 characters: reserve space for 2 extra */
5446 if (*p == '<')
5447 extra += 2;
5448 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005449 }
5450
5451 if (*p != '"')
5452 {
5453 EMSG2(_("E114: Missing quote: %s"), *arg);
5454 return FAIL;
5455 }
5456
5457 /* If only parsing, set *arg and return here */
5458 if (!evaluate)
5459 {
5460 *arg = p + 1;
5461 return OK;
5462 }
5463
5464 /*
5465 * Copy the string into allocated memory, handling backslashed
5466 * characters.
5467 */
5468 name = alloc((unsigned)(p - *arg + extra));
5469 if (name == NULL)
5470 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005471 rettv->v_type = VAR_STRING;
5472 rettv->vval.v_string = name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005473
Bram Moolenaar8c711452005-01-14 21:53:12 +00005474 for (p = *arg + 1; *p != NUL && *p != '"'; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475 {
5476 if (*p == '\\')
5477 {
5478 switch (*++p)
5479 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005480 case 'b': *name++ = BS; ++p; break;
5481 case 'e': *name++ = ESC; ++p; break;
5482 case 'f': *name++ = FF; ++p; break;
5483 case 'n': *name++ = NL; ++p; break;
5484 case 'r': *name++ = CAR; ++p; break;
5485 case 't': *name++ = TAB; ++p; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486
5487 case 'X': /* hex: "\x1", "\x12" */
5488 case 'x':
5489 case 'u': /* Unicode: "\u0023" */
5490 case 'U':
5491 if (vim_isxdigit(p[1]))
5492 {
5493 int n, nr;
5494 int c = toupper(*p);
5495
5496 if (c == 'X')
5497 n = 2;
5498 else
5499 n = 4;
5500 nr = 0;
5501 while (--n >= 0 && vim_isxdigit(p[1]))
5502 {
5503 ++p;
5504 nr = (nr << 4) + hex2nr(*p);
5505 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005506 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507#ifdef FEAT_MBYTE
5508 /* For "\u" store the number according to
5509 * 'encoding'. */
5510 if (c != 'X')
Bram Moolenaar8c711452005-01-14 21:53:12 +00005511 name += (*mb_char2bytes)(nr, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005512 else
5513#endif
Bram Moolenaar8c711452005-01-14 21:53:12 +00005514 *name++ = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516 break;
5517
5518 /* octal: "\1", "\12", "\123" */
5519 case '0':
5520 case '1':
5521 case '2':
5522 case '3':
5523 case '4':
5524 case '5':
5525 case '6':
Bram Moolenaar8c711452005-01-14 21:53:12 +00005526 case '7': *name = *p++ - '0';
5527 if (*p >= '0' && *p <= '7')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005529 *name = (*name << 3) + *p++ - '0';
5530 if (*p >= '0' && *p <= '7')
5531 *name = (*name << 3) + *p++ - '0';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005533 ++name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534 break;
5535
5536 /* Special key, e.g.: "\<C-W>" */
Bram Moolenaar8c711452005-01-14 21:53:12 +00005537 case '<': extra = trans_special(&p, name, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538 if (extra != 0)
5539 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005540 name += extra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 break;
5542 }
5543 /* FALLTHROUGH */
5544
Bram Moolenaar8c711452005-01-14 21:53:12 +00005545 default: MB_COPY_CHAR(p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 break;
5547 }
5548 }
5549 else
Bram Moolenaar8c711452005-01-14 21:53:12 +00005550 MB_COPY_CHAR(p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005551
Bram Moolenaar071d4272004-06-13 20:20:40 +00005552 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005553 *name = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554 *arg = p + 1;
5555
Bram Moolenaar071d4272004-06-13 20:20:40 +00005556 return OK;
5557}
5558
5559/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005560 * Allocate a variable for a 'str''ing' constant.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561 * Return OK or FAIL.
5562 */
5563 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005564get_lit_string_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005566 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 int evaluate;
5568{
5569 char_u *p;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005570 char_u *str;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005571 int reduce = 0;
5572
5573 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005574 * Find the end of the string, skipping ''.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005575 */
5576 for (p = *arg + 1; *p != NUL; mb_ptr_adv(p))
5577 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005578 if (*p == '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005579 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005580 if (p[1] != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005581 break;
5582 ++reduce;
5583 ++p;
5584 }
5585 }
5586
Bram Moolenaar8c711452005-01-14 21:53:12 +00005587 if (*p != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005588 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005589 EMSG2(_("E115: Missing quote: %s"), *arg);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005590 return FAIL;
5591 }
5592
Bram Moolenaar8c711452005-01-14 21:53:12 +00005593 /* If only parsing return after setting "*arg" */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005594 if (!evaluate)
5595 {
5596 *arg = p + 1;
5597 return OK;
5598 }
5599
5600 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005601 * Copy the string into allocated memory, handling '' to ' reduction.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005602 */
5603 str = alloc((unsigned)((p - *arg) - reduce));
5604 if (str == NULL)
5605 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005606 rettv->v_type = VAR_STRING;
5607 rettv->vval.v_string = str;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005608
Bram Moolenaar8c711452005-01-14 21:53:12 +00005609 for (p = *arg + 1; *p != NUL; )
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005610 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005611 if (*p == '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005612 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005613 if (p[1] != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005614 break;
5615 ++p;
5616 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005617 MB_COPY_CHAR(p, str);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005618 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005619 *str = NUL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005620 *arg = p + 1;
5621
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005622 return OK;
5623}
5624
5625/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005626 * Allocate a variable for a List and fill it from "*arg".
5627 * Return OK or FAIL.
5628 */
5629 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005630get_list_tv(arg, rettv, evaluate)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005631 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005632 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005633 int evaluate;
5634{
Bram Moolenaar33570922005-01-25 22:26:29 +00005635 list_T *l = NULL;
5636 typval_T tv;
5637 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005638
5639 if (evaluate)
5640 {
5641 l = list_alloc();
5642 if (l == NULL)
5643 return FAIL;
5644 }
5645
5646 *arg = skipwhite(*arg + 1);
5647 while (**arg != ']' && **arg != NUL)
5648 {
5649 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
5650 goto failret;
5651 if (evaluate)
5652 {
5653 item = listitem_alloc();
5654 if (item != NULL)
5655 {
5656 item->li_tv = tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00005657 item->li_tv.v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005658 list_append(l, item);
5659 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005660 else
5661 clear_tv(&tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005662 }
5663
5664 if (**arg == ']')
5665 break;
5666 if (**arg != ',')
5667 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005668 EMSG2(_("E696: Missing comma in List: %s"), *arg);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005669 goto failret;
5670 }
5671 *arg = skipwhite(*arg + 1);
5672 }
5673
5674 if (**arg != ']')
5675 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005676 EMSG2(_("E697: Missing end of List ']': %s"), *arg);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005677failret:
5678 if (evaluate)
Bram Moolenaar685295c2006-10-15 20:37:38 +00005679 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005680 return FAIL;
5681 }
5682
5683 *arg = skipwhite(*arg + 1);
5684 if (evaluate)
5685 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005686 rettv->v_type = VAR_LIST;
5687 rettv->vval.v_list = l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005688 ++l->lv_refcount;
5689 }
5690
5691 return OK;
5692}
5693
5694/*
5695 * Allocate an empty header for a list.
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00005696 * Caller should take care of the reference count.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005697 */
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00005698 list_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005699list_alloc()
5700{
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00005701 list_T *l;
5702
5703 l = (list_T *)alloc_clear(sizeof(list_T));
5704 if (l != NULL)
5705 {
5706 /* Prepend the list to the list of lists for garbage collection. */
5707 if (first_list != NULL)
5708 first_list->lv_used_prev = l;
5709 l->lv_used_prev = NULL;
5710 l->lv_used_next = first_list;
5711 first_list = l;
5712 }
5713 return l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005714}
5715
5716/*
Bram Moolenaareddf53b2006-02-27 00:11:10 +00005717 * Allocate an empty list for a return value.
5718 * Returns OK or FAIL.
5719 */
5720 static int
5721rettv_list_alloc(rettv)
5722 typval_T *rettv;
5723{
5724 list_T *l = list_alloc();
5725
5726 if (l == NULL)
5727 return FAIL;
5728
5729 rettv->vval.v_list = l;
5730 rettv->v_type = VAR_LIST;
5731 ++l->lv_refcount;
5732 return OK;
5733}
5734
5735/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005736 * Unreference a list: decrement the reference count and free it when it
5737 * becomes zero.
5738 */
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00005739 void
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005740list_unref(l)
Bram Moolenaar33570922005-01-25 22:26:29 +00005741 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005742{
Bram Moolenaar685295c2006-10-15 20:37:38 +00005743 if (l != NULL && --l->lv_refcount <= 0)
5744 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005745}
5746
5747/*
5748 * Free a list, including all items it points to.
5749 * Ignores the reference count.
5750 */
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00005751 void
Bram Moolenaar685295c2006-10-15 20:37:38 +00005752list_free(l, recurse)
5753 list_T *l;
5754 int recurse; /* Free Lists and Dictionaries recursively. */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005755{
Bram Moolenaar33570922005-01-25 22:26:29 +00005756 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005757
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00005758 /* Remove the list from the list of lists for garbage collection. */
5759 if (l->lv_used_prev == NULL)
5760 first_list = l->lv_used_next;
5761 else
5762 l->lv_used_prev->lv_used_next = l->lv_used_next;
5763 if (l->lv_used_next != NULL)
5764 l->lv_used_next->lv_used_prev = l->lv_used_prev;
5765
Bram Moolenaard9fba312005-06-26 22:34:35 +00005766 for (item = l->lv_first; item != NULL; item = l->lv_first)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005767 {
Bram Moolenaard9fba312005-06-26 22:34:35 +00005768 /* Remove the item before deleting it. */
5769 l->lv_first = item->li_next;
Bram Moolenaar685295c2006-10-15 20:37:38 +00005770 if (recurse || (item->li_tv.v_type != VAR_LIST
5771 && item->li_tv.v_type != VAR_DICT))
5772 clear_tv(&item->li_tv);
5773 vim_free(item);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005774 }
5775 vim_free(l);
5776}
5777
5778/*
5779 * Allocate a list item.
5780 */
Bram Moolenaar33570922005-01-25 22:26:29 +00005781 static listitem_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005782listitem_alloc()
5783{
Bram Moolenaar33570922005-01-25 22:26:29 +00005784 return (listitem_T *)alloc(sizeof(listitem_T));
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005785}
5786
5787/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00005788 * Free a list item. Also clears the value. Does not notify watchers.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005789 */
5790 static void
5791listitem_free(item)
Bram Moolenaar33570922005-01-25 22:26:29 +00005792 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005793{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005794 clear_tv(&item->li_tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005795 vim_free(item);
5796}
5797
5798/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00005799 * Remove a list item from a List and free it. Also clears the value.
5800 */
5801 static void
5802listitem_remove(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00005803 list_T *l;
5804 listitem_T *item;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00005805{
5806 list_remove(l, item, item);
5807 listitem_free(item);
5808}
5809
5810/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005811 * Get the number of items in a list.
5812 */
5813 static long
5814list_len(l)
Bram Moolenaar33570922005-01-25 22:26:29 +00005815 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005816{
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005817 if (l == NULL)
5818 return 0L;
Bram Moolenaar758711c2005-02-02 23:11:38 +00005819 return l->lv_len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005820}
5821
5822/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005823 * Return TRUE when two lists have exactly the same values.
5824 */
5825 static int
5826list_equal(l1, l2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005827 list_T *l1;
5828 list_T *l2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005829 int ic; /* ignore case for strings */
5830{
Bram Moolenaar33570922005-01-25 22:26:29 +00005831 listitem_T *item1, *item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005832
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00005833 if (l1 == NULL || l2 == NULL)
5834 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005835 if (l1 == l2)
5836 return TRUE;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005837 if (list_len(l1) != list_len(l2))
5838 return FALSE;
5839
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005840 for (item1 = l1->lv_first, item2 = l2->lv_first;
5841 item1 != NULL && item2 != NULL;
5842 item1 = item1->li_next, item2 = item2->li_next)
5843 if (!tv_equal(&item1->li_tv, &item2->li_tv, ic))
5844 return FALSE;
5845 return item1 == NULL && item2 == NULL;
5846}
5847
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005848#if defined(FEAT_PYTHON) || defined(PROTO)
5849/*
5850 * Return the dictitem that an entry in a hashtable points to.
5851 */
5852 dictitem_T *
5853dict_lookup(hi)
5854 hashitem_T *hi;
5855{
5856 return HI2DI(hi);
5857}
5858#endif
5859
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005860/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005861 * Return TRUE when two dictionaries have exactly the same key/values.
5862 */
5863 static int
5864dict_equal(d1, d2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005865 dict_T *d1;
5866 dict_T *d2;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005867 int ic; /* ignore case for strings */
5868{
Bram Moolenaar33570922005-01-25 22:26:29 +00005869 hashitem_T *hi;
5870 dictitem_T *item2;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005871 int todo;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005872
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00005873 if (d1 == NULL || d2 == NULL)
5874 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005875 if (d1 == d2)
5876 return TRUE;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005877 if (dict_len(d1) != dict_len(d2))
5878 return FALSE;
5879
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005880 todo = (int)d1->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00005881 for (hi = d1->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005882 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005883 if (!HASHITEM_EMPTY(hi))
5884 {
5885 item2 = dict_find(d2, hi->hi_key, -1);
5886 if (item2 == NULL)
5887 return FALSE;
5888 if (!tv_equal(&HI2DI(hi)->di_tv, &item2->di_tv, ic))
5889 return FALSE;
5890 --todo;
5891 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005892 }
5893 return TRUE;
5894}
5895
5896/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005897 * Return TRUE if "tv1" and "tv2" have the same value.
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005898 * Compares the items just like "==" would compare them, but strings and
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005899 * numbers are different. Floats and numbers are also different.
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005900 */
5901 static int
5902tv_equal(tv1, tv2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005903 typval_T *tv1;
5904 typval_T *tv2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005905 int ic; /* ignore case */
5906{
5907 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005908 char_u *s1, *s2;
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005909 static int recursive = 0; /* cach recursive loops */
5910 int r;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005911
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005912 if (tv1->v_type != tv2->v_type)
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005913 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005914 /* Catch lists and dicts that have an endless loop by limiting
5915 * recursiveness to 1000. We guess they are equal then. */
5916 if (recursive >= 1000)
5917 return TRUE;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005918
5919 switch (tv1->v_type)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005920 {
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005921 case VAR_LIST:
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005922 ++recursive;
5923 r = list_equal(tv1->vval.v_list, tv2->vval.v_list, ic);
5924 --recursive;
5925 return r;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005926
5927 case VAR_DICT:
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005928 ++recursive;
5929 r = dict_equal(tv1->vval.v_dict, tv2->vval.v_dict, ic);
5930 --recursive;
5931 return r;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005932
5933 case VAR_FUNC:
5934 return (tv1->vval.v_string != NULL
5935 && tv2->vval.v_string != NULL
5936 && STRCMP(tv1->vval.v_string, tv2->vval.v_string) == 0);
5937
5938 case VAR_NUMBER:
5939 return tv1->vval.v_number == tv2->vval.v_number;
5940
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005941#ifdef FEAT_FLOAT
5942 case VAR_FLOAT:
5943 return tv1->vval.v_float == tv2->vval.v_float;
5944#endif
5945
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005946 case VAR_STRING:
5947 s1 = get_tv_string_buf(tv1, buf1);
5948 s2 = get_tv_string_buf(tv2, buf2);
5949 return ((ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2)) == 0);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005950 }
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005951
5952 EMSG2(_(e_intern2), "tv_equal()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005953 return TRUE;
5954}
5955
5956/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005957 * Locate item with index "n" in list "l" and return it.
5958 * A negative index is counted from the end; -1 is the last item.
5959 * Returns NULL when "n" is out of range.
5960 */
Bram Moolenaar33570922005-01-25 22:26:29 +00005961 static listitem_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005962list_find(l, n)
Bram Moolenaar33570922005-01-25 22:26:29 +00005963 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005964 long n;
5965{
Bram Moolenaar33570922005-01-25 22:26:29 +00005966 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005967 long idx;
5968
5969 if (l == NULL)
5970 return NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +00005971
5972 /* Negative index is relative to the end. */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005973 if (n < 0)
Bram Moolenaar758711c2005-02-02 23:11:38 +00005974 n = l->lv_len + n;
5975
5976 /* Check for index out of range. */
5977 if (n < 0 || n >= l->lv_len)
5978 return NULL;
5979
5980 /* When there is a cached index may start search from there. */
5981 if (l->lv_idx_item != NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005982 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00005983 if (n < l->lv_idx / 2)
5984 {
5985 /* closest to the start of the list */
5986 item = l->lv_first;
5987 idx = 0;
5988 }
5989 else if (n > (l->lv_idx + l->lv_len) / 2)
5990 {
5991 /* closest to the end of the list */
5992 item = l->lv_last;
5993 idx = l->lv_len - 1;
5994 }
5995 else
5996 {
5997 /* closest to the cached index */
5998 item = l->lv_idx_item;
5999 idx = l->lv_idx;
6000 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006001 }
6002 else
6003 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006004 if (n < l->lv_len / 2)
6005 {
6006 /* closest to the start of the list */
6007 item = l->lv_first;
6008 idx = 0;
6009 }
6010 else
6011 {
6012 /* closest to the end of the list */
6013 item = l->lv_last;
6014 idx = l->lv_len - 1;
6015 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006016 }
Bram Moolenaar758711c2005-02-02 23:11:38 +00006017
6018 while (n > idx)
6019 {
6020 /* search forward */
6021 item = item->li_next;
6022 ++idx;
6023 }
6024 while (n < idx)
6025 {
6026 /* search backward */
6027 item = item->li_prev;
6028 --idx;
6029 }
6030
6031 /* cache the used index */
6032 l->lv_idx = idx;
6033 l->lv_idx_item = item;
6034
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006035 return item;
6036}
6037
6038/*
Bram Moolenaara5525202006-03-02 22:52:09 +00006039 * Get list item "l[idx]" as a number.
6040 */
6041 static long
6042list_find_nr(l, idx, errorp)
6043 list_T *l;
6044 long idx;
6045 int *errorp; /* set to TRUE when something wrong */
6046{
6047 listitem_T *li;
6048
6049 li = list_find(l, idx);
6050 if (li == NULL)
6051 {
6052 if (errorp != NULL)
6053 *errorp = TRUE;
6054 return -1L;
6055 }
6056 return get_tv_number_chk(&li->li_tv, errorp);
6057}
6058
6059/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006060 * Locate "item" list "l" and return its index.
6061 * Returns -1 when "item" is not in the list.
6062 */
6063 static long
6064list_idx_of_item(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006065 list_T *l;
6066 listitem_T *item;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006067{
6068 long idx = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +00006069 listitem_T *li;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006070
6071 if (l == NULL)
6072 return -1;
6073 idx = 0;
6074 for (li = l->lv_first; li != NULL && li != item; li = li->li_next)
6075 ++idx;
6076 if (li == NULL)
6077 return -1;
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006078 return idx;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006079}
6080
6081/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006082 * Append item "item" to the end of list "l".
6083 */
6084 static void
6085list_append(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006086 list_T *l;
6087 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006088{
6089 if (l->lv_last == NULL)
6090 {
6091 /* empty list */
6092 l->lv_first = item;
6093 l->lv_last = item;
6094 item->li_prev = NULL;
6095 }
6096 else
6097 {
6098 l->lv_last->li_next = item;
6099 item->li_prev = l->lv_last;
6100 l->lv_last = item;
6101 }
Bram Moolenaar758711c2005-02-02 23:11:38 +00006102 ++l->lv_len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006103 item->li_next = NULL;
6104}
6105
6106/*
Bram Moolenaar33570922005-01-25 22:26:29 +00006107 * Append typval_T "tv" to the end of list "l".
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006108 * Return FAIL when out of memory.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006109 */
6110 static int
6111list_append_tv(l, tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00006112 list_T *l;
6113 typval_T *tv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006114{
Bram Moolenaar05159a02005-02-26 23:04:13 +00006115 listitem_T *li = listitem_alloc();
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006116
Bram Moolenaar05159a02005-02-26 23:04:13 +00006117 if (li == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006118 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00006119 copy_tv(tv, &li->li_tv);
6120 list_append(l, li);
6121 return OK;
6122}
6123
6124/*
Bram Moolenaar2641f772005-03-25 21:58:17 +00006125 * Add a dictionary to a list. Used by getqflist().
Bram Moolenaar05159a02005-02-26 23:04:13 +00006126 * Return FAIL when out of memory.
6127 */
6128 int
6129list_append_dict(list, dict)
6130 list_T *list;
6131 dict_T *dict;
6132{
6133 listitem_T *li = listitem_alloc();
6134
6135 if (li == NULL)
6136 return FAIL;
6137 li->li_tv.v_type = VAR_DICT;
6138 li->li_tv.v_lock = 0;
6139 li->li_tv.vval.v_dict = dict;
6140 list_append(list, li);
6141 ++dict->dv_refcount;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006142 return OK;
6143}
6144
6145/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006146 * Make a copy of "str" and append it as an item to list "l".
Bram Moolenaar4463f292005-09-25 22:20:24 +00006147 * When "len" >= 0 use "str[len]".
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006148 * Returns FAIL when out of memory.
6149 */
6150 static int
Bram Moolenaar4463f292005-09-25 22:20:24 +00006151list_append_string(l, str, len)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006152 list_T *l;
6153 char_u *str;
Bram Moolenaar4463f292005-09-25 22:20:24 +00006154 int len;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006155{
6156 listitem_T *li = listitem_alloc();
6157
6158 if (li == NULL)
6159 return FAIL;
6160 list_append(l, li);
6161 li->li_tv.v_type = VAR_STRING;
6162 li->li_tv.v_lock = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006163 if (str == NULL)
6164 li->li_tv.vval.v_string = NULL;
6165 else if ((li->li_tv.vval.v_string = (len >= 0 ? vim_strnsave(str, len)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006166 : vim_strsave(str))) == NULL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006167 return FAIL;
6168 return OK;
6169}
6170
6171/*
Bram Moolenaar4463f292005-09-25 22:20:24 +00006172 * Append "n" to list "l".
6173 * Returns FAIL when out of memory.
6174 */
6175 static int
6176list_append_number(l, n)
6177 list_T *l;
6178 varnumber_T n;
6179{
6180 listitem_T *li;
6181
6182 li = listitem_alloc();
6183 if (li == NULL)
6184 return FAIL;
6185 li->li_tv.v_type = VAR_NUMBER;
6186 li->li_tv.v_lock = 0;
6187 li->li_tv.vval.v_number = n;
6188 list_append(l, li);
6189 return OK;
6190}
6191
6192/*
Bram Moolenaar33570922005-01-25 22:26:29 +00006193 * Insert typval_T "tv" in list "l" before "item".
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006194 * If "item" is NULL append at the end.
6195 * Return FAIL when out of memory.
6196 */
6197 static int
6198list_insert_tv(l, tv, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006199 list_T *l;
6200 typval_T *tv;
6201 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006202{
Bram Moolenaar33570922005-01-25 22:26:29 +00006203 listitem_T *ni = listitem_alloc();
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006204
6205 if (ni == NULL)
6206 return FAIL;
6207 copy_tv(tv, &ni->li_tv);
6208 if (item == NULL)
6209 /* Append new item at end of list. */
6210 list_append(l, ni);
6211 else
6212 {
6213 /* Insert new item before existing item. */
6214 ni->li_prev = item->li_prev;
6215 ni->li_next = item;
6216 if (item->li_prev == NULL)
Bram Moolenaar758711c2005-02-02 23:11:38 +00006217 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006218 l->lv_first = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006219 ++l->lv_idx;
6220 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006221 else
Bram Moolenaar758711c2005-02-02 23:11:38 +00006222 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006223 item->li_prev->li_next = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006224 l->lv_idx_item = NULL;
6225 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006226 item->li_prev = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006227 ++l->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006228 }
6229 return OK;
6230}
6231
6232/*
6233 * Extend "l1" with "l2".
6234 * If "bef" is NULL append at the end, otherwise insert before this item.
6235 * Returns FAIL when out of memory.
6236 */
6237 static int
6238list_extend(l1, l2, bef)
Bram Moolenaar33570922005-01-25 22:26:29 +00006239 list_T *l1;
6240 list_T *l2;
6241 listitem_T *bef;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006242{
Bram Moolenaar33570922005-01-25 22:26:29 +00006243 listitem_T *item;
Bram Moolenaardc9cf9c2008-08-08 10:36:31 +00006244 int todo = l2->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006245
Bram Moolenaardc9cf9c2008-08-08 10:36:31 +00006246 /* We also quit the loop when we have inserted the original item count of
6247 * the list, avoid a hang when we extend a list with itself. */
6248 for (item = l2->lv_first; item != NULL && --todo >= 0; item = item->li_next)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006249 if (list_insert_tv(l1, &item->li_tv, bef) == FAIL)
6250 return FAIL;
6251 return OK;
6252}
6253
6254/*
6255 * Concatenate lists "l1" and "l2" into a new list, stored in "tv".
6256 * Return FAIL when out of memory.
6257 */
6258 static int
6259list_concat(l1, l2, tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00006260 list_T *l1;
6261 list_T *l2;
6262 typval_T *tv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006263{
Bram Moolenaar33570922005-01-25 22:26:29 +00006264 list_T *l;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006265
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00006266 if (l1 == NULL || l2 == NULL)
6267 return FAIL;
6268
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006269 /* make a copy of the first list. */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006270 l = list_copy(l1, FALSE, 0);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006271 if (l == NULL)
6272 return FAIL;
6273 tv->v_type = VAR_LIST;
6274 tv->vval.v_list = l;
6275
6276 /* append all items from the second list */
6277 return list_extend(l, l2, NULL);
6278}
6279
6280/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006281 * Make a copy of list "orig". Shallow if "deep" is FALSE.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006282 * The refcount of the new list is set to 1.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006283 * See item_copy() for "copyID".
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006284 * Returns NULL when out of memory.
6285 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006286 static list_T *
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006287list_copy(orig, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006288 list_T *orig;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006289 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006290 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006291{
Bram Moolenaar33570922005-01-25 22:26:29 +00006292 list_T *copy;
6293 listitem_T *item;
6294 listitem_T *ni;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006295
6296 if (orig == NULL)
6297 return NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006298
6299 copy = list_alloc();
6300 if (copy != NULL)
6301 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006302 if (copyID != 0)
6303 {
6304 /* Do this before adding the items, because one of the items may
6305 * refer back to this list. */
6306 orig->lv_copyID = copyID;
6307 orig->lv_copylist = copy;
6308 }
6309 for (item = orig->lv_first; item != NULL && !got_int;
6310 item = item->li_next)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006311 {
6312 ni = listitem_alloc();
6313 if (ni == NULL)
6314 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006315 if (deep)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006316 {
6317 if (item_copy(&item->li_tv, &ni->li_tv, deep, copyID) == FAIL)
6318 {
6319 vim_free(ni);
6320 break;
6321 }
6322 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006323 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00006324 copy_tv(&item->li_tv, &ni->li_tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006325 list_append(copy, ni);
6326 }
6327 ++copy->lv_refcount;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006328 if (item != NULL)
6329 {
6330 list_unref(copy);
6331 copy = NULL;
6332 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006333 }
6334
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006335 return copy;
6336}
6337
6338/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006339 * Remove items "item" to "item2" from list "l".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006340 * Does not free the listitem or the value!
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006341 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006342 static void
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006343list_remove(l, item, item2)
Bram Moolenaar33570922005-01-25 22:26:29 +00006344 list_T *l;
6345 listitem_T *item;
6346 listitem_T *item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006347{
Bram Moolenaar33570922005-01-25 22:26:29 +00006348 listitem_T *ip;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006349
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006350 /* notify watchers */
6351 for (ip = item; ip != NULL; ip = ip->li_next)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006352 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006353 --l->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006354 list_fix_watch(l, ip);
6355 if (ip == item2)
6356 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006357 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006358
6359 if (item2->li_next == NULL)
6360 l->lv_last = item->li_prev;
6361 else
6362 item2->li_next->li_prev = item->li_prev;
6363 if (item->li_prev == NULL)
6364 l->lv_first = item2->li_next;
6365 else
6366 item->li_prev->li_next = item2->li_next;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006367 l->lv_idx_item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006368}
6369
6370/*
6371 * Return an allocated string with the string representation of a list.
6372 * May return NULL.
6373 */
6374 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006375list2string(tv, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006376 typval_T *tv;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006377 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006378{
6379 garray_T ga;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006380
6381 if (tv->vval.v_list == NULL)
6382 return NULL;
6383 ga_init2(&ga, (int)sizeof(char), 80);
6384 ga_append(&ga, '[');
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006385 if (list_join(&ga, tv->vval.v_list, (char_u *)", ", FALSE, copyID) == FAIL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006386 {
6387 vim_free(ga.ga_data);
6388 return NULL;
6389 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006390 ga_append(&ga, ']');
6391 ga_append(&ga, NUL);
6392 return (char_u *)ga.ga_data;
6393}
6394
6395/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006396 * Join list "l" into a string in "*gap", using separator "sep".
6397 * When "echo" is TRUE use String as echoed, otherwise as inside a List.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006398 * Return FAIL or OK.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006399 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006400 static int
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006401list_join(gap, l, sep, echo, copyID)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006402 garray_T *gap;
Bram Moolenaar33570922005-01-25 22:26:29 +00006403 list_T *l;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006404 char_u *sep;
6405 int echo;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006406 int copyID;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006407{
6408 int first = TRUE;
6409 char_u *tofree;
6410 char_u numbuf[NUMBUFLEN];
Bram Moolenaar33570922005-01-25 22:26:29 +00006411 listitem_T *item;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006412 char_u *s;
6413
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006414 for (item = l->lv_first; item != NULL && !got_int; item = item->li_next)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006415 {
6416 if (first)
6417 first = FALSE;
6418 else
6419 ga_concat(gap, sep);
6420
6421 if (echo)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006422 s = echo_string(&item->li_tv, &tofree, numbuf, copyID);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006423 else
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006424 s = tv2string(&item->li_tv, &tofree, numbuf, copyID);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006425 if (s != NULL)
6426 ga_concat(gap, s);
6427 vim_free(tofree);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006428 if (s == NULL)
6429 return FAIL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006430 }
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006431 return OK;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006432}
6433
6434/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006435 * Garbage collection for lists and dictionaries.
6436 *
6437 * We use reference counts to be able to free most items right away when they
6438 * are no longer used. But for composite items it's possible that it becomes
6439 * unused while the reference count is > 0: When there is a recursive
6440 * reference. Example:
6441 * :let l = [1, 2, 3]
6442 * :let d = {9: l}
6443 * :let l[1] = d
6444 *
6445 * Since this is quite unusual we handle this with garbage collection: every
6446 * once in a while find out which lists and dicts are not referenced from any
6447 * variable.
6448 *
6449 * Here is a good reference text about garbage collection (refers to Python
6450 * but it applies to all reference-counting mechanisms):
6451 * http://python.ca/nas/python/gc/
Bram Moolenaard9fba312005-06-26 22:34:35 +00006452 */
Bram Moolenaard9fba312005-06-26 22:34:35 +00006453
6454/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006455 * Do garbage collection for lists and dicts.
6456 * Return TRUE if some memory was freed.
Bram Moolenaard9fba312005-06-26 22:34:35 +00006457 */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006458 int
6459garbage_collect()
Bram Moolenaard9fba312005-06-26 22:34:35 +00006460{
6461 dict_T *dd;
6462 list_T *ll;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006463 int copyID = ++current_copyID;
6464 buf_T *buf;
6465 win_T *wp;
6466 int i;
6467 funccall_T *fc;
6468 int did_free = FALSE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006469#ifdef FEAT_WINDOWS
6470 tabpage_T *tp;
6471#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006472
Bram Moolenaar9fecb462006-09-05 10:59:47 +00006473 /* Only do this once. */
6474 want_garbage_collect = FALSE;
6475 may_garbage_collect = FALSE;
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00006476 garbage_collect_at_exit = FALSE;
Bram Moolenaar9fecb462006-09-05 10:59:47 +00006477
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006478 /*
6479 * 1. Go through all accessible variables and mark all lists and dicts
6480 * with copyID.
6481 */
6482 /* script-local variables */
6483 for (i = 1; i <= ga_scripts.ga_len; ++i)
6484 set_ref_in_ht(&SCRIPT_VARS(i), copyID);
6485
6486 /* buffer-local variables */
6487 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
6488 set_ref_in_ht(&buf->b_vars.dv_hashtab, copyID);
6489
6490 /* window-local variables */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006491 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006492 set_ref_in_ht(&wp->w_vars.dv_hashtab, copyID);
6493
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006494#ifdef FEAT_WINDOWS
6495 /* tabpage-local variables */
6496 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6497 set_ref_in_ht(&tp->tp_vars.dv_hashtab, copyID);
6498#endif
6499
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006500 /* global variables */
6501 set_ref_in_ht(&globvarht, copyID);
6502
6503 /* function-local variables */
6504 for (fc = current_funccal; fc != NULL; fc = fc->caller)
6505 {
6506 set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID);
6507 set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID);
6508 }
6509
6510 /*
6511 * 2. Go through the list of dicts and free items without the copyID.
6512 */
6513 for (dd = first_dict; dd != NULL; )
6514 if (dd->dv_copyID != copyID)
6515 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006516 /* Free the Dictionary and ordinary items it contains, but don't
6517 * recurse into Lists and Dictionaries, they will be in the list
6518 * of dicts or list of lists. */
6519 dict_free(dd, FALSE);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006520 did_free = TRUE;
6521
6522 /* restart, next dict may also have been freed */
6523 dd = first_dict;
6524 }
6525 else
6526 dd = dd->dv_used_next;
6527
6528 /*
6529 * 3. Go through the list of lists and free items without the copyID.
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00006530 * But don't free a list that has a watcher (used in a for loop), these
6531 * are not referenced anywhere.
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006532 */
6533 for (ll = first_list; ll != NULL; )
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00006534 if (ll->lv_copyID != copyID && ll->lv_watch == NULL)
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006535 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006536 /* Free the List and ordinary items it contains, but don't recurse
6537 * into Lists and Dictionaries, they will be in the list of dicts
6538 * or list of lists. */
6539 list_free(ll, FALSE);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006540 did_free = TRUE;
6541
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00006542 /* restart, next list may also have been freed */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006543 ll = first_list;
6544 }
6545 else
6546 ll = ll->lv_used_next;
6547
6548 return did_free;
6549}
6550
6551/*
6552 * Mark all lists and dicts referenced through hashtab "ht" with "copyID".
6553 */
6554 static void
6555set_ref_in_ht(ht, copyID)
6556 hashtab_T *ht;
6557 int copyID;
6558{
6559 int todo;
6560 hashitem_T *hi;
6561
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006562 todo = (int)ht->ht_used;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006563 for (hi = ht->ht_array; todo > 0; ++hi)
6564 if (!HASHITEM_EMPTY(hi))
6565 {
6566 --todo;
6567 set_ref_in_item(&HI2DI(hi)->di_tv, copyID);
6568 }
6569}
6570
6571/*
6572 * Mark all lists and dicts referenced through list "l" with "copyID".
6573 */
6574 static void
6575set_ref_in_list(l, copyID)
6576 list_T *l;
6577 int copyID;
6578{
6579 listitem_T *li;
6580
6581 for (li = l->lv_first; li != NULL; li = li->li_next)
6582 set_ref_in_item(&li->li_tv, copyID);
6583}
6584
6585/*
6586 * Mark all lists and dicts referenced through typval "tv" with "copyID".
6587 */
6588 static void
6589set_ref_in_item(tv, copyID)
6590 typval_T *tv;
6591 int copyID;
6592{
6593 dict_T *dd;
6594 list_T *ll;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006595
6596 switch (tv->v_type)
6597 {
6598 case VAR_DICT:
6599 dd = tv->vval.v_dict;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006600 if (dd->dv_copyID != copyID)
Bram Moolenaard9fba312005-06-26 22:34:35 +00006601 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006602 /* Didn't see this dict yet. */
6603 dd->dv_copyID = copyID;
6604 set_ref_in_ht(&dd->dv_hashtab, copyID);
Bram Moolenaard9fba312005-06-26 22:34:35 +00006605 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006606 break;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006607
6608 case VAR_LIST:
6609 ll = tv->vval.v_list;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006610 if (ll->lv_copyID != copyID)
Bram Moolenaard9fba312005-06-26 22:34:35 +00006611 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006612 /* Didn't see this list yet. */
6613 ll->lv_copyID = copyID;
6614 set_ref_in_list(ll, copyID);
Bram Moolenaard9fba312005-06-26 22:34:35 +00006615 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006616 break;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006617 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006618 return;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006619}
6620
6621/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006622 * Allocate an empty header for a dictionary.
6623 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00006624 dict_T *
Bram Moolenaar8c711452005-01-14 21:53:12 +00006625dict_alloc()
6626{
Bram Moolenaar33570922005-01-25 22:26:29 +00006627 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006628
Bram Moolenaar33570922005-01-25 22:26:29 +00006629 d = (dict_T *)alloc(sizeof(dict_T));
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006630 if (d != NULL)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006631 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006632 /* Add the list to the list of dicts for garbage collection. */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006633 if (first_dict != NULL)
6634 first_dict->dv_used_prev = d;
6635 d->dv_used_next = first_dict;
6636 d->dv_used_prev = NULL;
Bram Moolenaar685295c2006-10-15 20:37:38 +00006637 first_dict = d;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006638
Bram Moolenaar33570922005-01-25 22:26:29 +00006639 hash_init(&d->dv_hashtab);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006640 d->dv_lock = 0;
6641 d->dv_refcount = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006642 d->dv_copyID = 0;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006643 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006644 return d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006645}
6646
6647/*
6648 * Unreference a Dictionary: decrement the reference count and free it when it
6649 * becomes zero.
6650 */
6651 static void
6652dict_unref(d)
Bram Moolenaar33570922005-01-25 22:26:29 +00006653 dict_T *d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006654{
Bram Moolenaar685295c2006-10-15 20:37:38 +00006655 if (d != NULL && --d->dv_refcount <= 0)
6656 dict_free(d, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006657}
6658
6659/*
6660 * Free a Dictionary, including all items it contains.
6661 * Ignores the reference count.
6662 */
6663 static void
Bram Moolenaar685295c2006-10-15 20:37:38 +00006664dict_free(d, recurse)
6665 dict_T *d;
6666 int recurse; /* Free Lists and Dictionaries recursively. */
Bram Moolenaar8c711452005-01-14 21:53:12 +00006667{
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006668 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00006669 hashitem_T *hi;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006670 dictitem_T *di;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006671
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006672 /* Remove the dict from the list of dicts for garbage collection. */
6673 if (d->dv_used_prev == NULL)
6674 first_dict = d->dv_used_next;
6675 else
6676 d->dv_used_prev->dv_used_next = d->dv_used_next;
6677 if (d->dv_used_next != NULL)
6678 d->dv_used_next->dv_used_prev = d->dv_used_prev;
6679
6680 /* Lock the hashtab, we don't want it to resize while freeing items. */
Bram Moolenaard9fba312005-06-26 22:34:35 +00006681 hash_lock(&d->dv_hashtab);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006682 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00006683 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +00006684 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006685 if (!HASHITEM_EMPTY(hi))
6686 {
Bram Moolenaard9fba312005-06-26 22:34:35 +00006687 /* Remove the item before deleting it, just in case there is
6688 * something recursive causing trouble. */
6689 di = HI2DI(hi);
6690 hash_remove(&d->dv_hashtab, hi);
Bram Moolenaar685295c2006-10-15 20:37:38 +00006691 if (recurse || (di->di_tv.v_type != VAR_LIST
6692 && di->di_tv.v_type != VAR_DICT))
6693 clear_tv(&di->di_tv);
6694 vim_free(di);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006695 --todo;
6696 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00006697 }
Bram Moolenaar33570922005-01-25 22:26:29 +00006698 hash_clear(&d->dv_hashtab);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006699 vim_free(d);
6700}
6701
6702/*
6703 * Allocate a Dictionary item.
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006704 * The "key" is copied to the new item.
6705 * Note that the value of the item "di_tv" still needs to be initialized!
6706 * Returns NULL when out of memory.
Bram Moolenaar8c711452005-01-14 21:53:12 +00006707 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006708 static dictitem_T *
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006709dictitem_alloc(key)
6710 char_u *key;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006711{
Bram Moolenaar33570922005-01-25 22:26:29 +00006712 dictitem_T *di;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006713
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006714 di = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T) + STRLEN(key)));
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006715 if (di != NULL)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006716 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006717 STRCPY(di->di_key, key);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006718 di->di_flags = 0;
6719 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006720 return di;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006721}
6722
6723/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006724 * Make a copy of a Dictionary item.
6725 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006726 static dictitem_T *
Bram Moolenaare9a41262005-01-15 22:18:47 +00006727dictitem_copy(org)
Bram Moolenaar33570922005-01-25 22:26:29 +00006728 dictitem_T *org;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006729{
Bram Moolenaar33570922005-01-25 22:26:29 +00006730 dictitem_T *di;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006731
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006732 di = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
6733 + STRLEN(org->di_key)));
Bram Moolenaare9a41262005-01-15 22:18:47 +00006734 if (di != NULL)
6735 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006736 STRCPY(di->di_key, org->di_key);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006737 di->di_flags = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006738 copy_tv(&org->di_tv, &di->di_tv);
6739 }
6740 return di;
6741}
6742
6743/*
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006744 * Remove item "item" from Dictionary "dict" and free it.
6745 */
6746 static void
6747dictitem_remove(dict, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006748 dict_T *dict;
6749 dictitem_T *item;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006750{
Bram Moolenaar33570922005-01-25 22:26:29 +00006751 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006752
Bram Moolenaar33570922005-01-25 22:26:29 +00006753 hi = hash_find(&dict->dv_hashtab, item->di_key);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006754 if (HASHITEM_EMPTY(hi))
6755 EMSG2(_(e_intern2), "dictitem_remove()");
6756 else
Bram Moolenaar33570922005-01-25 22:26:29 +00006757 hash_remove(&dict->dv_hashtab, hi);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006758 dictitem_free(item);
6759}
6760
6761/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006762 * Free a dict item. Also clears the value.
6763 */
6764 static void
6765dictitem_free(item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006766 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006767{
Bram Moolenaar8c711452005-01-14 21:53:12 +00006768 clear_tv(&item->di_tv);
6769 vim_free(item);
6770}
6771
6772/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006773 * Make a copy of dict "d". Shallow if "deep" is FALSE.
6774 * The refcount of the new dict is set to 1.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006775 * See item_copy() for "copyID".
Bram Moolenaare9a41262005-01-15 22:18:47 +00006776 * Returns NULL when out of memory.
6777 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006778 static dict_T *
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006779dict_copy(orig, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006780 dict_T *orig;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006781 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006782 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006783{
Bram Moolenaar33570922005-01-25 22:26:29 +00006784 dict_T *copy;
6785 dictitem_T *di;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006786 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00006787 hashitem_T *hi;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006788
6789 if (orig == NULL)
6790 return NULL;
6791
6792 copy = dict_alloc();
6793 if (copy != NULL)
6794 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006795 if (copyID != 0)
6796 {
6797 orig->dv_copyID = copyID;
6798 orig->dv_copydict = copy;
6799 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006800 todo = (int)orig->dv_hashtab.ht_used;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006801 for (hi = orig->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +00006802 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006803 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +00006804 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006805 --todo;
6806
6807 di = dictitem_alloc(hi->hi_key);
6808 if (di == NULL)
6809 break;
6810 if (deep)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006811 {
6812 if (item_copy(&HI2DI(hi)->di_tv, &di->di_tv, deep,
6813 copyID) == FAIL)
6814 {
6815 vim_free(di);
6816 break;
6817 }
6818 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006819 else
6820 copy_tv(&HI2DI(hi)->di_tv, &di->di_tv);
6821 if (dict_add(copy, di) == FAIL)
6822 {
6823 dictitem_free(di);
6824 break;
6825 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006826 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006827 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006828
Bram Moolenaare9a41262005-01-15 22:18:47 +00006829 ++copy->dv_refcount;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006830 if (todo > 0)
6831 {
6832 dict_unref(copy);
6833 copy = NULL;
6834 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006835 }
6836
6837 return copy;
6838}
6839
6840/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006841 * Add item "item" to Dictionary "d".
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006842 * Returns FAIL when out of memory and when key already existed.
Bram Moolenaar8c711452005-01-14 21:53:12 +00006843 */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006844 static int
Bram Moolenaar8c711452005-01-14 21:53:12 +00006845dict_add(d, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006846 dict_T *d;
6847 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006848{
Bram Moolenaar33570922005-01-25 22:26:29 +00006849 return hash_add(&d->dv_hashtab, item->di_key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006850}
6851
Bram Moolenaar8c711452005-01-14 21:53:12 +00006852/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00006853 * Add a number or string entry to dictionary "d".
6854 * When "str" is NULL use number "nr", otherwise use "str".
6855 * Returns FAIL when out of memory and when key already exists.
6856 */
6857 int
6858dict_add_nr_str(d, key, nr, str)
6859 dict_T *d;
6860 char *key;
6861 long nr;
6862 char_u *str;
6863{
6864 dictitem_T *item;
6865
6866 item = dictitem_alloc((char_u *)key);
6867 if (item == NULL)
6868 return FAIL;
6869 item->di_tv.v_lock = 0;
6870 if (str == NULL)
6871 {
6872 item->di_tv.v_type = VAR_NUMBER;
6873 item->di_tv.vval.v_number = nr;
6874 }
6875 else
6876 {
6877 item->di_tv.v_type = VAR_STRING;
6878 item->di_tv.vval.v_string = vim_strsave(str);
6879 }
6880 if (dict_add(d, item) == FAIL)
6881 {
6882 dictitem_free(item);
6883 return FAIL;
6884 }
6885 return OK;
6886}
6887
6888/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006889 * Get the number of items in a Dictionary.
6890 */
6891 static long
6892dict_len(d)
Bram Moolenaar33570922005-01-25 22:26:29 +00006893 dict_T *d;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006894{
Bram Moolenaare9a41262005-01-15 22:18:47 +00006895 if (d == NULL)
6896 return 0L;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006897 return (long)d->dv_hashtab.ht_used;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006898}
6899
6900/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006901 * Find item "key[len]" in Dictionary "d".
6902 * If "len" is negative use strlen(key).
6903 * Returns NULL when not found.
6904 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006905 static dictitem_T *
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006906dict_find(d, key, len)
Bram Moolenaar33570922005-01-25 22:26:29 +00006907 dict_T *d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006908 char_u *key;
6909 int len;
6910{
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006911#define AKEYLEN 200
6912 char_u buf[AKEYLEN];
6913 char_u *akey;
6914 char_u *tofree = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00006915 hashitem_T *hi;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006916
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006917 if (len < 0)
6918 akey = key;
6919 else if (len >= AKEYLEN)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006920 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006921 tofree = akey = vim_strnsave(key, len);
6922 if (akey == NULL)
6923 return NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006924 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006925 else
6926 {
6927 /* Avoid a malloc/free by using buf[]. */
Bram Moolenaarce0842a2005-07-18 21:58:11 +00006928 vim_strncpy(buf, key, len);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006929 akey = buf;
6930 }
6931
Bram Moolenaar33570922005-01-25 22:26:29 +00006932 hi = hash_find(&d->dv_hashtab, akey);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006933 vim_free(tofree);
6934 if (HASHITEM_EMPTY(hi))
6935 return NULL;
6936 return HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006937}
6938
6939/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006940 * Get a string item from a dictionary.
6941 * When "save" is TRUE allocate memory for it.
Bram Moolenaar2641f772005-03-25 21:58:17 +00006942 * Returns NULL if the entry doesn't exist or out of memory.
6943 */
6944 char_u *
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006945get_dict_string(d, key, save)
Bram Moolenaar2641f772005-03-25 21:58:17 +00006946 dict_T *d;
6947 char_u *key;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006948 int save;
Bram Moolenaar2641f772005-03-25 21:58:17 +00006949{
6950 dictitem_T *di;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006951 char_u *s;
Bram Moolenaar2641f772005-03-25 21:58:17 +00006952
6953 di = dict_find(d, key, -1);
6954 if (di == NULL)
6955 return NULL;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006956 s = get_tv_string(&di->di_tv);
6957 if (save && s != NULL)
6958 s = vim_strsave(s);
6959 return s;
Bram Moolenaar2641f772005-03-25 21:58:17 +00006960}
6961
6962/*
6963 * Get a number item from a dictionary.
6964 * Returns 0 if the entry doesn't exist or out of memory.
6965 */
6966 long
6967get_dict_number(d, key)
6968 dict_T *d;
6969 char_u *key;
6970{
6971 dictitem_T *di;
6972
6973 di = dict_find(d, key, -1);
6974 if (di == NULL)
6975 return 0;
6976 return get_tv_number(&di->di_tv);
6977}
6978
6979/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006980 * Return an allocated string with the string representation of a Dictionary.
6981 * May return NULL.
6982 */
6983 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006984dict2string(tv, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006985 typval_T *tv;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006986 int copyID;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006987{
6988 garray_T ga;
6989 int first = TRUE;
6990 char_u *tofree;
6991 char_u numbuf[NUMBUFLEN];
Bram Moolenaar33570922005-01-25 22:26:29 +00006992 hashitem_T *hi;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006993 char_u *s;
Bram Moolenaar33570922005-01-25 22:26:29 +00006994 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006995 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006996
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006997 if ((d = tv->vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00006998 return NULL;
6999 ga_init2(&ga, (int)sizeof(char), 80);
7000 ga_append(&ga, '{');
7001
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007002 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007003 for (hi = d->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007004 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007005 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +00007006 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007007 --todo;
7008
7009 if (first)
7010 first = FALSE;
7011 else
7012 ga_concat(&ga, (char_u *)", ");
7013
7014 tofree = string_quote(hi->hi_key, FALSE);
7015 if (tofree != NULL)
7016 {
7017 ga_concat(&ga, tofree);
7018 vim_free(tofree);
7019 }
7020 ga_concat(&ga, (char_u *)": ");
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007021 s = tv2string(&HI2DI(hi)->di_tv, &tofree, numbuf, copyID);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007022 if (s != NULL)
7023 ga_concat(&ga, s);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007024 vim_free(tofree);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007025 if (s == NULL)
7026 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007027 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007028 }
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007029 if (todo > 0)
7030 {
7031 vim_free(ga.ga_data);
7032 return NULL;
7033 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007034
7035 ga_append(&ga, '}');
7036 ga_append(&ga, NUL);
7037 return (char_u *)ga.ga_data;
7038}
7039
7040/*
7041 * Allocate a variable for a Dictionary and fill it from "*arg".
7042 * Return OK or FAIL. Returns NOTDONE for {expr}.
7043 */
7044 static int
7045get_dict_tv(arg, rettv, evaluate)
7046 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00007047 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007048 int evaluate;
7049{
Bram Moolenaar33570922005-01-25 22:26:29 +00007050 dict_T *d = NULL;
7051 typval_T tvkey;
7052 typval_T tv;
Bram Moolenaarad6c2272007-09-17 20:21:33 +00007053 char_u *key = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00007054 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007055 char_u *start = skipwhite(*arg + 1);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007056 char_u buf[NUMBUFLEN];
Bram Moolenaar8c711452005-01-14 21:53:12 +00007057
7058 /*
7059 * First check if it's not a curly-braces thing: {expr}.
7060 * Must do this without evaluating, otherwise a function may be called
7061 * twice. Unfortunately this means we need to call eval1() twice for the
7062 * first item.
Bram Moolenaare9a41262005-01-15 22:18:47 +00007063 * But {} is an empty Dictionary.
Bram Moolenaar8c711452005-01-14 21:53:12 +00007064 */
Bram Moolenaare9a41262005-01-15 22:18:47 +00007065 if (*start != '}')
7066 {
7067 if (eval1(&start, &tv, FALSE) == FAIL) /* recursive! */
7068 return FAIL;
7069 if (*start == '}')
7070 return NOTDONE;
7071 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007072
7073 if (evaluate)
7074 {
7075 d = dict_alloc();
7076 if (d == NULL)
7077 return FAIL;
7078 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007079 tvkey.v_type = VAR_UNKNOWN;
7080 tv.v_type = VAR_UNKNOWN;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007081
7082 *arg = skipwhite(*arg + 1);
7083 while (**arg != '}' && **arg != NUL)
7084 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007085 if (eval1(arg, &tvkey, evaluate) == FAIL) /* recursive! */
Bram Moolenaar8c711452005-01-14 21:53:12 +00007086 goto failret;
7087 if (**arg != ':')
7088 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007089 EMSG2(_("E720: Missing colon in Dictionary: %s"), *arg);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007090 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007091 goto failret;
7092 }
Bram Moolenaar037cc642007-09-13 18:40:54 +00007093 if (evaluate)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007094 {
Bram Moolenaar037cc642007-09-13 18:40:54 +00007095 key = get_tv_string_buf_chk(&tvkey, buf);
7096 if (key == NULL || *key == NUL)
7097 {
7098 /* "key" is NULL when get_tv_string_buf_chk() gave an errmsg */
7099 if (key != NULL)
7100 EMSG(_(e_emptykey));
7101 clear_tv(&tvkey);
7102 goto failret;
7103 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007104 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007105
7106 *arg = skipwhite(*arg + 1);
7107 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
7108 {
Bram Moolenaar037cc642007-09-13 18:40:54 +00007109 if (evaluate)
7110 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007111 goto failret;
7112 }
7113 if (evaluate)
7114 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007115 item = dict_find(d, key, -1);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007116 if (item != NULL)
7117 {
Bram Moolenaarb982ca52005-03-28 21:02:15 +00007118 EMSG2(_("E721: Duplicate key in Dictionary: \"%s\""), key);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007119 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007120 clear_tv(&tv);
7121 goto failret;
7122 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007123 item = dictitem_alloc(key);
7124 clear_tv(&tvkey);
7125 if (item != NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007126 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00007127 item->di_tv = tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00007128 item->di_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007129 if (dict_add(d, item) == FAIL)
7130 dictitem_free(item);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007131 }
7132 }
7133
7134 if (**arg == '}')
7135 break;
7136 if (**arg != ',')
7137 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007138 EMSG2(_("E722: Missing comma in Dictionary: %s"), *arg);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007139 goto failret;
7140 }
7141 *arg = skipwhite(*arg + 1);
7142 }
7143
7144 if (**arg != '}')
7145 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007146 EMSG2(_("E723: Missing end of Dictionary '}': %s"), *arg);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007147failret:
7148 if (evaluate)
Bram Moolenaar685295c2006-10-15 20:37:38 +00007149 dict_free(d, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007150 return FAIL;
7151 }
7152
7153 *arg = skipwhite(*arg + 1);
7154 if (evaluate)
7155 {
7156 rettv->v_type = VAR_DICT;
7157 rettv->vval.v_dict = d;
7158 ++d->dv_refcount;
7159 }
7160
7161 return OK;
7162}
7163
Bram Moolenaar8c711452005-01-14 21:53:12 +00007164/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007165 * Return a string with the string representation of a variable.
7166 * If the memory is allocated "tofree" is set to it, otherwise NULL.
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007167 * "numbuf" is used for a number.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007168 * Does not put quotes around strings, as ":echo" displays values.
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007169 * When "copyID" is not NULL replace recursive lists and dicts with "...".
Bram Moolenaar92c5aba2007-08-14 20:29:31 +00007170 * May return NULL.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007171 */
7172 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007173echo_string(tv, tofree, numbuf, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007174 typval_T *tv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007175 char_u **tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007176 char_u *numbuf;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007177 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007178{
Bram Moolenaare9a41262005-01-15 22:18:47 +00007179 static int recurse = 0;
7180 char_u *r = NULL;
7181
Bram Moolenaar33570922005-01-25 22:26:29 +00007182 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +00007183 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007184 EMSG(_("E724: variable nested too deep for displaying"));
Bram Moolenaare9a41262005-01-15 22:18:47 +00007185 *tofree = NULL;
7186 return NULL;
7187 }
7188 ++recurse;
7189
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007190 switch (tv->v_type)
7191 {
7192 case VAR_FUNC:
7193 *tofree = NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00007194 r = tv->vval.v_string;
7195 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007196
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007197 case VAR_LIST:
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007198 if (tv->vval.v_list == NULL)
7199 {
7200 *tofree = NULL;
7201 r = NULL;
7202 }
7203 else if (copyID != 0 && tv->vval.v_list->lv_copyID == copyID)
7204 {
7205 *tofree = NULL;
7206 r = (char_u *)"[...]";
7207 }
7208 else
7209 {
7210 tv->vval.v_list->lv_copyID = copyID;
7211 *tofree = list2string(tv, copyID);
7212 r = *tofree;
7213 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007214 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007215
Bram Moolenaar8c711452005-01-14 21:53:12 +00007216 case VAR_DICT:
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007217 if (tv->vval.v_dict == NULL)
7218 {
7219 *tofree = NULL;
7220 r = NULL;
7221 }
7222 else if (copyID != 0 && tv->vval.v_dict->dv_copyID == copyID)
7223 {
7224 *tofree = NULL;
7225 r = (char_u *)"{...}";
7226 }
7227 else
7228 {
7229 tv->vval.v_dict->dv_copyID = copyID;
7230 *tofree = dict2string(tv, copyID);
7231 r = *tofree;
7232 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007233 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007234
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007235 case VAR_STRING:
7236 case VAR_NUMBER:
Bram Moolenaare9a41262005-01-15 22:18:47 +00007237 *tofree = NULL;
7238 r = get_tv_string_buf(tv, numbuf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007239 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007240
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007241#ifdef FEAT_FLOAT
7242 case VAR_FLOAT:
7243 *tofree = NULL;
7244 vim_snprintf((char *)numbuf, NUMBUFLEN, "%g", tv->vval.v_float);
7245 r = numbuf;
7246 break;
7247#endif
7248
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007249 default:
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007250 EMSG2(_(e_intern2), "echo_string()");
Bram Moolenaare9a41262005-01-15 22:18:47 +00007251 *tofree = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007252 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007253
7254 --recurse;
7255 return r;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007256}
7257
7258/*
7259 * Return a string with the string representation of a variable.
7260 * If the memory is allocated "tofree" is set to it, otherwise NULL.
7261 * "numbuf" is used for a number.
7262 * Puts quotes around strings, so that they can be parsed back by eval().
Bram Moolenaar92c5aba2007-08-14 20:29:31 +00007263 * May return NULL.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007264 */
7265 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007266tv2string(tv, tofree, numbuf, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007267 typval_T *tv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007268 char_u **tofree;
7269 char_u *numbuf;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007270 int copyID;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007271{
7272 switch (tv->v_type)
7273 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007274 case VAR_FUNC:
7275 *tofree = string_quote(tv->vval.v_string, TRUE);
7276 return *tofree;
7277 case VAR_STRING:
7278 *tofree = string_quote(tv->vval.v_string, FALSE);
7279 return *tofree;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007280#ifdef FEAT_FLOAT
7281 case VAR_FLOAT:
7282 *tofree = NULL;
7283 vim_snprintf((char *)numbuf, NUMBUFLEN - 1, "%g", tv->vval.v_float);
7284 return numbuf;
7285#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +00007286 case VAR_NUMBER:
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007287 case VAR_LIST:
Bram Moolenaar8c711452005-01-14 21:53:12 +00007288 case VAR_DICT:
Bram Moolenaare9a41262005-01-15 22:18:47 +00007289 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007290 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007291 EMSG2(_(e_intern2), "tv2string()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007292 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007293 return echo_string(tv, tofree, numbuf, copyID);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007294}
7295
7296/*
Bram Moolenaar33570922005-01-25 22:26:29 +00007297 * Return string "str" in ' quotes, doubling ' characters.
7298 * If "str" is NULL an empty string is assumed.
Bram Moolenaar8c711452005-01-14 21:53:12 +00007299 * If "function" is TRUE make it function('string').
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007300 */
7301 static char_u *
7302string_quote(str, function)
7303 char_u *str;
7304 int function;
7305{
Bram Moolenaar33570922005-01-25 22:26:29 +00007306 unsigned len;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007307 char_u *p, *r, *s;
7308
Bram Moolenaar33570922005-01-25 22:26:29 +00007309 len = (function ? 13 : 3);
7310 if (str != NULL)
7311 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007312 len += (unsigned)STRLEN(str);
Bram Moolenaar33570922005-01-25 22:26:29 +00007313 for (p = str; *p != NUL; mb_ptr_adv(p))
7314 if (*p == '\'')
7315 ++len;
7316 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007317 s = r = alloc(len);
7318 if (r != NULL)
7319 {
7320 if (function)
7321 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00007322 STRCPY(r, "function('");
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007323 r += 10;
7324 }
7325 else
Bram Moolenaar8c711452005-01-14 21:53:12 +00007326 *r++ = '\'';
Bram Moolenaar33570922005-01-25 22:26:29 +00007327 if (str != NULL)
7328 for (p = str; *p != NUL; )
7329 {
7330 if (*p == '\'')
7331 *r++ = '\'';
7332 MB_COPY_CHAR(p, r);
7333 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007334 *r++ = '\'';
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007335 if (function)
7336 *r++ = ')';
7337 *r++ = NUL;
7338 }
7339 return s;
7340}
7341
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007342#ifdef FEAT_FLOAT
7343/*
7344 * Convert the string "text" to a floating point number.
7345 * This uses strtod(). setlocale(LC_NUMERIC, "C") has been used to make sure
7346 * this always uses a decimal point.
7347 * Returns the length of the text that was consumed.
7348 */
7349 static int
7350string2float(text, value)
7351 char_u *text;
7352 float_T *value; /* result stored here */
7353{
7354 char *s = (char *)text;
7355 float_T f;
7356
7357 f = strtod(s, &s);
7358 *value = f;
7359 return (int)((char_u *)s - text);
7360}
7361#endif
7362
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007363/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007364 * Get the value of an environment variable.
7365 * "arg" is pointing to the '$'. It is advanced to after the name.
7366 * If the environment variable was not set, silently assume it is empty.
7367 * Always return OK.
7368 */
7369 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007370get_env_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007371 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00007372 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007373 int evaluate;
7374{
7375 char_u *string = NULL;
7376 int len;
7377 int cc;
7378 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +00007379 int mustfree = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007380
7381 ++*arg;
7382 name = *arg;
7383 len = get_env_len(arg);
7384 if (evaluate)
7385 {
7386 if (len != 0)
7387 {
7388 cc = name[len];
7389 name[len] = NUL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00007390 /* first try vim_getenv(), fast for normal environment vars */
7391 string = vim_getenv(name, &mustfree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007392 if (string != NULL && *string != NUL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00007393 {
7394 if (!mustfree)
7395 string = vim_strsave(string);
7396 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007397 else
7398 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00007399 if (mustfree)
7400 vim_free(string);
7401
Bram Moolenaar071d4272004-06-13 20:20:40 +00007402 /* next try expanding things like $VIM and ${HOME} */
7403 string = expand_env_save(name - 1);
7404 if (string != NULL && *string == '$')
7405 {
7406 vim_free(string);
7407 string = NULL;
7408 }
7409 }
7410 name[len] = cc;
7411 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007412 rettv->v_type = VAR_STRING;
7413 rettv->vval.v_string = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007414 }
7415
7416 return OK;
7417}
7418
7419/*
7420 * Array with names and number of arguments of all internal functions
7421 * MUST BE KEPT SORTED IN strcmp() ORDER FOR BINARY SEARCH!
7422 */
7423static struct fst
7424{
7425 char *f_name; /* function name */
7426 char f_min_argc; /* minimal number of arguments */
7427 char f_max_argc; /* maximal number of arguments */
Bram Moolenaar33570922005-01-25 22:26:29 +00007428 void (*f_func) __ARGS((typval_T *args, typval_T *rvar));
Bram Moolenaarbae0c162007-05-10 19:30:25 +00007429 /* implementation of function */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007430} functions[] =
7431{
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007432#ifdef FEAT_FLOAT
7433 {"abs", 1, 1, f_abs},
7434#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +00007435 {"add", 2, 2, f_add},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007436 {"append", 2, 2, f_append},
7437 {"argc", 0, 0, f_argc},
7438 {"argidx", 0, 0, f_argidx},
Bram Moolenaare2f98b92006-03-29 21:18:24 +00007439 {"argv", 0, 1, f_argv},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007440#ifdef FEAT_FLOAT
7441 {"atan", 1, 1, f_atan},
7442#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007443 {"browse", 4, 4, f_browse},
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00007444 {"browsedir", 2, 2, f_browsedir},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007445 {"bufexists", 1, 1, f_bufexists},
7446 {"buffer_exists", 1, 1, f_bufexists}, /* obsolete */
7447 {"buffer_name", 1, 1, f_bufname}, /* obsolete */
7448 {"buffer_number", 1, 1, f_bufnr}, /* obsolete */
7449 {"buflisted", 1, 1, f_buflisted},
7450 {"bufloaded", 1, 1, f_bufloaded},
7451 {"bufname", 1, 1, f_bufname},
Bram Moolenaar0e34f622006-03-03 23:00:03 +00007452 {"bufnr", 1, 2, f_bufnr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007453 {"bufwinnr", 1, 1, f_bufwinnr},
7454 {"byte2line", 1, 1, f_byte2line},
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007455 {"byteidx", 2, 2, f_byteidx},
Bram Moolenaare9a41262005-01-15 22:18:47 +00007456 {"call", 2, 3, f_call},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007457#ifdef FEAT_FLOAT
7458 {"ceil", 1, 1, f_ceil},
7459#endif
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00007460 {"changenr", 0, 0, f_changenr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007461 {"char2nr", 1, 1, f_char2nr},
7462 {"cindent", 1, 1, f_cindent},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007463 {"clearmatches", 0, 0, f_clearmatches},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007464 {"col", 1, 1, f_col},
Bram Moolenaar572cb562005-08-05 21:35:02 +00007465#if defined(FEAT_INS_EXPAND)
Bram Moolenaarade00832006-03-10 21:46:58 +00007466 {"complete", 2, 2, f_complete},
Bram Moolenaar572cb562005-08-05 21:35:02 +00007467 {"complete_add", 1, 1, f_complete_add},
7468 {"complete_check", 0, 0, f_complete_check},
7469#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007470 {"confirm", 1, 4, f_confirm},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007471 {"copy", 1, 1, f_copy},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007472#ifdef FEAT_FLOAT
7473 {"cos", 1, 1, f_cos},
7474#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007475 {"count", 2, 4, f_count},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007476 {"cscope_connection",0,3, f_cscope_connection},
Bram Moolenaara5525202006-03-02 22:52:09 +00007477 {"cursor", 1, 3, f_cursor},
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007478 {"deepcopy", 1, 2, f_deepcopy},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007479 {"delete", 1, 1, f_delete},
7480 {"did_filetype", 0, 0, f_did_filetype},
Bram Moolenaar47136d72004-10-12 20:02:24 +00007481 {"diff_filler", 1, 1, f_diff_filler},
7482 {"diff_hlID", 2, 2, f_diff_hlID},
Bram Moolenaare49b69a2005-01-08 16:11:57 +00007483 {"empty", 1, 1, f_empty},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007484 {"escape", 2, 2, f_escape},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007485 {"eval", 1, 1, f_eval},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007486 {"eventhandler", 0, 0, f_eventhandler},
7487 {"executable", 1, 1, f_executable},
7488 {"exists", 1, 1, f_exists},
7489 {"expand", 1, 2, f_expand},
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007490 {"extend", 2, 3, f_extend},
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007491 {"feedkeys", 1, 2, f_feedkeys},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007492 {"file_readable", 1, 1, f_filereadable}, /* obsolete */
7493 {"filereadable", 1, 1, f_filereadable},
7494 {"filewritable", 1, 1, f_filewritable},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007495 {"filter", 2, 2, f_filter},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007496 {"finddir", 1, 3, f_finddir},
7497 {"findfile", 1, 3, f_findfile},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007498#ifdef FEAT_FLOAT
7499 {"float2nr", 1, 1, f_float2nr},
7500 {"floor", 1, 1, f_floor},
7501#endif
Bram Moolenaaraebaf892008-05-28 14:49:58 +00007502 {"fnameescape", 1, 1, f_fnameescape},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007503 {"fnamemodify", 2, 2, f_fnamemodify},
7504 {"foldclosed", 1, 1, f_foldclosed},
7505 {"foldclosedend", 1, 1, f_foldclosedend},
7506 {"foldlevel", 1, 1, f_foldlevel},
7507 {"foldtext", 0, 0, f_foldtext},
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00007508 {"foldtextresult", 1, 1, f_foldtextresult},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007509 {"foreground", 0, 0, f_foreground},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007510 {"function", 1, 1, f_function},
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00007511 {"garbagecollect", 0, 1, f_garbagecollect},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007512 {"get", 2, 3, f_get},
Bram Moolenaar80fc0432005-07-20 22:06:07 +00007513 {"getbufline", 2, 3, f_getbufline},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007514 {"getbufvar", 2, 2, f_getbufvar},
7515 {"getchar", 0, 1, f_getchar},
7516 {"getcharmod", 0, 0, f_getcharmod},
7517 {"getcmdline", 0, 0, f_getcmdline},
7518 {"getcmdpos", 0, 0, f_getcmdpos},
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007519 {"getcmdtype", 0, 0, f_getcmdtype},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007520 {"getcwd", 0, 0, f_getcwd},
Bram Moolenaar46c9c732004-12-12 11:37:09 +00007521 {"getfontname", 0, 1, f_getfontname},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007522 {"getfperm", 1, 1, f_getfperm},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007523 {"getfsize", 1, 1, f_getfsize},
7524 {"getftime", 1, 1, f_getftime},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007525 {"getftype", 1, 1, f_getftype},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007526 {"getline", 1, 2, f_getline},
Bram Moolenaar280f1262006-01-30 00:14:18 +00007527 {"getloclist", 1, 1, f_getqflist},
Bram Moolenaar2240aeb2007-07-27 19:33:14 +00007528 {"getmatches", 0, 0, f_getmatches},
Bram Moolenaar18081e32008-02-20 19:11:07 +00007529 {"getpid", 0, 0, f_getpid},
Bram Moolenaara5525202006-03-02 22:52:09 +00007530 {"getpos", 1, 1, f_getpos},
Bram Moolenaar2641f772005-03-25 21:58:17 +00007531 {"getqflist", 0, 0, f_getqflist},
Bram Moolenaar67fe1a12005-05-22 22:12:58 +00007532 {"getreg", 0, 2, f_getreg},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007533 {"getregtype", 0, 1, f_getregtype},
Bram Moolenaar99ebf042006-04-15 20:28:54 +00007534 {"gettabwinvar", 3, 3, f_gettabwinvar},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007535 {"getwinposx", 0, 0, f_getwinposx},
7536 {"getwinposy", 0, 0, f_getwinposy},
7537 {"getwinvar", 2, 2, f_getwinvar},
7538 {"glob", 1, 1, f_glob},
7539 {"globpath", 2, 2, f_globpath},
7540 {"has", 1, 1, f_has},
Bram Moolenaare9a41262005-01-15 22:18:47 +00007541 {"has_key", 2, 2, f_has_key},
Bram Moolenaard267b9c2007-04-26 15:06:45 +00007542 {"haslocaldir", 0, 0, f_haslocaldir},
Bram Moolenaar2c932302006-03-18 21:42:09 +00007543 {"hasmapto", 1, 3, f_hasmapto},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007544 {"highlightID", 1, 1, f_hlID}, /* obsolete */
7545 {"highlight_exists",1, 1, f_hlexists}, /* obsolete */
7546 {"histadd", 2, 2, f_histadd},
7547 {"histdel", 1, 2, f_histdel},
7548 {"histget", 1, 2, f_histget},
7549 {"histnr", 1, 1, f_histnr},
7550 {"hlID", 1, 1, f_hlID},
7551 {"hlexists", 1, 1, f_hlexists},
7552 {"hostname", 0, 0, f_hostname},
7553 {"iconv", 3, 3, f_iconv},
7554 {"indent", 1, 1, f_indent},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007555 {"index", 2, 4, f_index},
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007556 {"input", 1, 3, f_input},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007557 {"inputdialog", 1, 3, f_inputdialog},
Bram Moolenaar6efa2b32005-09-10 19:26:26 +00007558 {"inputlist", 1, 1, f_inputlist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007559 {"inputrestore", 0, 0, f_inputrestore},
7560 {"inputsave", 0, 0, f_inputsave},
7561 {"inputsecret", 1, 2, f_inputsecret},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007562 {"insert", 2, 3, f_insert},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007563 {"isdirectory", 1, 1, f_isdirectory},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00007564 {"islocked", 1, 1, f_islocked},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007565 {"items", 1, 1, f_items},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007566 {"join", 1, 2, f_join},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007567 {"keys", 1, 1, f_keys},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007568 {"last_buffer_nr", 0, 0, f_last_buffer_nr},/* obsolete */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007569 {"len", 1, 1, f_len},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007570 {"libcall", 3, 3, f_libcall},
7571 {"libcallnr", 3, 3, f_libcallnr},
7572 {"line", 1, 1, f_line},
7573 {"line2byte", 1, 1, f_line2byte},
7574 {"lispindent", 1, 1, f_lispindent},
7575 {"localtime", 0, 0, f_localtime},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007576#ifdef FEAT_FLOAT
7577 {"log10", 1, 1, f_log10},
7578#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007579 {"map", 2, 2, f_map},
Bram Moolenaar2c932302006-03-18 21:42:09 +00007580 {"maparg", 1, 3, f_maparg},
7581 {"mapcheck", 1, 3, f_mapcheck},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007582 {"match", 2, 4, f_match},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007583 {"matchadd", 2, 4, f_matchadd},
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007584 {"matcharg", 1, 1, f_matcharg},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007585 {"matchdelete", 1, 1, f_matchdelete},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007586 {"matchend", 2, 4, f_matchend},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00007587 {"matchlist", 2, 4, f_matchlist},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007588 {"matchstr", 2, 4, f_matchstr},
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007589 {"max", 1, 1, f_max},
7590 {"min", 1, 1, f_min},
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007591#ifdef vim_mkdir
7592 {"mkdir", 1, 3, f_mkdir},
7593#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007594 {"mode", 0, 1, f_mode},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007595 {"nextnonblank", 1, 1, f_nextnonblank},
7596 {"nr2char", 1, 1, f_nr2char},
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007597 {"pathshorten", 1, 1, f_pathshorten},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007598#ifdef FEAT_FLOAT
7599 {"pow", 2, 2, f_pow},
7600#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007601 {"prevnonblank", 1, 1, f_prevnonblank},
Bram Moolenaar4be06f92005-07-29 22:36:03 +00007602 {"printf", 2, 19, f_printf},
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007603 {"pumvisible", 0, 0, f_pumvisible},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007604 {"range", 1, 3, f_range},
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007605 {"readfile", 1, 3, f_readfile},
Bram Moolenaare580b0c2006-03-21 21:33:03 +00007606 {"reltime", 0, 2, f_reltime},
7607 {"reltimestr", 1, 1, f_reltimestr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007608 {"remote_expr", 2, 3, f_remote_expr},
7609 {"remote_foreground", 1, 1, f_remote_foreground},
7610 {"remote_peek", 1, 2, f_remote_peek},
7611 {"remote_read", 1, 1, f_remote_read},
7612 {"remote_send", 2, 3, f_remote_send},
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007613 {"remove", 2, 3, f_remove},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007614 {"rename", 2, 2, f_rename},
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007615 {"repeat", 2, 2, f_repeat},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007616 {"resolve", 1, 1, f_resolve},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007617 {"reverse", 1, 1, f_reverse},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007618#ifdef FEAT_FLOAT
7619 {"round", 1, 1, f_round},
7620#endif
Bram Moolenaar76929292008-01-06 19:07:36 +00007621 {"search", 1, 4, f_search},
Bram Moolenaare6facf92005-09-13 21:22:27 +00007622 {"searchdecl", 1, 3, f_searchdecl},
Bram Moolenaar76929292008-01-06 19:07:36 +00007623 {"searchpair", 3, 7, f_searchpair},
7624 {"searchpairpos", 3, 7, f_searchpairpos},
7625 {"searchpos", 1, 4, f_searchpos},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007626 {"server2client", 2, 2, f_server2client},
7627 {"serverlist", 0, 0, f_serverlist},
7628 {"setbufvar", 3, 3, f_setbufvar},
7629 {"setcmdpos", 1, 1, f_setcmdpos},
7630 {"setline", 2, 2, f_setline},
Bram Moolenaar17c7c012006-01-26 22:25:15 +00007631 {"setloclist", 2, 3, f_setloclist},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007632 {"setmatches", 1, 1, f_setmatches},
Bram Moolenaar0e34f622006-03-03 23:00:03 +00007633 {"setpos", 2, 2, f_setpos},
Bram Moolenaarf4630b62005-05-20 21:31:17 +00007634 {"setqflist", 1, 2, f_setqflist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007635 {"setreg", 2, 3, f_setreg},
Bram Moolenaar99ebf042006-04-15 20:28:54 +00007636 {"settabwinvar", 4, 4, f_settabwinvar},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007637 {"setwinvar", 3, 3, f_setwinvar},
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007638 {"shellescape", 1, 2, f_shellescape},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007639 {"simplify", 1, 1, f_simplify},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007640#ifdef FEAT_FLOAT
7641 {"sin", 1, 1, f_sin},
7642#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +00007643 {"sort", 1, 2, f_sort},
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00007644 {"soundfold", 1, 1, f_soundfold},
Bram Moolenaar4463f292005-09-25 22:20:24 +00007645 {"spellbadword", 0, 1, f_spellbadword},
Bram Moolenaar69e0ff92005-09-30 21:23:56 +00007646 {"spellsuggest", 1, 3, f_spellsuggest},
Bram Moolenaar67fe1a12005-05-22 22:12:58 +00007647 {"split", 1, 3, f_split},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007648#ifdef FEAT_FLOAT
7649 {"sqrt", 1, 1, f_sqrt},
7650 {"str2float", 1, 1, f_str2float},
7651#endif
Bram Moolenaar2c932302006-03-18 21:42:09 +00007652 {"str2nr", 1, 2, f_str2nr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007653#ifdef HAVE_STRFTIME
7654 {"strftime", 1, 2, f_strftime},
7655#endif
Bram Moolenaar33570922005-01-25 22:26:29 +00007656 {"stridx", 2, 3, f_stridx},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007657 {"string", 1, 1, f_string},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007658 {"strlen", 1, 1, f_strlen},
7659 {"strpart", 2, 3, f_strpart},
Bram Moolenaar532c7802005-01-27 14:44:31 +00007660 {"strridx", 2, 3, f_strridx},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007661 {"strtrans", 1, 1, f_strtrans},
7662 {"submatch", 1, 1, f_submatch},
7663 {"substitute", 4, 4, f_substitute},
7664 {"synID", 3, 3, f_synID},
7665 {"synIDattr", 2, 3, f_synIDattr},
7666 {"synIDtrans", 1, 1, f_synIDtrans},
Bram Moolenaar9d188ab2008-01-10 21:24:39 +00007667 {"synstack", 2, 2, f_synstack},
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007668 {"system", 1, 2, f_system},
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007669 {"tabpagebuflist", 0, 1, f_tabpagebuflist},
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007670 {"tabpagenr", 0, 1, f_tabpagenr},
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007671 {"tabpagewinnr", 1, 2, f_tabpagewinnr},
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00007672 {"tagfiles", 0, 0, f_tagfiles},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00007673 {"taglist", 1, 1, f_taglist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007674 {"tempname", 0, 0, f_tempname},
Bram Moolenaard52d9742005-08-21 22:20:28 +00007675 {"test", 1, 1, f_test},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007676 {"tolower", 1, 1, f_tolower},
7677 {"toupper", 1, 1, f_toupper},
Bram Moolenaar8299df92004-07-10 09:47:34 +00007678 {"tr", 3, 3, f_tr},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007679#ifdef FEAT_FLOAT
7680 {"trunc", 1, 1, f_trunc},
7681#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007682 {"type", 1, 1, f_type},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007683 {"values", 1, 1, f_values},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007684 {"virtcol", 1, 1, f_virtcol},
7685 {"visualmode", 0, 1, f_visualmode},
7686 {"winbufnr", 1, 1, f_winbufnr},
7687 {"wincol", 0, 0, f_wincol},
7688 {"winheight", 1, 1, f_winheight},
7689 {"winline", 0, 0, f_winline},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007690 {"winnr", 0, 1, f_winnr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007691 {"winrestcmd", 0, 0, f_winrestcmd},
Bram Moolenaar768b8c42006-03-04 21:58:33 +00007692 {"winrestview", 1, 1, f_winrestview},
7693 {"winsaveview", 0, 0, f_winsaveview},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007694 {"winwidth", 1, 1, f_winwidth},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00007695 {"writefile", 2, 3, f_writefile},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007696};
7697
7698#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
7699
7700/*
7701 * Function given to ExpandGeneric() to obtain the list of internal
7702 * or user defined function names.
7703 */
7704 char_u *
7705get_function_name(xp, idx)
7706 expand_T *xp;
7707 int idx;
7708{
7709 static int intidx = -1;
7710 char_u *name;
7711
7712 if (idx == 0)
7713 intidx = -1;
7714 if (intidx < 0)
7715 {
7716 name = get_user_func_name(xp, idx);
7717 if (name != NULL)
7718 return name;
7719 }
7720 if (++intidx < (int)(sizeof(functions) / sizeof(struct fst)))
7721 {
7722 STRCPY(IObuff, functions[intidx].f_name);
7723 STRCAT(IObuff, "(");
7724 if (functions[intidx].f_max_argc == 0)
7725 STRCAT(IObuff, ")");
7726 return IObuff;
7727 }
7728
7729 return NULL;
7730}
7731
7732/*
7733 * Function given to ExpandGeneric() to obtain the list of internal or
7734 * user defined variable or function names.
7735 */
7736/*ARGSUSED*/
7737 char_u *
7738get_expr_name(xp, idx)
7739 expand_T *xp;
7740 int idx;
7741{
7742 static int intidx = -1;
7743 char_u *name;
7744
7745 if (idx == 0)
7746 intidx = -1;
7747 if (intidx < 0)
7748 {
7749 name = get_function_name(xp, idx);
7750 if (name != NULL)
7751 return name;
7752 }
7753 return get_user_var_name(xp, ++intidx);
7754}
7755
7756#endif /* FEAT_CMDL_COMPL */
7757
7758/*
7759 * Find internal function in table above.
7760 * Return index, or -1 if not found
7761 */
7762 static int
7763find_internal_func(name)
7764 char_u *name; /* name of the function */
7765{
7766 int first = 0;
7767 int last = (int)(sizeof(functions) / sizeof(struct fst)) - 1;
7768 int cmp;
7769 int x;
7770
7771 /*
7772 * Find the function name in the table. Binary search.
7773 */
7774 while (first <= last)
7775 {
7776 x = first + ((unsigned)(last - first) >> 1);
7777 cmp = STRCMP(name, functions[x].f_name);
7778 if (cmp < 0)
7779 last = x - 1;
7780 else if (cmp > 0)
7781 first = x + 1;
7782 else
7783 return x;
7784 }
7785 return -1;
7786}
7787
7788/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007789 * Check if "name" is a variable of type VAR_FUNC. If so, return the function
7790 * name it contains, otherwise return "name".
7791 */
7792 static char_u *
7793deref_func_name(name, lenp)
7794 char_u *name;
7795 int *lenp;
7796{
Bram Moolenaar33570922005-01-25 22:26:29 +00007797 dictitem_T *v;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007798 int cc;
7799
7800 cc = name[*lenp];
7801 name[*lenp] = NUL;
Bram Moolenaara7043832005-01-21 11:56:39 +00007802 v = find_var(name, NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007803 name[*lenp] = cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00007804 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007805 {
Bram Moolenaar33570922005-01-25 22:26:29 +00007806 if (v->di_tv.vval.v_string == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007807 {
7808 *lenp = 0;
7809 return (char_u *)""; /* just in case */
7810 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007811 *lenp = (int)STRLEN(v->di_tv.vval.v_string);
Bram Moolenaar33570922005-01-25 22:26:29 +00007812 return v->di_tv.vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007813 }
7814
7815 return name;
7816}
7817
7818/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007819 * Allocate a variable for the result of a function.
7820 * Return OK or FAIL.
7821 */
7822 static int
Bram Moolenaare9a41262005-01-15 22:18:47 +00007823get_func_tv(name, len, rettv, arg, firstline, lastline, doesrange,
7824 evaluate, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007825 char_u *name; /* name of the function */
7826 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +00007827 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007828 char_u **arg; /* argument, pointing to the '(' */
7829 linenr_T firstline; /* first line of range */
7830 linenr_T lastline; /* last line of range */
7831 int *doesrange; /* return: function handled range */
7832 int evaluate;
Bram Moolenaar33570922005-01-25 22:26:29 +00007833 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007834{
7835 char_u *argp;
7836 int ret = OK;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007837 typval_T argvars[MAX_FUNC_ARGS + 1]; /* vars for arguments */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007838 int argcount = 0; /* number of arguments found */
7839
7840 /*
7841 * Get the arguments.
7842 */
7843 argp = *arg;
7844 while (argcount < MAX_FUNC_ARGS)
7845 {
7846 argp = skipwhite(argp + 1); /* skip the '(' or ',' */
7847 if (*argp == ')' || *argp == ',' || *argp == NUL)
7848 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007849 if (eval1(&argp, &argvars[argcount], evaluate) == FAIL)
7850 {
7851 ret = FAIL;
7852 break;
7853 }
7854 ++argcount;
7855 if (*argp != ',')
7856 break;
7857 }
7858 if (*argp == ')')
7859 ++argp;
7860 else
7861 ret = FAIL;
7862
7863 if (ret == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007864 ret = call_func(name, len, rettv, argcount, argvars,
Bram Moolenaare9a41262005-01-15 22:18:47 +00007865 firstline, lastline, doesrange, evaluate, selfdict);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007866 else if (!aborting())
Bram Moolenaar33570922005-01-25 22:26:29 +00007867 {
7868 if (argcount == MAX_FUNC_ARGS)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007869 emsg_funcname("E740: Too many arguments for function %s", name);
Bram Moolenaar33570922005-01-25 22:26:29 +00007870 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007871 emsg_funcname("E116: Invalid arguments for function %s", name);
Bram Moolenaar33570922005-01-25 22:26:29 +00007872 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007873
7874 while (--argcount >= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007875 clear_tv(&argvars[argcount]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007876
7877 *arg = skipwhite(argp);
7878 return ret;
7879}
7880
7881
7882/*
7883 * Call a function with its resolved parameters
Bram Moolenaar280f1262006-01-30 00:14:18 +00007884 * Return OK when the function can't be called, FAIL otherwise.
7885 * Also returns OK when an error was encountered while executing the function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007886 */
7887 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007888call_func(name, len, rettv, argcount, argvars, firstline, lastline,
Bram Moolenaare9a41262005-01-15 22:18:47 +00007889 doesrange, evaluate, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007890 char_u *name; /* name of the function */
7891 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +00007892 typval_T *rettv; /* return value goes here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007893 int argcount; /* number of "argvars" */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007894 typval_T *argvars; /* vars for arguments, must have "argcount"
7895 PLUS ONE elements! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007896 linenr_T firstline; /* first line of range */
7897 linenr_T lastline; /* last line of range */
7898 int *doesrange; /* return: function handled range */
7899 int evaluate;
Bram Moolenaar33570922005-01-25 22:26:29 +00007900 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007901{
7902 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007903#define ERROR_UNKNOWN 0
7904#define ERROR_TOOMANY 1
7905#define ERROR_TOOFEW 2
7906#define ERROR_SCRIPT 3
Bram Moolenaare9a41262005-01-15 22:18:47 +00007907#define ERROR_DICT 4
7908#define ERROR_NONE 5
7909#define ERROR_OTHER 6
Bram Moolenaar071d4272004-06-13 20:20:40 +00007910 int error = ERROR_NONE;
7911 int i;
7912 int llen;
7913 ufunc_T *fp;
7914 int cc;
7915#define FLEN_FIXED 40
7916 char_u fname_buf[FLEN_FIXED + 1];
7917 char_u *fname;
7918
7919 /*
7920 * In a script change <SID>name() and s:name() to K_SNR 123_name().
7921 * Change <SNR>123_name() to K_SNR 123_name().
7922 * Use fname_buf[] when it fits, otherwise allocate memory (slow).
7923 */
7924 cc = name[len];
7925 name[len] = NUL;
7926 llen = eval_fname_script(name);
7927 if (llen > 0)
7928 {
7929 fname_buf[0] = K_SPECIAL;
7930 fname_buf[1] = KS_EXTRA;
7931 fname_buf[2] = (int)KE_SNR;
7932 i = 3;
7933 if (eval_fname_sid(name)) /* "<SID>" or "s:" */
7934 {
7935 if (current_SID <= 0)
7936 error = ERROR_SCRIPT;
7937 else
7938 {
7939 sprintf((char *)fname_buf + 3, "%ld_", (long)current_SID);
7940 i = (int)STRLEN(fname_buf);
7941 }
7942 }
7943 if (i + STRLEN(name + llen) < FLEN_FIXED)
7944 {
7945 STRCPY(fname_buf + i, name + llen);
7946 fname = fname_buf;
7947 }
7948 else
7949 {
7950 fname = alloc((unsigned)(i + STRLEN(name + llen) + 1));
7951 if (fname == NULL)
7952 error = ERROR_OTHER;
7953 else
7954 {
7955 mch_memmove(fname, fname_buf, (size_t)i);
7956 STRCPY(fname + i, name + llen);
7957 }
7958 }
7959 }
7960 else
7961 fname = name;
7962
7963 *doesrange = FALSE;
7964
7965
7966 /* execute the function if no errors detected and executing */
7967 if (evaluate && error == ERROR_NONE)
7968 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007969 rettv->v_type = VAR_NUMBER; /* default is number rettv */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007970 error = ERROR_UNKNOWN;
7971
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00007972 if (!builtin_function(fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007973 {
7974 /*
7975 * User defined function.
7976 */
7977 fp = find_func(fname);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00007978
Bram Moolenaar071d4272004-06-13 20:20:40 +00007979#ifdef FEAT_AUTOCMD
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00007980 /* Trigger FuncUndefined event, may load the function. */
7981 if (fp == NULL
7982 && apply_autocmds(EVENT_FUNCUNDEFINED,
7983 fname, fname, TRUE, NULL)
7984 && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00007985 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00007986 /* executed an autocommand, search for the function again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007987 fp = find_func(fname);
7988 }
7989#endif
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00007990 /* Try loading a package. */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00007991 if (fp == NULL && script_autoload(fname, TRUE) && !aborting())
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00007992 {
7993 /* loaded a package, search for the function again */
7994 fp = find_func(fname);
7995 }
7996
Bram Moolenaar071d4272004-06-13 20:20:40 +00007997 if (fp != NULL)
7998 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007999 if (fp->uf_flags & FC_RANGE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008000 *doesrange = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008001 if (argcount < fp->uf_args.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008002 error = ERROR_TOOFEW;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008003 else if (!fp->uf_varargs && argcount > fp->uf_args.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008004 error = ERROR_TOOMANY;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008005 else if ((fp->uf_flags & FC_DICT) && selfdict == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00008006 error = ERROR_DICT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008007 else
8008 {
8009 /*
8010 * Call the user function.
8011 * Save and restore search patterns, script variables and
8012 * redo buffer.
8013 */
8014 save_search_patterns();
8015 saveRedobuff();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008016 ++fp->uf_calls;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008017 call_user_func(fp, argcount, argvars, rettv,
Bram Moolenaare9a41262005-01-15 22:18:47 +00008018 firstline, lastline,
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008019 (fp->uf_flags & FC_DICT) ? selfdict : NULL);
8020 if (--fp->uf_calls <= 0 && isdigit(*fp->uf_name)
8021 && fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00008022 /* Function was unreferenced while being used, free it
8023 * now. */
8024 func_free(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008025 restoreRedobuff();
8026 restore_search_patterns();
8027 error = ERROR_NONE;
8028 }
8029 }
8030 }
8031 else
8032 {
8033 /*
8034 * Find the function name in the table, call its implementation.
8035 */
8036 i = find_internal_func(fname);
8037 if (i >= 0)
8038 {
8039 if (argcount < functions[i].f_min_argc)
8040 error = ERROR_TOOFEW;
8041 else if (argcount > functions[i].f_max_argc)
8042 error = ERROR_TOOMANY;
8043 else
8044 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008045 argvars[argcount].v_type = VAR_UNKNOWN;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008046 functions[i].f_func(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008047 error = ERROR_NONE;
8048 }
8049 }
8050 }
8051 /*
8052 * The function call (or "FuncUndefined" autocommand sequence) might
8053 * have been aborted by an error, an interrupt, or an explicitly thrown
8054 * exception that has not been caught so far. This situation can be
8055 * tested for by calling aborting(). For an error in an internal
8056 * function or for the "E132" error in call_user_func(), however, the
8057 * throw point at which the "force_abort" flag (temporarily reset by
8058 * emsg()) is normally updated has not been reached yet. We need to
8059 * update that flag first to make aborting() reliable.
8060 */
8061 update_force_abort();
8062 }
8063 if (error == ERROR_NONE)
8064 ret = OK;
8065
8066 /*
8067 * Report an error unless the argument evaluation or function call has been
8068 * cancelled due to an aborting error, an interrupt, or an exception.
8069 */
Bram Moolenaar8c711452005-01-14 21:53:12 +00008070 if (!aborting())
8071 {
8072 switch (error)
8073 {
8074 case ERROR_UNKNOWN:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008075 emsg_funcname(N_("E117: Unknown function: %s"), name);
Bram Moolenaar8c711452005-01-14 21:53:12 +00008076 break;
8077 case ERROR_TOOMANY:
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008078 emsg_funcname(e_toomanyarg, name);
Bram Moolenaar8c711452005-01-14 21:53:12 +00008079 break;
8080 case ERROR_TOOFEW:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008081 emsg_funcname(N_("E119: Not enough arguments for function: %s"),
Bram Moolenaar8c711452005-01-14 21:53:12 +00008082 name);
8083 break;
8084 case ERROR_SCRIPT:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008085 emsg_funcname(N_("E120: Using <SID> not in a script context: %s"),
Bram Moolenaar8c711452005-01-14 21:53:12 +00008086 name);
8087 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00008088 case ERROR_DICT:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008089 emsg_funcname(N_("E725: Calling dict function without Dictionary: %s"),
Bram Moolenaare9a41262005-01-15 22:18:47 +00008090 name);
8091 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00008092 }
8093 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008094
8095 name[len] = cc;
8096 if (fname != name && fname != fname_buf)
8097 vim_free(fname);
8098
8099 return ret;
8100}
8101
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008102/*
8103 * Give an error message with a function name. Handle <SNR> things.
8104 */
8105 static void
Bram Moolenaar89d40322006-08-29 15:30:07 +00008106emsg_funcname(ermsg, name)
8107 char *ermsg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008108 char_u *name;
8109{
8110 char_u *p;
8111
8112 if (*name == K_SPECIAL)
8113 p = concat_str((char_u *)"<SNR>", name + 3);
8114 else
8115 p = name;
Bram Moolenaar89d40322006-08-29 15:30:07 +00008116 EMSG2(_(ermsg), p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008117 if (p != name)
8118 vim_free(p);
8119}
8120
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008121/*
8122 * Return TRUE for a non-zero Number and a non-empty String.
8123 */
8124 static int
8125non_zero_arg(argvars)
8126 typval_T *argvars;
8127{
8128 return ((argvars[0].v_type == VAR_NUMBER
8129 && argvars[0].vval.v_number != 0)
8130 || (argvars[0].v_type == VAR_STRING
8131 && argvars[0].vval.v_string != NULL
8132 && *argvars[0].vval.v_string != NUL));
8133}
8134
Bram Moolenaar071d4272004-06-13 20:20:40 +00008135/*********************************************
8136 * Implementation of the built-in functions
8137 */
8138
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008139#ifdef FEAT_FLOAT
8140/*
8141 * "abs(expr)" function
8142 */
8143 static void
8144f_abs(argvars, rettv)
8145 typval_T *argvars;
8146 typval_T *rettv;
8147{
8148 if (argvars[0].v_type == VAR_FLOAT)
8149 {
8150 rettv->v_type = VAR_FLOAT;
8151 rettv->vval.v_float = fabs(argvars[0].vval.v_float);
8152 }
8153 else
8154 {
8155 varnumber_T n;
8156 int error = FALSE;
8157
8158 n = get_tv_number_chk(&argvars[0], &error);
8159 if (error)
8160 rettv->vval.v_number = -1;
8161 else if (n > 0)
8162 rettv->vval.v_number = n;
8163 else
8164 rettv->vval.v_number = -n;
8165 }
8166}
8167#endif
8168
Bram Moolenaar071d4272004-06-13 20:20:40 +00008169/*
Bram Moolenaar0d660222005-01-07 21:51:51 +00008170 * "add(list, item)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +00008171 */
8172 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +00008173f_add(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008174 typval_T *argvars;
8175 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008176{
Bram Moolenaar33570922005-01-25 22:26:29 +00008177 list_T *l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008178
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008179 rettv->vval.v_number = 1; /* Default: Failed */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008180 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008181 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00008182 if ((l = argvars[0].vval.v_list) != NULL
8183 && !tv_check_lock(l->lv_lock, (char_u *)"add()")
8184 && list_append_tv(l, &argvars[1]) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008185 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008186 }
8187 else
Bram Moolenaar0d660222005-01-07 21:51:51 +00008188 EMSG(_(e_listreq));
8189}
8190
8191/*
8192 * "append(lnum, string/list)" function
8193 */
8194 static void
8195f_append(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008196 typval_T *argvars;
8197 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00008198{
8199 long lnum;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008200 char_u *line;
Bram Moolenaar33570922005-01-25 22:26:29 +00008201 list_T *l = NULL;
8202 listitem_T *li = NULL;
8203 typval_T *tv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00008204 long added = 0;
8205
Bram Moolenaar0d660222005-01-07 21:51:51 +00008206 lnum = get_tv_lnum(argvars);
8207 if (lnum >= 0
8208 && lnum <= curbuf->b_ml.ml_line_count
8209 && u_save(lnum, lnum + 1) == OK)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008210 {
Bram Moolenaar0d660222005-01-07 21:51:51 +00008211 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008212 {
Bram Moolenaar0d660222005-01-07 21:51:51 +00008213 l = argvars[1].vval.v_list;
8214 if (l == NULL)
8215 return;
8216 li = l->lv_first;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008217 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008218 rettv->vval.v_number = 0; /* Default: Success */
Bram Moolenaar0d660222005-01-07 21:51:51 +00008219 for (;;)
8220 {
8221 if (l == NULL)
8222 tv = &argvars[1]; /* append a string */
8223 else if (li == NULL)
8224 break; /* end of list */
8225 else
8226 tv = &li->li_tv; /* append item from list */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008227 line = get_tv_string_chk(tv);
8228 if (line == NULL) /* type error */
8229 {
8230 rettv->vval.v_number = 1; /* Failed */
8231 break;
8232 }
8233 ml_append(lnum + added, line, (colnr_T)0, FALSE);
Bram Moolenaar0d660222005-01-07 21:51:51 +00008234 ++added;
8235 if (l == NULL)
8236 break;
8237 li = li->li_next;
8238 }
8239
8240 appended_lines_mark(lnum, added);
8241 if (curwin->w_cursor.lnum > lnum)
8242 curwin->w_cursor.lnum += added;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008243 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008244 else
8245 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008246}
8247
8248/*
8249 * "argc()" function
8250 */
8251/* ARGSUSED */
8252 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008253f_argc(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008254 typval_T *argvars;
8255 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008256{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008257 rettv->vval.v_number = ARGCOUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008258}
8259
8260/*
8261 * "argidx()" function
8262 */
8263/* ARGSUSED */
8264 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008265f_argidx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008266 typval_T *argvars;
8267 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008268{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008269 rettv->vval.v_number = curwin->w_arg_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008270}
8271
8272/*
8273 * "argv(nr)" function
8274 */
8275 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008276f_argv(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008277 typval_T *argvars;
8278 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008279{
8280 int idx;
8281
Bram Moolenaare2f98b92006-03-29 21:18:24 +00008282 if (argvars[0].v_type != VAR_UNKNOWN)
8283 {
8284 idx = get_tv_number_chk(&argvars[0], NULL);
8285 if (idx >= 0 && idx < ARGCOUNT)
8286 rettv->vval.v_string = vim_strsave(alist_name(&ARGLIST[idx]));
8287 else
8288 rettv->vval.v_string = NULL;
8289 rettv->v_type = VAR_STRING;
8290 }
8291 else if (rettv_list_alloc(rettv) == OK)
8292 for (idx = 0; idx < ARGCOUNT; ++idx)
8293 list_append_string(rettv->vval.v_list,
8294 alist_name(&ARGLIST[idx]), -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008295}
8296
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008297#ifdef FEAT_FLOAT
8298static int get_float_arg __ARGS((typval_T *argvars, float_T *f));
8299
8300/*
8301 * Get the float value of "argvars[0]" into "f".
8302 * Returns FAIL when the argument is not a Number or Float.
8303 */
8304 static int
8305get_float_arg(argvars, f)
8306 typval_T *argvars;
8307 float_T *f;
8308{
8309 if (argvars[0].v_type == VAR_FLOAT)
8310 {
8311 *f = argvars[0].vval.v_float;
8312 return OK;
8313 }
8314 if (argvars[0].v_type == VAR_NUMBER)
8315 {
8316 *f = (float_T)argvars[0].vval.v_number;
8317 return OK;
8318 }
8319 EMSG(_("E808: Number or Float required"));
8320 return FAIL;
8321}
8322
8323/*
8324 * "atan()" function
8325 */
8326 static void
8327f_atan(argvars, rettv)
8328 typval_T *argvars;
8329 typval_T *rettv;
8330{
8331 float_T f;
8332
8333 rettv->v_type = VAR_FLOAT;
8334 if (get_float_arg(argvars, &f) == OK)
8335 rettv->vval.v_float = atan(f);
8336 else
8337 rettv->vval.v_float = 0.0;
8338}
8339#endif
8340
Bram Moolenaar071d4272004-06-13 20:20:40 +00008341/*
8342 * "browse(save, title, initdir, default)" function
8343 */
8344/* ARGSUSED */
8345 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008346f_browse(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008347 typval_T *argvars;
8348 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008349{
8350#ifdef FEAT_BROWSE
8351 int save;
8352 char_u *title;
8353 char_u *initdir;
8354 char_u *defname;
8355 char_u buf[NUMBUFLEN];
8356 char_u buf2[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008357 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008358
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008359 save = get_tv_number_chk(&argvars[0], &error);
8360 title = get_tv_string_chk(&argvars[1]);
8361 initdir = get_tv_string_buf_chk(&argvars[2], buf);
8362 defname = get_tv_string_buf_chk(&argvars[3], buf2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008363
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008364 if (error || title == NULL || initdir == NULL || defname == NULL)
8365 rettv->vval.v_string = NULL;
8366 else
8367 rettv->vval.v_string =
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008368 do_browse(save ? BROWSE_SAVE : 0,
8369 title, defname, NULL, initdir, NULL, curbuf);
8370#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008371 rettv->vval.v_string = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008372#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008373 rettv->v_type = VAR_STRING;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008374}
8375
8376/*
8377 * "browsedir(title, initdir)" function
8378 */
8379/* ARGSUSED */
8380 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008381f_browsedir(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008382 typval_T *argvars;
8383 typval_T *rettv;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008384{
8385#ifdef FEAT_BROWSE
8386 char_u *title;
8387 char_u *initdir;
8388 char_u buf[NUMBUFLEN];
8389
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008390 title = get_tv_string_chk(&argvars[0]);
8391 initdir = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008392
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008393 if (title == NULL || initdir == NULL)
8394 rettv->vval.v_string = NULL;
8395 else
8396 rettv->vval.v_string = do_browse(BROWSE_DIR,
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008397 title, NULL, NULL, initdir, NULL, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008398#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008399 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008400#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008401 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008402}
8403
Bram Moolenaar33570922005-01-25 22:26:29 +00008404static buf_T *find_buffer __ARGS((typval_T *avar));
Bram Moolenaar0d660222005-01-07 21:51:51 +00008405
Bram Moolenaar071d4272004-06-13 20:20:40 +00008406/*
8407 * Find a buffer by number or exact name.
8408 */
8409 static buf_T *
8410find_buffer(avar)
Bram Moolenaar33570922005-01-25 22:26:29 +00008411 typval_T *avar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008412{
8413 buf_T *buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008414
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008415 if (avar->v_type == VAR_NUMBER)
8416 buf = buflist_findnr((int)avar->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +00008417 else if (avar->v_type == VAR_STRING && avar->vval.v_string != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008418 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008419 buf = buflist_findname_exp(avar->vval.v_string);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00008420 if (buf == NULL)
8421 {
8422 /* No full path name match, try a match with a URL or a "nofile"
8423 * buffer, these don't use the full path. */
8424 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
8425 if (buf->b_fname != NULL
8426 && (path_with_url(buf->b_fname)
8427#ifdef FEAT_QUICKFIX
8428 || bt_nofile(buf)
8429#endif
8430 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008431 && STRCMP(buf->b_fname, avar->vval.v_string) == 0)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00008432 break;
8433 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008434 }
8435 return buf;
8436}
8437
8438/*
8439 * "bufexists(expr)" function
8440 */
8441 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008442f_bufexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008443 typval_T *argvars;
8444 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008445{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008446 rettv->vval.v_number = (find_buffer(&argvars[0]) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008447}
8448
8449/*
8450 * "buflisted(expr)" function
8451 */
8452 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008453f_buflisted(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008454 typval_T *argvars;
8455 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008456{
8457 buf_T *buf;
8458
8459 buf = find_buffer(&argvars[0]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008460 rettv->vval.v_number = (buf != NULL && buf->b_p_bl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008461}
8462
8463/*
8464 * "bufloaded(expr)" function
8465 */
8466 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008467f_bufloaded(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008468 typval_T *argvars;
8469 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008470{
8471 buf_T *buf;
8472
8473 buf = find_buffer(&argvars[0]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008474 rettv->vval.v_number = (buf != NULL && buf->b_ml.ml_mfp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008475}
8476
Bram Moolenaar33570922005-01-25 22:26:29 +00008477static buf_T *get_buf_tv __ARGS((typval_T *tv));
Bram Moolenaar0d660222005-01-07 21:51:51 +00008478
Bram Moolenaar071d4272004-06-13 20:20:40 +00008479/*
8480 * Get buffer by number or pattern.
8481 */
8482 static buf_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008483get_buf_tv(tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008484 typval_T *tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008485{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008486 char_u *name = tv->vval.v_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008487 int save_magic;
8488 char_u *save_cpo;
8489 buf_T *buf;
8490
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008491 if (tv->v_type == VAR_NUMBER)
8492 return buflist_findnr((int)tv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +00008493 if (tv->v_type != VAR_STRING)
8494 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008495 if (name == NULL || *name == NUL)
8496 return curbuf;
8497 if (name[0] == '$' && name[1] == NUL)
8498 return lastbuf;
8499
8500 /* Ignore 'magic' and 'cpoptions' here to make scripts portable */
8501 save_magic = p_magic;
8502 p_magic = TRUE;
8503 save_cpo = p_cpo;
8504 p_cpo = (char_u *)"";
8505
8506 buf = buflist_findnr(buflist_findpat(name, name + STRLEN(name),
8507 TRUE, FALSE));
8508
8509 p_magic = save_magic;
8510 p_cpo = save_cpo;
8511
8512 /* If not found, try expanding the name, like done for bufexists(). */
8513 if (buf == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008514 buf = find_buffer(tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008515
8516 return buf;
8517}
8518
8519/*
8520 * "bufname(expr)" function
8521 */
8522 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008523f_bufname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008524 typval_T *argvars;
8525 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008526{
8527 buf_T *buf;
8528
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008529 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008530 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008531 buf = get_buf_tv(&argvars[0]);
8532 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008533 if (buf != NULL && buf->b_fname != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008534 rettv->vval.v_string = vim_strsave(buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008535 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008536 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008537 --emsg_off;
8538}
8539
8540/*
8541 * "bufnr(expr)" function
8542 */
8543 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008544f_bufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008545 typval_T *argvars;
8546 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008547{
8548 buf_T *buf;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008549 int error = FALSE;
8550 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008551
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008552 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008553 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008554 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008555 --emsg_off;
8556
8557 /* If the buffer isn't found and the second argument is not zero create a
8558 * new buffer. */
8559 if (buf == NULL
8560 && argvars[1].v_type != VAR_UNKNOWN
8561 && get_tv_number_chk(&argvars[1], &error) != 0
8562 && !error
8563 && (name = get_tv_string_chk(&argvars[0])) != NULL
8564 && !error)
8565 buf = buflist_new(name, NULL, (linenr_T)1, 0);
8566
Bram Moolenaar071d4272004-06-13 20:20:40 +00008567 if (buf != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008568 rettv->vval.v_number = buf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008569 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008570 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008571}
8572
8573/*
8574 * "bufwinnr(nr)" function
8575 */
8576 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008577f_bufwinnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008578 typval_T *argvars;
8579 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008580{
8581#ifdef FEAT_WINDOWS
8582 win_T *wp;
8583 int winnr = 0;
8584#endif
8585 buf_T *buf;
8586
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008587 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008588 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008589 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008590#ifdef FEAT_WINDOWS
8591 for (wp = firstwin; wp; wp = wp->w_next)
8592 {
8593 ++winnr;
8594 if (wp->w_buffer == buf)
8595 break;
8596 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008597 rettv->vval.v_number = (wp != NULL ? winnr : -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008598#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008599 rettv->vval.v_number = (curwin->w_buffer == buf ? 1 : -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008600#endif
8601 --emsg_off;
8602}
8603
8604/*
8605 * "byte2line(byte)" function
8606 */
8607/*ARGSUSED*/
8608 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008609f_byte2line(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008610 typval_T *argvars;
8611 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008612{
8613#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008614 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008615#else
8616 long boff = 0;
8617
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008618 boff = get_tv_number(&argvars[0]) - 1; /* boff gets -1 on type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008619 if (boff < 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008620 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008621 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008622 rettv->vval.v_number = ml_find_line_or_offset(curbuf,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008623 (linenr_T)0, &boff);
8624#endif
8625}
8626
8627/*
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008628 * "byteidx()" function
8629 */
8630/*ARGSUSED*/
8631 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008632f_byteidx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008633 typval_T *argvars;
8634 typval_T *rettv;
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008635{
8636#ifdef FEAT_MBYTE
8637 char_u *t;
8638#endif
8639 char_u *str;
8640 long idx;
8641
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008642 str = get_tv_string_chk(&argvars[0]);
8643 idx = get_tv_number_chk(&argvars[1], NULL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008644 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008645 if (str == NULL || idx < 0)
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008646 return;
8647
8648#ifdef FEAT_MBYTE
8649 t = str;
8650 for ( ; idx > 0; idx--)
8651 {
8652 if (*t == NUL) /* EOL reached */
8653 return;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008654 t += (*mb_ptr2len)(t);
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008655 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008656 rettv->vval.v_number = (varnumber_T)(t - str);
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008657#else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008658 if ((size_t)idx <= STRLEN(str))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008659 rettv->vval.v_number = idx;
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008660#endif
8661}
8662
8663/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008664 * "call(func, arglist)" function
8665 */
8666 static void
8667f_call(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008668 typval_T *argvars;
8669 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008670{
8671 char_u *func;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00008672 typval_T argv[MAX_FUNC_ARGS + 1];
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008673 int argc = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +00008674 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008675 int dummy;
Bram Moolenaar33570922005-01-25 22:26:29 +00008676 dict_T *selfdict = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008677
8678 rettv->vval.v_number = 0;
8679 if (argvars[1].v_type != VAR_LIST)
8680 {
8681 EMSG(_(e_listreq));
8682 return;
8683 }
8684 if (argvars[1].vval.v_list == NULL)
8685 return;
8686
8687 if (argvars[0].v_type == VAR_FUNC)
8688 func = argvars[0].vval.v_string;
8689 else
8690 func = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008691 if (*func == NUL)
8692 return; /* type error or empty name */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008693
Bram Moolenaare9a41262005-01-15 22:18:47 +00008694 if (argvars[2].v_type != VAR_UNKNOWN)
8695 {
8696 if (argvars[2].v_type != VAR_DICT)
8697 {
8698 EMSG(_(e_dictreq));
8699 return;
8700 }
8701 selfdict = argvars[2].vval.v_dict;
8702 }
8703
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008704 for (item = argvars[1].vval.v_list->lv_first; item != NULL;
8705 item = item->li_next)
8706 {
8707 if (argc == MAX_FUNC_ARGS)
8708 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00008709 EMSG(_("E699: Too many arguments"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008710 break;
8711 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00008712 /* Make a copy of each argument. This is needed to be able to set
8713 * v_lock to VAR_FIXED in the copy without changing the original list.
8714 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008715 copy_tv(&item->li_tv, &argv[argc++]);
8716 }
8717
8718 if (item == NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008719 (void)call_func(func, (int)STRLEN(func), rettv, argc, argv,
Bram Moolenaare9a41262005-01-15 22:18:47 +00008720 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
8721 &dummy, TRUE, selfdict);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008722
8723 /* Free the arguments. */
8724 while (argc > 0)
8725 clear_tv(&argv[--argc]);
8726}
8727
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008728#ifdef FEAT_FLOAT
8729/*
8730 * "ceil({float})" function
8731 */
8732 static void
8733f_ceil(argvars, rettv)
8734 typval_T *argvars;
8735 typval_T *rettv;
8736{
8737 float_T f;
8738
8739 rettv->v_type = VAR_FLOAT;
8740 if (get_float_arg(argvars, &f) == OK)
8741 rettv->vval.v_float = ceil(f);
8742 else
8743 rettv->vval.v_float = 0.0;
8744}
8745#endif
8746
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008747/*
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00008748 * "changenr()" function
8749 */
8750/*ARGSUSED*/
8751 static void
8752f_changenr(argvars, rettv)
8753 typval_T *argvars;
8754 typval_T *rettv;
8755{
8756 rettv->vval.v_number = curbuf->b_u_seq_cur;
8757}
8758
8759/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008760 * "char2nr(string)" function
8761 */
8762 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008763f_char2nr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008764 typval_T *argvars;
8765 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008766{
8767#ifdef FEAT_MBYTE
8768 if (has_mbyte)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008769 rettv->vval.v_number = (*mb_ptr2char)(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008770 else
8771#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008772 rettv->vval.v_number = get_tv_string(&argvars[0])[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00008773}
8774
8775/*
8776 * "cindent(lnum)" function
8777 */
8778 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008779f_cindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008780 typval_T *argvars;
8781 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008782{
8783#ifdef FEAT_CINDENT
8784 pos_T pos;
8785 linenr_T lnum;
8786
8787 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008788 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008789 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
8790 {
8791 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008792 rettv->vval.v_number = get_c_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008793 curwin->w_cursor = pos;
8794 }
8795 else
8796#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008797 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008798}
8799
8800/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +00008801 * "clearmatches()" function
8802 */
8803/*ARGSUSED*/
8804 static void
8805f_clearmatches(argvars, rettv)
8806 typval_T *argvars;
8807 typval_T *rettv;
8808{
8809#ifdef FEAT_SEARCH_EXTRA
8810 clear_matches(curwin);
8811#endif
8812}
8813
8814/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008815 * "col(string)" function
8816 */
8817 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008818f_col(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008819 typval_T *argvars;
8820 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008821{
8822 colnr_T col = 0;
8823 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008824 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008825
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008826 fp = var2fpos(&argvars[0], FALSE, &fnum);
8827 if (fp != NULL && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008828 {
8829 if (fp->col == MAXCOL)
8830 {
8831 /* '> can be MAXCOL, get the length of the line then */
8832 if (fp->lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008833 col = (colnr_T)STRLEN(ml_get(fp->lnum)) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008834 else
8835 col = MAXCOL;
8836 }
8837 else
8838 {
8839 col = fp->col + 1;
8840#ifdef FEAT_VIRTUALEDIT
8841 /* col(".") when the cursor is on the NUL at the end of the line
8842 * because of "coladd" can be seen as an extra column. */
8843 if (virtual_active() && fp == &curwin->w_cursor)
8844 {
8845 char_u *p = ml_get_cursor();
8846
8847 if (curwin->w_cursor.coladd >= (colnr_T)chartabsize(p,
8848 curwin->w_virtcol - curwin->w_cursor.coladd))
8849 {
8850# ifdef FEAT_MBYTE
8851 int l;
8852
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008853 if (*p != NUL && p[(l = (*mb_ptr2len)(p))] == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008854 col += l;
8855# else
8856 if (*p != NUL && p[1] == NUL)
8857 ++col;
8858# endif
8859 }
8860 }
8861#endif
8862 }
8863 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008864 rettv->vval.v_number = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008865}
8866
Bram Moolenaar572cb562005-08-05 21:35:02 +00008867#if defined(FEAT_INS_EXPAND)
8868/*
Bram Moolenaarade00832006-03-10 21:46:58 +00008869 * "complete()" function
8870 */
8871/*ARGSUSED*/
8872 static void
8873f_complete(argvars, rettv)
8874 typval_T *argvars;
8875 typval_T *rettv;
8876{
8877 int startcol;
8878
8879 if ((State & INSERT) == 0)
8880 {
8881 EMSG(_("E785: complete() can only be used in Insert mode"));
8882 return;
8883 }
Bram Moolenaarce6ef252006-07-12 19:49:41 +00008884
8885 /* Check for undo allowed here, because if something was already inserted
8886 * the line was already saved for undo and this check isn't done. */
8887 if (!undo_allowed())
8888 return;
8889
Bram Moolenaarade00832006-03-10 21:46:58 +00008890 if (argvars[1].v_type != VAR_LIST || argvars[1].vval.v_list == NULL)
8891 {
8892 EMSG(_(e_invarg));
8893 return;
8894 }
8895
8896 startcol = get_tv_number_chk(&argvars[0], NULL);
8897 if (startcol <= 0)
8898 return;
8899
8900 set_completion(startcol - 1, argvars[1].vval.v_list);
8901}
8902
8903/*
Bram Moolenaar572cb562005-08-05 21:35:02 +00008904 * "complete_add()" function
8905 */
8906/*ARGSUSED*/
8907 static void
8908f_complete_add(argvars, rettv)
8909 typval_T *argvars;
8910 typval_T *rettv;
8911{
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00008912 rettv->vval.v_number = ins_compl_add_tv(&argvars[0], 0);
Bram Moolenaar572cb562005-08-05 21:35:02 +00008913}
8914
8915/*
8916 * "complete_check()" function
8917 */
8918/*ARGSUSED*/
8919 static void
8920f_complete_check(argvars, rettv)
8921 typval_T *argvars;
8922 typval_T *rettv;
8923{
8924 int saved = RedrawingDisabled;
8925
8926 RedrawingDisabled = 0;
8927 ins_compl_check_keys(0);
8928 rettv->vval.v_number = compl_interrupted;
8929 RedrawingDisabled = saved;
8930}
8931#endif
8932
Bram Moolenaar071d4272004-06-13 20:20:40 +00008933/*
8934 * "confirm(message, buttons[, default [, type]])" function
8935 */
8936/*ARGSUSED*/
8937 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008938f_confirm(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008939 typval_T *argvars;
8940 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008941{
8942#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
8943 char_u *message;
8944 char_u *buttons = NULL;
8945 char_u buf[NUMBUFLEN];
8946 char_u buf2[NUMBUFLEN];
8947 int def = 1;
8948 int type = VIM_GENERIC;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008949 char_u *typestr;
8950 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008951
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008952 message = get_tv_string_chk(&argvars[0]);
8953 if (message == NULL)
8954 error = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008955 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008956 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008957 buttons = get_tv_string_buf_chk(&argvars[1], buf);
8958 if (buttons == NULL)
8959 error = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008960 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008961 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008962 def = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008963 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008964 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008965 typestr = get_tv_string_buf_chk(&argvars[3], buf2);
8966 if (typestr == NULL)
8967 error = TRUE;
8968 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008969 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008970 switch (TOUPPER_ASC(*typestr))
8971 {
8972 case 'E': type = VIM_ERROR; break;
8973 case 'Q': type = VIM_QUESTION; break;
8974 case 'I': type = VIM_INFO; break;
8975 case 'W': type = VIM_WARNING; break;
8976 case 'G': type = VIM_GENERIC; break;
8977 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008978 }
8979 }
8980 }
8981 }
8982
8983 if (buttons == NULL || *buttons == NUL)
8984 buttons = (char_u *)_("&Ok");
8985
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008986 if (error)
8987 rettv->vval.v_number = 0;
8988 else
8989 rettv->vval.v_number = do_dialog(type, NULL, message, buttons,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008990 def, NULL);
8991#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008992 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008993#endif
8994}
8995
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008996/*
8997 * "copy()" function
8998 */
8999 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009000f_copy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009001 typval_T *argvars;
9002 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009003{
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009004 item_copy(&argvars[0], rettv, FALSE, 0);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009005}
Bram Moolenaar071d4272004-06-13 20:20:40 +00009006
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009007#ifdef FEAT_FLOAT
9008/*
9009 * "cos()" function
9010 */
9011 static void
9012f_cos(argvars, rettv)
9013 typval_T *argvars;
9014 typval_T *rettv;
9015{
9016 float_T f;
9017
9018 rettv->v_type = VAR_FLOAT;
9019 if (get_float_arg(argvars, &f) == OK)
9020 rettv->vval.v_float = cos(f);
9021 else
9022 rettv->vval.v_float = 0.0;
9023}
9024#endif
9025
Bram Moolenaar071d4272004-06-13 20:20:40 +00009026/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009027 * "count()" function
9028 */
9029 static void
9030f_count(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009031 typval_T *argvars;
9032 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009033{
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009034 long n = 0;
9035 int ic = FALSE;
9036
Bram Moolenaare9a41262005-01-15 22:18:47 +00009037 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009038 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009039 listitem_T *li;
9040 list_T *l;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009041 long idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009042
Bram Moolenaare9a41262005-01-15 22:18:47 +00009043 if ((l = argvars[0].vval.v_list) != NULL)
9044 {
9045 li = l->lv_first;
9046 if (argvars[2].v_type != VAR_UNKNOWN)
9047 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009048 int error = FALSE;
9049
9050 ic = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009051 if (argvars[3].v_type != VAR_UNKNOWN)
9052 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009053 idx = get_tv_number_chk(&argvars[3], &error);
9054 if (!error)
9055 {
9056 li = list_find(l, idx);
9057 if (li == NULL)
9058 EMSGN(_(e_listidx), idx);
9059 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009060 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009061 if (error)
9062 li = NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009063 }
9064
9065 for ( ; li != NULL; li = li->li_next)
9066 if (tv_equal(&li->li_tv, &argvars[1], ic))
9067 ++n;
9068 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009069 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009070 else if (argvars[0].v_type == VAR_DICT)
9071 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009072 int todo;
9073 dict_T *d;
9074 hashitem_T *hi;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009075
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009076 if ((d = argvars[0].vval.v_dict) != NULL)
9077 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009078 int error = FALSE;
9079
Bram Moolenaare9a41262005-01-15 22:18:47 +00009080 if (argvars[2].v_type != VAR_UNKNOWN)
9081 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009082 ic = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009083 if (argvars[3].v_type != VAR_UNKNOWN)
9084 EMSG(_(e_invarg));
9085 }
9086
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009087 todo = error ? 0 : (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00009088 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009089 {
9090 if (!HASHITEM_EMPTY(hi))
9091 {
9092 --todo;
9093 if (tv_equal(&HI2DI(hi)->di_tv, &argvars[1], ic))
9094 ++n;
9095 }
9096 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009097 }
9098 }
9099 else
9100 EMSG2(_(e_listdictarg), "count()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009101 rettv->vval.v_number = n;
9102}
9103
9104/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009105 * "cscope_connection([{num} , {dbpath} [, {prepend}]])" function
9106 *
9107 * Checks the existence of a cscope connection.
9108 */
9109/*ARGSUSED*/
9110 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009111f_cscope_connection(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009112 typval_T *argvars;
9113 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009114{
9115#ifdef FEAT_CSCOPE
9116 int num = 0;
9117 char_u *dbpath = NULL;
9118 char_u *prepend = NULL;
9119 char_u buf[NUMBUFLEN];
9120
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009121 if (argvars[0].v_type != VAR_UNKNOWN
9122 && argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009123 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009124 num = (int)get_tv_number(&argvars[0]);
9125 dbpath = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009126 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009127 prepend = get_tv_string_buf(&argvars[2], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009128 }
9129
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009130 rettv->vval.v_number = cs_connection(num, dbpath, prepend);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009131#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009132 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009133#endif
9134}
9135
9136/*
9137 * "cursor(lnum, col)" function
9138 *
9139 * Moves the cursor to the specified line and column
9140 */
9141/*ARGSUSED*/
9142 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009143f_cursor(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009144 typval_T *argvars;
9145 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009146{
9147 long line, col;
Bram Moolenaara5525202006-03-02 22:52:09 +00009148#ifdef FEAT_VIRTUALEDIT
9149 long coladd = 0;
9150#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009151
Bram Moolenaara5525202006-03-02 22:52:09 +00009152 if (argvars[1].v_type == VAR_UNKNOWN)
9153 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009154 pos_T pos;
Bram Moolenaara5525202006-03-02 22:52:09 +00009155
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009156 if (list2fpos(argvars, &pos, NULL) == FAIL)
Bram Moolenaara5525202006-03-02 22:52:09 +00009157 return;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009158 line = pos.lnum;
9159 col = pos.col;
Bram Moolenaara5525202006-03-02 22:52:09 +00009160#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009161 coladd = pos.coladd;
Bram Moolenaara5525202006-03-02 22:52:09 +00009162#endif
9163 }
9164 else
9165 {
9166 line = get_tv_lnum(argvars);
9167 col = get_tv_number_chk(&argvars[1], NULL);
9168#ifdef FEAT_VIRTUALEDIT
9169 if (argvars[2].v_type != VAR_UNKNOWN)
9170 coladd = get_tv_number_chk(&argvars[2], NULL);
9171#endif
9172 }
9173 if (line < 0 || col < 0
9174#ifdef FEAT_VIRTUALEDIT
9175 || coladd < 0
9176#endif
9177 )
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009178 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009179 if (line > 0)
9180 curwin->w_cursor.lnum = line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009181 if (col > 0)
9182 curwin->w_cursor.col = col - 1;
9183#ifdef FEAT_VIRTUALEDIT
Bram Moolenaara5525202006-03-02 22:52:09 +00009184 curwin->w_cursor.coladd = coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009185#endif
9186
9187 /* Make sure the cursor is in a valid position. */
9188 check_cursor();
9189#ifdef FEAT_MBYTE
9190 /* Correct cursor for multi-byte character. */
9191 if (has_mbyte)
9192 mb_adjust_cursor();
9193#endif
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00009194
9195 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009196}
9197
9198/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009199 * "deepcopy()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +00009200 */
9201 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009202f_deepcopy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009203 typval_T *argvars;
9204 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009205{
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009206 int noref = 0;
9207
9208 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009209 noref = get_tv_number_chk(&argvars[1], NULL);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009210 if (noref < 0 || noref > 1)
9211 EMSG(_(e_invarg));
9212 else
Bram Moolenaard9fba312005-06-26 22:34:35 +00009213 item_copy(&argvars[0], rettv, TRUE, noref == 0 ? ++current_copyID : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009214}
9215
9216/*
9217 * "delete()" function
9218 */
9219 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009220f_delete(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009221 typval_T *argvars;
9222 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009223{
9224 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009225 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009226 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009227 rettv->vval.v_number = mch_remove(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009228}
9229
9230/*
9231 * "did_filetype()" function
9232 */
9233/*ARGSUSED*/
9234 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009235f_did_filetype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009236 typval_T *argvars;
9237 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009238{
9239#ifdef FEAT_AUTOCMD
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009240 rettv->vval.v_number = did_filetype;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009241#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009242 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009243#endif
9244}
9245
9246/*
Bram Moolenaar47136d72004-10-12 20:02:24 +00009247 * "diff_filler()" function
9248 */
9249/*ARGSUSED*/
9250 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009251f_diff_filler(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009252 typval_T *argvars;
9253 typval_T *rettv;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009254{
9255#ifdef FEAT_DIFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009256 rettv->vval.v_number = diff_check_fill(curwin, get_tv_lnum(argvars));
Bram Moolenaar47136d72004-10-12 20:02:24 +00009257#endif
9258}
9259
9260/*
9261 * "diff_hlID()" function
9262 */
9263/*ARGSUSED*/
9264 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009265f_diff_hlID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009266 typval_T *argvars;
9267 typval_T *rettv;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009268{
9269#ifdef FEAT_DIFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009270 linenr_T lnum = get_tv_lnum(argvars);
Bram Moolenaar47136d72004-10-12 20:02:24 +00009271 static linenr_T prev_lnum = 0;
9272 static int changedtick = 0;
9273 static int fnum = 0;
9274 static int change_start = 0;
9275 static int change_end = 0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00009276 static hlf_T hlID = (hlf_T)0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009277 int filler_lines;
9278 int col;
9279
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009280 if (lnum < 0) /* ignore type error in {lnum} arg */
9281 lnum = 0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009282 if (lnum != prev_lnum
9283 || changedtick != curbuf->b_changedtick
9284 || fnum != curbuf->b_fnum)
9285 {
9286 /* New line, buffer, change: need to get the values. */
9287 filler_lines = diff_check(curwin, lnum);
9288 if (filler_lines < 0)
9289 {
9290 if (filler_lines == -1)
9291 {
9292 change_start = MAXCOL;
9293 change_end = -1;
9294 if (diff_find_change(curwin, lnum, &change_start, &change_end))
9295 hlID = HLF_ADD; /* added line */
9296 else
9297 hlID = HLF_CHD; /* changed line */
9298 }
9299 else
9300 hlID = HLF_ADD; /* added line */
9301 }
9302 else
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009303 hlID = (hlf_T)0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009304 prev_lnum = lnum;
9305 changedtick = curbuf->b_changedtick;
9306 fnum = curbuf->b_fnum;
9307 }
9308
9309 if (hlID == HLF_CHD || hlID == HLF_TXD)
9310 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009311 col = get_tv_number(&argvars[1]) - 1; /* ignore type error in {col} */
Bram Moolenaar47136d72004-10-12 20:02:24 +00009312 if (col >= change_start && col <= change_end)
9313 hlID = HLF_TXD; /* changed text */
9314 else
9315 hlID = HLF_CHD; /* changed line */
9316 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009317 rettv->vval.v_number = hlID == (hlf_T)0 ? 0 : (int)hlID;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009318#endif
9319}
9320
9321/*
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009322 * "empty({expr})" function
9323 */
9324 static void
9325f_empty(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009326 typval_T *argvars;
9327 typval_T *rettv;
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009328{
9329 int n;
9330
9331 switch (argvars[0].v_type)
9332 {
9333 case VAR_STRING:
9334 case VAR_FUNC:
9335 n = argvars[0].vval.v_string == NULL
9336 || *argvars[0].vval.v_string == NUL;
9337 break;
9338 case VAR_NUMBER:
9339 n = argvars[0].vval.v_number == 0;
9340 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009341#ifdef FEAT_FLOAT
9342 case VAR_FLOAT:
9343 n = argvars[0].vval.v_float == 0.0;
9344 break;
9345#endif
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009346 case VAR_LIST:
9347 n = argvars[0].vval.v_list == NULL
9348 || argvars[0].vval.v_list->lv_first == NULL;
9349 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009350 case VAR_DICT:
9351 n = argvars[0].vval.v_dict == NULL
Bram Moolenaar33570922005-01-25 22:26:29 +00009352 || argvars[0].vval.v_dict->dv_hashtab.ht_used == 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009353 break;
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009354 default:
9355 EMSG2(_(e_intern2), "f_empty()");
9356 n = 0;
9357 }
9358
9359 rettv->vval.v_number = n;
9360}
9361
9362/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009363 * "escape({string}, {chars})" function
9364 */
9365 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009366f_escape(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009367 typval_T *argvars;
9368 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009369{
9370 char_u buf[NUMBUFLEN];
9371
Bram Moolenaar758711c2005-02-02 23:11:38 +00009372 rettv->vval.v_string = vim_strsave_escaped(get_tv_string(&argvars[0]),
9373 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009374 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009375}
9376
9377/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009378 * "eval()" function
9379 */
9380/*ARGSUSED*/
9381 static void
9382f_eval(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009383 typval_T *argvars;
9384 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009385{
9386 char_u *s;
9387
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009388 s = get_tv_string_chk(&argvars[0]);
9389 if (s != NULL)
9390 s = skipwhite(s);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009391
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009392 if (s == NULL || eval1(&s, rettv, TRUE) == FAIL)
9393 {
9394 rettv->v_type = VAR_NUMBER;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009395 rettv->vval.v_number = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009396 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009397 else if (*s != NUL)
9398 EMSG(_(e_trailing));
9399}
9400
9401/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009402 * "eventhandler()" function
9403 */
9404/*ARGSUSED*/
9405 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009406f_eventhandler(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009407 typval_T *argvars;
9408 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009409{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009410 rettv->vval.v_number = vgetc_busy;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009411}
9412
9413/*
9414 * "executable()" function
9415 */
9416 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009417f_executable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009418 typval_T *argvars;
9419 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009420{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009421 rettv->vval.v_number = mch_can_exe(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009422}
9423
9424/*
9425 * "exists()" function
9426 */
9427 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009428f_exists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009429 typval_T *argvars;
9430 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009431{
9432 char_u *p;
9433 char_u *name;
9434 int n = FALSE;
9435 int len = 0;
9436
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009437 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009438 if (*p == '$') /* environment variable */
9439 {
9440 /* first try "normal" environment variables (fast) */
9441 if (mch_getenv(p + 1) != NULL)
9442 n = TRUE;
9443 else
9444 {
9445 /* try expanding things like $VIM and ${HOME} */
9446 p = expand_env_save(p);
9447 if (p != NULL && *p != '$')
9448 n = TRUE;
9449 vim_free(p);
9450 }
9451 }
9452 else if (*p == '&' || *p == '+') /* option */
Bram Moolenaar79783442006-05-05 21:18:03 +00009453 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009454 n = (get_option_tv(&p, NULL, TRUE) == OK);
Bram Moolenaar79783442006-05-05 21:18:03 +00009455 if (*skipwhite(p) != NUL)
9456 n = FALSE; /* trailing garbage */
9457 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009458 else if (*p == '*') /* internal or user defined function */
9459 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009460 n = function_exists(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009461 }
9462 else if (*p == ':')
9463 {
9464 n = cmd_exists(p + 1);
9465 }
9466 else if (*p == '#')
9467 {
9468#ifdef FEAT_AUTOCMD
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00009469 if (p[1] == '#')
9470 n = autocmd_supported(p + 2);
9471 else
9472 n = au_exists(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009473#endif
9474 }
9475 else /* internal variable */
9476 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009477 char_u *tofree;
9478 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009479
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009480 /* get_name_len() takes care of expanding curly braces */
9481 name = p;
9482 len = get_name_len(&p, &tofree, TRUE, FALSE);
9483 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009484 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009485 if (tofree != NULL)
9486 name = tofree;
9487 n = (get_var_tv(name, len, &tv, FALSE) == OK);
9488 if (n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009489 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009490 /* handle d.key, l[idx], f(expr) */
9491 n = (handle_subscript(&p, &tv, TRUE, FALSE) == OK);
9492 if (n)
9493 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009494 }
9495 }
Bram Moolenaar79783442006-05-05 21:18:03 +00009496 if (*p != NUL)
9497 n = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009498
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009499 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009500 }
9501
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009502 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009503}
9504
9505/*
9506 * "expand()" function
9507 */
9508 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009509f_expand(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009510 typval_T *argvars;
9511 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009512{
9513 char_u *s;
9514 int len;
9515 char_u *errormsg;
9516 int flags = WILD_SILENT|WILD_USE_NL|WILD_LIST_NOTFOUND;
9517 expand_T xpc;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009518 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009519
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009520 rettv->v_type = VAR_STRING;
9521 s = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009522 if (*s == '%' || *s == '#' || *s == '<')
9523 {
9524 ++emsg_off;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009525 rettv->vval.v_string = eval_vars(s, s, &len, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009526 --emsg_off;
9527 }
9528 else
9529 {
9530 /* When the optional second argument is non-zero, don't remove matches
9531 * for 'suffixes' and 'wildignore' */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009532 if (argvars[1].v_type != VAR_UNKNOWN
9533 && get_tv_number_chk(&argvars[1], &error))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009534 flags |= WILD_KEEP_ALL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009535 if (!error)
9536 {
9537 ExpandInit(&xpc);
9538 xpc.xp_context = EXPAND_FILES;
9539 rettv->vval.v_string = ExpandOne(&xpc, s, NULL, flags, WILD_ALL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009540 }
9541 else
9542 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009543 }
9544}
9545
9546/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009547 * "extend(list, list [, idx])" function
Bram Moolenaare9a41262005-01-15 22:18:47 +00009548 * "extend(dict, dict [, action])" function
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009549 */
9550 static void
9551f_extend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009552 typval_T *argvars;
9553 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009554{
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009555 rettv->vval.v_number = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009556 if (argvars[0].v_type == VAR_LIST && argvars[1].v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009557 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009558 list_T *l1, *l2;
9559 listitem_T *item;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009560 long before;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009561 int error = FALSE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009562
Bram Moolenaare9a41262005-01-15 22:18:47 +00009563 l1 = argvars[0].vval.v_list;
9564 l2 = argvars[1].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009565 if (l1 != NULL && !tv_check_lock(l1->lv_lock, (char_u *)"extend()")
9566 && l2 != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009567 {
9568 if (argvars[2].v_type != VAR_UNKNOWN)
9569 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009570 before = get_tv_number_chk(&argvars[2], &error);
9571 if (error)
9572 return; /* type error; errmsg already given */
9573
Bram Moolenaar758711c2005-02-02 23:11:38 +00009574 if (before == l1->lv_len)
9575 item = NULL;
9576 else
Bram Moolenaare9a41262005-01-15 22:18:47 +00009577 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00009578 item = list_find(l1, before);
9579 if (item == NULL)
9580 {
9581 EMSGN(_(e_listidx), before);
9582 return;
9583 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009584 }
9585 }
9586 else
9587 item = NULL;
9588 list_extend(l1, l2, item);
9589
Bram Moolenaare9a41262005-01-15 22:18:47 +00009590 copy_tv(&argvars[0], rettv);
9591 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009592 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009593 else if (argvars[0].v_type == VAR_DICT && argvars[1].v_type == VAR_DICT)
9594 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009595 dict_T *d1, *d2;
9596 dictitem_T *di1;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009597 char_u *action;
9598 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +00009599 hashitem_T *hi2;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009600 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009601
9602 d1 = argvars[0].vval.v_dict;
9603 d2 = argvars[1].vval.v_dict;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009604 if (d1 != NULL && !tv_check_lock(d1->dv_lock, (char_u *)"extend()")
9605 && d2 != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009606 {
9607 /* Check the third argument. */
9608 if (argvars[2].v_type != VAR_UNKNOWN)
9609 {
9610 static char *(av[]) = {"keep", "force", "error"};
9611
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009612 action = get_tv_string_chk(&argvars[2]);
9613 if (action == NULL)
9614 return; /* type error; errmsg already given */
Bram Moolenaare9a41262005-01-15 22:18:47 +00009615 for (i = 0; i < 3; ++i)
9616 if (STRCMP(action, av[i]) == 0)
9617 break;
9618 if (i == 3)
9619 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009620 EMSG2(_(e_invarg2), action);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009621 return;
9622 }
9623 }
9624 else
9625 action = (char_u *)"force";
9626
9627 /* Go over all entries in the second dict and add them to the
9628 * first dict. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009629 todo = (int)d2->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00009630 for (hi2 = d2->dv_hashtab.ht_array; todo > 0; ++hi2)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009631 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009632 if (!HASHITEM_EMPTY(hi2))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009633 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009634 --todo;
9635 di1 = dict_find(d1, hi2->hi_key, -1);
9636 if (di1 == NULL)
9637 {
9638 di1 = dictitem_copy(HI2DI(hi2));
9639 if (di1 != NULL && dict_add(d1, di1) == FAIL)
9640 dictitem_free(di1);
9641 }
9642 else if (*action == 'e')
9643 {
9644 EMSG2(_("E737: Key already exists: %s"), hi2->hi_key);
9645 break;
9646 }
9647 else if (*action == 'f')
9648 {
9649 clear_tv(&di1->di_tv);
9650 copy_tv(&HI2DI(hi2)->di_tv, &di1->di_tv);
9651 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009652 }
9653 }
9654
Bram Moolenaare9a41262005-01-15 22:18:47 +00009655 copy_tv(&argvars[0], rettv);
9656 }
9657 }
9658 else
9659 EMSG2(_(e_listdictarg), "extend()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009660}
9661
9662/*
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009663 * "feedkeys()" function
9664 */
9665/*ARGSUSED*/
9666 static void
9667f_feedkeys(argvars, rettv)
9668 typval_T *argvars;
9669 typval_T *rettv;
9670{
9671 int remap = TRUE;
9672 char_u *keys, *flags;
9673 char_u nbuf[NUMBUFLEN];
9674 int typed = FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009675 char_u *keys_esc;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009676
Bram Moolenaar3d43a662007-04-27 20:15:55 +00009677 /* This is not allowed in the sandbox. If the commands would still be
9678 * executed in the sandbox it would be OK, but it probably happens later,
9679 * when "sandbox" is no longer set. */
9680 if (check_secure())
9681 return;
9682
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009683 rettv->vval.v_number = 0;
9684 keys = get_tv_string(&argvars[0]);
9685 if (*keys != NUL)
9686 {
9687 if (argvars[1].v_type != VAR_UNKNOWN)
9688 {
9689 flags = get_tv_string_buf(&argvars[1], nbuf);
9690 for ( ; *flags != NUL; ++flags)
9691 {
9692 switch (*flags)
9693 {
9694 case 'n': remap = FALSE; break;
9695 case 'm': remap = TRUE; break;
9696 case 't': typed = TRUE; break;
9697 }
9698 }
9699 }
9700
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009701 /* Need to escape K_SPECIAL and CSI before putting the string in the
9702 * typeahead buffer. */
9703 keys_esc = vim_strsave_escape_csi(keys);
9704 if (keys_esc != NULL)
9705 {
9706 ins_typebuf(keys_esc, (remap ? REMAP_YES : REMAP_NONE),
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009707 typebuf.tb_len, !typed, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009708 vim_free(keys_esc);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00009709 if (vgetc_busy)
9710 typebuf_was_filled = TRUE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009711 }
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009712 }
9713}
9714
9715/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009716 * "filereadable()" function
9717 */
9718 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009719f_filereadable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009720 typval_T *argvars;
9721 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009722{
Bram Moolenaarc236c162008-07-13 17:41:49 +00009723 int fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009724 char_u *p;
9725 int n;
9726
Bram Moolenaarc236c162008-07-13 17:41:49 +00009727#ifndef O_NONBLOCK
9728# define O_NONBLOCK 0
9729#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009730 p = get_tv_string(&argvars[0]);
Bram Moolenaarc236c162008-07-13 17:41:49 +00009731 if (*p && !mch_isdir(p) && (fd = mch_open((char *)p,
9732 O_RDONLY | O_NONBLOCK, 0)) >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009733 {
9734 n = TRUE;
Bram Moolenaarc236c162008-07-13 17:41:49 +00009735 close(fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009736 }
9737 else
9738 n = FALSE;
9739
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009740 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009741}
9742
9743/*
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00009744 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
Bram Moolenaar071d4272004-06-13 20:20:40 +00009745 * rights to write into.
9746 */
9747 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009748f_filewritable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009749 typval_T *argvars;
9750 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009751{
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00009752 rettv->vval.v_number = filewritable(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009753}
9754
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009755static void findfilendir __ARGS((typval_T *argvars, typval_T *rettv, int find_what));
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009756
9757 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009758findfilendir(argvars, rettv, find_what)
Bram Moolenaar33570922005-01-25 22:26:29 +00009759 typval_T *argvars;
9760 typval_T *rettv;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009761 int find_what;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009762{
9763#ifdef FEAT_SEARCHPATH
9764 char_u *fname;
9765 char_u *fresult = NULL;
9766 char_u *path = *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path;
9767 char_u *p;
9768 char_u pathbuf[NUMBUFLEN];
9769 int count = 1;
9770 int first = TRUE;
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009771 int error = FALSE;
9772#endif
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009773
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009774 rettv->vval.v_string = NULL;
9775 rettv->v_type = VAR_STRING;
9776
9777#ifdef FEAT_SEARCHPATH
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009778 fname = get_tv_string(&argvars[0]);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009779
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009780 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009781 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009782 p = get_tv_string_buf_chk(&argvars[1], pathbuf);
9783 if (p == NULL)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009784 error = TRUE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009785 else
9786 {
9787 if (*p != NUL)
9788 path = p;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009789
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009790 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009791 count = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009792 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009793 }
9794
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009795 if (count < 0 && rettv_list_alloc(rettv) == FAIL)
9796 error = TRUE;
9797
9798 if (*fname != NUL && !error)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009799 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009800 do
9801 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009802 if (rettv->v_type == VAR_STRING)
9803 vim_free(fresult);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009804 fresult = find_file_in_path_option(first ? fname : NULL,
9805 first ? (int)STRLEN(fname) : 0,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009806 0, first, path,
9807 find_what,
9808 curbuf->b_ffname,
9809 find_what == FINDFILE_DIR
9810 ? (char_u *)"" : curbuf->b_p_sua);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009811 first = FALSE;
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009812
9813 if (fresult != NULL && rettv->v_type == VAR_LIST)
9814 list_append_string(rettv->vval.v_list, fresult, -1);
9815
9816 } while ((rettv->v_type == VAR_LIST || --count > 0) && fresult != NULL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009817 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009818
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009819 if (rettv->v_type == VAR_STRING)
9820 rettv->vval.v_string = fresult;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009821#endif
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009822}
9823
Bram Moolenaar33570922005-01-25 22:26:29 +00009824static void filter_map __ARGS((typval_T *argvars, typval_T *rettv, int map));
9825static int filter_map_one __ARGS((typval_T *tv, char_u *expr, int map, int *remp));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009826
9827/*
9828 * Implementation of map() and filter().
9829 */
9830 static void
9831filter_map(argvars, rettv, map)
Bram Moolenaar33570922005-01-25 22:26:29 +00009832 typval_T *argvars;
9833 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009834 int map;
9835{
9836 char_u buf[NUMBUFLEN];
Bram Moolenaare9a41262005-01-15 22:18:47 +00009837 char_u *expr;
Bram Moolenaar33570922005-01-25 22:26:29 +00009838 listitem_T *li, *nli;
9839 list_T *l = NULL;
9840 dictitem_T *di;
9841 hashtab_T *ht;
9842 hashitem_T *hi;
9843 dict_T *d = NULL;
9844 typval_T save_val;
9845 typval_T save_key;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009846 int rem;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009847 int todo;
Bram Moolenaar89d40322006-08-29 15:30:07 +00009848 char_u *ermsg = map ? (char_u *)"map()" : (char_u *)"filter()";
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009849 int save_did_emsg;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009850
9851 rettv->vval.v_number = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009852 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009853 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009854 if ((l = argvars[0].vval.v_list) == NULL
Bram Moolenaar89d40322006-08-29 15:30:07 +00009855 || (map && tv_check_lock(l->lv_lock, ermsg)))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009856 return;
9857 }
9858 else if (argvars[0].v_type == VAR_DICT)
9859 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009860 if ((d = argvars[0].vval.v_dict) == NULL
Bram Moolenaar89d40322006-08-29 15:30:07 +00009861 || (map && tv_check_lock(d->dv_lock, ermsg)))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009862 return;
9863 }
9864 else
9865 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00009866 EMSG2(_(e_listdictarg), ermsg);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009867 return;
9868 }
9869
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009870 expr = get_tv_string_buf_chk(&argvars[1], buf);
9871 /* On type errors, the preceding call has already displayed an error
9872 * message. Avoid a misleading error message for an empty string that
9873 * was not passed as argument. */
9874 if (expr != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009875 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009876 prepare_vimvar(VV_VAL, &save_val);
9877 expr = skipwhite(expr);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009878
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009879 /* We reset "did_emsg" to be able to detect whether an error
9880 * occurred during evaluation of the expression. */
9881 save_did_emsg = did_emsg;
9882 did_emsg = FALSE;
Bram Moolenaar280f1262006-01-30 00:14:18 +00009883
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009884 if (argvars[0].v_type == VAR_DICT)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009885 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009886 prepare_vimvar(VV_KEY, &save_key);
9887 vimvars[VV_KEY].vv_type = VAR_STRING;
9888
9889 ht = &d->dv_hashtab;
9890 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009891 todo = (int)ht->ht_used;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009892 for (hi = ht->ht_array; todo > 0; ++hi)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009893 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009894 if (!HASHITEM_EMPTY(hi))
9895 {
9896 --todo;
9897 di = HI2DI(hi);
Bram Moolenaar89d40322006-08-29 15:30:07 +00009898 if (tv_check_lock(di->di_tv.v_lock, ermsg))
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009899 break;
9900 vimvars[VV_KEY].vv_str = vim_strsave(di->di_key);
Bram Moolenaar280f1262006-01-30 00:14:18 +00009901 if (filter_map_one(&di->di_tv, expr, map, &rem) == FAIL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009902 || did_emsg)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009903 break;
9904 if (!map && rem)
9905 dictitem_remove(d, di);
9906 clear_tv(&vimvars[VV_KEY].vv_tv);
9907 }
9908 }
9909 hash_unlock(ht);
9910
9911 restore_vimvar(VV_KEY, &save_key);
9912 }
9913 else
9914 {
9915 for (li = l->lv_first; li != NULL; li = nli)
9916 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00009917 if (tv_check_lock(li->li_tv.v_lock, ermsg))
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009918 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009919 nli = li->li_next;
Bram Moolenaar280f1262006-01-30 00:14:18 +00009920 if (filter_map_one(&li->li_tv, expr, map, &rem) == FAIL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009921 || did_emsg)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009922 break;
9923 if (!map && rem)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009924 listitem_remove(l, li);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009925 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009926 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009927
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009928 restore_vimvar(VV_VAL, &save_val);
Bram Moolenaar280f1262006-01-30 00:14:18 +00009929
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009930 did_emsg |= save_did_emsg;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009931 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009932
9933 copy_tv(&argvars[0], rettv);
9934}
9935
9936 static int
9937filter_map_one(tv, expr, map, remp)
Bram Moolenaar33570922005-01-25 22:26:29 +00009938 typval_T *tv;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009939 char_u *expr;
9940 int map;
9941 int *remp;
9942{
Bram Moolenaar33570922005-01-25 22:26:29 +00009943 typval_T rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009944 char_u *s;
Bram Moolenaarb4066a12007-09-17 19:38:08 +00009945 int retval = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009946
Bram Moolenaar33570922005-01-25 22:26:29 +00009947 copy_tv(tv, &vimvars[VV_VAL].vv_tv);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009948 s = expr;
9949 if (eval1(&s, &rettv, TRUE) == FAIL)
Bram Moolenaarb4066a12007-09-17 19:38:08 +00009950 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009951 if (*s != NUL) /* check for trailing chars after expr */
9952 {
9953 EMSG2(_(e_invexpr2), s);
Bram Moolenaarb4066a12007-09-17 19:38:08 +00009954 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009955 }
9956 if (map)
9957 {
9958 /* map(): replace the list item value */
9959 clear_tv(tv);
Bram Moolenaar4463f292005-09-25 22:20:24 +00009960 rettv.v_lock = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009961 *tv = rettv;
9962 }
9963 else
9964 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009965 int error = FALSE;
9966
Bram Moolenaare9a41262005-01-15 22:18:47 +00009967 /* filter(): when expr is zero remove the item */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009968 *remp = (get_tv_number_chk(&rettv, &error) == 0);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009969 clear_tv(&rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009970 /* On type error, nothing has been removed; return FAIL to stop the
9971 * loop. The error message was given by get_tv_number_chk(). */
9972 if (error)
Bram Moolenaarb4066a12007-09-17 19:38:08 +00009973 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009974 }
Bram Moolenaarb4066a12007-09-17 19:38:08 +00009975 retval = OK;
9976theend:
Bram Moolenaar33570922005-01-25 22:26:29 +00009977 clear_tv(&vimvars[VV_VAL].vv_tv);
Bram Moolenaarb4066a12007-09-17 19:38:08 +00009978 return retval;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009979}
9980
9981/*
9982 * "filter()" function
9983 */
9984 static void
9985f_filter(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009986 typval_T *argvars;
9987 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009988{
9989 filter_map(argvars, rettv, FALSE);
9990}
9991
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009992/*
Bram Moolenaar0d660222005-01-07 21:51:51 +00009993 * "finddir({fname}[, {path}[, {count}]])" function
9994 */
9995 static void
9996f_finddir(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009997 typval_T *argvars;
9998 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00009999{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +000010000 findfilendir(argvars, rettv, FINDFILE_DIR);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010001}
10002
10003/*
10004 * "findfile({fname}[, {path}[, {count}]])" function
10005 */
10006 static void
10007f_findfile(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010008 typval_T *argvars;
10009 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010010{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +000010011 findfilendir(argvars, rettv, FINDFILE_FILE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010012}
10013
Bram Moolenaar8c8de832008-06-24 22:58:06 +000010014#ifdef FEAT_FLOAT
10015/*
10016 * "float2nr({float})" function
10017 */
10018 static void
10019f_float2nr(argvars, rettv)
10020 typval_T *argvars;
10021 typval_T *rettv;
10022{
10023 float_T f;
10024
10025 if (get_float_arg(argvars, &f) == OK)
10026 {
10027 if (f < -0x7fffffff)
10028 rettv->vval.v_number = -0x7fffffff;
10029 else if (f > 0x7fffffff)
10030 rettv->vval.v_number = 0x7fffffff;
10031 else
10032 rettv->vval.v_number = (varnumber_T)f;
10033 }
10034 else
10035 rettv->vval.v_number = 0;
10036}
10037
10038/*
10039 * "floor({float})" function
10040 */
10041 static void
10042f_floor(argvars, rettv)
10043 typval_T *argvars;
10044 typval_T *rettv;
10045{
10046 float_T f;
10047
10048 rettv->v_type = VAR_FLOAT;
10049 if (get_float_arg(argvars, &f) == OK)
10050 rettv->vval.v_float = floor(f);
10051 else
10052 rettv->vval.v_float = 0.0;
10053}
10054#endif
10055
Bram Moolenaar0d660222005-01-07 21:51:51 +000010056/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +000010057 * "fnameescape({string})" function
10058 */
10059 static void
10060f_fnameescape(argvars, rettv)
10061 typval_T *argvars;
10062 typval_T *rettv;
10063{
10064 rettv->vval.v_string = vim_strsave_fnameescape(
10065 get_tv_string(&argvars[0]), FALSE);
10066 rettv->v_type = VAR_STRING;
10067}
10068
10069/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010070 * "fnamemodify({fname}, {mods})" function
10071 */
10072 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010073f_fnamemodify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010074 typval_T *argvars;
10075 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010076{
10077 char_u *fname;
10078 char_u *mods;
10079 int usedlen = 0;
10080 int len;
10081 char_u *fbuf = NULL;
10082 char_u buf[NUMBUFLEN];
10083
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010084 fname = get_tv_string_chk(&argvars[0]);
10085 mods = get_tv_string_buf_chk(&argvars[1], buf);
10086 if (fname == NULL || mods == NULL)
10087 fname = NULL;
10088 else
10089 {
10090 len = (int)STRLEN(fname);
10091 (void)modify_fname(mods, &usedlen, &fname, &fbuf, &len);
10092 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010093
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010094 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010095 if (fname == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010096 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010097 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010098 rettv->vval.v_string = vim_strnsave(fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010099 vim_free(fbuf);
10100}
10101
Bram Moolenaar33570922005-01-25 22:26:29 +000010102static void foldclosed_both __ARGS((typval_T *argvars, typval_T *rettv, int end));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010103
10104/*
10105 * "foldclosed()" function
10106 */
10107 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010108foldclosed_both(argvars, rettv, end)
Bram Moolenaar33570922005-01-25 22:26:29 +000010109 typval_T *argvars;
10110 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010111 int end;
10112{
10113#ifdef FEAT_FOLDING
10114 linenr_T lnum;
10115 linenr_T first, last;
10116
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010117 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010118 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
10119 {
10120 if (hasFoldingWin(curwin, lnum, &first, &last, FALSE, NULL))
10121 {
10122 if (end)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010123 rettv->vval.v_number = (varnumber_T)last;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010124 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010125 rettv->vval.v_number = (varnumber_T)first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010126 return;
10127 }
10128 }
10129#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010130 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010131}
10132
10133/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010134 * "foldclosed()" function
10135 */
10136 static void
10137f_foldclosed(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010138 typval_T *argvars;
10139 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010140{
10141 foldclosed_both(argvars, rettv, FALSE);
10142}
10143
10144/*
10145 * "foldclosedend()" function
10146 */
10147 static void
10148f_foldclosedend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010149 typval_T *argvars;
10150 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010151{
10152 foldclosed_both(argvars, rettv, TRUE);
10153}
10154
10155/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010156 * "foldlevel()" function
10157 */
10158 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010159f_foldlevel(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010160 typval_T *argvars;
10161 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010162{
10163#ifdef FEAT_FOLDING
10164 linenr_T lnum;
10165
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010166 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010167 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010168 rettv->vval.v_number = foldLevel(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010169 else
10170#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010171 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010172}
10173
10174/*
10175 * "foldtext()" function
10176 */
10177/*ARGSUSED*/
10178 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010179f_foldtext(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010180 typval_T *argvars;
10181 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010182{
10183#ifdef FEAT_FOLDING
10184 linenr_T lnum;
10185 char_u *s;
10186 char_u *r;
10187 int len;
10188 char *txt;
10189#endif
10190
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010191 rettv->v_type = VAR_STRING;
10192 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010193#ifdef FEAT_FOLDING
Bram Moolenaare9a41262005-01-15 22:18:47 +000010194 if ((linenr_T)vimvars[VV_FOLDSTART].vv_nr > 0
10195 && (linenr_T)vimvars[VV_FOLDEND].vv_nr
10196 <= curbuf->b_ml.ml_line_count
10197 && vimvars[VV_FOLDDASHES].vv_str != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010198 {
10199 /* Find first non-empty line in the fold. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000010200 lnum = (linenr_T)vimvars[VV_FOLDSTART].vv_nr;
10201 while (lnum < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010202 {
10203 if (!linewhite(lnum))
10204 break;
10205 ++lnum;
10206 }
10207
10208 /* Find interesting text in this line. */
10209 s = skipwhite(ml_get(lnum));
10210 /* skip C comment-start */
10211 if (s[0] == '/' && (s[1] == '*' || s[1] == '/'))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010212 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000010213 s = skipwhite(s + 2);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010214 if (*skipwhite(s) == NUL
Bram Moolenaare9a41262005-01-15 22:18:47 +000010215 && lnum + 1 < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010216 {
10217 s = skipwhite(ml_get(lnum + 1));
10218 if (*s == '*')
10219 s = skipwhite(s + 1);
10220 }
10221 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010222 txt = _("+-%s%3ld lines: ");
10223 r = alloc((unsigned)(STRLEN(txt)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010224 + STRLEN(vimvars[VV_FOLDDASHES].vv_str) /* for %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010225 + 20 /* for %3ld */
10226 + STRLEN(s))); /* concatenated */
10227 if (r != NULL)
10228 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000010229 sprintf((char *)r, txt, vimvars[VV_FOLDDASHES].vv_str,
10230 (long)((linenr_T)vimvars[VV_FOLDEND].vv_nr
10231 - (linenr_T)vimvars[VV_FOLDSTART].vv_nr + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010232 len = (int)STRLEN(r);
10233 STRCAT(r, s);
10234 /* remove 'foldmarker' and 'commentstring' */
10235 foldtext_cleanup(r + len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010236 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010237 }
10238 }
10239#endif
10240}
10241
10242/*
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010243 * "foldtextresult(lnum)" function
10244 */
10245/*ARGSUSED*/
10246 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010247f_foldtextresult(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010248 typval_T *argvars;
10249 typval_T *rettv;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010250{
10251#ifdef FEAT_FOLDING
10252 linenr_T lnum;
10253 char_u *text;
10254 char_u buf[51];
10255 foldinfo_T foldinfo;
10256 int fold_count;
10257#endif
10258
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010259 rettv->v_type = VAR_STRING;
10260 rettv->vval.v_string = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010261#ifdef FEAT_FOLDING
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010262 lnum = get_tv_lnum(argvars);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010263 /* treat illegal types and illegal string values for {lnum} the same */
10264 if (lnum < 0)
10265 lnum = 0;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010266 fold_count = foldedCount(curwin, lnum, &foldinfo);
10267 if (fold_count > 0)
10268 {
10269 text = get_foldtext(curwin, lnum, lnum + fold_count - 1,
10270 &foldinfo, buf);
10271 if (text == buf)
10272 text = vim_strsave(text);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010273 rettv->vval.v_string = text;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010274 }
10275#endif
10276}
10277
10278/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010279 * "foreground()" function
10280 */
10281/*ARGSUSED*/
10282 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010283f_foreground(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010284 typval_T *argvars;
10285 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010286{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010287 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010288#ifdef FEAT_GUI
10289 if (gui.in_use)
10290 gui_mch_set_foreground();
10291#else
10292# ifdef WIN32
10293 win32_set_foreground();
10294# endif
10295#endif
10296}
10297
10298/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010299 * "function()" function
10300 */
10301/*ARGSUSED*/
10302 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010303f_function(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010304 typval_T *argvars;
10305 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010306{
10307 char_u *s;
10308
Bram Moolenaara7043832005-01-21 11:56:39 +000010309 rettv->vval.v_number = 0;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010310 s = get_tv_string(&argvars[0]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010311 if (s == NULL || *s == NUL || VIM_ISDIGIT(*s))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010312 EMSG2(_(e_invarg2), s);
10313 else if (!function_exists(s))
Bram Moolenaare49b69a2005-01-08 16:11:57 +000010314 EMSG2(_("E700: Unknown function: %s"), s);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010315 else
10316 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010317 rettv->vval.v_string = vim_strsave(s);
10318 rettv->v_type = VAR_FUNC;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010319 }
10320}
10321
10322/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010323 * "garbagecollect()" function
10324 */
10325/*ARGSUSED*/
10326 static void
10327f_garbagecollect(argvars, rettv)
10328 typval_T *argvars;
10329 typval_T *rettv;
10330{
Bram Moolenaar9fecb462006-09-05 10:59:47 +000010331 /* This is postponed until we are back at the toplevel, because we may be
10332 * using Lists and Dicts internally. E.g.: ":echo [garbagecollect()]". */
10333 want_garbage_collect = TRUE;
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +000010334
10335 if (argvars[0].v_type != VAR_UNKNOWN && get_tv_number(&argvars[0]) == 1)
10336 garbage_collect_at_exit = TRUE;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010337}
10338
10339/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010340 * "get()" function
10341 */
10342 static void
10343f_get(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010344 typval_T *argvars;
10345 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010346{
Bram Moolenaar33570922005-01-25 22:26:29 +000010347 listitem_T *li;
10348 list_T *l;
10349 dictitem_T *di;
10350 dict_T *d;
10351 typval_T *tv = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010352
Bram Moolenaare9a41262005-01-15 22:18:47 +000010353 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000010354 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000010355 if ((l = argvars[0].vval.v_list) != NULL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000010356 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010357 int error = FALSE;
10358
10359 li = list_find(l, get_tv_number_chk(&argvars[1], &error));
10360 if (!error && li != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010361 tv = &li->li_tv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010362 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000010363 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000010364 else if (argvars[0].v_type == VAR_DICT)
10365 {
10366 if ((d = argvars[0].vval.v_dict) != NULL)
10367 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010368 di = dict_find(d, get_tv_string(&argvars[1]), -1);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010369 if (di != NULL)
10370 tv = &di->di_tv;
10371 }
10372 }
10373 else
10374 EMSG2(_(e_listdictarg), "get()");
10375
10376 if (tv == NULL)
10377 {
10378 if (argvars[2].v_type == VAR_UNKNOWN)
10379 rettv->vval.v_number = 0;
10380 else
10381 copy_tv(&argvars[2], rettv);
10382 }
10383 else
10384 copy_tv(tv, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010385}
10386
Bram Moolenaar342337a2005-07-21 21:11:17 +000010387static 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 +000010388
10389/*
10390 * Get line or list of lines from buffer "buf" into "rettv".
Bram Moolenaar342337a2005-07-21 21:11:17 +000010391 * Return a range (from start to end) of lines in rettv from the specified
10392 * buffer.
10393 * If 'retlist' is TRUE, then the lines are returned as a Vim List.
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010394 */
10395 static void
Bram Moolenaar342337a2005-07-21 21:11:17 +000010396get_buffer_lines(buf, start, end, retlist, rettv)
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010397 buf_T *buf;
10398 linenr_T start;
10399 linenr_T end;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010400 int retlist;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010401 typval_T *rettv;
10402{
10403 char_u *p;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010404
Bram Moolenaar342337a2005-07-21 21:11:17 +000010405 if (retlist)
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010406 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000010407 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010408 return;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010409 }
10410 else
10411 rettv->vval.v_number = 0;
10412
10413 if (buf == NULL || buf->b_ml.ml_mfp == NULL || start < 0)
10414 return;
10415
10416 if (!retlist)
10417 {
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010418 if (start >= 1 && start <= buf->b_ml.ml_line_count)
10419 p = ml_get_buf(buf, start, FALSE);
10420 else
10421 p = (char_u *)"";
10422
10423 rettv->v_type = VAR_STRING;
10424 rettv->vval.v_string = vim_strsave(p);
10425 }
10426 else
10427 {
10428 if (end < start)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010429 return;
10430
10431 if (start < 1)
10432 start = 1;
10433 if (end > buf->b_ml.ml_line_count)
10434 end = buf->b_ml.ml_line_count;
10435 while (start <= end)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000010436 if (list_append_string(rettv->vval.v_list,
10437 ml_get_buf(buf, start++, FALSE), -1) == FAIL)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010438 break;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010439 }
10440}
10441
10442/*
10443 * "getbufline()" function
10444 */
10445 static void
10446f_getbufline(argvars, rettv)
10447 typval_T *argvars;
10448 typval_T *rettv;
10449{
10450 linenr_T lnum;
10451 linenr_T end;
10452 buf_T *buf;
10453
10454 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10455 ++emsg_off;
10456 buf = get_buf_tv(&argvars[0]);
10457 --emsg_off;
10458
Bram Moolenaar661b1822005-07-28 22:36:45 +000010459 lnum = get_tv_lnum_buf(&argvars[1], buf);
Bram Moolenaar342337a2005-07-21 21:11:17 +000010460 if (argvars[2].v_type == VAR_UNKNOWN)
10461 end = lnum;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010462 else
Bram Moolenaar661b1822005-07-28 22:36:45 +000010463 end = get_tv_lnum_buf(&argvars[2], buf);
10464
Bram Moolenaar342337a2005-07-21 21:11:17 +000010465 get_buffer_lines(buf, lnum, end, TRUE, rettv);
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010466}
10467
Bram Moolenaar0d660222005-01-07 21:51:51 +000010468/*
10469 * "getbufvar()" function
10470 */
10471 static void
10472f_getbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010473 typval_T *argvars;
10474 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010475{
10476 buf_T *buf;
10477 buf_T *save_curbuf;
10478 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000010479 dictitem_T *v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010480
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010481 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10482 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010483 ++emsg_off;
10484 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010485
10486 rettv->v_type = VAR_STRING;
10487 rettv->vval.v_string = NULL;
10488
10489 if (buf != NULL && varname != NULL)
10490 {
Bram Moolenaar632deed2008-06-27 18:26:11 +000010491 /* set curbuf to be our buf, temporarily */
10492 save_curbuf = curbuf;
10493 curbuf = buf;
10494
Bram Moolenaar0d660222005-01-07 21:51:51 +000010495 if (*varname == '&') /* buffer-local-option */
Bram Moolenaar0d660222005-01-07 21:51:51 +000010496 get_option_tv(&varname, rettv, TRUE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010497 else
10498 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010499 if (*varname == NUL)
10500 /* let getbufvar({nr}, "") return the "b:" dictionary. The
10501 * scope prefix before the NUL byte is required by
10502 * find_var_in_ht(). */
10503 varname = (char_u *)"b:" + 2;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010504 /* look up the variable */
Bram Moolenaar632deed2008-06-27 18:26:11 +000010505 v = find_var_in_ht(&curbuf->b_vars.dv_hashtab, varname, FALSE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010506 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000010507 copy_tv(&v->di_tv, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010508 }
Bram Moolenaar632deed2008-06-27 18:26:11 +000010509
10510 /* restore previous notion of curbuf */
10511 curbuf = save_curbuf;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010512 }
10513
10514 --emsg_off;
10515}
10516
10517/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010518 * "getchar()" function
10519 */
10520 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010521f_getchar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010522 typval_T *argvars;
10523 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010524{
10525 varnumber_T n;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010526 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010527
Bram Moolenaar4015b2c2006-06-22 19:01:34 +000010528 /* Position the cursor. Needed after a message that ends in a space. */
10529 windgoto(msg_row, msg_col);
10530
Bram Moolenaar071d4272004-06-13 20:20:40 +000010531 ++no_mapping;
10532 ++allow_keys;
Bram Moolenaar9c8791f2007-09-05 19:47:23 +000010533 for (;;)
10534 {
10535 if (argvars[0].v_type == VAR_UNKNOWN)
10536 /* getchar(): blocking wait. */
10537 n = safe_vgetc();
10538 else if (get_tv_number_chk(&argvars[0], &error) == 1)
10539 /* getchar(1): only check if char avail */
10540 n = vpeekc();
10541 else if (error || vpeekc() == NUL)
10542 /* illegal argument or getchar(0) and no char avail: return zero */
10543 n = 0;
10544 else
10545 /* getchar(0) and char avail: return char */
10546 n = safe_vgetc();
10547 if (n == K_IGNORE)
10548 continue;
10549 break;
10550 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010551 --no_mapping;
10552 --allow_keys;
10553
Bram Moolenaar219b8702006-11-01 14:32:36 +000010554 vimvars[VV_MOUSE_WIN].vv_nr = 0;
10555 vimvars[VV_MOUSE_LNUM].vv_nr = 0;
10556 vimvars[VV_MOUSE_COL].vv_nr = 0;
10557
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010558 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010559 if (IS_SPECIAL(n) || mod_mask != 0)
10560 {
10561 char_u temp[10]; /* modifier: 3, mbyte-char: 6, NUL: 1 */
10562 int i = 0;
10563
10564 /* Turn a special key into three bytes, plus modifier. */
10565 if (mod_mask != 0)
10566 {
10567 temp[i++] = K_SPECIAL;
10568 temp[i++] = KS_MODIFIER;
10569 temp[i++] = mod_mask;
10570 }
10571 if (IS_SPECIAL(n))
10572 {
10573 temp[i++] = K_SPECIAL;
10574 temp[i++] = K_SECOND(n);
10575 temp[i++] = K_THIRD(n);
10576 }
10577#ifdef FEAT_MBYTE
10578 else if (has_mbyte)
10579 i += (*mb_char2bytes)(n, temp + i);
10580#endif
10581 else
10582 temp[i++] = n;
10583 temp[i++] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010584 rettv->v_type = VAR_STRING;
10585 rettv->vval.v_string = vim_strsave(temp);
Bram Moolenaar219b8702006-11-01 14:32:36 +000010586
10587#ifdef FEAT_MOUSE
10588 if (n == K_LEFTMOUSE
10589 || n == K_LEFTMOUSE_NM
10590 || n == K_LEFTDRAG
10591 || n == K_LEFTRELEASE
10592 || n == K_LEFTRELEASE_NM
10593 || n == K_MIDDLEMOUSE
10594 || n == K_MIDDLEDRAG
10595 || n == K_MIDDLERELEASE
10596 || n == K_RIGHTMOUSE
10597 || n == K_RIGHTDRAG
10598 || n == K_RIGHTRELEASE
10599 || n == K_X1MOUSE
10600 || n == K_X1DRAG
10601 || n == K_X1RELEASE
10602 || n == K_X2MOUSE
10603 || n == K_X2DRAG
10604 || n == K_X2RELEASE
10605 || n == K_MOUSEDOWN
10606 || n == K_MOUSEUP)
10607 {
10608 int row = mouse_row;
10609 int col = mouse_col;
10610 win_T *win;
10611 linenr_T lnum;
10612# ifdef FEAT_WINDOWS
10613 win_T *wp;
10614# endif
10615 int n = 1;
10616
10617 if (row >= 0 && col >= 0)
10618 {
10619 /* Find the window at the mouse coordinates and compute the
10620 * text position. */
10621 win = mouse_find_win(&row, &col);
10622 (void)mouse_comp_pos(win, &row, &col, &lnum);
10623# ifdef FEAT_WINDOWS
10624 for (wp = firstwin; wp != win; wp = wp->w_next)
10625 ++n;
10626# endif
10627 vimvars[VV_MOUSE_WIN].vv_nr = n;
10628 vimvars[VV_MOUSE_LNUM].vv_nr = lnum;
10629 vimvars[VV_MOUSE_COL].vv_nr = col + 1;
10630 }
10631 }
10632#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010633 }
10634}
10635
10636/*
10637 * "getcharmod()" function
10638 */
10639/*ARGSUSED*/
10640 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010641f_getcharmod(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010642 typval_T *argvars;
10643 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010644{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010645 rettv->vval.v_number = mod_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010646}
10647
10648/*
10649 * "getcmdline()" function
10650 */
10651/*ARGSUSED*/
10652 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010653f_getcmdline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010654 typval_T *argvars;
10655 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010656{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010657 rettv->v_type = VAR_STRING;
10658 rettv->vval.v_string = get_cmdline_str();
Bram Moolenaar071d4272004-06-13 20:20:40 +000010659}
10660
10661/*
10662 * "getcmdpos()" function
10663 */
10664/*ARGSUSED*/
10665 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010666f_getcmdpos(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010667 typval_T *argvars;
10668 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010669{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010670 rettv->vval.v_number = get_cmdline_pos() + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010671}
10672
10673/*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010674 * "getcmdtype()" function
10675 */
10676/*ARGSUSED*/
10677 static void
10678f_getcmdtype(argvars, rettv)
10679 typval_T *argvars;
10680 typval_T *rettv;
10681{
10682 rettv->v_type = VAR_STRING;
10683 rettv->vval.v_string = alloc(2);
10684 if (rettv->vval.v_string != NULL)
10685 {
10686 rettv->vval.v_string[0] = get_cmdline_type();
10687 rettv->vval.v_string[1] = NUL;
10688 }
10689}
10690
10691/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010692 * "getcwd()" function
10693 */
10694/*ARGSUSED*/
10695 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010696f_getcwd(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010697 typval_T *argvars;
10698 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010699{
10700 char_u cwd[MAXPATHL];
10701
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010702 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010703 if (mch_dirname(cwd, MAXPATHL) == FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010704 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010705 else
10706 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010707 rettv->vval.v_string = vim_strsave(cwd);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010708#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar342337a2005-07-21 21:11:17 +000010709 if (rettv->vval.v_string != NULL)
10710 slash_adjust(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010711#endif
10712 }
10713}
10714
10715/*
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010716 * "getfontname()" function
10717 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000010718/*ARGSUSED*/
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010719 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010720f_getfontname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010721 typval_T *argvars;
10722 typval_T *rettv;
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010723{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010724 rettv->v_type = VAR_STRING;
10725 rettv->vval.v_string = NULL;
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010726#ifdef FEAT_GUI
10727 if (gui.in_use)
10728 {
10729 GuiFont font;
10730 char_u *name = NULL;
10731
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010732 if (argvars[0].v_type == VAR_UNKNOWN)
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010733 {
10734 /* Get the "Normal" font. Either the name saved by
10735 * hl_set_font_name() or from the font ID. */
10736 font = gui.norm_font;
10737 name = hl_get_font_name();
10738 }
10739 else
10740 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010741 name = get_tv_string(&argvars[0]);
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010742 if (STRCMP(name, "*") == 0) /* don't use font dialog */
10743 return;
10744 font = gui_mch_get_font(name, FALSE);
10745 if (font == NOFONT)
10746 return; /* Invalid font name, return empty string. */
10747 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010748 rettv->vval.v_string = gui_mch_get_fontname(font, name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010749 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010750 gui_mch_free_font(font);
10751 }
10752#endif
10753}
10754
10755/*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010756 * "getfperm({fname})" function
10757 */
10758 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010759f_getfperm(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010760 typval_T *argvars;
10761 typval_T *rettv;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010762{
10763 char_u *fname;
10764 struct stat st;
10765 char_u *perm = NULL;
10766 char_u flags[] = "rwx";
10767 int i;
10768
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010769 fname = get_tv_string(&argvars[0]);
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010770
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010771 rettv->v_type = VAR_STRING;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010772 if (mch_stat((char *)fname, &st) >= 0)
10773 {
10774 perm = vim_strsave((char_u *)"---------");
10775 if (perm != NULL)
10776 {
10777 for (i = 0; i < 9; i++)
10778 {
10779 if (st.st_mode & (1 << (8 - i)))
10780 perm[i] = flags[i % 3];
10781 }
10782 }
10783 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010784 rettv->vval.v_string = perm;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010785}
10786
10787/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010788 * "getfsize({fname})" function
10789 */
10790 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010791f_getfsize(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010792 typval_T *argvars;
10793 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010794{
10795 char_u *fname;
10796 struct stat st;
10797
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010798 fname = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010799
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010800 rettv->v_type = VAR_NUMBER;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010801
10802 if (mch_stat((char *)fname, &st) >= 0)
10803 {
10804 if (mch_isdir(fname))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010805 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010806 else
Bram Moolenaard827ada2007-06-19 15:19:55 +000010807 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010808 rettv->vval.v_number = (varnumber_T)st.st_size;
Bram Moolenaard827ada2007-06-19 15:19:55 +000010809
10810 /* non-perfect check for overflow */
10811 if ((off_t)rettv->vval.v_number != (off_t)st.st_size)
10812 rettv->vval.v_number = -2;
10813 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010814 }
10815 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010816 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010817}
10818
10819/*
10820 * "getftime({fname})" function
10821 */
10822 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010823f_getftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010824 typval_T *argvars;
10825 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010826{
10827 char_u *fname;
10828 struct stat st;
10829
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010830 fname = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010831
10832 if (mch_stat((char *)fname, &st) >= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010833 rettv->vval.v_number = (varnumber_T)st.st_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010834 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010835 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010836}
10837
10838/*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010839 * "getftype({fname})" function
10840 */
10841 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010842f_getftype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010843 typval_T *argvars;
10844 typval_T *rettv;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010845{
10846 char_u *fname;
10847 struct stat st;
10848 char_u *type = NULL;
10849 char *t;
10850
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010851 fname = get_tv_string(&argvars[0]);
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010852
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010853 rettv->v_type = VAR_STRING;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010854 if (mch_lstat((char *)fname, &st) >= 0)
10855 {
10856#ifdef S_ISREG
10857 if (S_ISREG(st.st_mode))
10858 t = "file";
10859 else if (S_ISDIR(st.st_mode))
10860 t = "dir";
10861# ifdef S_ISLNK
10862 else if (S_ISLNK(st.st_mode))
10863 t = "link";
10864# endif
10865# ifdef S_ISBLK
10866 else if (S_ISBLK(st.st_mode))
10867 t = "bdev";
10868# endif
10869# ifdef S_ISCHR
10870 else if (S_ISCHR(st.st_mode))
10871 t = "cdev";
10872# endif
10873# ifdef S_ISFIFO
10874 else if (S_ISFIFO(st.st_mode))
10875 t = "fifo";
10876# endif
10877# ifdef S_ISSOCK
10878 else if (S_ISSOCK(st.st_mode))
10879 t = "fifo";
10880# endif
10881 else
10882 t = "other";
10883#else
10884# ifdef S_IFMT
10885 switch (st.st_mode & S_IFMT)
10886 {
10887 case S_IFREG: t = "file"; break;
10888 case S_IFDIR: t = "dir"; break;
10889# ifdef S_IFLNK
10890 case S_IFLNK: t = "link"; break;
10891# endif
10892# ifdef S_IFBLK
10893 case S_IFBLK: t = "bdev"; break;
10894# endif
10895# ifdef S_IFCHR
10896 case S_IFCHR: t = "cdev"; break;
10897# endif
10898# ifdef S_IFIFO
10899 case S_IFIFO: t = "fifo"; break;
10900# endif
10901# ifdef S_IFSOCK
10902 case S_IFSOCK: t = "socket"; break;
10903# endif
10904 default: t = "other";
10905 }
10906# else
10907 if (mch_isdir(fname))
10908 t = "dir";
10909 else
10910 t = "file";
10911# endif
10912#endif
10913 type = vim_strsave((char_u *)t);
10914 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010915 rettv->vval.v_string = type;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010916}
10917
10918/*
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010919 * "getline(lnum, [end])" function
Bram Moolenaar0d660222005-01-07 21:51:51 +000010920 */
10921 static void
10922f_getline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010923 typval_T *argvars;
10924 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010925{
10926 linenr_T lnum;
10927 linenr_T end;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010928 int retlist;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010929
10930 lnum = get_tv_lnum(argvars);
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010931 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010932 {
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010933 end = 0;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010934 retlist = FALSE;
10935 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000010936 else
Bram Moolenaar342337a2005-07-21 21:11:17 +000010937 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000010938 end = get_tv_lnum(&argvars[1]);
Bram Moolenaar342337a2005-07-21 21:11:17 +000010939 retlist = TRUE;
10940 }
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010941
Bram Moolenaar342337a2005-07-21 21:11:17 +000010942 get_buffer_lines(curbuf, lnum, end, retlist, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010943}
10944
10945/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010946 * "getmatches()" function
10947 */
10948/*ARGSUSED*/
10949 static void
10950f_getmatches(argvars, rettv)
10951 typval_T *argvars;
10952 typval_T *rettv;
10953{
10954#ifdef FEAT_SEARCH_EXTRA
10955 dict_T *dict;
10956 matchitem_T *cur = curwin->w_match_head;
10957
10958 rettv->vval.v_number = 0;
10959
10960 if (rettv_list_alloc(rettv) == OK)
10961 {
10962 while (cur != NULL)
10963 {
10964 dict = dict_alloc();
10965 if (dict == NULL)
10966 return;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010967 dict_add_nr_str(dict, "group", 0L, syn_id2name(cur->hlg_id));
10968 dict_add_nr_str(dict, "pattern", 0L, cur->pattern);
10969 dict_add_nr_str(dict, "priority", (long)cur->priority, NULL);
10970 dict_add_nr_str(dict, "id", (long)cur->id, NULL);
10971 list_append_dict(rettv->vval.v_list, dict);
10972 cur = cur->next;
10973 }
10974 }
10975#endif
10976}
10977
10978/*
Bram Moolenaar18081e32008-02-20 19:11:07 +000010979 * "getpid()" function
10980 */
10981/*ARGSUSED*/
10982 static void
10983f_getpid(argvars, rettv)
10984 typval_T *argvars;
10985 typval_T *rettv;
10986{
10987 rettv->vval.v_number = mch_get_pid();
10988}
10989
10990/*
Bram Moolenaara5525202006-03-02 22:52:09 +000010991 * "getpos(string)" function
10992 */
10993 static void
10994f_getpos(argvars, rettv)
10995 typval_T *argvars;
10996 typval_T *rettv;
10997{
10998 pos_T *fp;
10999 list_T *l;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000011000 int fnum = -1;
Bram Moolenaara5525202006-03-02 22:52:09 +000011001
11002 if (rettv_list_alloc(rettv) == OK)
11003 {
11004 l = rettv->vval.v_list;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000011005 fp = var2fpos(&argvars[0], TRUE, &fnum);
11006 if (fnum != -1)
11007 list_append_number(l, (varnumber_T)fnum);
11008 else
11009 list_append_number(l, (varnumber_T)0);
Bram Moolenaara5525202006-03-02 22:52:09 +000011010 list_append_number(l, (fp != NULL) ? (varnumber_T)fp->lnum
11011 : (varnumber_T)0);
Bram Moolenaare65f7322007-10-02 20:08:54 +000011012 list_append_number(l, (fp != NULL)
11013 ? (varnumber_T)(fp->col == MAXCOL ? MAXCOL : fp->col + 1)
Bram Moolenaara5525202006-03-02 22:52:09 +000011014 : (varnumber_T)0);
11015 list_append_number(l,
11016#ifdef FEAT_VIRTUALEDIT
11017 (fp != NULL) ? (varnumber_T)fp->coladd :
11018#endif
11019 (varnumber_T)0);
11020 }
11021 else
11022 rettv->vval.v_number = FALSE;
11023}
11024
11025/*
Bram Moolenaar280f1262006-01-30 00:14:18 +000011026 * "getqflist()" and "getloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000011027 */
Bram Moolenaar280f1262006-01-30 00:14:18 +000011028/*ARGSUSED*/
Bram Moolenaar2641f772005-03-25 21:58:17 +000011029 static void
Bram Moolenaar280f1262006-01-30 00:14:18 +000011030f_getqflist(argvars, rettv)
11031 typval_T *argvars;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011032 typval_T *rettv;
11033{
11034#ifdef FEAT_QUICKFIX
Bram Moolenaar280f1262006-01-30 00:14:18 +000011035 win_T *wp;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011036#endif
11037
Bram Moolenaar77f66d62007-02-20 02:16:18 +000011038 rettv->vval.v_number = 0;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011039#ifdef FEAT_QUICKFIX
Bram Moolenaareddf53b2006-02-27 00:11:10 +000011040 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000011041 {
Bram Moolenaar280f1262006-01-30 00:14:18 +000011042 wp = NULL;
11043 if (argvars[0].v_type != VAR_UNKNOWN) /* getloclist() */
11044 {
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011045 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar280f1262006-01-30 00:14:18 +000011046 if (wp == NULL)
11047 return;
11048 }
11049
Bram Moolenaareddf53b2006-02-27 00:11:10 +000011050 (void)get_errorlist(wp, rettv->vval.v_list);
Bram Moolenaar2641f772005-03-25 21:58:17 +000011051 }
11052#endif
11053}
11054
11055/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011056 * "getreg()" function
11057 */
11058 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011059f_getreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011060 typval_T *argvars;
11061 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011062{
11063 char_u *strregname;
11064 int regname;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011065 int arg2 = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011066 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011067
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011068 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011069 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011070 strregname = get_tv_string_chk(&argvars[0]);
11071 error = strregname == NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011072 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011073 arg2 = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011074 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011075 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000011076 strregname = vimvars[VV_REG].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011077 regname = (strregname == NULL ? '"' : *strregname);
11078 if (regname == 0)
11079 regname = '"';
11080
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011081 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011082 rettv->vval.v_string = error ? NULL :
11083 get_reg_contents(regname, TRUE, arg2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011084}
11085
11086/*
11087 * "getregtype()" function
11088 */
11089 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011090f_getregtype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011091 typval_T *argvars;
11092 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011093{
11094 char_u *strregname;
11095 int regname;
11096 char_u buf[NUMBUFLEN + 2];
11097 long reglen = 0;
11098
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011099 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011100 {
11101 strregname = get_tv_string_chk(&argvars[0]);
11102 if (strregname == NULL) /* type error; errmsg already given */
11103 {
11104 rettv->v_type = VAR_STRING;
11105 rettv->vval.v_string = NULL;
11106 return;
11107 }
11108 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011109 else
11110 /* Default to v:register */
Bram Moolenaare9a41262005-01-15 22:18:47 +000011111 strregname = vimvars[VV_REG].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011112
11113 regname = (strregname == NULL ? '"' : *strregname);
11114 if (regname == 0)
11115 regname = '"';
11116
11117 buf[0] = NUL;
11118 buf[1] = NUL;
11119 switch (get_reg_type(regname, &reglen))
11120 {
11121 case MLINE: buf[0] = 'V'; break;
11122 case MCHAR: buf[0] = 'v'; break;
11123#ifdef FEAT_VISUAL
11124 case MBLOCK:
11125 buf[0] = Ctrl_V;
11126 sprintf((char *)buf + 1, "%ld", reglen + 1);
11127 break;
11128#endif
11129 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011130 rettv->v_type = VAR_STRING;
11131 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011132}
11133
11134/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011135 * "gettabwinvar()" function
11136 */
11137 static void
11138f_gettabwinvar(argvars, rettv)
11139 typval_T *argvars;
11140 typval_T *rettv;
11141{
11142 getwinvar(argvars, rettv, 1);
11143}
11144
11145/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011146 * "getwinposx()" function
11147 */
11148/*ARGSUSED*/
11149 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011150f_getwinposx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011151 typval_T *argvars;
11152 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011153{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011154 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011155#ifdef FEAT_GUI
11156 if (gui.in_use)
11157 {
11158 int x, y;
11159
11160 if (gui_mch_get_winpos(&x, &y) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011161 rettv->vval.v_number = x;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011162 }
11163#endif
11164}
11165
11166/*
11167 * "getwinposy()" function
11168 */
11169/*ARGSUSED*/
11170 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011171f_getwinposy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011172 typval_T *argvars;
11173 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011174{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011175 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011176#ifdef FEAT_GUI
11177 if (gui.in_use)
11178 {
11179 int x, y;
11180
11181 if (gui_mch_get_winpos(&x, &y) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011182 rettv->vval.v_number = y;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011183 }
11184#endif
11185}
11186
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011187/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011188 * Find window specified by "vp" in tabpage "tp".
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011189 */
Bram Moolenaara40058a2005-07-11 22:42:07 +000011190 static win_T *
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011191find_win_by_nr(vp, tp)
Bram Moolenaara40058a2005-07-11 22:42:07 +000011192 typval_T *vp;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011193 tabpage_T *tp; /* NULL for current tab page */
Bram Moolenaara40058a2005-07-11 22:42:07 +000011194{
11195#ifdef FEAT_WINDOWS
11196 win_T *wp;
11197#endif
11198 int nr;
11199
11200 nr = get_tv_number_chk(vp, NULL);
11201
11202#ifdef FEAT_WINDOWS
11203 if (nr < 0)
11204 return NULL;
11205 if (nr == 0)
11206 return curwin;
11207
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011208 for (wp = (tp == NULL || tp == curtab) ? firstwin : tp->tp_firstwin;
11209 wp != NULL; wp = wp->w_next)
Bram Moolenaara40058a2005-07-11 22:42:07 +000011210 if (--nr <= 0)
11211 break;
11212 return wp;
11213#else
11214 if (nr == 0 || nr == 1)
11215 return curwin;
11216 return NULL;
11217#endif
11218}
11219
Bram Moolenaar071d4272004-06-13 20:20:40 +000011220/*
11221 * "getwinvar()" function
11222 */
11223 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011224f_getwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011225 typval_T *argvars;
11226 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011227{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011228 getwinvar(argvars, rettv, 0);
11229}
11230
11231/*
11232 * getwinvar() and gettabwinvar()
11233 */
11234 static void
11235getwinvar(argvars, rettv, off)
11236 typval_T *argvars;
11237 typval_T *rettv;
11238 int off; /* 1 for gettabwinvar() */
11239{
Bram Moolenaar071d4272004-06-13 20:20:40 +000011240 win_T *win, *oldcurwin;
11241 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000011242 dictitem_T *v;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011243 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011244
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011245#ifdef FEAT_WINDOWS
11246 if (off == 1)
11247 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
11248 else
11249 tp = curtab;
11250#endif
11251 win = find_win_by_nr(&argvars[off], tp);
11252 varname = get_tv_string_chk(&argvars[off + 1]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011253 ++emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011254
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011255 rettv->v_type = VAR_STRING;
11256 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011257
11258 if (win != NULL && varname != NULL)
11259 {
Bram Moolenaar69a7e432006-10-10 10:55:47 +000011260 /* Set curwin to be our win, temporarily. Also set curbuf, so
11261 * that we can get buffer-local options. */
11262 oldcurwin = curwin;
11263 curwin = win;
11264 curbuf = win->w_buffer;
11265
Bram Moolenaar071d4272004-06-13 20:20:40 +000011266 if (*varname == '&') /* window-local-option */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011267 get_option_tv(&varname, rettv, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011268 else
11269 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011270 if (*varname == NUL)
11271 /* let getwinvar({nr}, "") return the "w:" dictionary. The
11272 * scope prefix before the NUL byte is required by
11273 * find_var_in_ht(). */
11274 varname = (char_u *)"w:" + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011275 /* look up the variable */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011276 v = find_var_in_ht(&win->w_vars.dv_hashtab, varname, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011277 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000011278 copy_tv(&v->di_tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011279 }
Bram Moolenaar69a7e432006-10-10 10:55:47 +000011280
11281 /* restore previous notion of curwin */
11282 curwin = oldcurwin;
11283 curbuf = curwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011284 }
11285
11286 --emsg_off;
11287}
11288
11289/*
11290 * "glob()" function
11291 */
11292 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011293f_glob(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011294 typval_T *argvars;
11295 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011296{
11297 expand_T xpc;
11298
11299 ExpandInit(&xpc);
11300 xpc.xp_context = EXPAND_FILES;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011301 rettv->v_type = VAR_STRING;
11302 rettv->vval.v_string = ExpandOne(&xpc, get_tv_string(&argvars[0]),
Bram Moolenaar071d4272004-06-13 20:20:40 +000011303 NULL, WILD_USE_NL|WILD_SILENT, WILD_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011304}
11305
11306/*
11307 * "globpath()" function
11308 */
11309 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011310f_globpath(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011311 typval_T *argvars;
11312 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011313{
11314 char_u buf1[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011315 char_u *file = get_tv_string_buf_chk(&argvars[1], buf1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011316
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011317 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011318 if (file == NULL)
11319 rettv->vval.v_string = NULL;
11320 else
11321 rettv->vval.v_string = globpath(get_tv_string(&argvars[0]), file);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011322}
11323
11324/*
11325 * "has()" function
11326 */
11327 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011328f_has(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011329 typval_T *argvars;
11330 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011331{
11332 int i;
11333 char_u *name;
11334 int n = FALSE;
11335 static char *(has_list[]) =
11336 {
11337#ifdef AMIGA
11338 "amiga",
11339# ifdef FEAT_ARP
11340 "arp",
11341# endif
11342#endif
11343#ifdef __BEOS__
11344 "beos",
11345#endif
11346#ifdef MSDOS
11347# ifdef DJGPP
11348 "dos32",
11349# else
11350 "dos16",
11351# endif
11352#endif
Bram Moolenaar241a8aa2005-12-06 20:04:44 +000011353#ifdef MACOS
Bram Moolenaar071d4272004-06-13 20:20:40 +000011354 "mac",
11355#endif
11356#if defined(MACOS_X_UNIX)
11357 "macunix",
11358#endif
11359#ifdef OS2
11360 "os2",
11361#endif
11362#ifdef __QNX__
11363 "qnx",
11364#endif
11365#ifdef RISCOS
11366 "riscos",
11367#endif
11368#ifdef UNIX
11369 "unix",
11370#endif
11371#ifdef VMS
11372 "vms",
11373#endif
11374#ifdef WIN16
11375 "win16",
11376#endif
11377#ifdef WIN32
11378 "win32",
11379#endif
11380#if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
11381 "win32unix",
11382#endif
11383#ifdef WIN64
11384 "win64",
11385#endif
11386#ifdef EBCDIC
11387 "ebcdic",
11388#endif
11389#ifndef CASE_INSENSITIVE_FILENAME
11390 "fname_case",
11391#endif
11392#ifdef FEAT_ARABIC
11393 "arabic",
11394#endif
11395#ifdef FEAT_AUTOCMD
11396 "autocmd",
11397#endif
11398#ifdef FEAT_BEVAL
11399 "balloon_eval",
Bram Moolenaar342337a2005-07-21 21:11:17 +000011400# ifndef FEAT_GUI_W32 /* other GUIs always have multiline balloons */
11401 "balloon_multiline",
11402# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011403#endif
11404#if defined(SOME_BUILTIN_TCAPS) || defined(ALL_BUILTIN_TCAPS)
11405 "builtin_terms",
11406# ifdef ALL_BUILTIN_TCAPS
11407 "all_builtin_terms",
11408# endif
11409#endif
11410#ifdef FEAT_BYTEOFF
11411 "byte_offset",
11412#endif
11413#ifdef FEAT_CINDENT
11414 "cindent",
11415#endif
11416#ifdef FEAT_CLIENTSERVER
11417 "clientserver",
11418#endif
11419#ifdef FEAT_CLIPBOARD
11420 "clipboard",
11421#endif
11422#ifdef FEAT_CMDL_COMPL
11423 "cmdline_compl",
11424#endif
11425#ifdef FEAT_CMDHIST
11426 "cmdline_hist",
11427#endif
11428#ifdef FEAT_COMMENTS
11429 "comments",
11430#endif
11431#ifdef FEAT_CRYPT
11432 "cryptv",
11433#endif
11434#ifdef FEAT_CSCOPE
11435 "cscope",
11436#endif
Bram Moolenaarac6e65f2005-08-29 22:25:38 +000011437#ifdef CURSOR_SHAPE
11438 "cursorshape",
11439#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011440#ifdef DEBUG
11441 "debug",
11442#endif
11443#ifdef FEAT_CON_DIALOG
11444 "dialog_con",
11445#endif
11446#ifdef FEAT_GUI_DIALOG
11447 "dialog_gui",
11448#endif
11449#ifdef FEAT_DIFF
11450 "diff",
11451#endif
11452#ifdef FEAT_DIGRAPHS
11453 "digraphs",
11454#endif
11455#ifdef FEAT_DND
11456 "dnd",
11457#endif
11458#ifdef FEAT_EMACS_TAGS
11459 "emacs_tags",
11460#endif
11461 "eval", /* always present, of course! */
11462#ifdef FEAT_EX_EXTRA
11463 "ex_extra",
11464#endif
11465#ifdef FEAT_SEARCH_EXTRA
11466 "extra_search",
11467#endif
11468#ifdef FEAT_FKMAP
11469 "farsi",
11470#endif
11471#ifdef FEAT_SEARCHPATH
11472 "file_in_path",
11473#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011474#if defined(UNIX) && !defined(USE_SYSTEM)
11475 "filterpipe",
11476#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011477#ifdef FEAT_FIND_ID
11478 "find_in_path",
11479#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011480#ifdef FEAT_FLOAT
11481 "float",
11482#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011483#ifdef FEAT_FOLDING
11484 "folding",
11485#endif
11486#ifdef FEAT_FOOTER
11487 "footer",
11488#endif
11489#if !defined(USE_SYSTEM) && defined(UNIX)
11490 "fork",
11491#endif
11492#ifdef FEAT_GETTEXT
11493 "gettext",
11494#endif
11495#ifdef FEAT_GUI
11496 "gui",
11497#endif
11498#ifdef FEAT_GUI_ATHENA
11499# ifdef FEAT_GUI_NEXTAW
11500 "gui_neXtaw",
11501# else
11502 "gui_athena",
11503# endif
11504#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011505#ifdef FEAT_GUI_GTK
11506 "gui_gtk",
11507# ifdef HAVE_GTK2
11508 "gui_gtk2",
11509# endif
11510#endif
Bram Moolenaar7b188622007-09-25 10:51:12 +000011511#ifdef FEAT_GUI_GNOME
11512 "gui_gnome",
11513#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011514#ifdef FEAT_GUI_MAC
11515 "gui_mac",
11516#endif
11517#ifdef FEAT_GUI_MOTIF
11518 "gui_motif",
11519#endif
11520#ifdef FEAT_GUI_PHOTON
11521 "gui_photon",
11522#endif
11523#ifdef FEAT_GUI_W16
11524 "gui_win16",
11525#endif
11526#ifdef FEAT_GUI_W32
11527 "gui_win32",
11528#endif
11529#ifdef FEAT_HANGULIN
11530 "hangul_input",
11531#endif
11532#if defined(HAVE_ICONV_H) && defined(USE_ICONV)
11533 "iconv",
11534#endif
11535#ifdef FEAT_INS_EXPAND
11536 "insert_expand",
11537#endif
11538#ifdef FEAT_JUMPLIST
11539 "jumplist",
11540#endif
11541#ifdef FEAT_KEYMAP
11542 "keymap",
11543#endif
11544#ifdef FEAT_LANGMAP
11545 "langmap",
11546#endif
11547#ifdef FEAT_LIBCALL
11548 "libcall",
11549#endif
11550#ifdef FEAT_LINEBREAK
11551 "linebreak",
11552#endif
11553#ifdef FEAT_LISP
11554 "lispindent",
11555#endif
11556#ifdef FEAT_LISTCMDS
11557 "listcmds",
11558#endif
11559#ifdef FEAT_LOCALMAP
11560 "localmap",
11561#endif
11562#ifdef FEAT_MENU
11563 "menu",
11564#endif
11565#ifdef FEAT_SESSION
11566 "mksession",
11567#endif
11568#ifdef FEAT_MODIFY_FNAME
11569 "modify_fname",
11570#endif
11571#ifdef FEAT_MOUSE
11572 "mouse",
11573#endif
11574#ifdef FEAT_MOUSESHAPE
11575 "mouseshape",
11576#endif
11577#if defined(UNIX) || defined(VMS)
11578# ifdef FEAT_MOUSE_DEC
11579 "mouse_dec",
11580# endif
11581# ifdef FEAT_MOUSE_GPM
11582 "mouse_gpm",
11583# endif
11584# ifdef FEAT_MOUSE_JSB
11585 "mouse_jsbterm",
11586# endif
11587# ifdef FEAT_MOUSE_NET
11588 "mouse_netterm",
11589# endif
11590# ifdef FEAT_MOUSE_PTERM
11591 "mouse_pterm",
11592# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011593# ifdef FEAT_SYSMOUSE
11594 "mouse_sysmouse",
11595# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011596# ifdef FEAT_MOUSE_XTERM
11597 "mouse_xterm",
11598# endif
11599#endif
11600#ifdef FEAT_MBYTE
11601 "multi_byte",
11602#endif
11603#ifdef FEAT_MBYTE_IME
11604 "multi_byte_ime",
11605#endif
11606#ifdef FEAT_MULTI_LANG
11607 "multi_lang",
11608#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011609#ifdef FEAT_MZSCHEME
Bram Moolenaar33570922005-01-25 22:26:29 +000011610#ifndef DYNAMIC_MZSCHEME
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011611 "mzscheme",
11612#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011613#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011614#ifdef FEAT_OLE
11615 "ole",
11616#endif
11617#ifdef FEAT_OSFILETYPE
11618 "osfiletype",
11619#endif
11620#ifdef FEAT_PATH_EXTRA
11621 "path_extra",
11622#endif
11623#ifdef FEAT_PERL
11624#ifndef DYNAMIC_PERL
11625 "perl",
11626#endif
11627#endif
11628#ifdef FEAT_PYTHON
11629#ifndef DYNAMIC_PYTHON
11630 "python",
11631#endif
11632#endif
11633#ifdef FEAT_POSTSCRIPT
11634 "postscript",
11635#endif
11636#ifdef FEAT_PRINTER
11637 "printer",
11638#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +000011639#ifdef FEAT_PROFILE
11640 "profile",
11641#endif
Bram Moolenaare580b0c2006-03-21 21:33:03 +000011642#ifdef FEAT_RELTIME
11643 "reltime",
11644#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011645#ifdef FEAT_QUICKFIX
11646 "quickfix",
11647#endif
11648#ifdef FEAT_RIGHTLEFT
11649 "rightleft",
11650#endif
11651#if defined(FEAT_RUBY) && !defined(DYNAMIC_RUBY)
11652 "ruby",
11653#endif
11654#ifdef FEAT_SCROLLBIND
11655 "scrollbind",
11656#endif
11657#ifdef FEAT_CMDL_INFO
11658 "showcmd",
11659 "cmdline_info",
11660#endif
11661#ifdef FEAT_SIGNS
11662 "signs",
11663#endif
11664#ifdef FEAT_SMARTINDENT
11665 "smartindent",
11666#endif
11667#ifdef FEAT_SNIFF
11668 "sniff",
11669#endif
11670#ifdef FEAT_STL_OPT
11671 "statusline",
11672#endif
11673#ifdef FEAT_SUN_WORKSHOP
11674 "sun_workshop",
11675#endif
11676#ifdef FEAT_NETBEANS_INTG
11677 "netbeans_intg",
11678#endif
Bram Moolenaar3c56a962006-03-12 22:19:04 +000011679#ifdef FEAT_SPELL
Bram Moolenaar0e4d8772005-06-07 21:12:49 +000011680 "spell",
11681#endif
11682#ifdef FEAT_SYN_HL
Bram Moolenaar071d4272004-06-13 20:20:40 +000011683 "syntax",
11684#endif
11685#if defined(USE_SYSTEM) || !defined(UNIX)
11686 "system",
11687#endif
11688#ifdef FEAT_TAG_BINS
11689 "tag_binary",
11690#endif
11691#ifdef FEAT_TAG_OLDSTATIC
11692 "tag_old_static",
11693#endif
11694#ifdef FEAT_TAG_ANYWHITE
11695 "tag_any_white",
11696#endif
11697#ifdef FEAT_TCL
11698# ifndef DYNAMIC_TCL
11699 "tcl",
11700# endif
11701#endif
11702#ifdef TERMINFO
11703 "terminfo",
11704#endif
11705#ifdef FEAT_TERMRESPONSE
11706 "termresponse",
11707#endif
11708#ifdef FEAT_TEXTOBJ
11709 "textobjects",
11710#endif
11711#ifdef HAVE_TGETENT
11712 "tgetent",
11713#endif
11714#ifdef FEAT_TITLE
11715 "title",
11716#endif
11717#ifdef FEAT_TOOLBAR
11718 "toolbar",
11719#endif
11720#ifdef FEAT_USR_CMDS
11721 "user-commands", /* was accidentally included in 5.4 */
11722 "user_commands",
11723#endif
11724#ifdef FEAT_VIMINFO
11725 "viminfo",
11726#endif
11727#ifdef FEAT_VERTSPLIT
11728 "vertsplit",
11729#endif
11730#ifdef FEAT_VIRTUALEDIT
11731 "virtualedit",
11732#endif
11733#ifdef FEAT_VISUAL
11734 "visual",
11735#endif
11736#ifdef FEAT_VISUALEXTRA
11737 "visualextra",
11738#endif
11739#ifdef FEAT_VREPLACE
11740 "vreplace",
11741#endif
11742#ifdef FEAT_WILDIGN
11743 "wildignore",
11744#endif
11745#ifdef FEAT_WILDMENU
11746 "wildmenu",
11747#endif
11748#ifdef FEAT_WINDOWS
11749 "windows",
11750#endif
11751#ifdef FEAT_WAK
11752 "winaltkeys",
11753#endif
11754#ifdef FEAT_WRITEBACKUP
11755 "writebackup",
11756#endif
11757#ifdef FEAT_XIM
11758 "xim",
11759#endif
11760#ifdef FEAT_XFONTSET
11761 "xfontset",
11762#endif
11763#ifdef USE_XSMP
11764 "xsmp",
11765#endif
11766#ifdef USE_XSMP_INTERACT
11767 "xsmp_interact",
11768#endif
11769#ifdef FEAT_XCLIPBOARD
11770 "xterm_clipboard",
11771#endif
11772#ifdef FEAT_XTERM_SAVE
11773 "xterm_save",
11774#endif
11775#if defined(UNIX) && defined(FEAT_X11)
11776 "X11",
11777#endif
11778 NULL
11779 };
11780
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011781 name = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011782 for (i = 0; has_list[i] != NULL; ++i)
11783 if (STRICMP(name, has_list[i]) == 0)
11784 {
11785 n = TRUE;
11786 break;
11787 }
11788
11789 if (n == FALSE)
11790 {
11791 if (STRNICMP(name, "patch", 5) == 0)
11792 n = has_patch(atoi((char *)name + 5));
11793 else if (STRICMP(name, "vim_starting") == 0)
11794 n = (starting != 0);
Bram Moolenaar342337a2005-07-21 21:11:17 +000011795#if defined(FEAT_BEVAL) && defined(FEAT_GUI_W32)
11796 else if (STRICMP(name, "balloon_multiline") == 0)
11797 n = multiline_balloon_available();
11798#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011799#ifdef DYNAMIC_TCL
11800 else if (STRICMP(name, "tcl") == 0)
11801 n = tcl_enabled(FALSE);
11802#endif
11803#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
11804 else if (STRICMP(name, "iconv") == 0)
11805 n = iconv_enabled(FALSE);
11806#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011807#ifdef DYNAMIC_MZSCHEME
11808 else if (STRICMP(name, "mzscheme") == 0)
11809 n = mzscheme_enabled(FALSE);
11810#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011811#ifdef DYNAMIC_RUBY
11812 else if (STRICMP(name, "ruby") == 0)
11813 n = ruby_enabled(FALSE);
11814#endif
11815#ifdef DYNAMIC_PYTHON
11816 else if (STRICMP(name, "python") == 0)
11817 n = python_enabled(FALSE);
11818#endif
11819#ifdef DYNAMIC_PERL
11820 else if (STRICMP(name, "perl") == 0)
11821 n = perl_enabled(FALSE);
11822#endif
11823#ifdef FEAT_GUI
11824 else if (STRICMP(name, "gui_running") == 0)
11825 n = (gui.in_use || gui.starting);
11826# ifdef FEAT_GUI_W32
11827 else if (STRICMP(name, "gui_win32s") == 0)
11828 n = gui_is_win32s();
11829# endif
11830# ifdef FEAT_BROWSE
11831 else if (STRICMP(name, "browse") == 0)
11832 n = gui.in_use; /* gui_mch_browse() works when GUI is running */
11833# endif
11834#endif
11835#ifdef FEAT_SYN_HL
11836 else if (STRICMP(name, "syntax_items") == 0)
11837 n = syntax_present(curbuf);
11838#endif
11839#if defined(WIN3264)
11840 else if (STRICMP(name, "win95") == 0)
11841 n = mch_windows95();
11842#endif
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +000011843#ifdef FEAT_NETBEANS_INTG
11844 else if (STRICMP(name, "netbeans_enabled") == 0)
11845 n = usingNetbeans;
11846#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011847 }
11848
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011849 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011850}
11851
11852/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000011853 * "has_key()" function
11854 */
11855 static void
11856f_has_key(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011857 typval_T *argvars;
11858 typval_T *rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011859{
11860 rettv->vval.v_number = 0;
11861 if (argvars[0].v_type != VAR_DICT)
11862 {
11863 EMSG(_(e_dictreq));
11864 return;
11865 }
11866 if (argvars[0].vval.v_dict == NULL)
11867 return;
11868
11869 rettv->vval.v_number = dict_find(argvars[0].vval.v_dict,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000011870 get_tv_string(&argvars[1]), -1) != NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011871}
11872
11873/*
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011874 * "haslocaldir()" function
11875 */
11876/*ARGSUSED*/
11877 static void
11878f_haslocaldir(argvars, rettv)
11879 typval_T *argvars;
11880 typval_T *rettv;
11881{
11882 rettv->vval.v_number = (curwin->w_localdir != NULL);
11883}
11884
11885/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011886 * "hasmapto()" function
11887 */
11888 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011889f_hasmapto(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011890 typval_T *argvars;
11891 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011892{
11893 char_u *name;
11894 char_u *mode;
11895 char_u buf[NUMBUFLEN];
Bram Moolenaar2c932302006-03-18 21:42:09 +000011896 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011897
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011898 name = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011899 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011900 mode = (char_u *)"nvo";
11901 else
Bram Moolenaar2c932302006-03-18 21:42:09 +000011902 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011903 mode = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000011904 if (argvars[2].v_type != VAR_UNKNOWN)
11905 abbr = get_tv_number(&argvars[2]);
11906 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011907
Bram Moolenaar2c932302006-03-18 21:42:09 +000011908 if (map_to_exists(name, mode, abbr))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011909 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011910 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011911 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011912}
11913
11914/*
11915 * "histadd()" function
11916 */
11917/*ARGSUSED*/
11918 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011919f_histadd(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011920 typval_T *argvars;
11921 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011922{
11923#ifdef FEAT_CMDHIST
11924 int histype;
11925 char_u *str;
11926 char_u buf[NUMBUFLEN];
11927#endif
11928
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011929 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011930 if (check_restricted() || check_secure())
11931 return;
11932#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011933 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
11934 histype = str != NULL ? get_histtype(str) : -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011935 if (histype >= 0)
11936 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011937 str = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011938 if (*str != NUL)
11939 {
11940 add_to_history(histype, str, FALSE, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011941 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011942 return;
11943 }
11944 }
11945#endif
11946}
11947
11948/*
11949 * "histdel()" function
11950 */
11951/*ARGSUSED*/
11952 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011953f_histdel(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011954 typval_T *argvars;
11955 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011956{
11957#ifdef FEAT_CMDHIST
11958 int n;
11959 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011960 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011961
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011962 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
11963 if (str == NULL)
11964 n = 0;
11965 else if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011966 /* only one argument: clear entire history */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011967 n = clr_history(get_histtype(str));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011968 else if (argvars[1].v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011969 /* index given: remove that entry */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011970 n = del_history_idx(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011971 (int)get_tv_number(&argvars[1]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000011972 else
11973 /* string given: remove all matching entries */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011974 n = del_history_entry(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011975 get_tv_string_buf(&argvars[1], buf));
11976 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011977#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011978 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011979#endif
11980}
11981
11982/*
11983 * "histget()" function
11984 */
11985/*ARGSUSED*/
11986 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011987f_histget(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011988 typval_T *argvars;
11989 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011990{
11991#ifdef FEAT_CMDHIST
11992 int type;
11993 int idx;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011994 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011995
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011996 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
11997 if (str == NULL)
11998 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011999 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012000 {
12001 type = get_histtype(str);
12002 if (argvars[1].v_type == VAR_UNKNOWN)
12003 idx = get_history_idx(type);
12004 else
12005 idx = (int)get_tv_number_chk(&argvars[1], NULL);
12006 /* -1 on type error */
12007 rettv->vval.v_string = vim_strsave(get_history_entry(type, idx));
12008 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012009#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012010 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012011#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012012 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012013}
12014
12015/*
12016 * "histnr()" function
12017 */
12018/*ARGSUSED*/
12019 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012020f_histnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012021 typval_T *argvars;
12022 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012023{
12024 int i;
12025
12026#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012027 char_u *history = get_tv_string_chk(&argvars[0]);
12028
12029 i = history == NULL ? HIST_CMD - 1 : get_histtype(history);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012030 if (i >= HIST_CMD && i < HIST_COUNT)
12031 i = get_history_idx(i);
12032 else
12033#endif
12034 i = -1;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012035 rettv->vval.v_number = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012036}
12037
12038/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012039 * "highlightID(name)" function
12040 */
12041 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012042f_hlID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012043 typval_T *argvars;
12044 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012045{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012046 rettv->vval.v_number = syn_name2id(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012047}
12048
12049/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012050 * "highlight_exists()" function
12051 */
12052 static void
12053f_hlexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012054 typval_T *argvars;
12055 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012056{
12057 rettv->vval.v_number = highlight_exists(get_tv_string(&argvars[0]));
12058}
12059
12060/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012061 * "hostname()" function
12062 */
12063/*ARGSUSED*/
12064 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012065f_hostname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012066 typval_T *argvars;
12067 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012068{
12069 char_u hostname[256];
12070
12071 mch_get_host_name(hostname, 256);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012072 rettv->v_type = VAR_STRING;
12073 rettv->vval.v_string = vim_strsave(hostname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012074}
12075
12076/*
12077 * iconv() function
12078 */
12079/*ARGSUSED*/
12080 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012081f_iconv(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012082 typval_T *argvars;
12083 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012084{
12085#ifdef FEAT_MBYTE
12086 char_u buf1[NUMBUFLEN];
12087 char_u buf2[NUMBUFLEN];
12088 char_u *from, *to, *str;
12089 vimconv_T vimconv;
12090#endif
12091
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012092 rettv->v_type = VAR_STRING;
12093 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012094
12095#ifdef FEAT_MBYTE
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012096 str = get_tv_string(&argvars[0]);
12097 from = enc_canonize(enc_skip(get_tv_string_buf(&argvars[1], buf1)));
12098 to = enc_canonize(enc_skip(get_tv_string_buf(&argvars[2], buf2)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012099 vimconv.vc_type = CONV_NONE;
12100 convert_setup(&vimconv, from, to);
12101
12102 /* If the encodings are equal, no conversion needed. */
12103 if (vimconv.vc_type == CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012104 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012105 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012106 rettv->vval.v_string = string_convert(&vimconv, str, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012107
12108 convert_setup(&vimconv, NULL, NULL);
12109 vim_free(from);
12110 vim_free(to);
12111#endif
12112}
12113
12114/*
12115 * "indent()" function
12116 */
12117 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012118f_indent(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{
12122 linenr_T lnum;
12123
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012124 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012125 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012126 rettv->vval.v_number = get_indent_lnum(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012127 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012128 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012129}
12130
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012131/*
12132 * "index()" function
12133 */
12134 static void
12135f_index(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012136 typval_T *argvars;
12137 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012138{
Bram Moolenaar33570922005-01-25 22:26:29 +000012139 list_T *l;
12140 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012141 long idx = 0;
12142 int ic = FALSE;
12143
12144 rettv->vval.v_number = -1;
12145 if (argvars[0].v_type != VAR_LIST)
12146 {
12147 EMSG(_(e_listreq));
12148 return;
12149 }
12150 l = argvars[0].vval.v_list;
12151 if (l != NULL)
12152 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012153 item = l->lv_first;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012154 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012155 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012156 int error = FALSE;
12157
Bram Moolenaar758711c2005-02-02 23:11:38 +000012158 /* Start at specified item. Use the cached index that list_find()
12159 * sets, so that a negative number also works. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012160 item = list_find(l, get_tv_number_chk(&argvars[2], &error));
Bram Moolenaar758711c2005-02-02 23:11:38 +000012161 idx = l->lv_idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012162 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012163 ic = get_tv_number_chk(&argvars[3], &error);
12164 if (error)
12165 item = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012166 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012167
Bram Moolenaar758711c2005-02-02 23:11:38 +000012168 for ( ; item != NULL; item = item->li_next, ++idx)
12169 if (tv_equal(&item->li_tv, &argvars[1], ic))
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012170 {
12171 rettv->vval.v_number = idx;
12172 break;
12173 }
12174 }
12175}
12176
Bram Moolenaar071d4272004-06-13 20:20:40 +000012177static int inputsecret_flag = 0;
12178
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012179static void get_user_input __ARGS((typval_T *argvars, typval_T *rettv, int inputdialog));
12180
Bram Moolenaar071d4272004-06-13 20:20:40 +000012181/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012182 * This function is used by f_input() and f_inputdialog() functions. The third
12183 * argument to f_input() specifies the type of completion to use at the
12184 * prompt. The third argument to f_inputdialog() specifies the value to return
12185 * when the user cancels the prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +000012186 */
12187 static void
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012188get_user_input(argvars, rettv, inputdialog)
Bram Moolenaar33570922005-01-25 22:26:29 +000012189 typval_T *argvars;
12190 typval_T *rettv;
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012191 int inputdialog;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012192{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012193 char_u *prompt = get_tv_string_chk(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012194 char_u *p = NULL;
12195 int c;
12196 char_u buf[NUMBUFLEN];
12197 int cmd_silent_save = cmd_silent;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012198 char_u *defstr = (char_u *)"";
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012199 int xp_type = EXPAND_NOTHING;
12200 char_u *xp_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012201
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012202 rettv->v_type = VAR_STRING;
Bram Moolenaarce85c562007-09-16 12:21:16 +000012203 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012204
12205#ifdef NO_CONSOLE_INPUT
12206 /* While starting up, there is no place to enter text. */
12207 if (no_console_input())
Bram Moolenaar071d4272004-06-13 20:20:40 +000012208 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012209#endif
12210
12211 cmd_silent = FALSE; /* Want to see the prompt. */
12212 if (prompt != NULL)
12213 {
12214 /* Only the part of the message after the last NL is considered as
12215 * prompt for the command line */
12216 p = vim_strrchr(prompt, '\n');
12217 if (p == NULL)
12218 p = prompt;
12219 else
12220 {
12221 ++p;
12222 c = *p;
12223 *p = NUL;
12224 msg_start();
12225 msg_clr_eos();
12226 msg_puts_attr(prompt, echo_attr);
12227 msg_didout = FALSE;
12228 msg_starthere();
12229 *p = c;
12230 }
12231 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012232
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012233 if (argvars[1].v_type != VAR_UNKNOWN)
12234 {
12235 defstr = get_tv_string_buf_chk(&argvars[1], buf);
12236 if (defstr != NULL)
12237 stuffReadbuffSpec(defstr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012238
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012239 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar4463f292005-09-25 22:20:24 +000012240 {
12241 char_u *xp_name;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000012242 int xp_namelen;
Bram Moolenaar4463f292005-09-25 22:20:24 +000012243 long argt;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012244
Bram Moolenaar4463f292005-09-25 22:20:24 +000012245 rettv->vval.v_string = NULL;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012246
Bram Moolenaar4463f292005-09-25 22:20:24 +000012247 xp_name = get_tv_string_buf_chk(&argvars[2], buf);
12248 if (xp_name == NULL)
12249 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012250
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012251 xp_namelen = (int)STRLEN(xp_name);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012252
Bram Moolenaar4463f292005-09-25 22:20:24 +000012253 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt,
12254 &xp_arg) == FAIL)
12255 return;
12256 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012257 }
12258
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012259 if (defstr != NULL)
12260 rettv->vval.v_string =
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012261 getcmdline_prompt(inputsecret_flag ? NUL : '@', p, echo_attr,
12262 xp_type, xp_arg);
12263
12264 vim_free(xp_arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012265
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012266 /* since the user typed this, no need to wait for return */
12267 need_wait_return = FALSE;
12268 msg_didout = FALSE;
12269 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012270 cmd_silent = cmd_silent_save;
12271}
12272
12273/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012274 * "input()" function
12275 * Also handles inputsecret() when inputsecret is set.
12276 */
12277 static void
12278f_input(argvars, rettv)
12279 typval_T *argvars;
12280 typval_T *rettv;
12281{
12282 get_user_input(argvars, rettv, FALSE);
12283}
12284
12285/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012286 * "inputdialog()" function
12287 */
12288 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012289f_inputdialog(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012290 typval_T *argvars;
12291 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012292{
12293#if defined(FEAT_GUI_TEXTDIALOG)
12294 /* Use a GUI dialog if the GUI is running and 'c' is not in 'guioptions' */
12295 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
12296 {
12297 char_u *message;
12298 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012299 char_u *defstr = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +000012300
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012301 message = get_tv_string_chk(&argvars[0]);
12302 if (argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaarc05f93f2006-05-02 22:09:31 +000012303 && (defstr = get_tv_string_buf_chk(&argvars[1], buf)) != NULL)
Bram Moolenaarce0842a2005-07-18 21:58:11 +000012304 vim_strncpy(IObuff, defstr, IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012305 else
12306 IObuff[0] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012307 if (message != NULL && defstr != NULL
12308 && do_dialog(VIM_QUESTION, NULL, message,
12309 (char_u *)_("&OK\n&Cancel"), 1, IObuff) == 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012310 rettv->vval.v_string = vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012311 else
12312 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012313 if (message != NULL && defstr != NULL
12314 && argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012315 && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012316 rettv->vval.v_string = vim_strsave(
12317 get_tv_string_buf(&argvars[2], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012318 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012319 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012320 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012321 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012322 }
12323 else
12324#endif
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012325 get_user_input(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012326}
12327
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012328/*
12329 * "inputlist()" function
12330 */
12331 static void
12332f_inputlist(argvars, rettv)
12333 typval_T *argvars;
12334 typval_T *rettv;
12335{
12336 listitem_T *li;
12337 int selected;
12338 int mouse_used;
12339
12340 rettv->vval.v_number = 0;
12341#ifdef NO_CONSOLE_INPUT
12342 /* While starting up, there is no place to enter text. */
12343 if (no_console_input())
12344 return;
12345#endif
12346 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
12347 {
12348 EMSG2(_(e_listarg), "inputlist()");
12349 return;
12350 }
12351
12352 msg_start();
Bram Moolenaar412f7442006-07-23 19:51:57 +000012353 msg_row = Rows - 1; /* for when 'cmdheight' > 1 */
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012354 lines_left = Rows; /* avoid more prompt */
12355 msg_scroll = TRUE;
12356 msg_clr_eos();
12357
12358 for (li = argvars[0].vval.v_list->lv_first; li != NULL; li = li->li_next)
12359 {
12360 msg_puts(get_tv_string(&li->li_tv));
12361 msg_putchar('\n');
12362 }
12363
12364 /* Ask for choice. */
12365 selected = prompt_for_number(&mouse_used);
12366 if (mouse_used)
12367 selected -= lines_left;
12368
12369 rettv->vval.v_number = selected;
12370}
12371
12372
Bram Moolenaar071d4272004-06-13 20:20:40 +000012373static garray_T ga_userinput = {0, 0, sizeof(tasave_T), 4, NULL};
12374
12375/*
12376 * "inputrestore()" function
12377 */
12378/*ARGSUSED*/
12379 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012380f_inputrestore(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012381 typval_T *argvars;
12382 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012383{
12384 if (ga_userinput.ga_len > 0)
12385 {
12386 --ga_userinput.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012387 restore_typeahead((tasave_T *)(ga_userinput.ga_data)
12388 + ga_userinput.ga_len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012389 rettv->vval.v_number = 0; /* OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012390 }
12391 else if (p_verbose > 1)
12392 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +000012393 verb_msg((char_u *)_("called inputrestore() more often than inputsave()"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012394 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012395 }
12396}
12397
12398/*
12399 * "inputsave()" function
12400 */
12401/*ARGSUSED*/
12402 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012403f_inputsave(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012404 typval_T *argvars;
12405 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012406{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012407 /* Add an entry to the stack of typeahead storage. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012408 if (ga_grow(&ga_userinput, 1) == OK)
12409 {
12410 save_typeahead((tasave_T *)(ga_userinput.ga_data)
12411 + ga_userinput.ga_len);
12412 ++ga_userinput.ga_len;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012413 rettv->vval.v_number = 0; /* OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012414 }
12415 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012416 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012417}
12418
12419/*
12420 * "inputsecret()" function
12421 */
12422 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012423f_inputsecret(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012424 typval_T *argvars;
12425 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012426{
12427 ++cmdline_star;
12428 ++inputsecret_flag;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012429 f_input(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012430 --cmdline_star;
12431 --inputsecret_flag;
12432}
12433
12434/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012435 * "insert()" function
12436 */
12437 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012438f_insert(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012439 typval_T *argvars;
12440 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012441{
12442 long before = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000012443 listitem_T *item;
12444 list_T *l;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012445 int error = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012446
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012447 rettv->vval.v_number = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012448 if (argvars[0].v_type != VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000012449 EMSG2(_(e_listarg), "insert()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012450 else if ((l = argvars[0].vval.v_list) != NULL
12451 && !tv_check_lock(l->lv_lock, (char_u *)"insert()"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012452 {
12453 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012454 before = get_tv_number_chk(&argvars[2], &error);
12455 if (error)
12456 return; /* type error; errmsg already given */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012457
Bram Moolenaar758711c2005-02-02 23:11:38 +000012458 if (before == l->lv_len)
12459 item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012460 else
12461 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012462 item = list_find(l, before);
12463 if (item == NULL)
12464 {
12465 EMSGN(_(e_listidx), before);
12466 l = NULL;
12467 }
12468 }
12469 if (l != NULL)
12470 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012471 list_insert_tv(l, &argvars[1], item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012472 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012473 }
12474 }
12475}
12476
12477/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012478 * "isdirectory()" function
12479 */
12480 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012481f_isdirectory(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012482 typval_T *argvars;
12483 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012484{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012485 rettv->vval.v_number = mch_isdir(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012486}
12487
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012488/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012489 * "islocked()" function
12490 */
12491 static void
12492f_islocked(argvars, rettv)
12493 typval_T *argvars;
12494 typval_T *rettv;
12495{
12496 lval_T lv;
12497 char_u *end;
12498 dictitem_T *di;
12499
12500 rettv->vval.v_number = -1;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000012501 end = get_lval(get_tv_string(&argvars[0]), NULL, &lv, FALSE, FALSE, FALSE,
12502 FNE_CHECK_START);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012503 if (end != NULL && lv.ll_name != NULL)
12504 {
12505 if (*end != NUL)
12506 EMSG(_(e_trailing));
12507 else
12508 {
12509 if (lv.ll_tv == NULL)
12510 {
12511 if (check_changedtick(lv.ll_name))
12512 rettv->vval.v_number = 1; /* always locked */
12513 else
12514 {
12515 di = find_var(lv.ll_name, NULL);
12516 if (di != NULL)
12517 {
12518 /* Consider a variable locked when:
12519 * 1. the variable itself is locked
12520 * 2. the value of the variable is locked.
12521 * 3. the List or Dict value is locked.
12522 */
12523 rettv->vval.v_number = ((di->di_flags & DI_FLAGS_LOCK)
12524 || tv_islocked(&di->di_tv));
12525 }
12526 }
12527 }
12528 else if (lv.ll_range)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000012529 EMSG(_("E786: Range not allowed"));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012530 else if (lv.ll_newkey != NULL)
12531 EMSG2(_(e_dictkey), lv.ll_newkey);
12532 else if (lv.ll_list != NULL)
12533 /* List item. */
12534 rettv->vval.v_number = tv_islocked(&lv.ll_li->li_tv);
12535 else
12536 /* Dictionary item. */
12537 rettv->vval.v_number = tv_islocked(&lv.ll_di->di_tv);
12538 }
12539 }
12540
12541 clear_lval(&lv);
12542}
12543
Bram Moolenaar33570922005-01-25 22:26:29 +000012544static void dict_list __ARGS((typval_T *argvars, typval_T *rettv, int what));
Bram Moolenaar8c711452005-01-14 21:53:12 +000012545
12546/*
12547 * Turn a dict into a list:
12548 * "what" == 0: list of keys
12549 * "what" == 1: list of values
12550 * "what" == 2: list of items
12551 */
12552 static void
12553dict_list(argvars, rettv, what)
Bram Moolenaar33570922005-01-25 22:26:29 +000012554 typval_T *argvars;
12555 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012556 int what;
12557{
Bram Moolenaar33570922005-01-25 22:26:29 +000012558 list_T *l2;
12559 dictitem_T *di;
12560 hashitem_T *hi;
12561 listitem_T *li;
12562 listitem_T *li2;
12563 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012564 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012565
12566 rettv->vval.v_number = 0;
12567 if (argvars[0].v_type != VAR_DICT)
12568 {
12569 EMSG(_(e_dictreq));
12570 return;
12571 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012572 if ((d = argvars[0].vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012573 return;
12574
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012575 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012576 return;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012577
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012578 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000012579 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012580 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012581 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +000012582 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012583 --todo;
12584 di = HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012585
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012586 li = listitem_alloc();
12587 if (li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012588 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012589 list_append(rettv->vval.v_list, li);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012590
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012591 if (what == 0)
12592 {
12593 /* keys() */
12594 li->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012595 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012596 li->li_tv.vval.v_string = vim_strsave(di->di_key);
12597 }
12598 else if (what == 1)
12599 {
12600 /* values() */
12601 copy_tv(&di->di_tv, &li->li_tv);
12602 }
12603 else
12604 {
12605 /* items() */
12606 l2 = list_alloc();
12607 li->li_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012608 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012609 li->li_tv.vval.v_list = l2;
12610 if (l2 == NULL)
12611 break;
12612 ++l2->lv_refcount;
12613
12614 li2 = listitem_alloc();
12615 if (li2 == NULL)
12616 break;
12617 list_append(l2, li2);
12618 li2->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012619 li2->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012620 li2->li_tv.vval.v_string = vim_strsave(di->di_key);
12621
12622 li2 = listitem_alloc();
12623 if (li2 == NULL)
12624 break;
12625 list_append(l2, li2);
12626 copy_tv(&di->di_tv, &li2->li_tv);
12627 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000012628 }
12629 }
12630}
12631
12632/*
12633 * "items(dict)" function
12634 */
12635 static void
12636f_items(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012637 typval_T *argvars;
12638 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012639{
12640 dict_list(argvars, rettv, 2);
12641}
12642
Bram Moolenaar071d4272004-06-13 20:20:40 +000012643/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012644 * "join()" function
12645 */
12646 static void
12647f_join(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012648 typval_T *argvars;
12649 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012650{
12651 garray_T ga;
12652 char_u *sep;
12653
12654 rettv->vval.v_number = 0;
12655 if (argvars[0].v_type != VAR_LIST)
12656 {
12657 EMSG(_(e_listreq));
12658 return;
12659 }
12660 if (argvars[0].vval.v_list == NULL)
12661 return;
12662 if (argvars[1].v_type == VAR_UNKNOWN)
12663 sep = (char_u *)" ";
12664 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012665 sep = get_tv_string_chk(&argvars[1]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012666
12667 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012668
12669 if (sep != NULL)
12670 {
12671 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000012672 list_join(&ga, argvars[0].vval.v_list, sep, TRUE, 0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012673 ga_append(&ga, NUL);
12674 rettv->vval.v_string = (char_u *)ga.ga_data;
12675 }
12676 else
12677 rettv->vval.v_string = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012678}
12679
12680/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000012681 * "keys()" function
12682 */
12683 static void
12684f_keys(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012685 typval_T *argvars;
12686 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012687{
12688 dict_list(argvars, rettv, 0);
12689}
12690
12691/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012692 * "last_buffer_nr()" function.
12693 */
12694/*ARGSUSED*/
12695 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012696f_last_buffer_nr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012697 typval_T *argvars;
12698 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012699{
12700 int n = 0;
12701 buf_T *buf;
12702
12703 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
12704 if (n < buf->b_fnum)
12705 n = buf->b_fnum;
12706
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012707 rettv->vval.v_number = n;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012708}
12709
12710/*
12711 * "len()" function
12712 */
12713 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012714f_len(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012715 typval_T *argvars;
12716 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012717{
12718 switch (argvars[0].v_type)
12719 {
12720 case VAR_STRING:
12721 case VAR_NUMBER:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012722 rettv->vval.v_number = (varnumber_T)STRLEN(
12723 get_tv_string(&argvars[0]));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012724 break;
12725 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012726 rettv->vval.v_number = list_len(argvars[0].vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012727 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +000012728 case VAR_DICT:
12729 rettv->vval.v_number = dict_len(argvars[0].vval.v_dict);
12730 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012731 default:
Bram Moolenaare49b69a2005-01-08 16:11:57 +000012732 EMSG(_("E701: Invalid type for len()"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012733 break;
12734 }
12735}
12736
Bram Moolenaar33570922005-01-25 22:26:29 +000012737static void libcall_common __ARGS((typval_T *argvars, typval_T *rettv, int type));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012738
12739 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012740libcall_common(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000012741 typval_T *argvars;
12742 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012743 int type;
12744{
12745#ifdef FEAT_LIBCALL
12746 char_u *string_in;
12747 char_u **string_result;
12748 int nr_result;
12749#endif
12750
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012751 rettv->v_type = type;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012752 if (type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012753 rettv->vval.v_number = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012754 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012755 rettv->vval.v_string = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012756
12757 if (check_restricted() || check_secure())
12758 return;
12759
12760#ifdef FEAT_LIBCALL
12761 /* The first two args must be strings, otherwise its meaningless */
12762 if (argvars[0].v_type == VAR_STRING && argvars[1].v_type == VAR_STRING)
12763 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012764 string_in = NULL;
12765 if (argvars[2].v_type == VAR_STRING)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012766 string_in = argvars[2].vval.v_string;
12767 if (type == VAR_NUMBER)
12768 string_result = NULL;
12769 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012770 string_result = &rettv->vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012771 if (mch_libcall(argvars[0].vval.v_string,
12772 argvars[1].vval.v_string,
12773 string_in,
12774 argvars[2].vval.v_number,
12775 string_result,
12776 &nr_result) == OK
12777 && type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012778 rettv->vval.v_number = nr_result;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012779 }
12780#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000012781}
12782
12783/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012784 * "libcall()" function
12785 */
12786 static void
12787f_libcall(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012788 typval_T *argvars;
12789 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012790{
12791 libcall_common(argvars, rettv, VAR_STRING);
12792}
12793
12794/*
12795 * "libcallnr()" function
12796 */
12797 static void
12798f_libcallnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012799 typval_T *argvars;
12800 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012801{
12802 libcall_common(argvars, rettv, VAR_NUMBER);
12803}
12804
12805/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012806 * "line(string)" function
12807 */
12808 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012809f_line(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012810 typval_T *argvars;
12811 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012812{
12813 linenr_T lnum = 0;
12814 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012815 int fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012816
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012817 fp = var2fpos(&argvars[0], TRUE, &fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012818 if (fp != NULL)
12819 lnum = fp->lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012820 rettv->vval.v_number = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012821}
12822
12823/*
12824 * "line2byte(lnum)" function
12825 */
12826/*ARGSUSED*/
12827 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012828f_line2byte(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012829 typval_T *argvars;
12830 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012831{
12832#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012833 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012834#else
12835 linenr_T lnum;
12836
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012837 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012838 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012839 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012840 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012841 rettv->vval.v_number = ml_find_line_or_offset(curbuf, lnum, NULL);
12842 if (rettv->vval.v_number >= 0)
12843 ++rettv->vval.v_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012844#endif
12845}
12846
12847/*
12848 * "lispindent(lnum)" function
12849 */
12850 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012851f_lispindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012852 typval_T *argvars;
12853 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012854{
12855#ifdef FEAT_LISP
12856 pos_T pos;
12857 linenr_T lnum;
12858
12859 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012860 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012861 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
12862 {
12863 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012864 rettv->vval.v_number = get_lisp_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +000012865 curwin->w_cursor = pos;
12866 }
12867 else
12868#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012869 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012870}
12871
12872/*
12873 * "localtime()" function
12874 */
12875/*ARGSUSED*/
12876 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012877f_localtime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012878 typval_T *argvars;
12879 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012880{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012881 rettv->vval.v_number = (varnumber_T)time(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012882}
12883
Bram Moolenaar33570922005-01-25 22:26:29 +000012884static void get_maparg __ARGS((typval_T *argvars, typval_T *rettv, int exact));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012885
12886 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012887get_maparg(argvars, rettv, exact)
Bram Moolenaar33570922005-01-25 22:26:29 +000012888 typval_T *argvars;
12889 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012890 int exact;
12891{
12892 char_u *keys;
12893 char_u *which;
12894 char_u buf[NUMBUFLEN];
12895 char_u *keys_buf = NULL;
12896 char_u *rhs;
12897 int mode;
12898 garray_T ga;
Bram Moolenaar2c932302006-03-18 21:42:09 +000012899 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012900
12901 /* return empty string for failure */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012902 rettv->v_type = VAR_STRING;
12903 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012904
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012905 keys = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012906 if (*keys == NUL)
12907 return;
12908
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012909 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar2c932302006-03-18 21:42:09 +000012910 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012911 which = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012912 if (argvars[2].v_type != VAR_UNKNOWN)
12913 abbr = get_tv_number(&argvars[2]);
12914 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012915 else
12916 which = (char_u *)"";
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012917 if (which == NULL)
12918 return;
12919
Bram Moolenaar071d4272004-06-13 20:20:40 +000012920 mode = get_map_mode(&which, 0);
12921
Bram Moolenaar3fb9eda2006-05-03 21:29:58 +000012922 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE, FALSE);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012923 rhs = check_map(keys, mode, exact, FALSE, abbr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012924 vim_free(keys_buf);
12925 if (rhs != NULL)
12926 {
12927 ga_init(&ga);
12928 ga.ga_itemsize = 1;
12929 ga.ga_growsize = 40;
12930
12931 while (*rhs != NUL)
12932 ga_concat(&ga, str2special(&rhs, FALSE));
12933
12934 ga_append(&ga, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012935 rettv->vval.v_string = (char_u *)ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012936 }
12937}
12938
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012939#ifdef FEAT_FLOAT
12940/*
12941 * "log10()" function
12942 */
12943 static void
12944f_log10(argvars, rettv)
12945 typval_T *argvars;
12946 typval_T *rettv;
12947{
12948 float_T f;
12949
12950 rettv->v_type = VAR_FLOAT;
12951 if (get_float_arg(argvars, &f) == OK)
12952 rettv->vval.v_float = log10(f);
12953 else
12954 rettv->vval.v_float = 0.0;
12955}
12956#endif
12957
Bram Moolenaar071d4272004-06-13 20:20:40 +000012958/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012959 * "map()" function
12960 */
12961 static void
12962f_map(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012963 typval_T *argvars;
12964 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012965{
12966 filter_map(argvars, rettv, TRUE);
12967}
12968
12969/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012970 * "maparg()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000012971 */
12972 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000012973f_maparg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012974 typval_T *argvars;
12975 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012976{
Bram Moolenaar0d660222005-01-07 21:51:51 +000012977 get_maparg(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012978}
12979
12980/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012981 * "mapcheck()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000012982 */
12983 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000012984f_mapcheck(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012985 typval_T *argvars;
12986 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012987{
Bram Moolenaar0d660222005-01-07 21:51:51 +000012988 get_maparg(argvars, rettv, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012989}
12990
Bram Moolenaar33570922005-01-25 22:26:29 +000012991static void find_some_match __ARGS((typval_T *argvars, typval_T *rettv, int start));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012992
12993 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012994find_some_match(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000012995 typval_T *argvars;
12996 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012997 int type;
12998{
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012999 char_u *str = NULL;
13000 char_u *expr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013001 char_u *pat;
13002 regmatch_T regmatch;
13003 char_u patbuf[NUMBUFLEN];
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013004 char_u strbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000013005 char_u *save_cpo;
13006 long start = 0;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013007 long nth = 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013008 colnr_T startcol = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013009 int match = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000013010 list_T *l = NULL;
13011 listitem_T *li = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013012 long idx = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013013 char_u *tofree = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013014
13015 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
13016 save_cpo = p_cpo;
13017 p_cpo = (char_u *)"";
13018
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013019 rettv->vval.v_number = -1;
13020 if (type == 3)
13021 {
13022 /* return empty list when there are no matches */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013023 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013024 goto theend;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013025 }
13026 else if (type == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013027 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013028 rettv->v_type = VAR_STRING;
13029 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013030 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013031
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013032 if (argvars[0].v_type == VAR_LIST)
13033 {
13034 if ((l = argvars[0].vval.v_list) == NULL)
13035 goto theend;
13036 li = l->lv_first;
13037 }
13038 else
13039 expr = str = get_tv_string(&argvars[0]);
13040
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013041 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
13042 if (pat == NULL)
13043 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013044
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013045 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013046 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013047 int error = FALSE;
13048
13049 start = get_tv_number_chk(&argvars[2], &error);
13050 if (error)
13051 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013052 if (l != NULL)
13053 {
13054 li = list_find(l, start);
13055 if (li == NULL)
13056 goto theend;
Bram Moolenaar758711c2005-02-02 23:11:38 +000013057 idx = l->lv_idx; /* use the cached index */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013058 }
13059 else
13060 {
13061 if (start < 0)
13062 start = 0;
13063 if (start > (long)STRLEN(str))
13064 goto theend;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000013065 /* When "count" argument is there ignore matches before "start",
13066 * otherwise skip part of the string. Differs when pattern is "^"
13067 * or "\<". */
13068 if (argvars[3].v_type != VAR_UNKNOWN)
13069 startcol = start;
13070 else
13071 str += start;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013072 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013073
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013074 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013075 nth = get_tv_number_chk(&argvars[3], &error);
13076 if (error)
13077 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013078 }
13079
13080 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
13081 if (regmatch.regprog != NULL)
13082 {
13083 regmatch.rm_ic = p_ic;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013084
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013085 for (;;)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013086 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013087 if (l != NULL)
13088 {
13089 if (li == NULL)
13090 {
13091 match = FALSE;
13092 break;
13093 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013094 vim_free(tofree);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013095 str = echo_string(&li->li_tv, &tofree, strbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013096 if (str == NULL)
13097 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013098 }
13099
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013100 match = vim_regexec_nl(&regmatch, str, (colnr_T)startcol);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013101
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013102 if (match && --nth <= 0)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013103 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013104 if (l == NULL && !match)
13105 break;
13106
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013107 /* Advance to just after the match. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013108 if (l != NULL)
13109 {
13110 li = li->li_next;
13111 ++idx;
13112 }
13113 else
13114 {
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013115#ifdef FEAT_MBYTE
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013116 startcol = (colnr_T)(regmatch.startp[0]
13117 + (*mb_ptr2len)(regmatch.startp[0]) - str);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013118#else
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013119 startcol = regmatch.startp[0] + 1 - str;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013120#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013121 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013122 }
13123
13124 if (match)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013125 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013126 if (type == 3)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013127 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013128 int i;
13129
13130 /* return list with matched string and submatches */
13131 for (i = 0; i < NSUBEXP; ++i)
13132 {
13133 if (regmatch.endp[i] == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000013134 {
13135 if (list_append_string(rettv->vval.v_list,
13136 (char_u *)"", 0) == FAIL)
13137 break;
13138 }
13139 else if (list_append_string(rettv->vval.v_list,
Bram Moolenaar4463f292005-09-25 22:20:24 +000013140 regmatch.startp[i],
13141 (int)(regmatch.endp[i] - regmatch.startp[i]))
13142 == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013143 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013144 }
13145 }
13146 else if (type == 2)
13147 {
13148 /* return matched string */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013149 if (l != NULL)
13150 copy_tv(&li->li_tv, rettv);
13151 else
13152 rettv->vval.v_string = vim_strnsave(regmatch.startp[0],
Bram Moolenaar071d4272004-06-13 20:20:40 +000013153 (int)(regmatch.endp[0] - regmatch.startp[0]));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013154 }
13155 else if (l != NULL)
13156 rettv->vval.v_number = idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013157 else
13158 {
13159 if (type != 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013160 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013161 (varnumber_T)(regmatch.startp[0] - str);
13162 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013163 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013164 (varnumber_T)(regmatch.endp[0] - str);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013165 rettv->vval.v_number += (varnumber_T)(str - expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013166 }
13167 }
13168 vim_free(regmatch.regprog);
13169 }
13170
13171theend:
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013172 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013173 p_cpo = save_cpo;
13174}
13175
13176/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013177 * "match()" function
13178 */
13179 static void
13180f_match(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013181 typval_T *argvars;
13182 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013183{
13184 find_some_match(argvars, rettv, 1);
13185}
13186
13187/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013188 * "matchadd()" function
13189 */
13190 static void
13191f_matchadd(argvars, rettv)
13192 typval_T *argvars;
13193 typval_T *rettv;
13194{
13195#ifdef FEAT_SEARCH_EXTRA
13196 char_u buf[NUMBUFLEN];
13197 char_u *grp = get_tv_string_buf_chk(&argvars[0], buf); /* group */
13198 char_u *pat = get_tv_string_buf_chk(&argvars[1], buf); /* pattern */
13199 int prio = 10; /* default priority */
13200 int id = -1;
13201 int error = FALSE;
13202
13203 rettv->vval.v_number = -1;
13204
13205 if (grp == NULL || pat == NULL)
13206 return;
13207 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013208 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013209 prio = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013210 if (argvars[3].v_type != VAR_UNKNOWN)
13211 id = get_tv_number_chk(&argvars[3], &error);
13212 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013213 if (error == TRUE)
13214 return;
13215 if (id >= 1 && id <= 3)
13216 {
13217 EMSGN("E798: ID is reserved for \":match\": %ld", id);
13218 return;
13219 }
13220
13221 rettv->vval.v_number = match_add(curwin, grp, pat, prio, id);
13222#endif
13223}
13224
13225/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013226 * "matcharg()" function
13227 */
13228 static void
13229f_matcharg(argvars, rettv)
13230 typval_T *argvars;
13231 typval_T *rettv;
13232{
13233 if (rettv_list_alloc(rettv) == OK)
13234 {
13235#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013236 int id = get_tv_number(&argvars[0]);
13237 matchitem_T *m;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013238
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013239 if (id >= 1 && id <= 3)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013240 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013241 if ((m = (matchitem_T *)get_match(curwin, id)) != NULL)
13242 {
13243 list_append_string(rettv->vval.v_list,
13244 syn_id2name(m->hlg_id), -1);
13245 list_append_string(rettv->vval.v_list, m->pattern, -1);
13246 }
13247 else
13248 {
13249 list_append_string(rettv->vval.v_list, NUL, -1);
13250 list_append_string(rettv->vval.v_list, NUL, -1);
13251 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013252 }
13253#endif
13254 }
13255}
13256
13257/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013258 * "matchdelete()" function
13259 */
13260 static void
13261f_matchdelete(argvars, rettv)
13262 typval_T *argvars;
13263 typval_T *rettv;
13264{
13265#ifdef FEAT_SEARCH_EXTRA
13266 rettv->vval.v_number = match_delete(curwin,
13267 (int)get_tv_number(&argvars[0]), TRUE);
13268#endif
13269}
13270
13271/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013272 * "matchend()" function
13273 */
13274 static void
13275f_matchend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013276 typval_T *argvars;
13277 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013278{
13279 find_some_match(argvars, rettv, 0);
13280}
13281
13282/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013283 * "matchlist()" function
13284 */
13285 static void
13286f_matchlist(argvars, rettv)
13287 typval_T *argvars;
13288 typval_T *rettv;
13289{
13290 find_some_match(argvars, rettv, 3);
13291}
13292
13293/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013294 * "matchstr()" function
13295 */
13296 static void
13297f_matchstr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013298 typval_T *argvars;
13299 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013300{
13301 find_some_match(argvars, rettv, 2);
13302}
13303
Bram Moolenaar33570922005-01-25 22:26:29 +000013304static void max_min __ARGS((typval_T *argvars, typval_T *rettv, int domax));
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013305
13306 static void
13307max_min(argvars, rettv, domax)
Bram Moolenaar33570922005-01-25 22:26:29 +000013308 typval_T *argvars;
13309 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013310 int domax;
13311{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013312 long n = 0;
13313 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013314 int error = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013315
13316 if (argvars[0].v_type == VAR_LIST)
13317 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013318 list_T *l;
13319 listitem_T *li;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013320
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013321 l = argvars[0].vval.v_list;
13322 if (l != NULL)
13323 {
13324 li = l->lv_first;
13325 if (li != NULL)
13326 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013327 n = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013328 for (;;)
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013329 {
13330 li = li->li_next;
13331 if (li == NULL)
13332 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013333 i = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013334 if (domax ? i > n : i < n)
13335 n = i;
13336 }
13337 }
13338 }
13339 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000013340 else if (argvars[0].v_type == VAR_DICT)
13341 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013342 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013343 int first = TRUE;
Bram Moolenaar33570922005-01-25 22:26:29 +000013344 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013345 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013346
13347 d = argvars[0].vval.v_dict;
13348 if (d != NULL)
13349 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013350 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000013351 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013352 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013353 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +000013354 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013355 --todo;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013356 i = get_tv_number_chk(&HI2DI(hi)->di_tv, &error);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013357 if (first)
13358 {
13359 n = i;
13360 first = FALSE;
13361 }
13362 else if (domax ? i > n : i < n)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013363 n = i;
13364 }
13365 }
13366 }
13367 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013368 else
Bram Moolenaar758711c2005-02-02 23:11:38 +000013369 EMSG(_(e_listdictarg));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013370 rettv->vval.v_number = error ? 0 : n;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013371}
13372
13373/*
13374 * "max()" function
13375 */
13376 static void
13377f_max(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013378 typval_T *argvars;
13379 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013380{
13381 max_min(argvars, rettv, TRUE);
13382}
13383
13384/*
13385 * "min()" function
13386 */
13387 static void
13388f_min(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013389 typval_T *argvars;
13390 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013391{
13392 max_min(argvars, rettv, FALSE);
13393}
13394
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013395static int mkdir_recurse __ARGS((char_u *dir, int prot));
13396
13397/*
13398 * Create the directory in which "dir" is located, and higher levels when
13399 * needed.
13400 */
13401 static int
13402mkdir_recurse(dir, prot)
13403 char_u *dir;
13404 int prot;
13405{
13406 char_u *p;
13407 char_u *updir;
13408 int r = FAIL;
13409
13410 /* Get end of directory name in "dir".
13411 * We're done when it's "/" or "c:/". */
13412 p = gettail_sep(dir);
13413 if (p <= get_past_head(dir))
13414 return OK;
13415
13416 /* If the directory exists we're done. Otherwise: create it.*/
13417 updir = vim_strnsave(dir, (int)(p - dir));
13418 if (updir == NULL)
13419 return FAIL;
13420 if (mch_isdir(updir))
13421 r = OK;
13422 else if (mkdir_recurse(updir, prot) == OK)
13423 r = vim_mkdir_emsg(updir, prot);
13424 vim_free(updir);
13425 return r;
13426}
13427
13428#ifdef vim_mkdir
13429/*
13430 * "mkdir()" function
13431 */
13432 static void
13433f_mkdir(argvars, rettv)
13434 typval_T *argvars;
13435 typval_T *rettv;
13436{
13437 char_u *dir;
13438 char_u buf[NUMBUFLEN];
13439 int prot = 0755;
13440
13441 rettv->vval.v_number = FAIL;
13442 if (check_restricted() || check_secure())
13443 return;
13444
13445 dir = get_tv_string_buf(&argvars[0], buf);
13446 if (argvars[1].v_type != VAR_UNKNOWN)
13447 {
13448 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013449 prot = get_tv_number_chk(&argvars[2], NULL);
13450 if (prot != -1 && STRCMP(get_tv_string(&argvars[1]), "p") == 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013451 mkdir_recurse(dir, prot);
13452 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013453 rettv->vval.v_number = prot != -1 ? vim_mkdir_emsg(dir, prot) : 0;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013454}
13455#endif
13456
Bram Moolenaar0d660222005-01-07 21:51:51 +000013457/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013458 * "mode()" function
13459 */
13460/*ARGSUSED*/
13461 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013462f_mode(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013463 typval_T *argvars;
13464 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013465{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013466 char_u buf[3];
13467
13468 buf[1] = NUL;
13469 buf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013470
13471#ifdef FEAT_VISUAL
13472 if (VIsual_active)
13473 {
13474 if (VIsual_select)
13475 buf[0] = VIsual_mode + 's' - 'v';
13476 else
13477 buf[0] = VIsual_mode;
13478 }
13479 else
13480#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013481 if (State == HITRETURN || State == ASKMORE || State == SETWSIZE
13482 || State == CONFIRM)
13483 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013484 buf[0] = 'r';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013485 if (State == ASKMORE)
13486 buf[1] = 'm';
13487 else if (State == CONFIRM)
13488 buf[1] = '?';
13489 }
13490 else if (State == EXTERNCMD)
13491 buf[0] = '!';
Bram Moolenaar071d4272004-06-13 20:20:40 +000013492 else if (State & INSERT)
13493 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013494#ifdef FEAT_VREPLACE
13495 if (State & VREPLACE_FLAG)
13496 {
13497 buf[0] = 'R';
13498 buf[1] = 'v';
13499 }
13500 else
13501#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000013502 if (State & REPLACE_FLAG)
13503 buf[0] = 'R';
13504 else
13505 buf[0] = 'i';
13506 }
13507 else if (State & CMDLINE)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013508 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013509 buf[0] = 'c';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013510 if (exmode_active)
13511 buf[1] = 'v';
13512 }
13513 else if (exmode_active)
13514 {
13515 buf[0] = 'c';
13516 buf[1] = 'e';
13517 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013518 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013519 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013520 buf[0] = 'n';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013521 if (finish_op)
13522 buf[1] = 'o';
13523 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013524
Bram Moolenaar05bb9532008-07-04 09:44:11 +000013525 /* Clear out the minor mode when the argument is not a non-zero number or
13526 * non-empty string. */
13527 if (!non_zero_arg(&argvars[0]))
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013528 buf[1] = NUL;
13529
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013530 rettv->vval.v_string = vim_strsave(buf);
13531 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013532}
13533
13534/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013535 * "nextnonblank()" function
13536 */
13537 static void
13538f_nextnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013539 typval_T *argvars;
13540 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013541{
13542 linenr_T lnum;
13543
13544 for (lnum = get_tv_lnum(argvars); ; ++lnum)
13545 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013546 if (lnum < 0 || lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar0d660222005-01-07 21:51:51 +000013547 {
13548 lnum = 0;
13549 break;
13550 }
13551 if (*skipwhite(ml_get(lnum)) != NUL)
13552 break;
13553 }
13554 rettv->vval.v_number = lnum;
13555}
13556
13557/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013558 * "nr2char()" function
13559 */
13560 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013561f_nr2char(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013562 typval_T *argvars;
13563 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013564{
13565 char_u buf[NUMBUFLEN];
13566
13567#ifdef FEAT_MBYTE
13568 if (has_mbyte)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013569 buf[(*mb_char2bytes)((int)get_tv_number(&argvars[0]), buf)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013570 else
13571#endif
13572 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013573 buf[0] = (char_u)get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013574 buf[1] = NUL;
13575 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013576 rettv->v_type = VAR_STRING;
13577 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013578}
13579
13580/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013581 * "pathshorten()" function
13582 */
13583 static void
13584f_pathshorten(argvars, rettv)
13585 typval_T *argvars;
13586 typval_T *rettv;
13587{
13588 char_u *p;
13589
13590 rettv->v_type = VAR_STRING;
13591 p = get_tv_string_chk(&argvars[0]);
13592 if (p == NULL)
13593 rettv->vval.v_string = NULL;
13594 else
13595 {
13596 p = vim_strsave(p);
13597 rettv->vval.v_string = p;
13598 if (p != NULL)
13599 shorten_dir(p);
13600 }
13601}
13602
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013603#ifdef FEAT_FLOAT
13604/*
13605 * "pow()" function
13606 */
13607 static void
13608f_pow(argvars, rettv)
13609 typval_T *argvars;
13610 typval_T *rettv;
13611{
13612 float_T fx, fy;
13613
13614 rettv->v_type = VAR_FLOAT;
13615 if (get_float_arg(argvars, &fx) == OK
13616 && get_float_arg(&argvars[1], &fy) == OK)
13617 rettv->vval.v_float = pow(fx, fy);
13618 else
13619 rettv->vval.v_float = 0.0;
13620}
13621#endif
13622
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013623/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013624 * "prevnonblank()" function
13625 */
13626 static void
13627f_prevnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013628 typval_T *argvars;
13629 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013630{
13631 linenr_T lnum;
13632
13633 lnum = get_tv_lnum(argvars);
13634 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
13635 lnum = 0;
13636 else
13637 while (lnum >= 1 && *skipwhite(ml_get(lnum)) == NUL)
13638 --lnum;
13639 rettv->vval.v_number = lnum;
13640}
13641
Bram Moolenaara6c840d2005-08-22 22:59:46 +000013642#ifdef HAVE_STDARG_H
13643/* This dummy va_list is here because:
13644 * - passing a NULL pointer doesn't work when va_list isn't a pointer
13645 * - locally in the function results in a "used before set" warning
13646 * - using va_start() to initialize it gives "function with fixed args" error */
13647static va_list ap;
13648#endif
13649
Bram Moolenaar8c711452005-01-14 21:53:12 +000013650/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013651 * "printf()" function
13652 */
13653 static void
13654f_printf(argvars, rettv)
13655 typval_T *argvars;
13656 typval_T *rettv;
13657{
13658 rettv->v_type = VAR_STRING;
13659 rettv->vval.v_string = NULL;
Bram Moolenaard52d9742005-08-21 22:20:28 +000013660#ifdef HAVE_STDARG_H /* only very old compilers can't do this */
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013661 {
13662 char_u buf[NUMBUFLEN];
13663 int len;
13664 char_u *s;
13665 int saved_did_emsg = did_emsg;
13666 char *fmt;
13667
13668 /* Get the required length, allocate the buffer and do it for real. */
13669 did_emsg = FALSE;
13670 fmt = (char *)get_tv_string_buf(&argvars[0], buf);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013671 len = vim_vsnprintf(NULL, 0, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013672 if (!did_emsg)
13673 {
13674 s = alloc(len + 1);
13675 if (s != NULL)
13676 {
13677 rettv->vval.v_string = s;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013678 (void)vim_vsnprintf((char *)s, len + 1, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013679 }
13680 }
13681 did_emsg |= saved_did_emsg;
13682 }
13683#endif
13684}
13685
13686/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013687 * "pumvisible()" function
13688 */
13689/*ARGSUSED*/
13690 static void
13691f_pumvisible(argvars, rettv)
13692 typval_T *argvars;
13693 typval_T *rettv;
13694{
13695 rettv->vval.v_number = 0;
13696#ifdef FEAT_INS_EXPAND
13697 if (pum_visible())
13698 rettv->vval.v_number = 1;
13699#endif
13700}
13701
13702/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000013703 * "range()" function
13704 */
13705 static void
13706f_range(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013707 typval_T *argvars;
13708 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013709{
13710 long start;
13711 long end;
13712 long stride = 1;
13713 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013714 int error = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013715
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013716 start = get_tv_number_chk(&argvars[0], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013717 if (argvars[1].v_type == VAR_UNKNOWN)
13718 {
13719 end = start - 1;
13720 start = 0;
13721 }
13722 else
13723 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013724 end = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013725 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013726 stride = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013727 }
13728
13729 rettv->vval.v_number = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013730 if (error)
13731 return; /* type error; errmsg already given */
Bram Moolenaar8c711452005-01-14 21:53:12 +000013732 if (stride == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013733 EMSG(_("E726: Stride is zero"));
Bram Moolenaar92124a32005-06-17 22:03:40 +000013734 else if (stride > 0 ? end + 1 < start : end - 1 > start)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013735 EMSG(_("E727: Start past end"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000013736 else
13737 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013738 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013739 for (i = start; stride > 0 ? i <= end : i >= end; i += stride)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013740 if (list_append_number(rettv->vval.v_list,
13741 (varnumber_T)i) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013742 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013743 }
13744}
13745
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013746/*
13747 * "readfile()" function
13748 */
13749 static void
13750f_readfile(argvars, rettv)
13751 typval_T *argvars;
13752 typval_T *rettv;
13753{
13754 int binary = FALSE;
13755 char_u *fname;
13756 FILE *fd;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013757 listitem_T *li;
13758#define FREAD_SIZE 200 /* optimized for text lines */
13759 char_u buf[FREAD_SIZE];
13760 int readlen; /* size of last fread() */
13761 int buflen; /* nr of valid chars in buf[] */
13762 int filtd; /* how much in buf[] was NUL -> '\n' filtered */
13763 int tolist; /* first byte in buf[] still to be put in list */
13764 int chop; /* how many CR to chop off */
13765 char_u *prev = NULL; /* previously read bytes, if any */
13766 int prevlen = 0; /* length of "prev" if not NULL */
13767 char_u *s;
13768 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013769 long maxline = MAXLNUM;
13770 long cnt = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013771
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013772 if (argvars[1].v_type != VAR_UNKNOWN)
13773 {
13774 if (STRCMP(get_tv_string(&argvars[1]), "b") == 0)
13775 binary = TRUE;
13776 if (argvars[2].v_type != VAR_UNKNOWN)
13777 maxline = get_tv_number(&argvars[2]);
13778 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013779
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013780 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013781 return;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013782
13783 /* Always open the file in binary mode, library functions have a mind of
13784 * their own about CR-LF conversion. */
13785 fname = get_tv_string(&argvars[0]);
13786 if (*fname == NUL || (fd = mch_fopen((char *)fname, READBIN)) == NULL)
13787 {
13788 EMSG2(_(e_notopen), *fname == NUL ? (char_u *)_("<empty>") : fname);
13789 return;
13790 }
13791
13792 filtd = 0;
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013793 while (cnt < maxline || maxline < 0)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013794 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013795 readlen = (int)fread(buf + filtd, 1, FREAD_SIZE - filtd, fd);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013796 buflen = filtd + readlen;
13797 tolist = 0;
13798 for ( ; filtd < buflen || readlen <= 0; ++filtd)
13799 {
13800 if (buf[filtd] == '\n' || readlen <= 0)
13801 {
13802 /* Only when in binary mode add an empty list item when the
13803 * last line ends in a '\n'. */
13804 if (!binary && readlen == 0 && filtd == 0)
13805 break;
13806
13807 /* Found end-of-line or end-of-file: add a text line to the
13808 * list. */
13809 chop = 0;
13810 if (!binary)
13811 while (filtd - chop - 1 >= tolist
13812 && buf[filtd - chop - 1] == '\r')
13813 ++chop;
13814 len = filtd - tolist - chop;
13815 if (prev == NULL)
13816 s = vim_strnsave(buf + tolist, len);
13817 else
13818 {
13819 s = alloc((unsigned)(prevlen + len + 1));
13820 if (s != NULL)
13821 {
13822 mch_memmove(s, prev, prevlen);
13823 vim_free(prev);
13824 prev = NULL;
13825 mch_memmove(s + prevlen, buf + tolist, len);
13826 s[prevlen + len] = NUL;
13827 }
13828 }
13829 tolist = filtd + 1;
13830
13831 li = listitem_alloc();
13832 if (li == NULL)
13833 {
13834 vim_free(s);
13835 break;
13836 }
13837 li->li_tv.v_type = VAR_STRING;
13838 li->li_tv.v_lock = 0;
13839 li->li_tv.vval.v_string = s;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013840 list_append(rettv->vval.v_list, li);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013841
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013842 if (++cnt >= maxline && maxline >= 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013843 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013844 if (readlen <= 0)
13845 break;
13846 }
13847 else if (buf[filtd] == NUL)
13848 buf[filtd] = '\n';
13849 }
13850 if (readlen <= 0)
13851 break;
13852
13853 if (tolist == 0)
13854 {
13855 /* "buf" is full, need to move text to an allocated buffer */
13856 if (prev == NULL)
13857 {
13858 prev = vim_strnsave(buf, buflen);
13859 prevlen = buflen;
13860 }
13861 else
13862 {
13863 s = alloc((unsigned)(prevlen + buflen));
13864 if (s != NULL)
13865 {
13866 mch_memmove(s, prev, prevlen);
13867 mch_memmove(s + prevlen, buf, buflen);
13868 vim_free(prev);
13869 prev = s;
13870 prevlen += buflen;
13871 }
13872 }
13873 filtd = 0;
13874 }
13875 else
13876 {
13877 mch_memmove(buf, buf + tolist, buflen - tolist);
13878 filtd -= tolist;
13879 }
13880 }
13881
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013882 /*
13883 * For a negative line count use only the lines at the end of the file,
13884 * free the rest.
13885 */
13886 if (maxline < 0)
13887 while (cnt > -maxline)
13888 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013889 listitem_remove(rettv->vval.v_list, rettv->vval.v_list->lv_first);
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013890 --cnt;
13891 }
13892
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013893 vim_free(prev);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013894 fclose(fd);
13895}
13896
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013897#if defined(FEAT_RELTIME)
13898static int list2proftime __ARGS((typval_T *arg, proftime_T *tm));
13899
13900/*
13901 * Convert a List to proftime_T.
13902 * Return FAIL when there is something wrong.
13903 */
13904 static int
13905list2proftime(arg, tm)
13906 typval_T *arg;
13907 proftime_T *tm;
13908{
13909 long n1, n2;
13910 int error = FALSE;
13911
13912 if (arg->v_type != VAR_LIST || arg->vval.v_list == NULL
13913 || arg->vval.v_list->lv_len != 2)
13914 return FAIL;
13915 n1 = list_find_nr(arg->vval.v_list, 0L, &error);
13916 n2 = list_find_nr(arg->vval.v_list, 1L, &error);
13917# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000013918 tm->HighPart = n1;
13919 tm->LowPart = n2;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013920# else
13921 tm->tv_sec = n1;
13922 tm->tv_usec = n2;
13923# endif
13924 return error ? FAIL : OK;
13925}
13926#endif /* FEAT_RELTIME */
13927
13928/*
13929 * "reltime()" function
13930 */
13931 static void
13932f_reltime(argvars, rettv)
13933 typval_T *argvars;
13934 typval_T *rettv;
13935{
13936#ifdef FEAT_RELTIME
13937 proftime_T res;
13938 proftime_T start;
13939
13940 if (argvars[0].v_type == VAR_UNKNOWN)
13941 {
13942 /* No arguments: get current time. */
13943 profile_start(&res);
13944 }
13945 else if (argvars[1].v_type == VAR_UNKNOWN)
13946 {
13947 if (list2proftime(&argvars[0], &res) == FAIL)
13948 return;
13949 profile_end(&res);
13950 }
13951 else
13952 {
13953 /* Two arguments: compute the difference. */
13954 if (list2proftime(&argvars[0], &start) == FAIL
13955 || list2proftime(&argvars[1], &res) == FAIL)
13956 return;
13957 profile_sub(&res, &start);
13958 }
13959
13960 if (rettv_list_alloc(rettv) == OK)
13961 {
13962 long n1, n2;
13963
13964# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000013965 n1 = res.HighPart;
13966 n2 = res.LowPart;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013967# else
13968 n1 = res.tv_sec;
13969 n2 = res.tv_usec;
13970# endif
13971 list_append_number(rettv->vval.v_list, (varnumber_T)n1);
13972 list_append_number(rettv->vval.v_list, (varnumber_T)n2);
13973 }
13974#endif
13975}
13976
13977/*
13978 * "reltimestr()" function
13979 */
13980 static void
13981f_reltimestr(argvars, rettv)
13982 typval_T *argvars;
13983 typval_T *rettv;
13984{
13985#ifdef FEAT_RELTIME
13986 proftime_T tm;
13987#endif
13988
13989 rettv->v_type = VAR_STRING;
13990 rettv->vval.v_string = NULL;
13991#ifdef FEAT_RELTIME
13992 if (list2proftime(&argvars[0], &tm) == OK)
13993 rettv->vval.v_string = vim_strsave((char_u *)profile_msg(&tm));
13994#endif
13995}
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013996
Bram Moolenaar0d660222005-01-07 21:51:51 +000013997#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
13998static void make_connection __ARGS((void));
13999static int check_connection __ARGS((void));
14000
14001 static void
14002make_connection()
14003{
14004 if (X_DISPLAY == NULL
14005# ifdef FEAT_GUI
14006 && !gui.in_use
14007# endif
14008 )
14009 {
14010 x_force_connect = TRUE;
14011 setup_term_clip();
14012 x_force_connect = FALSE;
14013 }
14014}
14015
14016 static int
14017check_connection()
14018{
14019 make_connection();
14020 if (X_DISPLAY == NULL)
14021 {
14022 EMSG(_("E240: No connection to Vim server"));
14023 return FAIL;
14024 }
14025 return OK;
14026}
14027#endif
14028
14029#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014030static void remote_common __ARGS((typval_T *argvars, typval_T *rettv, int expr));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014031
14032 static void
14033remote_common(argvars, rettv, expr)
Bram Moolenaar33570922005-01-25 22:26:29 +000014034 typval_T *argvars;
14035 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014036 int expr;
14037{
14038 char_u *server_name;
14039 char_u *keys;
14040 char_u *r = NULL;
14041 char_u buf[NUMBUFLEN];
14042# ifdef WIN32
14043 HWND w;
14044# else
14045 Window w;
14046# endif
14047
14048 if (check_restricted() || check_secure())
14049 return;
14050
14051# ifdef FEAT_X11
14052 if (check_connection() == FAIL)
14053 return;
14054# endif
14055
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014056 server_name = get_tv_string_chk(&argvars[0]);
14057 if (server_name == NULL)
14058 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014059 keys = get_tv_string_buf(&argvars[1], buf);
14060# ifdef WIN32
14061 if (serverSendToVim(server_name, keys, &r, &w, expr, TRUE) < 0)
14062# else
14063 if (serverSendToVim(X_DISPLAY, server_name, keys, &r, &w, expr, 0, TRUE)
14064 < 0)
14065# endif
14066 {
14067 if (r != NULL)
14068 EMSG(r); /* sending worked but evaluation failed */
14069 else
14070 EMSG2(_("E241: Unable to send to %s"), server_name);
14071 return;
14072 }
14073
14074 rettv->vval.v_string = r;
14075
14076 if (argvars[2].v_type != VAR_UNKNOWN)
14077 {
Bram Moolenaar33570922005-01-25 22:26:29 +000014078 dictitem_T v;
Bram Moolenaar555b2802005-05-19 21:08:39 +000014079 char_u str[30];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014080 char_u *idvar;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014081
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014082 sprintf((char *)str, PRINTF_HEX_LONG_U, (long_u)w);
Bram Moolenaar33570922005-01-25 22:26:29 +000014083 v.di_tv.v_type = VAR_STRING;
14084 v.di_tv.vval.v_string = vim_strsave(str);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014085 idvar = get_tv_string_chk(&argvars[2]);
14086 if (idvar != NULL)
14087 set_var(idvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014088 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014089 }
14090}
14091#endif
14092
14093/*
14094 * "remote_expr()" function
14095 */
14096/*ARGSUSED*/
14097 static void
14098f_remote_expr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014099 typval_T *argvars;
14100 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014101{
14102 rettv->v_type = VAR_STRING;
14103 rettv->vval.v_string = NULL;
14104#ifdef FEAT_CLIENTSERVER
14105 remote_common(argvars, rettv, TRUE);
14106#endif
14107}
14108
14109/*
14110 * "remote_foreground()" function
14111 */
14112/*ARGSUSED*/
14113 static void
14114f_remote_foreground(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014115 typval_T *argvars;
14116 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014117{
14118 rettv->vval.v_number = 0;
14119#ifdef FEAT_CLIENTSERVER
14120# ifdef WIN32
14121 /* On Win32 it's done in this application. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014122 {
14123 char_u *server_name = get_tv_string_chk(&argvars[0]);
14124
14125 if (server_name != NULL)
14126 serverForeground(server_name);
14127 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014128# else
14129 /* Send a foreground() expression to the server. */
14130 argvars[1].v_type = VAR_STRING;
14131 argvars[1].vval.v_string = vim_strsave((char_u *)"foreground()");
14132 argvars[2].v_type = VAR_UNKNOWN;
14133 remote_common(argvars, rettv, TRUE);
14134 vim_free(argvars[1].vval.v_string);
14135# endif
14136#endif
14137}
14138
14139/*ARGSUSED*/
14140 static void
14141f_remote_peek(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014142 typval_T *argvars;
14143 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014144{
14145#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014146 dictitem_T v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014147 char_u *s = NULL;
14148# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014149 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014150# endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014151 char_u *serverid;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014152
14153 if (check_restricted() || check_secure())
14154 {
14155 rettv->vval.v_number = -1;
14156 return;
14157 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014158 serverid = get_tv_string_chk(&argvars[0]);
14159 if (serverid == NULL)
14160 {
14161 rettv->vval.v_number = -1;
14162 return; /* type error; errmsg already given */
14163 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014164# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014165 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014166 if (n == 0)
14167 rettv->vval.v_number = -1;
14168 else
14169 {
14170 s = serverGetReply((HWND)n, FALSE, FALSE, FALSE);
14171 rettv->vval.v_number = (s != NULL);
14172 }
14173# else
14174 rettv->vval.v_number = 0;
14175 if (check_connection() == FAIL)
14176 return;
14177
14178 rettv->vval.v_number = serverPeekReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014179 serverStrToWin(serverid), &s);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014180# endif
14181
14182 if (argvars[1].v_type != VAR_UNKNOWN && rettv->vval.v_number > 0)
14183 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014184 char_u *retvar;
14185
Bram Moolenaar33570922005-01-25 22:26:29 +000014186 v.di_tv.v_type = VAR_STRING;
14187 v.di_tv.vval.v_string = vim_strsave(s);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014188 retvar = get_tv_string_chk(&argvars[1]);
14189 if (retvar != NULL)
14190 set_var(retvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014191 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014192 }
14193#else
14194 rettv->vval.v_number = -1;
14195#endif
14196}
14197
14198/*ARGSUSED*/
14199 static void
14200f_remote_read(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014201 typval_T *argvars;
14202 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014203{
14204 char_u *r = NULL;
14205
14206#ifdef FEAT_CLIENTSERVER
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014207 char_u *serverid = get_tv_string_chk(&argvars[0]);
14208
14209 if (serverid != NULL && !check_restricted() && !check_secure())
Bram Moolenaar0d660222005-01-07 21:51:51 +000014210 {
14211# ifdef WIN32
14212 /* The server's HWND is encoded in the 'id' parameter */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014213 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014214
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014215 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014216 if (n != 0)
14217 r = serverGetReply((HWND)n, FALSE, TRUE, TRUE);
14218 if (r == NULL)
14219# else
14220 if (check_connection() == FAIL || serverReadReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014221 serverStrToWin(serverid), &r, FALSE) < 0)
Bram Moolenaar0d660222005-01-07 21:51:51 +000014222# endif
14223 EMSG(_("E277: Unable to read a server reply"));
14224 }
14225#endif
14226 rettv->v_type = VAR_STRING;
14227 rettv->vval.v_string = r;
14228}
14229
14230/*
14231 * "remote_send()" function
14232 */
14233/*ARGSUSED*/
14234 static void
14235f_remote_send(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014236 typval_T *argvars;
14237 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014238{
14239 rettv->v_type = VAR_STRING;
14240 rettv->vval.v_string = NULL;
14241#ifdef FEAT_CLIENTSERVER
14242 remote_common(argvars, rettv, FALSE);
14243#endif
14244}
14245
14246/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000014247 * "remove()" function
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014248 */
14249 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014250f_remove(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014251 typval_T *argvars;
14252 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014253{
Bram Moolenaar33570922005-01-25 22:26:29 +000014254 list_T *l;
14255 listitem_T *item, *item2;
14256 listitem_T *li;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014257 long idx;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014258 long end;
Bram Moolenaar8c711452005-01-14 21:53:12 +000014259 char_u *key;
Bram Moolenaar33570922005-01-25 22:26:29 +000014260 dict_T *d;
14261 dictitem_T *di;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014262
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014263 rettv->vval.v_number = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +000014264 if (argvars[0].v_type == VAR_DICT)
14265 {
14266 if (argvars[2].v_type != VAR_UNKNOWN)
14267 EMSG2(_(e_toomanyarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014268 else if ((d = argvars[0].vval.v_dict) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014269 && !tv_check_lock(d->dv_lock, (char_u *)"remove() argument"))
Bram Moolenaar8c711452005-01-14 21:53:12 +000014270 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014271 key = get_tv_string_chk(&argvars[1]);
14272 if (key != NULL)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014273 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014274 di = dict_find(d, key, -1);
14275 if (di == NULL)
14276 EMSG2(_(e_dictkey), key);
14277 else
14278 {
14279 *rettv = di->di_tv;
14280 init_tv(&di->di_tv);
14281 dictitem_remove(d, di);
14282 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014283 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000014284 }
14285 }
14286 else if (argvars[0].v_type != VAR_LIST)
14287 EMSG2(_(e_listdictarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014288 else if ((l = argvars[0].vval.v_list) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014289 && !tv_check_lock(l->lv_lock, (char_u *)"remove() argument"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014290 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014291 int error = FALSE;
14292
14293 idx = get_tv_number_chk(&argvars[1], &error);
14294 if (error)
14295 ; /* type error: do nothing, errmsg already given */
14296 else if ((item = list_find(l, idx)) == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014297 EMSGN(_(e_listidx), idx);
14298 else
14299 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014300 if (argvars[2].v_type == VAR_UNKNOWN)
14301 {
14302 /* Remove one item, return its value. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014303 list_remove(l, item, item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014304 *rettv = item->li_tv;
14305 vim_free(item);
14306 }
14307 else
14308 {
14309 /* Remove range of items, return list with values. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014310 end = get_tv_number_chk(&argvars[2], &error);
14311 if (error)
14312 ; /* type error: do nothing */
14313 else if ((item2 = list_find(l, end)) == NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014314 EMSGN(_(e_listidx), end);
14315 else
14316 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000014317 int cnt = 0;
14318
14319 for (li = item; li != NULL; li = li->li_next)
14320 {
14321 ++cnt;
14322 if (li == item2)
14323 break;
14324 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014325 if (li == NULL) /* didn't find "item2" after "item" */
14326 EMSG(_(e_invrange));
14327 else
14328 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014329 list_remove(l, item, item2);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014330 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014331 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014332 l = rettv->vval.v_list;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014333 l->lv_first = item;
14334 l->lv_last = item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014335 item->li_prev = NULL;
14336 item2->li_next = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014337 l->lv_len = cnt;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014338 }
14339 }
14340 }
14341 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014342 }
14343 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014344}
14345
14346/*
14347 * "rename({from}, {to})" function
14348 */
14349 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014350f_rename(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014351 typval_T *argvars;
14352 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014353{
14354 char_u buf[NUMBUFLEN];
14355
14356 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014357 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014358 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014359 rettv->vval.v_number = vim_rename(get_tv_string(&argvars[0]),
14360 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000014361}
14362
14363/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014364 * "repeat()" function
14365 */
14366/*ARGSUSED*/
14367 static void
14368f_repeat(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014369 typval_T *argvars;
14370 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014371{
14372 char_u *p;
14373 int n;
14374 int slen;
14375 int len;
14376 char_u *r;
14377 int i;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014378
14379 n = get_tv_number(&argvars[1]);
14380 if (argvars[0].v_type == VAR_LIST)
14381 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014382 if (rettv_list_alloc(rettv) == OK && argvars[0].vval.v_list != NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014383 while (n-- > 0)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014384 if (list_extend(rettv->vval.v_list,
14385 argvars[0].vval.v_list, NULL) == FAIL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014386 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014387 }
14388 else
14389 {
14390 p = get_tv_string(&argvars[0]);
14391 rettv->v_type = VAR_STRING;
14392 rettv->vval.v_string = NULL;
14393
14394 slen = (int)STRLEN(p);
14395 len = slen * n;
14396 if (len <= 0)
14397 return;
14398
14399 r = alloc(len + 1);
14400 if (r != NULL)
14401 {
14402 for (i = 0; i < n; i++)
14403 mch_memmove(r + i * slen, p, (size_t)slen);
14404 r[len] = NUL;
14405 }
14406
14407 rettv->vval.v_string = r;
14408 }
14409}
14410
14411/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000014412 * "resolve()" function
14413 */
14414 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014415f_resolve(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014416 typval_T *argvars;
14417 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014418{
14419 char_u *p;
14420
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014421 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014422#ifdef FEAT_SHORTCUT
14423 {
14424 char_u *v = NULL;
14425
14426 v = mch_resolve_shortcut(p);
14427 if (v != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014428 rettv->vval.v_string = v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014429 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014430 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014431 }
14432#else
14433# ifdef HAVE_READLINK
14434 {
14435 char_u buf[MAXPATHL + 1];
14436 char_u *cpy;
14437 int len;
14438 char_u *remain = NULL;
14439 char_u *q;
14440 int is_relative_to_current = FALSE;
14441 int has_trailing_pathsep = FALSE;
14442 int limit = 100;
14443
14444 p = vim_strsave(p);
14445
14446 if (p[0] == '.' && (vim_ispathsep(p[1])
14447 || (p[1] == '.' && (vim_ispathsep(p[2])))))
14448 is_relative_to_current = TRUE;
14449
14450 len = STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014451 if (len > 0 && after_pathsep(p, p + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +000014452 has_trailing_pathsep = TRUE;
14453
14454 q = getnextcomp(p);
14455 if (*q != NUL)
14456 {
14457 /* Separate the first path component in "p", and keep the
14458 * remainder (beginning with the path separator). */
14459 remain = vim_strsave(q - 1);
14460 q[-1] = NUL;
14461 }
14462
14463 for (;;)
14464 {
14465 for (;;)
14466 {
14467 len = readlink((char *)p, (char *)buf, MAXPATHL);
14468 if (len <= 0)
14469 break;
14470 buf[len] = NUL;
14471
14472 if (limit-- == 0)
14473 {
14474 vim_free(p);
14475 vim_free(remain);
14476 EMSG(_("E655: Too many symbolic links (cycle?)"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014477 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014478 goto fail;
14479 }
14480
14481 /* Ensure that the result will have a trailing path separator
14482 * if the argument has one. */
14483 if (remain == NULL && has_trailing_pathsep)
14484 add_pathsep(buf);
14485
14486 /* Separate the first path component in the link value and
14487 * concatenate the remainders. */
14488 q = getnextcomp(vim_ispathsep(*buf) ? buf + 1 : buf);
14489 if (*q != NUL)
14490 {
14491 if (remain == NULL)
14492 remain = vim_strsave(q - 1);
14493 else
14494 {
Bram Moolenaar900b4d72005-12-12 22:05:50 +000014495 cpy = concat_str(q - 1, remain);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014496 if (cpy != NULL)
14497 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014498 vim_free(remain);
14499 remain = cpy;
14500 }
14501 }
14502 q[-1] = NUL;
14503 }
14504
14505 q = gettail(p);
14506 if (q > p && *q == NUL)
14507 {
14508 /* Ignore trailing path separator. */
14509 q[-1] = NUL;
14510 q = gettail(p);
14511 }
14512 if (q > p && !mch_isFullName(buf))
14513 {
14514 /* symlink is relative to directory of argument */
14515 cpy = alloc((unsigned)(STRLEN(p) + STRLEN(buf) + 1));
14516 if (cpy != NULL)
14517 {
14518 STRCPY(cpy, p);
14519 STRCPY(gettail(cpy), buf);
14520 vim_free(p);
14521 p = cpy;
14522 }
14523 }
14524 else
14525 {
14526 vim_free(p);
14527 p = vim_strsave(buf);
14528 }
14529 }
14530
14531 if (remain == NULL)
14532 break;
14533
14534 /* Append the first path component of "remain" to "p". */
14535 q = getnextcomp(remain + 1);
14536 len = q - remain - (*q != NUL);
14537 cpy = vim_strnsave(p, STRLEN(p) + len);
14538 if (cpy != NULL)
14539 {
14540 STRNCAT(cpy, remain, len);
14541 vim_free(p);
14542 p = cpy;
14543 }
14544 /* Shorten "remain". */
14545 if (*q != NUL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014546 STRMOVE(remain, q - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014547 else
14548 {
14549 vim_free(remain);
14550 remain = NULL;
14551 }
14552 }
14553
14554 /* If the result is a relative path name, make it explicitly relative to
14555 * the current directory if and only if the argument had this form. */
14556 if (!vim_ispathsep(*p))
14557 {
14558 if (is_relative_to_current
14559 && *p != NUL
14560 && !(p[0] == '.'
14561 && (p[1] == NUL
14562 || vim_ispathsep(p[1])
14563 || (p[1] == '.'
14564 && (p[2] == NUL
14565 || vim_ispathsep(p[2]))))))
14566 {
14567 /* Prepend "./". */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000014568 cpy = concat_str((char_u *)"./", p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014569 if (cpy != NULL)
14570 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014571 vim_free(p);
14572 p = cpy;
14573 }
14574 }
14575 else if (!is_relative_to_current)
14576 {
14577 /* Strip leading "./". */
14578 q = p;
14579 while (q[0] == '.' && vim_ispathsep(q[1]))
14580 q += 2;
14581 if (q > p)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014582 STRMOVE(p, p + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014583 }
14584 }
14585
14586 /* Ensure that the result will have no trailing path separator
14587 * if the argument had none. But keep "/" or "//". */
14588 if (!has_trailing_pathsep)
14589 {
14590 q = p + STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014591 if (after_pathsep(p, q))
14592 *gettail_sep(p) = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014593 }
14594
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014595 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014596 }
14597# else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014598 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014599# endif
14600#endif
14601
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014602 simplify_filename(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014603
14604#ifdef HAVE_READLINK
14605fail:
14606#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014607 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014608}
14609
14610/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000014611 * "reverse({list})" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000014612 */
14613 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000014614f_reverse(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014615 typval_T *argvars;
14616 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014617{
Bram Moolenaar33570922005-01-25 22:26:29 +000014618 list_T *l;
14619 listitem_T *li, *ni;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014620
Bram Moolenaar0d660222005-01-07 21:51:51 +000014621 rettv->vval.v_number = 0;
14622 if (argvars[0].v_type != VAR_LIST)
14623 EMSG2(_(e_listarg), "reverse()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014624 else if ((l = argvars[0].vval.v_list) != NULL
14625 && !tv_check_lock(l->lv_lock, (char_u *)"reverse()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000014626 {
14627 li = l->lv_last;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000014628 l->lv_first = l->lv_last = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014629 l->lv_len = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014630 while (li != NULL)
14631 {
14632 ni = li->li_prev;
14633 list_append(l, li);
14634 li = ni;
14635 }
14636 rettv->vval.v_list = l;
14637 rettv->v_type = VAR_LIST;
14638 ++l->lv_refcount;
Bram Moolenaar52514562008-04-01 11:12:09 +000014639 l->lv_idx = l->lv_len - l->lv_idx - 1;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014640 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014641}
14642
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014643#define SP_NOMOVE 0x01 /* don't move cursor */
14644#define SP_REPEAT 0x02 /* repeat to find outer pair */
14645#define SP_RETCOUNT 0x04 /* return matchcount */
14646#define SP_SETPCMARK 0x08 /* set previous context mark */
14647#define SP_START 0x10 /* accept match at start position */
14648#define SP_SUBPAT 0x20 /* return nr of matching sub-pattern */
14649#define SP_END 0x40 /* leave cursor at end of match */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014650
Bram Moolenaar33570922005-01-25 22:26:29 +000014651static int get_search_arg __ARGS((typval_T *varp, int *flagsp));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014652
14653/*
14654 * Get flags for a search function.
14655 * Possibly sets "p_ws".
14656 * Returns BACKWARD, FORWARD or zero (for an error).
14657 */
14658 static int
14659get_search_arg(varp, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014660 typval_T *varp;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014661 int *flagsp;
14662{
14663 int dir = FORWARD;
14664 char_u *flags;
14665 char_u nbuf[NUMBUFLEN];
14666 int mask;
14667
14668 if (varp->v_type != VAR_UNKNOWN)
14669 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014670 flags = get_tv_string_buf_chk(varp, nbuf);
14671 if (flags == NULL)
14672 return 0; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014673 while (*flags != NUL)
14674 {
14675 switch (*flags)
14676 {
14677 case 'b': dir = BACKWARD; break;
14678 case 'w': p_ws = TRUE; break;
14679 case 'W': p_ws = FALSE; break;
14680 default: mask = 0;
14681 if (flagsp != NULL)
14682 switch (*flags)
14683 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014684 case 'c': mask = SP_START; break;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014685 case 'e': mask = SP_END; break;
14686 case 'm': mask = SP_RETCOUNT; break;
14687 case 'n': mask = SP_NOMOVE; break;
14688 case 'p': mask = SP_SUBPAT; break;
14689 case 'r': mask = SP_REPEAT; break;
14690 case 's': mask = SP_SETPCMARK; break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014691 }
14692 if (mask == 0)
14693 {
14694 EMSG2(_(e_invarg2), flags);
14695 dir = 0;
14696 }
14697 else
14698 *flagsp |= mask;
14699 }
14700 if (dir == 0)
14701 break;
14702 ++flags;
14703 }
14704 }
14705 return dir;
14706}
14707
Bram Moolenaar071d4272004-06-13 20:20:40 +000014708/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014709 * Shared by search() and searchpos() functions
Bram Moolenaar071d4272004-06-13 20:20:40 +000014710 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014711 static int
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014712search_cmn(argvars, match_pos, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014713 typval_T *argvars;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014714 pos_T *match_pos;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014715 int *flagsp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014716{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014717 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014718 char_u *pat;
14719 pos_T pos;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014720 pos_T save_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014721 int save_p_ws = p_ws;
14722 int dir;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014723 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014724 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014725 proftime_T tm;
14726#ifdef FEAT_RELTIME
14727 long time_limit = 0;
14728#endif
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014729 int options = SEARCH_KEEP;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014730 int subpatnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014731
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014732 pat = get_tv_string(&argvars[0]);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014733 dir = get_search_arg(&argvars[1], flagsp); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014734 if (dir == 0)
14735 goto theend;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014736 flags = *flagsp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014737 if (flags & SP_START)
14738 options |= SEARCH_START;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014739 if (flags & SP_END)
14740 options |= SEARCH_END;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014741
Bram Moolenaar76929292008-01-06 19:07:36 +000014742 /* Optional arguments: line number to stop searching and timeout. */
14743 if (argvars[1].v_type != VAR_UNKNOWN && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014744 {
14745 lnum_stop = get_tv_number_chk(&argvars[2], NULL);
14746 if (lnum_stop < 0)
14747 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014748#ifdef FEAT_RELTIME
14749 if (argvars[3].v_type != VAR_UNKNOWN)
14750 {
14751 time_limit = get_tv_number_chk(&argvars[3], NULL);
14752 if (time_limit < 0)
14753 goto theend;
14754 }
14755#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014756 }
14757
Bram Moolenaar76929292008-01-06 19:07:36 +000014758#ifdef FEAT_RELTIME
14759 /* Set the time limit, if there is one. */
14760 profile_setlimit(time_limit, &tm);
14761#endif
14762
Bram Moolenaar231334e2005-07-25 20:46:57 +000014763 /*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014764 * This function does not accept SP_REPEAT and SP_RETCOUNT flags.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014765 * Check to make sure only those flags are set.
14766 * Also, Only the SP_NOMOVE or the SP_SETPCMARK flag can be set. Both
14767 * flags cannot be set. Check for that condition also.
14768 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014769 if (((flags & (SP_REPEAT | SP_RETCOUNT)) != 0)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014770 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014771 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014772 EMSG2(_(e_invarg2), get_tv_string(&argvars[1]));
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014773 goto theend;
14774 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014775
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014776 pos = save_cursor = curwin->w_cursor;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014777 subpatnum = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000014778 options, RE_SEARCH, (linenr_T)lnum_stop, &tm);
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014779 if (subpatnum != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014780 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014781 if (flags & SP_SUBPAT)
14782 retval = subpatnum;
14783 else
14784 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000014785 if (flags & SP_SETPCMARK)
14786 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000014787 curwin->w_cursor = pos;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014788 if (match_pos != NULL)
14789 {
14790 /* Store the match cursor position */
14791 match_pos->lnum = pos.lnum;
14792 match_pos->col = pos.col + 1;
14793 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014794 /* "/$" will put the cursor after the end of the line, may need to
14795 * correct that here */
14796 check_cursor();
14797 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014798
14799 /* If 'n' flag is used: restore cursor position. */
14800 if (flags & SP_NOMOVE)
14801 curwin->w_cursor = save_cursor;
Bram Moolenaar7a42fa32007-07-10 11:28:55 +000014802 else
14803 curwin->w_set_curswant = TRUE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014804theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +000014805 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014806
14807 return retval;
14808}
14809
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014810#ifdef FEAT_FLOAT
14811/*
14812 * "round({float})" function
14813 */
14814 static void
14815f_round(argvars, rettv)
14816 typval_T *argvars;
14817 typval_T *rettv;
14818{
14819 float_T f;
14820
14821 rettv->v_type = VAR_FLOAT;
14822 if (get_float_arg(argvars, &f) == OK)
14823 /* round() is not in C90, use ceil() or floor() instead. */
14824 rettv->vval.v_float = f > 0 ? floor(f + 0.5) : ceil(f - 0.5);
14825 else
14826 rettv->vval.v_float = 0.0;
14827}
14828#endif
14829
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014830/*
14831 * "search()" function
14832 */
14833 static void
14834f_search(argvars, rettv)
14835 typval_T *argvars;
14836 typval_T *rettv;
14837{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014838 int flags = 0;
14839
14840 rettv->vval.v_number = search_cmn(argvars, NULL, &flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014841}
14842
Bram Moolenaar071d4272004-06-13 20:20:40 +000014843/*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014844 * "searchdecl()" function
14845 */
14846 static void
14847f_searchdecl(argvars, rettv)
14848 typval_T *argvars;
14849 typval_T *rettv;
14850{
14851 int locally = 1;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014852 int thisblock = 0;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014853 int error = FALSE;
14854 char_u *name;
14855
14856 rettv->vval.v_number = 1; /* default: FAIL */
14857
14858 name = get_tv_string_chk(&argvars[0]);
14859 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaare6facf92005-09-13 21:22:27 +000014860 {
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014861 locally = get_tv_number_chk(&argvars[1], &error) == 0;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014862 if (!error && argvars[2].v_type != VAR_UNKNOWN)
14863 thisblock = get_tv_number_chk(&argvars[2], &error) != 0;
14864 }
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014865 if (!error && name != NULL)
14866 rettv->vval.v_number = find_decl(name, (int)STRLEN(name),
Bram Moolenaare6facf92005-09-13 21:22:27 +000014867 locally, thisblock, SEARCH_KEEP) == FAIL;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014868}
14869
14870/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014871 * Used by searchpair() and searchpairpos()
Bram Moolenaar071d4272004-06-13 20:20:40 +000014872 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014873 static int
14874searchpair_cmn(argvars, match_pos)
Bram Moolenaar33570922005-01-25 22:26:29 +000014875 typval_T *argvars;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014876 pos_T *match_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014877{
14878 char_u *spat, *mpat, *epat;
14879 char_u *skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014880 int save_p_ws = p_ws;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014881 int dir;
14882 int flags = 0;
14883 char_u nbuf1[NUMBUFLEN];
14884 char_u nbuf2[NUMBUFLEN];
14885 char_u nbuf3[NUMBUFLEN];
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014886 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014887 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014888 long time_limit = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014889
Bram Moolenaar071d4272004-06-13 20:20:40 +000014890 /* Get the three pattern arguments: start, middle, end. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014891 spat = get_tv_string_chk(&argvars[0]);
14892 mpat = get_tv_string_buf_chk(&argvars[1], nbuf1);
14893 epat = get_tv_string_buf_chk(&argvars[2], nbuf2);
14894 if (spat == NULL || mpat == NULL || epat == NULL)
14895 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014896
Bram Moolenaar071d4272004-06-13 20:20:40 +000014897 /* Handle the optional fourth argument: flags */
14898 dir = get_search_arg(&argvars[3], &flags); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014899 if (dir == 0)
14900 goto theend;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014901
14902 /* Don't accept SP_END or SP_SUBPAT.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014903 * Only one of the SP_NOMOVE or SP_SETPCMARK flags can be set.
14904 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014905 if ((flags & (SP_END | SP_SUBPAT)) != 0
14906 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar231334e2005-07-25 20:46:57 +000014907 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014908 EMSG2(_(e_invarg2), get_tv_string(&argvars[3]));
Bram Moolenaar231334e2005-07-25 20:46:57 +000014909 goto theend;
14910 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014911
Bram Moolenaar92de73d2008-01-22 10:59:38 +000014912 /* Using 'r' implies 'W', otherwise it doesn't work. */
14913 if (flags & SP_REPEAT)
14914 p_ws = FALSE;
14915
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014916 /* Optional fifth argument: skip expression */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014917 if (argvars[3].v_type == VAR_UNKNOWN
14918 || argvars[4].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014919 skip = (char_u *)"";
14920 else
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014921 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014922 skip = get_tv_string_buf_chk(&argvars[4], nbuf3);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014923 if (argvars[5].v_type != VAR_UNKNOWN)
14924 {
14925 lnum_stop = get_tv_number_chk(&argvars[5], NULL);
14926 if (lnum_stop < 0)
14927 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014928#ifdef FEAT_RELTIME
14929 if (argvars[6].v_type != VAR_UNKNOWN)
14930 {
14931 time_limit = get_tv_number_chk(&argvars[6], NULL);
14932 if (time_limit < 0)
14933 goto theend;
14934 }
14935#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014936 }
14937 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014938 if (skip == NULL)
14939 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014940
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014941 retval = do_searchpair(spat, mpat, epat, dir, skip, flags,
Bram Moolenaar76929292008-01-06 19:07:36 +000014942 match_pos, lnum_stop, time_limit);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000014943
14944theend:
14945 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014946
14947 return retval;
14948}
14949
14950/*
14951 * "searchpair()" function
14952 */
14953 static void
14954f_searchpair(argvars, rettv)
14955 typval_T *argvars;
14956 typval_T *rettv;
14957{
14958 rettv->vval.v_number = searchpair_cmn(argvars, NULL);
14959}
14960
14961/*
14962 * "searchpairpos()" function
14963 */
14964 static void
14965f_searchpairpos(argvars, rettv)
14966 typval_T *argvars;
14967 typval_T *rettv;
14968{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014969 pos_T match_pos;
14970 int lnum = 0;
14971 int col = 0;
14972
14973 rettv->vval.v_number = 0;
14974
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014975 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014976 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014977
14978 if (searchpair_cmn(argvars, &match_pos) > 0)
14979 {
14980 lnum = match_pos.lnum;
14981 col = match_pos.col;
14982 }
14983
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014984 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
14985 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000014986}
14987
14988/*
14989 * Search for a start/middle/end thing.
14990 * Used by searchpair(), see its documentation for the details.
14991 * Returns 0 or -1 for no match,
14992 */
14993 long
Bram Moolenaar76929292008-01-06 19:07:36 +000014994do_searchpair(spat, mpat, epat, dir, skip, flags, match_pos,
14995 lnum_stop, time_limit)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000014996 char_u *spat; /* start pattern */
14997 char_u *mpat; /* middle pattern */
14998 char_u *epat; /* end pattern */
14999 int dir; /* BACKWARD or FORWARD */
15000 char_u *skip; /* skip expression */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000015001 int flags; /* SP_SETPCMARK and other SP_ values */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015002 pos_T *match_pos;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015003 linenr_T lnum_stop; /* stop at this line if not zero */
Bram Moolenaar76929292008-01-06 19:07:36 +000015004 long time_limit; /* stop after this many msec */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015005{
15006 char_u *save_cpo;
15007 char_u *pat, *pat2 = NULL, *pat3 = NULL;
15008 long retval = 0;
15009 pos_T pos;
15010 pos_T firstpos;
15011 pos_T foundpos;
15012 pos_T save_cursor;
15013 pos_T save_pos;
15014 int n;
15015 int r;
15016 int nest = 1;
15017 int err;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015018 int options = SEARCH_KEEP;
Bram Moolenaar76929292008-01-06 19:07:36 +000015019 proftime_T tm;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015020
15021 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
15022 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015023 p_cpo = empty_option;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015024
Bram Moolenaar76929292008-01-06 19:07:36 +000015025#ifdef FEAT_RELTIME
15026 /* Set the time limit, if there is one. */
15027 profile_setlimit(time_limit, &tm);
15028#endif
15029
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015030 /* Make two search patterns: start/end (pat2, for in nested pairs) and
15031 * start/middle/end (pat3, for the top pair). */
15032 pat2 = alloc((unsigned)(STRLEN(spat) + STRLEN(epat) + 15));
15033 pat3 = alloc((unsigned)(STRLEN(spat) + STRLEN(mpat) + STRLEN(epat) + 23));
15034 if (pat2 == NULL || pat3 == NULL)
15035 goto theend;
15036 sprintf((char *)pat2, "\\(%s\\m\\)\\|\\(%s\\m\\)", spat, epat);
15037 if (*mpat == NUL)
15038 STRCPY(pat3, pat2);
15039 else
15040 sprintf((char *)pat3, "\\(%s\\m\\)\\|\\(%s\\m\\)\\|\\(%s\\m\\)",
15041 spat, epat, mpat);
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015042 if (flags & SP_START)
15043 options |= SEARCH_START;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015044
Bram Moolenaar071d4272004-06-13 20:20:40 +000015045 save_cursor = curwin->w_cursor;
15046 pos = curwin->w_cursor;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000015047 clearpos(&firstpos);
15048 clearpos(&foundpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015049 pat = pat3;
15050 for (;;)
15051 {
15052 n = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000015053 options, RE_SEARCH, lnum_stop, &tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015054 if (n == FAIL || (firstpos.lnum != 0 && equalpos(pos, firstpos)))
15055 /* didn't find it or found the first match again: FAIL */
15056 break;
15057
15058 if (firstpos.lnum == 0)
15059 firstpos = pos;
Bram Moolenaarc9a2d2e2005-04-24 22:09:56 +000015060 if (equalpos(pos, foundpos))
15061 {
15062 /* Found the same position again. Can happen with a pattern that
15063 * has "\zs" at the end and searching backwards. Advance one
15064 * character and try again. */
15065 if (dir == BACKWARD)
15066 decl(&pos);
15067 else
15068 incl(&pos);
15069 }
15070 foundpos = pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015071
Bram Moolenaar92de73d2008-01-22 10:59:38 +000015072 /* clear the start flag to avoid getting stuck here */
15073 options &= ~SEARCH_START;
15074
Bram Moolenaar071d4272004-06-13 20:20:40 +000015075 /* If the skip pattern matches, ignore this match. */
15076 if (*skip != NUL)
15077 {
15078 save_pos = curwin->w_cursor;
15079 curwin->w_cursor = pos;
15080 r = eval_to_bool(skip, &err, NULL, FALSE);
15081 curwin->w_cursor = save_pos;
15082 if (err)
15083 {
15084 /* Evaluating {skip} caused an error, break here. */
15085 curwin->w_cursor = save_cursor;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015086 retval = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015087 break;
15088 }
15089 if (r)
15090 continue;
15091 }
15092
15093 if ((dir == BACKWARD && n == 3) || (dir == FORWARD && n == 2))
15094 {
15095 /* Found end when searching backwards or start when searching
15096 * forward: nested pair. */
15097 ++nest;
15098 pat = pat2; /* nested, don't search for middle */
15099 }
15100 else
15101 {
15102 /* Found end when searching forward or start when searching
15103 * backward: end of (nested) pair; or found middle in outer pair. */
15104 if (--nest == 1)
15105 pat = pat3; /* outer level, search for middle */
15106 }
15107
15108 if (nest == 0)
15109 {
15110 /* Found the match: return matchcount or line number. */
15111 if (flags & SP_RETCOUNT)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015112 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015113 else
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015114 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000015115 if (flags & SP_SETPCMARK)
15116 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000015117 curwin->w_cursor = pos;
15118 if (!(flags & SP_REPEAT))
15119 break;
15120 nest = 1; /* search for next unmatched */
15121 }
15122 }
15123
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015124 if (match_pos != NULL)
15125 {
15126 /* Store the match cursor position */
15127 match_pos->lnum = curwin->w_cursor.lnum;
15128 match_pos->col = curwin->w_cursor.col + 1;
15129 }
15130
Bram Moolenaar071d4272004-06-13 20:20:40 +000015131 /* If 'n' flag is used or search failed: restore cursor position. */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015132 if ((flags & SP_NOMOVE) || retval == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015133 curwin->w_cursor = save_cursor;
15134
15135theend:
15136 vim_free(pat2);
15137 vim_free(pat3);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015138 if (p_cpo == empty_option)
15139 p_cpo = save_cpo;
15140 else
15141 /* Darn, evaluating the {skip} expression changed the value. */
15142 free_string_option(save_cpo);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015143
15144 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015145}
15146
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015147/*
15148 * "searchpos()" function
15149 */
15150 static void
15151f_searchpos(argvars, rettv)
15152 typval_T *argvars;
15153 typval_T *rettv;
15154{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015155 pos_T match_pos;
15156 int lnum = 0;
15157 int col = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015158 int n;
15159 int flags = 0;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015160
15161 rettv->vval.v_number = 0;
15162
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015163 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015164 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015165
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015166 n = search_cmn(argvars, &match_pos, &flags);
15167 if (n > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015168 {
15169 lnum = match_pos.lnum;
15170 col = match_pos.col;
15171 }
15172
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015173 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15174 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015175 if (flags & SP_SUBPAT)
15176 list_append_number(rettv->vval.v_list, (varnumber_T)n);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015177}
15178
15179
Bram Moolenaar0d660222005-01-07 21:51:51 +000015180/*ARGSUSED*/
15181 static void
15182f_server2client(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015183 typval_T *argvars;
15184 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015185{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015186#ifdef FEAT_CLIENTSERVER
15187 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015188 char_u *server = get_tv_string_chk(&argvars[0]);
15189 char_u *reply = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015190
Bram Moolenaar0d660222005-01-07 21:51:51 +000015191 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015192 if (server == NULL || reply == NULL)
15193 return;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015194 if (check_restricted() || check_secure())
15195 return;
15196# ifdef FEAT_X11
15197 if (check_connection() == FAIL)
15198 return;
15199# endif
15200
15201 if (serverSendReply(server, reply) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015202 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015203 EMSG(_("E258: Unable to send to client"));
15204 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015205 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015206 rettv->vval.v_number = 0;
15207#else
15208 rettv->vval.v_number = -1;
15209#endif
15210}
15211
15212/*ARGSUSED*/
15213 static void
15214f_serverlist(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015215 typval_T *argvars;
15216 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015217{
15218 char_u *r = NULL;
15219
15220#ifdef FEAT_CLIENTSERVER
15221# ifdef WIN32
15222 r = serverGetVimNames();
15223# else
15224 make_connection();
15225 if (X_DISPLAY != NULL)
15226 r = serverGetVimNames(X_DISPLAY);
15227# endif
15228#endif
15229 rettv->v_type = VAR_STRING;
15230 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015231}
15232
15233/*
15234 * "setbufvar()" function
15235 */
15236/*ARGSUSED*/
15237 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015238f_setbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015239 typval_T *argvars;
15240 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015241{
15242 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015243 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015244 char_u *varname, *bufvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015245 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015246 char_u nbuf[NUMBUFLEN];
15247
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015248 rettv->vval.v_number = 0;
15249
Bram Moolenaar071d4272004-06-13 20:20:40 +000015250 if (check_restricted() || check_secure())
15251 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015252 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
15253 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015254 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015255 varp = &argvars[2];
15256
15257 if (buf != NULL && varname != NULL && varp != NULL)
15258 {
15259 /* set curbuf to be our buf, temporarily */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015260 aucmd_prepbuf(&aco, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015261
15262 if (*varname == '&')
15263 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015264 long numval;
15265 char_u *strval;
15266 int error = FALSE;
15267
Bram Moolenaar071d4272004-06-13 20:20:40 +000015268 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015269 numval = get_tv_number_chk(varp, &error);
15270 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015271 if (!error && strval != NULL)
15272 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015273 }
15274 else
15275 {
15276 bufvarname = alloc((unsigned)STRLEN(varname) + 3);
15277 if (bufvarname != NULL)
15278 {
15279 STRCPY(bufvarname, "b:");
15280 STRCPY(bufvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015281 set_var(bufvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015282 vim_free(bufvarname);
15283 }
15284 }
15285
15286 /* reset notion of buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015287 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015288 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015289}
15290
15291/*
15292 * "setcmdpos()" function
15293 */
15294 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015295f_setcmdpos(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015296 typval_T *argvars;
15297 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015298{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015299 int pos = (int)get_tv_number(&argvars[0]) - 1;
15300
15301 if (pos >= 0)
15302 rettv->vval.v_number = set_cmdline_pos(pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015303}
15304
15305/*
15306 * "setline()" function
15307 */
15308 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015309f_setline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015310 typval_T *argvars;
15311 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015312{
15313 linenr_T lnum;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +000015314 char_u *line = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015315 list_T *l = NULL;
15316 listitem_T *li = NULL;
15317 long added = 0;
15318 linenr_T lcount = curbuf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015319
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015320 lnum = get_tv_lnum(&argvars[0]);
15321 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015322 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015323 l = argvars[1].vval.v_list;
15324 li = l->lv_first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015325 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015326 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015327 line = get_tv_string_chk(&argvars[1]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015328
15329 rettv->vval.v_number = 0; /* OK */
15330 for (;;)
15331 {
15332 if (l != NULL)
15333 {
15334 /* list argument, get next string */
15335 if (li == NULL)
15336 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015337 line = get_tv_string_chk(&li->li_tv);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015338 li = li->li_next;
15339 }
15340
15341 rettv->vval.v_number = 1; /* FAIL */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015342 if (line == NULL || lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015343 break;
15344 if (lnum <= curbuf->b_ml.ml_line_count)
15345 {
15346 /* existing line, replace it */
15347 if (u_savesub(lnum) == OK && ml_replace(lnum, line, TRUE) == OK)
15348 {
15349 changed_bytes(lnum, 0);
Bram Moolenaar87c19962007-04-26 08:54:21 +000015350 if (lnum == curwin->w_cursor.lnum)
15351 check_cursor_col();
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015352 rettv->vval.v_number = 0; /* OK */
15353 }
15354 }
15355 else if (added > 0 || u_save(lnum - 1, lnum) == OK)
15356 {
15357 /* lnum is one past the last line, append the line */
15358 ++added;
15359 if (ml_append(lnum - 1, line, (colnr_T)0, FALSE) == OK)
15360 rettv->vval.v_number = 0; /* OK */
15361 }
15362
15363 if (l == NULL) /* only one string argument */
15364 break;
15365 ++lnum;
15366 }
15367
15368 if (added > 0)
15369 appended_lines_mark(lcount, added);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015370}
15371
Bram Moolenaard9ff7d52008-03-20 12:23:49 +000015372static void set_qf_ll_list __ARGS((win_T *wp, typval_T *list_arg, typval_T *action_arg, typval_T *rettv));
15373
Bram Moolenaar071d4272004-06-13 20:20:40 +000015374/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015375 * Used by "setqflist()" and "setloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000015376 */
15377/*ARGSUSED*/
15378 static void
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015379set_qf_ll_list(wp, list_arg, action_arg, rettv)
15380 win_T *wp;
15381 typval_T *list_arg;
15382 typval_T *action_arg;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015383 typval_T *rettv;
15384{
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015385#ifdef FEAT_QUICKFIX
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015386 char_u *act;
15387 int action = ' ';
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015388#endif
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015389
Bram Moolenaar2641f772005-03-25 21:58:17 +000015390 rettv->vval.v_number = -1;
15391
15392#ifdef FEAT_QUICKFIX
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015393 if (list_arg->v_type != VAR_LIST)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015394 EMSG(_(e_listreq));
15395 else
15396 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015397 list_T *l = list_arg->vval.v_list;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015398
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015399 if (action_arg->v_type == VAR_STRING)
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015400 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015401 act = get_tv_string_chk(action_arg);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015402 if (act == NULL)
15403 return; /* type error; errmsg already given */
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015404 if (*act == 'a' || *act == 'r')
15405 action = *act;
15406 }
15407
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015408 if (l != NULL && set_errorlist(wp, l, action) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015409 rettv->vval.v_number = 0;
15410 }
15411#endif
15412}
15413
15414/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015415 * "setloclist()" function
15416 */
15417/*ARGSUSED*/
15418 static void
15419f_setloclist(argvars, rettv)
15420 typval_T *argvars;
15421 typval_T *rettv;
15422{
15423 win_T *win;
15424
15425 rettv->vval.v_number = -1;
15426
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015427 win = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015428 if (win != NULL)
15429 set_qf_ll_list(win, &argvars[1], &argvars[2], rettv);
15430}
15431
15432/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000015433 * "setmatches()" function
15434 */
15435 static void
15436f_setmatches(argvars, rettv)
15437 typval_T *argvars;
15438 typval_T *rettv;
15439{
15440#ifdef FEAT_SEARCH_EXTRA
15441 list_T *l;
15442 listitem_T *li;
15443 dict_T *d;
15444
15445 rettv->vval.v_number = -1;
15446 if (argvars[0].v_type != VAR_LIST)
15447 {
15448 EMSG(_(e_listreq));
15449 return;
15450 }
15451 if ((l = argvars[0].vval.v_list) != NULL)
15452 {
15453
15454 /* To some extent make sure that we are dealing with a list from
15455 * "getmatches()". */
15456 li = l->lv_first;
15457 while (li != NULL)
15458 {
15459 if (li->li_tv.v_type != VAR_DICT
15460 || (d = li->li_tv.vval.v_dict) == NULL)
15461 {
15462 EMSG(_(e_invarg));
15463 return;
15464 }
15465 if (!(dict_find(d, (char_u *)"group", -1) != NULL
15466 && dict_find(d, (char_u *)"pattern", -1) != NULL
15467 && dict_find(d, (char_u *)"priority", -1) != NULL
15468 && dict_find(d, (char_u *)"id", -1) != NULL))
15469 {
15470 EMSG(_(e_invarg));
15471 return;
15472 }
15473 li = li->li_next;
15474 }
15475
15476 clear_matches(curwin);
15477 li = l->lv_first;
15478 while (li != NULL)
15479 {
15480 d = li->li_tv.vval.v_dict;
15481 match_add(curwin, get_dict_string(d, (char_u *)"group", FALSE),
15482 get_dict_string(d, (char_u *)"pattern", FALSE),
15483 (int)get_dict_number(d, (char_u *)"priority"),
15484 (int)get_dict_number(d, (char_u *)"id"));
15485 li = li->li_next;
15486 }
15487 rettv->vval.v_number = 0;
15488 }
15489#endif
15490}
15491
15492/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015493 * "setpos()" function
15494 */
15495/*ARGSUSED*/
15496 static void
15497f_setpos(argvars, rettv)
15498 typval_T *argvars;
15499 typval_T *rettv;
15500{
15501 pos_T pos;
15502 int fnum;
15503 char_u *name;
15504
Bram Moolenaar08250432008-02-13 11:42:46 +000015505 rettv->vval.v_number = -1;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015506 name = get_tv_string_chk(argvars);
15507 if (name != NULL)
15508 {
15509 if (list2fpos(&argvars[1], &pos, &fnum) == OK)
15510 {
15511 --pos.col;
Bram Moolenaar08250432008-02-13 11:42:46 +000015512 if (name[0] == '.' && name[1] == NUL)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015513 {
Bram Moolenaar08250432008-02-13 11:42:46 +000015514 /* set cursor */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015515 if (fnum == curbuf->b_fnum)
15516 {
15517 curwin->w_cursor = pos;
15518 check_cursor();
Bram Moolenaar08250432008-02-13 11:42:46 +000015519 rettv->vval.v_number = 0;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015520 }
15521 else
15522 EMSG(_(e_invarg));
15523 }
Bram Moolenaar08250432008-02-13 11:42:46 +000015524 else if (name[0] == '\'' && name[1] != NUL && name[2] == NUL)
15525 {
15526 /* set mark */
15527 if (setmark_pos(name[1], &pos, fnum) == OK)
15528 rettv->vval.v_number = 0;
15529 }
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015530 else
15531 EMSG(_(e_invarg));
15532 }
15533 }
15534}
15535
15536/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015537 * "setqflist()" function
15538 */
15539/*ARGSUSED*/
15540 static void
15541f_setqflist(argvars, rettv)
15542 typval_T *argvars;
15543 typval_T *rettv;
15544{
15545 set_qf_ll_list(NULL, &argvars[0], &argvars[1], rettv);
15546}
15547
15548/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000015549 * "setreg()" function
15550 */
15551 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015552f_setreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015553 typval_T *argvars;
15554 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015555{
15556 int regname;
15557 char_u *strregname;
15558 char_u *stropt;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015559 char_u *strval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015560 int append;
15561 char_u yank_type;
15562 long block_len;
15563
15564 block_len = -1;
15565 yank_type = MAUTO;
15566 append = FALSE;
15567
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015568 strregname = get_tv_string_chk(argvars);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015569 rettv->vval.v_number = 1; /* FAIL is default */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015570
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015571 if (strregname == NULL)
15572 return; /* type error; errmsg already given */
15573 regname = *strregname;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015574 if (regname == 0 || regname == '@')
15575 regname = '"';
15576 else if (regname == '=')
15577 return;
15578
Bram Moolenaar49cd9572005-01-03 21:06:01 +000015579 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015580 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015581 stropt = get_tv_string_chk(&argvars[2]);
15582 if (stropt == NULL)
15583 return; /* type error */
15584 for (; *stropt != NUL; ++stropt)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015585 switch (*stropt)
15586 {
15587 case 'a': case 'A': /* append */
15588 append = TRUE;
15589 break;
15590 case 'v': case 'c': /* character-wise selection */
15591 yank_type = MCHAR;
15592 break;
15593 case 'V': case 'l': /* line-wise selection */
15594 yank_type = MLINE;
15595 break;
15596#ifdef FEAT_VISUAL
15597 case 'b': case Ctrl_V: /* block-wise selection */
15598 yank_type = MBLOCK;
15599 if (VIM_ISDIGIT(stropt[1]))
15600 {
15601 ++stropt;
15602 block_len = getdigits(&stropt) - 1;
15603 --stropt;
15604 }
15605 break;
15606#endif
15607 }
15608 }
15609
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015610 strval = get_tv_string_chk(&argvars[1]);
15611 if (strval != NULL)
15612 write_reg_contents_ex(regname, strval, -1,
Bram Moolenaar071d4272004-06-13 20:20:40 +000015613 append, yank_type, block_len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015614 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015615}
15616
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015617/*
15618 * "settabwinvar()" function
15619 */
15620 static void
15621f_settabwinvar(argvars, rettv)
15622 typval_T *argvars;
15623 typval_T *rettv;
15624{
15625 setwinvar(argvars, rettv, 1);
15626}
Bram Moolenaar071d4272004-06-13 20:20:40 +000015627
15628/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015629 * "setwinvar()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015630 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015631 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015632f_setwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015633 typval_T *argvars;
15634 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015635{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015636 setwinvar(argvars, rettv, 0);
15637}
15638
15639/*
15640 * "setwinvar()" and "settabwinvar()" functions
15641 */
15642 static void
15643setwinvar(argvars, rettv, off)
15644 typval_T *argvars;
15645 typval_T *rettv;
15646 int off;
15647{
Bram Moolenaar071d4272004-06-13 20:20:40 +000015648 win_T *win;
15649#ifdef FEAT_WINDOWS
15650 win_T *save_curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015651 tabpage_T *save_curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015652#endif
15653 char_u *varname, *winvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015654 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015655 char_u nbuf[NUMBUFLEN];
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015656 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015657
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015658 rettv->vval.v_number = 0;
15659
Bram Moolenaar071d4272004-06-13 20:20:40 +000015660 if (check_restricted() || check_secure())
15661 return;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015662
15663#ifdef FEAT_WINDOWS
15664 if (off == 1)
15665 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
15666 else
15667 tp = curtab;
15668#endif
15669 win = find_win_by_nr(&argvars[off], tp);
15670 varname = get_tv_string_chk(&argvars[off + 1]);
15671 varp = &argvars[off + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015672
15673 if (win != NULL && varname != NULL && varp != NULL)
15674 {
15675#ifdef FEAT_WINDOWS
15676 /* set curwin to be our win, temporarily */
15677 save_curwin = curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015678 save_curtab = curtab;
15679 goto_tabpage_tp(tp);
15680 if (!win_valid(win))
15681 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015682 curwin = win;
15683 curbuf = curwin->w_buffer;
15684#endif
15685
15686 if (*varname == '&')
15687 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015688 long numval;
15689 char_u *strval;
15690 int error = FALSE;
15691
Bram Moolenaar071d4272004-06-13 20:20:40 +000015692 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015693 numval = get_tv_number_chk(varp, &error);
15694 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015695 if (!error && strval != NULL)
15696 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015697 }
15698 else
15699 {
15700 winvarname = alloc((unsigned)STRLEN(varname) + 3);
15701 if (winvarname != NULL)
15702 {
15703 STRCPY(winvarname, "w:");
15704 STRCPY(winvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015705 set_var(winvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015706 vim_free(winvarname);
15707 }
15708 }
15709
15710#ifdef FEAT_WINDOWS
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015711 /* Restore current tabpage and window, if still valid (autocomands can
15712 * make them invalid). */
15713 if (valid_tabpage(save_curtab))
15714 goto_tabpage_tp(save_curtab);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015715 if (win_valid(save_curwin))
15716 {
15717 curwin = save_curwin;
15718 curbuf = curwin->w_buffer;
15719 }
15720#endif
15721 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015722}
15723
15724/*
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015725 * "shellescape({string})" function
15726 */
15727 static void
15728f_shellescape(argvars, rettv)
15729 typval_T *argvars;
15730 typval_T *rettv;
15731{
Bram Moolenaar05bb9532008-07-04 09:44:11 +000015732 rettv->vval.v_string = vim_strsave_shellescape(
15733 get_tv_string(&argvars[0]), non_zero_arg(&argvars[1]));
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015734 rettv->v_type = VAR_STRING;
15735}
15736
15737/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015738 * "simplify()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015739 */
15740 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015741f_simplify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015742 typval_T *argvars;
15743 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015744{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015745 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015746
Bram Moolenaar0d660222005-01-07 21:51:51 +000015747 p = get_tv_string(&argvars[0]);
15748 rettv->vval.v_string = vim_strsave(p);
15749 simplify_filename(rettv->vval.v_string); /* simplify in place */
15750 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015751}
15752
Bram Moolenaar8c8de832008-06-24 22:58:06 +000015753#ifdef FEAT_FLOAT
15754/*
15755 * "sin()" function
15756 */
15757 static void
15758f_sin(argvars, rettv)
15759 typval_T *argvars;
15760 typval_T *rettv;
15761{
15762 float_T f;
15763
15764 rettv->v_type = VAR_FLOAT;
15765 if (get_float_arg(argvars, &f) == OK)
15766 rettv->vval.v_float = sin(f);
15767 else
15768 rettv->vval.v_float = 0.0;
15769}
15770#endif
15771
Bram Moolenaar0d660222005-01-07 21:51:51 +000015772static int
15773#ifdef __BORLANDC__
15774 _RTLENTRYF
15775#endif
15776 item_compare __ARGS((const void *s1, const void *s2));
15777static int
15778#ifdef __BORLANDC__
15779 _RTLENTRYF
15780#endif
15781 item_compare2 __ARGS((const void *s1, const void *s2));
15782
15783static int item_compare_ic;
15784static char_u *item_compare_func;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015785static int item_compare_func_err;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015786#define ITEM_COMPARE_FAIL 999
15787
Bram Moolenaar071d4272004-06-13 20:20:40 +000015788/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015789 * Compare functions for f_sort() below.
Bram Moolenaar071d4272004-06-13 20:20:40 +000015790 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015791 static int
15792#ifdef __BORLANDC__
15793_RTLENTRYF
15794#endif
15795item_compare(s1, s2)
15796 const void *s1;
15797 const void *s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015798{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015799 char_u *p1, *p2;
15800 char_u *tofree1, *tofree2;
15801 int res;
15802 char_u numbuf1[NUMBUFLEN];
15803 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015804
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000015805 p1 = tv2string(&(*(listitem_T **)s1)->li_tv, &tofree1, numbuf1, 0);
15806 p2 = tv2string(&(*(listitem_T **)s2)->li_tv, &tofree2, numbuf2, 0);
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000015807 if (p1 == NULL)
15808 p1 = (char_u *)"";
15809 if (p2 == NULL)
15810 p2 = (char_u *)"";
Bram Moolenaar0d660222005-01-07 21:51:51 +000015811 if (item_compare_ic)
15812 res = STRICMP(p1, p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015813 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015814 res = STRCMP(p1, p2);
15815 vim_free(tofree1);
15816 vim_free(tofree2);
15817 return res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015818}
15819
15820 static int
Bram Moolenaar0d660222005-01-07 21:51:51 +000015821#ifdef __BORLANDC__
15822_RTLENTRYF
Bram Moolenaar071d4272004-06-13 20:20:40 +000015823#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +000015824item_compare2(s1, s2)
15825 const void *s1;
15826 const void *s2;
15827{
15828 int res;
Bram Moolenaar33570922005-01-25 22:26:29 +000015829 typval_T rettv;
Bram Moolenaareb3593b2006-04-22 22:33:57 +000015830 typval_T argv[3];
Bram Moolenaar0d660222005-01-07 21:51:51 +000015831 int dummy;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015832
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015833 /* shortcut after failure in previous call; compare all items equal */
15834 if (item_compare_func_err)
15835 return 0;
15836
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015837 /* copy the values. This is needed to be able to set v_lock to VAR_FIXED
15838 * in the copy without changing the original list items. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015839 copy_tv(&(*(listitem_T **)s1)->li_tv, &argv[0]);
15840 copy_tv(&(*(listitem_T **)s2)->li_tv, &argv[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015841
15842 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000015843 res = call_func(item_compare_func, (int)STRLEN(item_compare_func),
Bram Moolenaare9a41262005-01-15 22:18:47 +000015844 &rettv, 2, argv, 0L, 0L, &dummy, TRUE, NULL);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015845 clear_tv(&argv[0]);
15846 clear_tv(&argv[1]);
15847
15848 if (res == FAIL)
15849 res = ITEM_COMPARE_FAIL;
15850 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015851 res = get_tv_number_chk(&rettv, &item_compare_func_err);
15852 if (item_compare_func_err)
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000015853 res = ITEM_COMPARE_FAIL; /* return value has wrong type */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015854 clear_tv(&rettv);
15855 return res;
15856}
15857
15858/*
15859 * "sort({list})" function
15860 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015861 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015862f_sort(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015863 typval_T *argvars;
15864 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015865{
Bram Moolenaar33570922005-01-25 22:26:29 +000015866 list_T *l;
15867 listitem_T *li;
15868 listitem_T **ptrs;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015869 long len;
15870 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015871
Bram Moolenaar0d660222005-01-07 21:51:51 +000015872 rettv->vval.v_number = 0;
15873 if (argvars[0].v_type != VAR_LIST)
15874 EMSG2(_(e_listarg), "sort()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000015875 else
15876 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015877 l = argvars[0].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015878 if (l == NULL || tv_check_lock(l->lv_lock, (char_u *)"sort()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000015879 return;
15880 rettv->vval.v_list = l;
15881 rettv->v_type = VAR_LIST;
15882 ++l->lv_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015883
Bram Moolenaar0d660222005-01-07 21:51:51 +000015884 len = list_len(l);
15885 if (len <= 1)
15886 return; /* short list sorts pretty quickly */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015887
Bram Moolenaar0d660222005-01-07 21:51:51 +000015888 item_compare_ic = FALSE;
15889 item_compare_func = NULL;
15890 if (argvars[1].v_type != VAR_UNKNOWN)
15891 {
15892 if (argvars[1].v_type == VAR_FUNC)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015893 item_compare_func = argvars[1].vval.v_string;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015894 else
15895 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015896 int error = FALSE;
15897
15898 i = get_tv_number_chk(&argvars[1], &error);
15899 if (error)
15900 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015901 if (i == 1)
15902 item_compare_ic = TRUE;
15903 else
15904 item_compare_func = get_tv_string(&argvars[1]);
15905 }
15906 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015907
Bram Moolenaar0d660222005-01-07 21:51:51 +000015908 /* Make an array with each entry pointing to an item in the List. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015909 ptrs = (listitem_T **)alloc((int)(len * sizeof(listitem_T *)));
Bram Moolenaar0d660222005-01-07 21:51:51 +000015910 if (ptrs == NULL)
15911 return;
15912 i = 0;
15913 for (li = l->lv_first; li != NULL; li = li->li_next)
15914 ptrs[i++] = li;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015915
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015916 item_compare_func_err = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015917 /* test the compare function */
15918 if (item_compare_func != NULL
15919 && item_compare2((void *)&ptrs[0], (void *)&ptrs[1])
15920 == ITEM_COMPARE_FAIL)
Bram Moolenaare49b69a2005-01-08 16:11:57 +000015921 EMSG(_("E702: Sort compare function failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000015922 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015923 {
15924 /* Sort the array with item pointers. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015925 qsort((void *)ptrs, (size_t)len, sizeof(listitem_T *),
Bram Moolenaar0d660222005-01-07 21:51:51 +000015926 item_compare_func == NULL ? item_compare : item_compare2);
15927
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015928 if (!item_compare_func_err)
15929 {
15930 /* Clear the List and append the items in the sorted order. */
Bram Moolenaar52514562008-04-01 11:12:09 +000015931 l->lv_first = l->lv_last = l->lv_idx_item = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015932 l->lv_len = 0;
15933 for (i = 0; i < len; ++i)
15934 list_append(l, ptrs[i]);
15935 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015936 }
15937
15938 vim_free(ptrs);
15939 }
15940}
15941
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015942/*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015943 * "soundfold({word})" function
15944 */
15945 static void
15946f_soundfold(argvars, rettv)
15947 typval_T *argvars;
15948 typval_T *rettv;
15949{
15950 char_u *s;
15951
15952 rettv->v_type = VAR_STRING;
15953 s = get_tv_string(&argvars[0]);
Bram Moolenaar3c56a962006-03-12 22:19:04 +000015954#ifdef FEAT_SPELL
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015955 rettv->vval.v_string = eval_soundfold(s);
15956#else
15957 rettv->vval.v_string = vim_strsave(s);
15958#endif
15959}
15960
15961/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015962 * "spellbadword()" function
15963 */
15964/* ARGSUSED */
15965 static void
15966f_spellbadword(argvars, rettv)
15967 typval_T *argvars;
15968 typval_T *rettv;
15969{
Bram Moolenaar4463f292005-09-25 22:20:24 +000015970 char_u *word = (char_u *)"";
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000015971 hlf_T attr = HLF_COUNT;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015972 int len = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015973
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015974 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar4463f292005-09-25 22:20:24 +000015975 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015976
Bram Moolenaar3c56a962006-03-12 22:19:04 +000015977#ifdef FEAT_SPELL
Bram Moolenaar4463f292005-09-25 22:20:24 +000015978 if (argvars[0].v_type == VAR_UNKNOWN)
15979 {
15980 /* Find the start and length of the badly spelled word. */
15981 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, &attr);
15982 if (len != 0)
15983 word = ml_get_cursor();
15984 }
15985 else if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
15986 {
15987 char_u *str = get_tv_string_chk(&argvars[0]);
15988 int capcol = -1;
15989
15990 if (str != NULL)
15991 {
15992 /* Check the argument for spelling. */
15993 while (*str != NUL)
15994 {
Bram Moolenaar4770d092006-01-12 23:22:24 +000015995 len = spell_check(curwin, str, &attr, &capcol, FALSE);
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000015996 if (attr != HLF_COUNT)
Bram Moolenaar4463f292005-09-25 22:20:24 +000015997 {
15998 word = str;
15999 break;
16000 }
16001 str += len;
16002 }
16003 }
16004 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016005#endif
Bram Moolenaar4463f292005-09-25 22:20:24 +000016006
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016007 list_append_string(rettv->vval.v_list, word, len);
16008 list_append_string(rettv->vval.v_list, (char_u *)(
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016009 attr == HLF_SPB ? "bad" :
16010 attr == HLF_SPR ? "rare" :
16011 attr == HLF_SPL ? "local" :
16012 attr == HLF_SPC ? "caps" :
16013 ""), -1);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016014}
16015
16016/*
16017 * "spellsuggest()" function
16018 */
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016019/*ARGSUSED*/
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016020 static void
16021f_spellsuggest(argvars, rettv)
16022 typval_T *argvars;
16023 typval_T *rettv;
16024{
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016025#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016026 char_u *str;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016027 int typeerr = FALSE;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016028 int maxcount;
16029 garray_T ga;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016030 int i;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016031 listitem_T *li;
16032 int need_capital = FALSE;
16033#endif
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016034
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016035 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016036 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016037
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016038#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016039 if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16040 {
16041 str = get_tv_string(&argvars[0]);
16042 if (argvars[1].v_type != VAR_UNKNOWN)
16043 {
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016044 maxcount = get_tv_number_chk(&argvars[1], &typeerr);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016045 if (maxcount <= 0)
16046 return;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016047 if (argvars[2].v_type != VAR_UNKNOWN)
16048 {
16049 need_capital = get_tv_number_chk(&argvars[2], &typeerr);
16050 if (typeerr)
16051 return;
16052 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016053 }
16054 else
16055 maxcount = 25;
16056
Bram Moolenaar4770d092006-01-12 23:22:24 +000016057 spell_suggest_list(&ga, str, maxcount, need_capital, FALSE);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016058
16059 for (i = 0; i < ga.ga_len; ++i)
16060 {
16061 str = ((char_u **)ga.ga_data)[i];
16062
16063 li = listitem_alloc();
16064 if (li == NULL)
16065 vim_free(str);
16066 else
16067 {
16068 li->li_tv.v_type = VAR_STRING;
16069 li->li_tv.v_lock = 0;
16070 li->li_tv.vval.v_string = str;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016071 list_append(rettv->vval.v_list, li);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016072 }
16073 }
16074 ga_clear(&ga);
16075 }
16076#endif
16077}
16078
Bram Moolenaar0d660222005-01-07 21:51:51 +000016079 static void
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000016080f_split(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016081 typval_T *argvars;
16082 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016083{
16084 char_u *str;
16085 char_u *end;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016086 char_u *pat = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016087 regmatch_T regmatch;
16088 char_u patbuf[NUMBUFLEN];
16089 char_u *save_cpo;
16090 int match;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016091 colnr_T col = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016092 int keepempty = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016093 int typeerr = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016094
16095 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
16096 save_cpo = p_cpo;
16097 p_cpo = (char_u *)"";
16098
16099 str = get_tv_string(&argvars[0]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016100 if (argvars[1].v_type != VAR_UNKNOWN)
16101 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016102 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16103 if (pat == NULL)
16104 typeerr = TRUE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016105 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016106 keepempty = get_tv_number_chk(&argvars[2], &typeerr);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016107 }
16108 if (pat == NULL || *pat == NUL)
16109 pat = (char_u *)"[\\x01- ]\\+";
Bram Moolenaar0d660222005-01-07 21:51:51 +000016110
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016111 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016112 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016113 if (typeerr)
16114 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016115
Bram Moolenaar0d660222005-01-07 21:51:51 +000016116 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
16117 if (regmatch.regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016118 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016119 regmatch.rm_ic = FALSE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016120 while (*str != NUL || keepempty)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016121 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016122 if (*str == NUL)
16123 match = FALSE; /* empty item at the end */
16124 else
16125 match = vim_regexec_nl(&regmatch, str, col);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016126 if (match)
16127 end = regmatch.startp[0];
16128 else
16129 end = str + STRLEN(str);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016130 if (keepempty || end > str || (rettv->vval.v_list->lv_len > 0
16131 && *str != NUL && match && end < regmatch.endp[0]))
Bram Moolenaar0d660222005-01-07 21:51:51 +000016132 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016133 if (list_append_string(rettv->vval.v_list, str,
16134 (int)(end - str)) == FAIL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016135 break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016136 }
16137 if (!match)
16138 break;
16139 /* Advance to just after the match. */
16140 if (regmatch.endp[0] > str)
16141 col = 0;
16142 else
16143 {
16144 /* Don't get stuck at the same match. */
16145#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000016146 col = (*mb_ptr2len)(regmatch.endp[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016147#else
16148 col = 1;
16149#endif
16150 }
16151 str = regmatch.endp[0];
16152 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016153
Bram Moolenaar0d660222005-01-07 21:51:51 +000016154 vim_free(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016155 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016156
Bram Moolenaar0d660222005-01-07 21:51:51 +000016157 p_cpo = save_cpo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016158}
16159
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016160#ifdef FEAT_FLOAT
16161/*
16162 * "sqrt()" function
16163 */
16164 static void
16165f_sqrt(argvars, rettv)
16166 typval_T *argvars;
16167 typval_T *rettv;
16168{
16169 float_T f;
16170
16171 rettv->v_type = VAR_FLOAT;
16172 if (get_float_arg(argvars, &f) == OK)
16173 rettv->vval.v_float = sqrt(f);
16174 else
16175 rettv->vval.v_float = 0.0;
16176}
16177
16178/*
16179 * "str2float()" function
16180 */
16181 static void
16182f_str2float(argvars, rettv)
16183 typval_T *argvars;
16184 typval_T *rettv;
16185{
16186 char_u *p = skipwhite(get_tv_string(&argvars[0]));
16187
16188 if (*p == '+')
16189 p = skipwhite(p + 1);
16190 (void)string2float(p, &rettv->vval.v_float);
16191 rettv->v_type = VAR_FLOAT;
16192}
16193#endif
16194
Bram Moolenaar2c932302006-03-18 21:42:09 +000016195/*
16196 * "str2nr()" function
16197 */
16198 static void
16199f_str2nr(argvars, rettv)
16200 typval_T *argvars;
16201 typval_T *rettv;
16202{
16203 int base = 10;
16204 char_u *p;
16205 long n;
16206
16207 if (argvars[1].v_type != VAR_UNKNOWN)
16208 {
16209 base = get_tv_number(&argvars[1]);
16210 if (base != 8 && base != 10 && base != 16)
16211 {
16212 EMSG(_(e_invarg));
16213 return;
16214 }
16215 }
16216
16217 p = skipwhite(get_tv_string(&argvars[0]));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016218 if (*p == '+')
16219 p = skipwhite(p + 1);
Bram Moolenaar2c932302006-03-18 21:42:09 +000016220 vim_str2nr(p, NULL, NULL, base == 8 ? 2 : 0, base == 16 ? 2 : 0, &n, NULL);
16221 rettv->vval.v_number = n;
16222}
16223
Bram Moolenaar071d4272004-06-13 20:20:40 +000016224#ifdef HAVE_STRFTIME
16225/*
16226 * "strftime({format}[, {time}])" function
16227 */
16228 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016229f_strftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016230 typval_T *argvars;
16231 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016232{
16233 char_u result_buf[256];
16234 struct tm *curtime;
16235 time_t seconds;
16236 char_u *p;
16237
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016238 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016239
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016240 p = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016241 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016242 seconds = time(NULL);
16243 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016244 seconds = (time_t)get_tv_number(&argvars[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016245 curtime = localtime(&seconds);
16246 /* MSVC returns NULL for an invalid value of seconds. */
16247 if (curtime == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016248 rettv->vval.v_string = vim_strsave((char_u *)_("(Invalid)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016249 else
16250 {
16251# ifdef FEAT_MBYTE
16252 vimconv_T conv;
16253 char_u *enc;
16254
16255 conv.vc_type = CONV_NONE;
16256 enc = enc_locale();
16257 convert_setup(&conv, p_enc, enc);
16258 if (conv.vc_type != CONV_NONE)
16259 p = string_convert(&conv, p, NULL);
16260# endif
16261 if (p != NULL)
16262 (void)strftime((char *)result_buf, sizeof(result_buf),
16263 (char *)p, curtime);
16264 else
16265 result_buf[0] = NUL;
16266
16267# ifdef FEAT_MBYTE
16268 if (conv.vc_type != CONV_NONE)
16269 vim_free(p);
16270 convert_setup(&conv, enc, p_enc);
16271 if (conv.vc_type != CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016272 rettv->vval.v_string = string_convert(&conv, result_buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016273 else
16274# endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016275 rettv->vval.v_string = vim_strsave(result_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016276
16277# ifdef FEAT_MBYTE
16278 /* Release conversion descriptors */
16279 convert_setup(&conv, NULL, NULL);
16280 vim_free(enc);
16281# endif
16282 }
16283}
16284#endif
16285
16286/*
16287 * "stridx()" function
16288 */
16289 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016290f_stridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016291 typval_T *argvars;
16292 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016293{
16294 char_u buf[NUMBUFLEN];
16295 char_u *needle;
16296 char_u *haystack;
Bram Moolenaar33570922005-01-25 22:26:29 +000016297 char_u *save_haystack;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016298 char_u *pos;
Bram Moolenaar33570922005-01-25 22:26:29 +000016299 int start_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016300
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016301 needle = get_tv_string_chk(&argvars[1]);
16302 save_haystack = haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar33570922005-01-25 22:26:29 +000016303 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016304 if (needle == NULL || haystack == NULL)
16305 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016306
Bram Moolenaar33570922005-01-25 22:26:29 +000016307 if (argvars[2].v_type != VAR_UNKNOWN)
16308 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016309 int error = FALSE;
16310
16311 start_idx = get_tv_number_chk(&argvars[2], &error);
16312 if (error || start_idx >= (int)STRLEN(haystack))
Bram Moolenaar33570922005-01-25 22:26:29 +000016313 return;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016314 if (start_idx >= 0)
16315 haystack += start_idx;
Bram Moolenaar33570922005-01-25 22:26:29 +000016316 }
16317
16318 pos = (char_u *)strstr((char *)haystack, (char *)needle);
16319 if (pos != NULL)
16320 rettv->vval.v_number = (varnumber_T)(pos - save_haystack);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016321}
16322
16323/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016324 * "string()" function
16325 */
16326 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016327f_string(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016328 typval_T *argvars;
16329 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016330{
16331 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000016332 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016333
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016334 rettv->v_type = VAR_STRING;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000016335 rettv->vval.v_string = tv2string(&argvars[0], &tofree, numbuf, 0);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016336 /* Make a copy if we have a value but it's not in allocated memory. */
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000016337 if (rettv->vval.v_string != NULL && tofree == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016338 rettv->vval.v_string = vim_strsave(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016339}
16340
16341/*
16342 * "strlen()" function
16343 */
16344 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016345f_strlen(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016346 typval_T *argvars;
16347 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016348{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016349 rettv->vval.v_number = (varnumber_T)(STRLEN(
16350 get_tv_string(&argvars[0])));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016351}
16352
16353/*
16354 * "strpart()" function
16355 */
16356 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016357f_strpart(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016358 typval_T *argvars;
16359 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016360{
16361 char_u *p;
16362 int n;
16363 int len;
16364 int slen;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016365 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016366
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016367 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016368 slen = (int)STRLEN(p);
16369
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016370 n = get_tv_number_chk(&argvars[1], &error);
16371 if (error)
16372 len = 0;
16373 else if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016374 len = get_tv_number(&argvars[2]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016375 else
16376 len = slen - n; /* default len: all bytes that are available. */
16377
16378 /*
16379 * Only return the overlap between the specified part and the actual
16380 * string.
16381 */
16382 if (n < 0)
16383 {
16384 len += n;
16385 n = 0;
16386 }
16387 else if (n > slen)
16388 n = slen;
16389 if (len < 0)
16390 len = 0;
16391 else if (n + len > slen)
16392 len = slen - n;
16393
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016394 rettv->v_type = VAR_STRING;
16395 rettv->vval.v_string = vim_strnsave(p + n, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016396}
16397
16398/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016399 * "strridx()" function
16400 */
16401 static void
16402f_strridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016403 typval_T *argvars;
16404 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016405{
16406 char_u buf[NUMBUFLEN];
16407 char_u *needle;
16408 char_u *haystack;
16409 char_u *rest;
16410 char_u *lastmatch = NULL;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016411 int haystack_len, end_idx;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016412
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016413 needle = get_tv_string_chk(&argvars[1]);
16414 haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016415
16416 rettv->vval.v_number = -1;
16417 if (needle == NULL || haystack == NULL)
16418 return; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016419
16420 haystack_len = (int)STRLEN(haystack);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016421 if (argvars[2].v_type != VAR_UNKNOWN)
16422 {
16423 /* Third argument: upper limit for index */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016424 end_idx = get_tv_number_chk(&argvars[2], NULL);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016425 if (end_idx < 0)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016426 return; /* can never find a match */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016427 }
16428 else
16429 end_idx = haystack_len;
16430
Bram Moolenaar0d660222005-01-07 21:51:51 +000016431 if (*needle == NUL)
Bram Moolenaar05159a02005-02-26 23:04:13 +000016432 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016433 /* Empty string matches past the end. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016434 lastmatch = haystack + end_idx;
16435 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016436 else
Bram Moolenaar532c7802005-01-27 14:44:31 +000016437 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016438 for (rest = haystack; *rest != '\0'; ++rest)
16439 {
16440 rest = (char_u *)strstr((char *)rest, (char *)needle);
Bram Moolenaar532c7802005-01-27 14:44:31 +000016441 if (rest == NULL || rest > haystack + end_idx)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016442 break;
16443 lastmatch = rest;
16444 }
Bram Moolenaar532c7802005-01-27 14:44:31 +000016445 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016446
16447 if (lastmatch == NULL)
16448 rettv->vval.v_number = -1;
16449 else
16450 rettv->vval.v_number = (varnumber_T)(lastmatch - haystack);
16451}
16452
16453/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016454 * "strtrans()" function
16455 */
16456 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016457f_strtrans(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016458 typval_T *argvars;
16459 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016460{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016461 rettv->v_type = VAR_STRING;
16462 rettv->vval.v_string = transstr(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016463}
16464
16465/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016466 * "submatch()" function
16467 */
16468 static void
16469f_submatch(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016470 typval_T *argvars;
16471 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016472{
16473 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016474 rettv->vval.v_string =
16475 reg_submatch((int)get_tv_number_chk(&argvars[0], NULL));
Bram Moolenaar0d660222005-01-07 21:51:51 +000016476}
16477
16478/*
16479 * "substitute()" function
16480 */
16481 static void
16482f_substitute(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016483 typval_T *argvars;
16484 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016485{
16486 char_u patbuf[NUMBUFLEN];
16487 char_u subbuf[NUMBUFLEN];
16488 char_u flagsbuf[NUMBUFLEN];
16489
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016490 char_u *str = get_tv_string_chk(&argvars[0]);
16491 char_u *pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16492 char_u *sub = get_tv_string_buf_chk(&argvars[2], subbuf);
16493 char_u *flg = get_tv_string_buf_chk(&argvars[3], flagsbuf);
16494
Bram Moolenaar0d660222005-01-07 21:51:51 +000016495 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016496 if (str == NULL || pat == NULL || sub == NULL || flg == NULL)
16497 rettv->vval.v_string = NULL;
16498 else
16499 rettv->vval.v_string = do_string_sub(str, pat, sub, flg);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016500}
16501
16502/*
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016503 * "synID(lnum, col, trans)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000016504 */
16505/*ARGSUSED*/
16506 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016507f_synID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016508 typval_T *argvars;
16509 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016510{
16511 int id = 0;
16512#ifdef FEAT_SYN_HL
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016513 long lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016514 long col;
16515 int trans;
Bram Moolenaar92124a32005-06-17 22:03:40 +000016516 int transerr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016517
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016518 lnum = get_tv_lnum(argvars); /* -1 on type error */
16519 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16520 trans = get_tv_number_chk(&argvars[2], &transerr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016521
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016522 if (!transerr && lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016523 && col >= 0 && col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016524 id = syn_get_id(curwin, lnum, (colnr_T)col, trans, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016525#endif
16526
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016527 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016528}
16529
16530/*
16531 * "synIDattr(id, what [, mode])" function
16532 */
16533/*ARGSUSED*/
16534 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016535f_synIDattr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016536 typval_T *argvars;
16537 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016538{
16539 char_u *p = NULL;
16540#ifdef FEAT_SYN_HL
16541 int id;
16542 char_u *what;
16543 char_u *mode;
16544 char_u modebuf[NUMBUFLEN];
16545 int modec;
16546
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016547 id = get_tv_number(&argvars[0]);
16548 what = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016549 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016550 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016551 mode = get_tv_string_buf(&argvars[2], modebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016552 modec = TOLOWER_ASC(mode[0]);
16553 if (modec != 't' && modec != 'c'
16554#ifdef FEAT_GUI
16555 && modec != 'g'
16556#endif
16557 )
16558 modec = 0; /* replace invalid with current */
16559 }
16560 else
16561 {
16562#ifdef FEAT_GUI
16563 if (gui.in_use)
16564 modec = 'g';
16565 else
16566#endif
16567 if (t_colors > 1)
16568 modec = 'c';
16569 else
16570 modec = 't';
16571 }
16572
16573
16574 switch (TOLOWER_ASC(what[0]))
16575 {
16576 case 'b':
16577 if (TOLOWER_ASC(what[1]) == 'g') /* bg[#] */
16578 p = highlight_color(id, what, modec);
16579 else /* bold */
16580 p = highlight_has_attr(id, HL_BOLD, modec);
16581 break;
16582
16583 case 'f': /* fg[#] */
16584 p = highlight_color(id, what, modec);
16585 break;
16586
16587 case 'i':
16588 if (TOLOWER_ASC(what[1]) == 'n') /* inverse */
16589 p = highlight_has_attr(id, HL_INVERSE, modec);
16590 else /* italic */
16591 p = highlight_has_attr(id, HL_ITALIC, modec);
16592 break;
16593
16594 case 'n': /* name */
16595 p = get_highlight_name(NULL, id - 1);
16596 break;
16597
16598 case 'r': /* reverse */
16599 p = highlight_has_attr(id, HL_INVERSE, modec);
16600 break;
16601
16602 case 's': /* standout */
16603 p = highlight_has_attr(id, HL_STANDOUT, modec);
16604 break;
16605
Bram Moolenaar5b743bf2005-03-15 22:50:43 +000016606 case 'u':
16607 if (STRLEN(what) <= 5 || TOLOWER_ASC(what[5]) != 'c')
16608 /* underline */
16609 p = highlight_has_attr(id, HL_UNDERLINE, modec);
16610 else
16611 /* undercurl */
16612 p = highlight_has_attr(id, HL_UNDERCURL, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016613 break;
16614 }
16615
16616 if (p != NULL)
16617 p = vim_strsave(p);
16618#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016619 rettv->v_type = VAR_STRING;
16620 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016621}
16622
16623/*
16624 * "synIDtrans(id)" function
16625 */
16626/*ARGSUSED*/
16627 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016628f_synIDtrans(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016629 typval_T *argvars;
16630 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016631{
16632 int id;
16633
16634#ifdef FEAT_SYN_HL
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016635 id = get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016636
16637 if (id > 0)
16638 id = syn_get_final_id(id);
16639 else
16640#endif
16641 id = 0;
16642
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016643 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016644}
16645
16646/*
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016647 * "synstack(lnum, col)" function
16648 */
16649/*ARGSUSED*/
16650 static void
16651f_synstack(argvars, rettv)
16652 typval_T *argvars;
16653 typval_T *rettv;
16654{
16655#ifdef FEAT_SYN_HL
16656 long lnum;
16657 long col;
16658 int i;
16659 int id;
16660#endif
16661
16662 rettv->v_type = VAR_LIST;
16663 rettv->vval.v_list = NULL;
16664
16665#ifdef FEAT_SYN_HL
16666 lnum = get_tv_lnum(argvars); /* -1 on type error */
16667 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16668
16669 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar6cad8bd2008-09-10 13:39:10 +000016670 && col >= 0 && (col == 0 || col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016671 && rettv_list_alloc(rettv) != FAIL)
16672 {
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016673 (void)syn_get_id(curwin, lnum, (colnr_T)col, FALSE, NULL, TRUE);
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016674 for (i = 0; ; ++i)
16675 {
16676 id = syn_get_stack_item(i);
16677 if (id < 0)
16678 break;
16679 if (list_append_number(rettv->vval.v_list, id) == FAIL)
16680 break;
16681 }
16682 }
16683#endif
16684}
16685
16686/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016687 * "system()" function
16688 */
16689 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016690f_system(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016691 typval_T *argvars;
16692 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016693{
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016694 char_u *res = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016695 char_u *p;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016696 char_u *infile = NULL;
16697 char_u buf[NUMBUFLEN];
16698 int err = FALSE;
16699 FILE *fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016700
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016701 if (check_restricted() || check_secure())
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016702 goto done;
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016703
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016704 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016705 {
16706 /*
16707 * Write the string to a temp file, to be used for input of the shell
16708 * command.
16709 */
16710 if ((infile = vim_tempname('i')) == NULL)
16711 {
16712 EMSG(_(e_notmp));
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016713 goto done;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016714 }
16715
16716 fd = mch_fopen((char *)infile, WRITEBIN);
16717 if (fd == NULL)
16718 {
16719 EMSG2(_(e_notopen), infile);
16720 goto done;
16721 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016722 p = get_tv_string_buf_chk(&argvars[1], buf);
16723 if (p == NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016724 {
16725 fclose(fd);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016726 goto done; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016727 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016728 if (fwrite(p, STRLEN(p), 1, fd) != 1)
16729 err = TRUE;
16730 if (fclose(fd) != 0)
16731 err = TRUE;
16732 if (err)
16733 {
16734 EMSG(_("E677: Error writing temp file"));
16735 goto done;
16736 }
16737 }
16738
Bram Moolenaare580b0c2006-03-21 21:33:03 +000016739 res = get_cmd_output(get_tv_string(&argvars[0]), infile,
16740 SHELL_SILENT | SHELL_COOKED);
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016741
Bram Moolenaar071d4272004-06-13 20:20:40 +000016742#ifdef USE_CR
16743 /* translate <CR> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016744 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016745 {
16746 char_u *s;
16747
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016748 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016749 {
16750 if (*s == CAR)
16751 *s = NL;
16752 }
16753 }
16754#else
16755# ifdef USE_CRNL
16756 /* translate <CR><NL> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016757 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016758 {
16759 char_u *s, *d;
16760
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016761 d = res;
16762 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016763 {
16764 if (s[0] == CAR && s[1] == NL)
16765 ++s;
16766 *d++ = *s;
16767 }
16768 *d = NUL;
16769 }
16770# endif
16771#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016772
16773done:
16774 if (infile != NULL)
16775 {
16776 mch_remove(infile);
16777 vim_free(infile);
16778 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016779 rettv->v_type = VAR_STRING;
16780 rettv->vval.v_string = res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016781}
16782
16783/*
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016784 * "tabpagebuflist()" function
16785 */
16786/* ARGSUSED */
16787 static void
16788f_tabpagebuflist(argvars, rettv)
16789 typval_T *argvars;
16790 typval_T *rettv;
16791{
16792#ifndef FEAT_WINDOWS
16793 rettv->vval.v_number = 0;
16794#else
16795 tabpage_T *tp;
16796 win_T *wp = NULL;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016797
16798 if (argvars[0].v_type == VAR_UNKNOWN)
16799 wp = firstwin;
16800 else
16801 {
16802 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16803 if (tp != NULL)
Bram Moolenaar238a5642006-02-21 22:12:05 +000016804 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016805 }
16806 if (wp == NULL)
16807 rettv->vval.v_number = 0;
16808 else
16809 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016810 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016811 rettv->vval.v_number = 0;
16812 else
16813 {
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016814 for (; wp != NULL; wp = wp->w_next)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016815 if (list_append_number(rettv->vval.v_list,
16816 wp->w_buffer->b_fnum) == FAIL)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016817 break;
16818 }
16819 }
16820#endif
16821}
16822
16823
16824/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016825 * "tabpagenr()" function
16826 */
16827/* ARGSUSED */
16828 static void
16829f_tabpagenr(argvars, rettv)
16830 typval_T *argvars;
16831 typval_T *rettv;
16832{
16833 int nr = 1;
16834#ifdef FEAT_WINDOWS
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016835 char_u *arg;
16836
16837 if (argvars[0].v_type != VAR_UNKNOWN)
16838 {
16839 arg = get_tv_string_chk(&argvars[0]);
16840 nr = 0;
16841 if (arg != NULL)
16842 {
16843 if (STRCMP(arg, "$") == 0)
Bram Moolenaara5621492006-02-25 21:55:24 +000016844 nr = tabpage_index(NULL) - 1;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016845 else
16846 EMSG2(_(e_invexpr2), arg);
16847 }
16848 }
16849 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +000016850 nr = tabpage_index(curtab);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016851#endif
16852 rettv->vval.v_number = nr;
16853}
16854
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016855
16856#ifdef FEAT_WINDOWS
16857static int get_winnr __ARGS((tabpage_T *tp, typval_T *argvar));
16858
16859/*
16860 * Common code for tabpagewinnr() and winnr().
16861 */
16862 static int
16863get_winnr(tp, argvar)
16864 tabpage_T *tp;
16865 typval_T *argvar;
16866{
16867 win_T *twin;
16868 int nr = 1;
16869 win_T *wp;
16870 char_u *arg;
16871
16872 twin = (tp == curtab) ? curwin : tp->tp_curwin;
16873 if (argvar->v_type != VAR_UNKNOWN)
16874 {
16875 arg = get_tv_string_chk(argvar);
16876 if (arg == NULL)
16877 nr = 0; /* type error; errmsg already given */
16878 else if (STRCMP(arg, "$") == 0)
16879 twin = (tp == curtab) ? lastwin : tp->tp_lastwin;
16880 else if (STRCMP(arg, "#") == 0)
16881 {
16882 twin = (tp == curtab) ? prevwin : tp->tp_prevwin;
16883 if (twin == NULL)
16884 nr = 0;
16885 }
16886 else
16887 {
16888 EMSG2(_(e_invexpr2), arg);
16889 nr = 0;
16890 }
16891 }
16892
16893 if (nr > 0)
16894 for (wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
16895 wp != twin; wp = wp->w_next)
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016896 {
16897 if (wp == NULL)
16898 {
16899 /* didn't find it in this tabpage */
16900 nr = 0;
16901 break;
16902 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016903 ++nr;
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016904 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016905 return nr;
16906}
16907#endif
16908
16909/*
16910 * "tabpagewinnr()" function
16911 */
16912/* ARGSUSED */
16913 static void
16914f_tabpagewinnr(argvars, rettv)
16915 typval_T *argvars;
16916 typval_T *rettv;
16917{
16918 int nr = 1;
16919#ifdef FEAT_WINDOWS
16920 tabpage_T *tp;
16921
16922 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16923 if (tp == NULL)
16924 nr = 0;
16925 else
16926 nr = get_winnr(tp, &argvars[1]);
16927#endif
16928 rettv->vval.v_number = nr;
16929}
16930
16931
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016932/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016933 * "tagfiles()" function
16934 */
16935/*ARGSUSED*/
16936 static void
16937f_tagfiles(argvars, rettv)
16938 typval_T *argvars;
16939 typval_T *rettv;
16940{
16941 char_u fname[MAXPATHL + 1];
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016942 tagname_T tn;
16943 int first;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016944
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016945 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016946 {
16947 rettv->vval.v_number = 0;
16948 return;
16949 }
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016950
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016951 for (first = TRUE; ; first = FALSE)
16952 if (get_tagfname(&tn, first, fname) == FAIL
16953 || list_append_string(rettv->vval.v_list, fname, -1) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016954 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016955 tagname_free(&tn);
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016956}
16957
16958/*
Bram Moolenaare2ac10d2005-03-07 23:26:06 +000016959 * "taglist()" function
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016960 */
16961 static void
16962f_taglist(argvars, rettv)
16963 typval_T *argvars;
16964 typval_T *rettv;
16965{
16966 char_u *tag_pattern;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016967
16968 tag_pattern = get_tv_string(&argvars[0]);
16969
16970 rettv->vval.v_number = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016971 if (*tag_pattern == NUL)
16972 return;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016973
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016974 if (rettv_list_alloc(rettv) == OK)
16975 (void)get_tags(rettv->vval.v_list, tag_pattern);
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016976}
16977
16978/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016979 * "tempname()" function
16980 */
16981/*ARGSUSED*/
16982 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016983f_tempname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016984 typval_T *argvars;
16985 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016986{
16987 static int x = 'A';
16988
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016989 rettv->v_type = VAR_STRING;
16990 rettv->vval.v_string = vim_tempname(x);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016991
16992 /* Advance 'x' to use A-Z and 0-9, so that there are at least 34 different
16993 * names. Skip 'I' and 'O', they are used for shell redirection. */
16994 do
16995 {
16996 if (x == 'Z')
16997 x = '0';
16998 else if (x == '9')
16999 x = 'A';
17000 else
17001 {
17002#ifdef EBCDIC
17003 if (x == 'I')
17004 x = 'J';
17005 else if (x == 'R')
17006 x = 'S';
17007 else
17008#endif
17009 ++x;
17010 }
17011 } while (x == 'I' || x == 'O');
17012}
17013
17014/*
Bram Moolenaard52d9742005-08-21 22:20:28 +000017015 * "test(list)" function: Just checking the walls...
17016 */
17017/*ARGSUSED*/
17018 static void
17019f_test(argvars, rettv)
17020 typval_T *argvars;
17021 typval_T *rettv;
17022{
17023 /* Used for unit testing. Change the code below to your liking. */
17024#if 0
17025 listitem_T *li;
17026 list_T *l;
17027 char_u *bad, *good;
17028
17029 if (argvars[0].v_type != VAR_LIST)
17030 return;
17031 l = argvars[0].vval.v_list;
17032 if (l == NULL)
17033 return;
17034 li = l->lv_first;
17035 if (li == NULL)
17036 return;
17037 bad = get_tv_string(&li->li_tv);
17038 li = li->li_next;
17039 if (li == NULL)
17040 return;
17041 good = get_tv_string(&li->li_tv);
17042 rettv->vval.v_number = test_edit_score(bad, good);
17043#endif
17044}
17045
17046/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017047 * "tolower(string)" function
17048 */
17049 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017050f_tolower(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017051 typval_T *argvars;
17052 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017053{
17054 char_u *p;
17055
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017056 p = vim_strsave(get_tv_string(&argvars[0]));
17057 rettv->v_type = VAR_STRING;
17058 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017059
17060 if (p != NULL)
17061 while (*p != NUL)
17062 {
17063#ifdef FEAT_MBYTE
17064 int l;
17065
17066 if (enc_utf8)
17067 {
17068 int c, lc;
17069
17070 c = utf_ptr2char(p);
17071 lc = utf_tolower(c);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017072 l = utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017073 /* TODO: reallocate string when byte count changes. */
17074 if (utf_char2len(lc) == l)
17075 utf_char2bytes(lc, p);
17076 p += l;
17077 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017078 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017079 p += l; /* skip multi-byte character */
17080 else
17081#endif
17082 {
17083 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
17084 ++p;
17085 }
17086 }
17087}
17088
17089/*
17090 * "toupper(string)" function
17091 */
17092 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017093f_toupper(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017094 typval_T *argvars;
17095 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017096{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017097 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017098 rettv->vval.v_string = strup_save(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000017099}
17100
17101/*
Bram Moolenaar8299df92004-07-10 09:47:34 +000017102 * "tr(string, fromstr, tostr)" function
17103 */
17104 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017105f_tr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017106 typval_T *argvars;
17107 typval_T *rettv;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017108{
17109 char_u *instr;
17110 char_u *fromstr;
17111 char_u *tostr;
17112 char_u *p;
17113#ifdef FEAT_MBYTE
Bram Moolenaar342337a2005-07-21 21:11:17 +000017114 int inlen;
17115 int fromlen;
17116 int tolen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017117 int idx;
17118 char_u *cpstr;
17119 int cplen;
17120 int first = TRUE;
17121#endif
17122 char_u buf[NUMBUFLEN];
17123 char_u buf2[NUMBUFLEN];
17124 garray_T ga;
17125
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017126 instr = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017127 fromstr = get_tv_string_buf_chk(&argvars[1], buf);
17128 tostr = get_tv_string_buf_chk(&argvars[2], buf2);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017129
17130 /* Default return value: empty string. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017131 rettv->v_type = VAR_STRING;
17132 rettv->vval.v_string = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017133 if (fromstr == NULL || tostr == NULL)
17134 return; /* type error; errmsg already given */
Bram Moolenaar8299df92004-07-10 09:47:34 +000017135 ga_init2(&ga, (int)sizeof(char), 80);
17136
17137#ifdef FEAT_MBYTE
17138 if (!has_mbyte)
17139#endif
17140 /* not multi-byte: fromstr and tostr must be the same length */
17141 if (STRLEN(fromstr) != STRLEN(tostr))
17142 {
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017143#ifdef FEAT_MBYTE
Bram Moolenaar8299df92004-07-10 09:47:34 +000017144error:
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017145#endif
Bram Moolenaar8299df92004-07-10 09:47:34 +000017146 EMSG2(_(e_invarg2), fromstr);
17147 ga_clear(&ga);
17148 return;
17149 }
17150
17151 /* fromstr and tostr have to contain the same number of chars */
17152 while (*instr != NUL)
17153 {
17154#ifdef FEAT_MBYTE
17155 if (has_mbyte)
17156 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017157 inlen = (*mb_ptr2len)(instr);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017158 cpstr = instr;
17159 cplen = inlen;
17160 idx = 0;
17161 for (p = fromstr; *p != NUL; p += fromlen)
17162 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017163 fromlen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017164 if (fromlen == inlen && STRNCMP(instr, p, inlen) == 0)
17165 {
17166 for (p = tostr; *p != NUL; p += tolen)
17167 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017168 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017169 if (idx-- == 0)
17170 {
17171 cplen = tolen;
17172 cpstr = p;
17173 break;
17174 }
17175 }
17176 if (*p == NUL) /* tostr is shorter than fromstr */
17177 goto error;
17178 break;
17179 }
17180 ++idx;
17181 }
17182
17183 if (first && cpstr == instr)
17184 {
17185 /* Check that fromstr and tostr have the same number of
17186 * (multi-byte) characters. Done only once when a character
17187 * of instr doesn't appear in fromstr. */
17188 first = FALSE;
17189 for (p = tostr; *p != NUL; p += tolen)
17190 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017191 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017192 --idx;
17193 }
17194 if (idx != 0)
17195 goto error;
17196 }
17197
17198 ga_grow(&ga, cplen);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000017199 mch_memmove((char *)ga.ga_data + ga.ga_len, cpstr, (size_t)cplen);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017200 ga.ga_len += cplen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017201
17202 instr += inlen;
17203 }
17204 else
17205#endif
17206 {
17207 /* When not using multi-byte chars we can do it faster. */
17208 p = vim_strchr(fromstr, *instr);
17209 if (p != NULL)
17210 ga_append(&ga, tostr[p - fromstr]);
17211 else
17212 ga_append(&ga, *instr);
17213 ++instr;
17214 }
17215 }
17216
Bram Moolenaar61b974b2006-12-05 09:32:29 +000017217 /* add a terminating NUL */
17218 ga_grow(&ga, 1);
17219 ga_append(&ga, NUL);
17220
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017221 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017222}
17223
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017224#ifdef FEAT_FLOAT
17225/*
17226 * "trunc({float})" function
17227 */
17228 static void
17229f_trunc(argvars, rettv)
17230 typval_T *argvars;
17231 typval_T *rettv;
17232{
17233 float_T f;
17234
17235 rettv->v_type = VAR_FLOAT;
17236 if (get_float_arg(argvars, &f) == OK)
17237 /* trunc() is not in C90, use floor() or ceil() instead. */
17238 rettv->vval.v_float = f > 0 ? floor(f) : ceil(f);
17239 else
17240 rettv->vval.v_float = 0.0;
17241}
17242#endif
17243
Bram Moolenaar8299df92004-07-10 09:47:34 +000017244/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017245 * "type(expr)" function
17246 */
17247 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017248f_type(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017249 typval_T *argvars;
17250 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017251{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017252 int n;
17253
17254 switch (argvars[0].v_type)
17255 {
17256 case VAR_NUMBER: n = 0; break;
17257 case VAR_STRING: n = 1; break;
17258 case VAR_FUNC: n = 2; break;
17259 case VAR_LIST: n = 3; break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000017260 case VAR_DICT: n = 4; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017261#ifdef FEAT_FLOAT
17262 case VAR_FLOAT: n = 5; break;
17263#endif
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017264 default: EMSG2(_(e_intern2), "f_type()"); n = 0; break;
17265 }
17266 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017267}
17268
17269/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000017270 * "values(dict)" function
17271 */
17272 static void
17273f_values(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017274 typval_T *argvars;
17275 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000017276{
17277 dict_list(argvars, rettv, 1);
17278}
17279
17280/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017281 * "virtcol(string)" function
17282 */
17283 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017284f_virtcol(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017285 typval_T *argvars;
17286 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017287{
17288 colnr_T vcol = 0;
17289 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017290 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017291
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017292 fp = var2fpos(&argvars[0], FALSE, &fnum);
17293 if (fp != NULL && fp->lnum <= curbuf->b_ml.ml_line_count
17294 && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017295 {
17296 getvvcol(curwin, fp, NULL, NULL, &vcol);
17297 ++vcol;
17298 }
17299
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017300 rettv->vval.v_number = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017301}
17302
17303/*
17304 * "visualmode()" function
17305 */
17306/*ARGSUSED*/
17307 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017308f_visualmode(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017309 typval_T *argvars;
17310 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017311{
17312#ifdef FEAT_VISUAL
17313 char_u str[2];
17314
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017315 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017316 str[0] = curbuf->b_visual_mode_eval;
17317 str[1] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017318 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017319
17320 /* A non-zero number or non-empty string argument: reset mode. */
Bram Moolenaar05bb9532008-07-04 09:44:11 +000017321 if (non_zero_arg(&argvars[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +000017322 curbuf->b_visual_mode_eval = NUL;
17323#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017324 rettv->vval.v_number = 0; /* return anything, it won't work anyway */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017325#endif
17326}
17327
17328/*
17329 * "winbufnr(nr)" function
17330 */
17331 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017332f_winbufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017333 typval_T *argvars;
17334 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017335{
17336 win_T *wp;
17337
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017338 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017339 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017340 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017341 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017342 rettv->vval.v_number = wp->w_buffer->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017343}
17344
17345/*
17346 * "wincol()" function
17347 */
17348/*ARGSUSED*/
17349 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017350f_wincol(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017351 typval_T *argvars;
17352 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017353{
17354 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017355 rettv->vval.v_number = curwin->w_wcol + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017356}
17357
17358/*
17359 * "winheight(nr)" function
17360 */
17361 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017362f_winheight(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017363 typval_T *argvars;
17364 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017365{
17366 win_T *wp;
17367
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017368 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017369 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017370 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017371 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017372 rettv->vval.v_number = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017373}
17374
17375/*
17376 * "winline()" function
17377 */
17378/*ARGSUSED*/
17379 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017380f_winline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017381 typval_T *argvars;
17382 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017383{
17384 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017385 rettv->vval.v_number = curwin->w_wrow + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017386}
17387
17388/*
17389 * "winnr()" function
17390 */
17391/* ARGSUSED */
17392 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017393f_winnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017394 typval_T *argvars;
17395 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017396{
17397 int nr = 1;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017398
Bram Moolenaar071d4272004-06-13 20:20:40 +000017399#ifdef FEAT_WINDOWS
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017400 nr = get_winnr(curtab, &argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017401#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017402 rettv->vval.v_number = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017403}
17404
17405/*
17406 * "winrestcmd()" function
17407 */
17408/* ARGSUSED */
17409 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017410f_winrestcmd(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017411 typval_T *argvars;
17412 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017413{
17414#ifdef FEAT_WINDOWS
17415 win_T *wp;
17416 int winnr = 1;
17417 garray_T ga;
17418 char_u buf[50];
17419
17420 ga_init2(&ga, (int)sizeof(char), 70);
17421 for (wp = firstwin; wp != NULL; wp = wp->w_next)
17422 {
17423 sprintf((char *)buf, "%dresize %d|", winnr, wp->w_height);
17424 ga_concat(&ga, buf);
17425# ifdef FEAT_VERTSPLIT
17426 sprintf((char *)buf, "vert %dresize %d|", winnr, wp->w_width);
17427 ga_concat(&ga, buf);
17428# endif
17429 ++winnr;
17430 }
Bram Moolenaar269ec652004-07-29 08:43:53 +000017431 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017432
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017433 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017434#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017435 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017436#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017437 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017438}
17439
17440/*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017441 * "winrestview()" function
17442 */
17443/* ARGSUSED */
17444 static void
17445f_winrestview(argvars, rettv)
17446 typval_T *argvars;
17447 typval_T *rettv;
17448{
17449 dict_T *dict;
17450
17451 if (argvars[0].v_type != VAR_DICT
17452 || (dict = argvars[0].vval.v_dict) == NULL)
17453 EMSG(_(e_invarg));
17454 else
17455 {
17456 curwin->w_cursor.lnum = get_dict_number(dict, (char_u *)"lnum");
17457 curwin->w_cursor.col = get_dict_number(dict, (char_u *)"col");
17458#ifdef FEAT_VIRTUALEDIT
17459 curwin->w_cursor.coladd = get_dict_number(dict, (char_u *)"coladd");
17460#endif
17461 curwin->w_curswant = get_dict_number(dict, (char_u *)"curswant");
Bram Moolenaar362e1a32006-03-06 23:29:24 +000017462 curwin->w_set_curswant = FALSE;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017463
Bram Moolenaar6f11a412006-09-06 20:16:42 +000017464 set_topline(curwin, get_dict_number(dict, (char_u *)"topline"));
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017465#ifdef FEAT_DIFF
17466 curwin->w_topfill = get_dict_number(dict, (char_u *)"topfill");
17467#endif
17468 curwin->w_leftcol = get_dict_number(dict, (char_u *)"leftcol");
17469 curwin->w_skipcol = get_dict_number(dict, (char_u *)"skipcol");
17470
17471 check_cursor();
17472 changed_cline_bef_curs();
17473 invalidate_botline();
17474 redraw_later(VALID);
17475
17476 if (curwin->w_topline == 0)
17477 curwin->w_topline = 1;
17478 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
17479 curwin->w_topline = curbuf->b_ml.ml_line_count;
17480#ifdef FEAT_DIFF
17481 check_topfill(curwin, TRUE);
17482#endif
17483 }
17484}
17485
17486/*
17487 * "winsaveview()" function
17488 */
17489/* ARGSUSED */
17490 static void
17491f_winsaveview(argvars, rettv)
17492 typval_T *argvars;
17493 typval_T *rettv;
17494{
17495 dict_T *dict;
17496
17497 dict = dict_alloc();
17498 if (dict == NULL)
17499 return;
17500 rettv->v_type = VAR_DICT;
17501 rettv->vval.v_dict = dict;
17502 ++dict->dv_refcount;
17503
17504 dict_add_nr_str(dict, "lnum", (long)curwin->w_cursor.lnum, NULL);
17505 dict_add_nr_str(dict, "col", (long)curwin->w_cursor.col, NULL);
17506#ifdef FEAT_VIRTUALEDIT
17507 dict_add_nr_str(dict, "coladd", (long)curwin->w_cursor.coladd, NULL);
17508#endif
Bram Moolenaar9af1ba92006-08-29 19:55:53 +000017509 update_curswant();
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017510 dict_add_nr_str(dict, "curswant", (long)curwin->w_curswant, NULL);
17511
17512 dict_add_nr_str(dict, "topline", (long)curwin->w_topline, NULL);
17513#ifdef FEAT_DIFF
17514 dict_add_nr_str(dict, "topfill", (long)curwin->w_topfill, NULL);
17515#endif
17516 dict_add_nr_str(dict, "leftcol", (long)curwin->w_leftcol, NULL);
17517 dict_add_nr_str(dict, "skipcol", (long)curwin->w_skipcol, NULL);
17518}
17519
17520/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017521 * "winwidth(nr)" function
17522 */
17523 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017524f_winwidth(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017525 typval_T *argvars;
17526 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017527{
17528 win_T *wp;
17529
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017530 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017531 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017532 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017533 else
17534#ifdef FEAT_VERTSPLIT
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017535 rettv->vval.v_number = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017536#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017537 rettv->vval.v_number = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017538#endif
17539}
17540
Bram Moolenaar071d4272004-06-13 20:20:40 +000017541/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017542 * "writefile()" function
17543 */
17544 static void
17545f_writefile(argvars, rettv)
17546 typval_T *argvars;
17547 typval_T *rettv;
17548{
17549 int binary = FALSE;
17550 char_u *fname;
17551 FILE *fd;
17552 listitem_T *li;
17553 char_u *s;
17554 int ret = 0;
17555 int c;
17556
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000017557 if (check_restricted() || check_secure())
17558 return;
17559
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017560 if (argvars[0].v_type != VAR_LIST)
17561 {
17562 EMSG2(_(e_listarg), "writefile()");
17563 return;
17564 }
17565 if (argvars[0].vval.v_list == NULL)
17566 return;
17567
17568 if (argvars[2].v_type != VAR_UNKNOWN
17569 && STRCMP(get_tv_string(&argvars[2]), "b") == 0)
17570 binary = TRUE;
17571
17572 /* Always open the file in binary mode, library functions have a mind of
17573 * their own about CR-LF conversion. */
17574 fname = get_tv_string(&argvars[1]);
17575 if (*fname == NUL || (fd = mch_fopen((char *)fname, WRITEBIN)) == NULL)
17576 {
17577 EMSG2(_(e_notcreate), *fname == NUL ? (char_u *)_("<empty>") : fname);
17578 ret = -1;
17579 }
17580 else
17581 {
17582 for (li = argvars[0].vval.v_list->lv_first; li != NULL;
17583 li = li->li_next)
17584 {
17585 for (s = get_tv_string(&li->li_tv); *s != NUL; ++s)
17586 {
17587 if (*s == '\n')
17588 c = putc(NUL, fd);
17589 else
17590 c = putc(*s, fd);
17591 if (c == EOF)
17592 {
17593 ret = -1;
17594 break;
17595 }
17596 }
17597 if (!binary || li->li_next != NULL)
17598 if (putc('\n', fd) == EOF)
17599 {
17600 ret = -1;
17601 break;
17602 }
17603 if (ret < 0)
17604 {
17605 EMSG(_(e_write));
17606 break;
17607 }
17608 }
17609 fclose(fd);
17610 }
17611
17612 rettv->vval.v_number = ret;
17613}
17614
17615/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017616 * Translate a String variable into a position.
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017617 * Returns NULL when there is an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017618 */
17619 static pos_T *
Bram Moolenaar477933c2007-07-17 14:32:23 +000017620var2fpos(varp, dollar_lnum, fnum)
Bram Moolenaar33570922005-01-25 22:26:29 +000017621 typval_T *varp;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017622 int dollar_lnum; /* TRUE when $ is last line */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017623 int *fnum; /* set to fnum for '0, 'A, etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017624{
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017625 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017626 static pos_T pos;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017627 pos_T *pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017628
Bram Moolenaara5525202006-03-02 22:52:09 +000017629 /* Argument can be [lnum, col, coladd]. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017630 if (varp->v_type == VAR_LIST)
17631 {
17632 list_T *l;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017633 int len;
Bram Moolenaara5525202006-03-02 22:52:09 +000017634 int error = FALSE;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017635 listitem_T *li;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017636
17637 l = varp->vval.v_list;
17638 if (l == NULL)
17639 return NULL;
17640
17641 /* Get the line number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017642 pos.lnum = list_find_nr(l, 0L, &error);
17643 if (error || pos.lnum <= 0 || pos.lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017644 return NULL; /* invalid line number */
17645
17646 /* Get the column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017647 pos.col = list_find_nr(l, 1L, &error);
17648 if (error)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017649 return NULL;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017650 len = (long)STRLEN(ml_get(pos.lnum));
Bram Moolenaar477933c2007-07-17 14:32:23 +000017651
17652 /* We accept "$" for the column number: last column. */
17653 li = list_find(l, 1L);
17654 if (li != NULL && li->li_tv.v_type == VAR_STRING
17655 && li->li_tv.vval.v_string != NULL
17656 && STRCMP(li->li_tv.vval.v_string, "$") == 0)
17657 pos.col = len + 1;
17658
Bram Moolenaara5525202006-03-02 22:52:09 +000017659 /* Accept a position up to the NUL after the line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000017660 if (pos.col == 0 || (int)pos.col > len + 1)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017661 return NULL; /* invalid column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017662 --pos.col;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017663
Bram Moolenaara5525202006-03-02 22:52:09 +000017664#ifdef FEAT_VIRTUALEDIT
17665 /* Get the virtual offset. Defaults to zero. */
17666 pos.coladd = list_find_nr(l, 2L, &error);
17667 if (error)
17668 pos.coladd = 0;
17669#endif
17670
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017671 return &pos;
17672 }
17673
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017674 name = get_tv_string_chk(varp);
17675 if (name == NULL)
17676 return NULL;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017677 if (name[0] == '.') /* cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017678 return &curwin->w_cursor;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017679#ifdef FEAT_VISUAL
17680 if (name[0] == 'v' && name[1] == NUL) /* Visual start */
17681 {
17682 if (VIsual_active)
17683 return &VIsual;
17684 return &curwin->w_cursor;
17685 }
17686#endif
17687 if (name[0] == '\'') /* mark */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017688 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017689 pp = getmark_fnum(name[1], FALSE, fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017690 if (pp == NULL || pp == (pos_T *)-1 || pp->lnum <= 0)
17691 return NULL;
17692 return pp;
17693 }
Bram Moolenaara5525202006-03-02 22:52:09 +000017694
17695#ifdef FEAT_VIRTUALEDIT
17696 pos.coladd = 0;
17697#endif
17698
Bram Moolenaar477933c2007-07-17 14:32:23 +000017699 if (name[0] == 'w' && dollar_lnum)
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017700 {
17701 pos.col = 0;
17702 if (name[1] == '0') /* "w0": first visible line */
17703 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017704 update_topline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017705 pos.lnum = curwin->w_topline;
17706 return &pos;
17707 }
17708 else if (name[1] == '$') /* "w$": last visible line */
17709 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017710 validate_botline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017711 pos.lnum = curwin->w_botline - 1;
17712 return &pos;
17713 }
17714 }
17715 else if (name[0] == '$') /* last column or line */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017716 {
Bram Moolenaar477933c2007-07-17 14:32:23 +000017717 if (dollar_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017718 {
17719 pos.lnum = curbuf->b_ml.ml_line_count;
17720 pos.col = 0;
17721 }
17722 else
17723 {
17724 pos.lnum = curwin->w_cursor.lnum;
17725 pos.col = (colnr_T)STRLEN(ml_get_curline());
17726 }
17727 return &pos;
17728 }
17729 return NULL;
17730}
17731
17732/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017733 * Convert list in "arg" into a position and optional file number.
17734 * When "fnump" is NULL there is no file number, only 3 items.
17735 * Note that the column is passed on as-is, the caller may want to decrement
17736 * it to use 1 for the first column.
17737 * Return FAIL when conversion is not possible, doesn't check the position for
17738 * validity.
17739 */
17740 static int
17741list2fpos(arg, posp, fnump)
17742 typval_T *arg;
17743 pos_T *posp;
17744 int *fnump;
17745{
17746 list_T *l = arg->vval.v_list;
17747 long i = 0;
17748 long n;
17749
Bram Moolenaarbde35262006-07-23 20:12:24 +000017750 /* List must be: [fnum, lnum, col, coladd], where "fnum" is only there
17751 * when "fnump" isn't NULL and "coladd" is optional. */
17752 if (arg->v_type != VAR_LIST
17753 || l == NULL
17754 || l->lv_len < (fnump == NULL ? 2 : 3)
17755 || l->lv_len > (fnump == NULL ? 3 : 4))
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017756 return FAIL;
17757
17758 if (fnump != NULL)
17759 {
17760 n = list_find_nr(l, i++, NULL); /* fnum */
17761 if (n < 0)
17762 return FAIL;
17763 if (n == 0)
17764 n = curbuf->b_fnum; /* current buffer */
17765 *fnump = n;
17766 }
17767
17768 n = list_find_nr(l, i++, NULL); /* lnum */
17769 if (n < 0)
17770 return FAIL;
17771 posp->lnum = n;
17772
17773 n = list_find_nr(l, i++, NULL); /* col */
17774 if (n < 0)
17775 return FAIL;
17776 posp->col = n;
17777
17778#ifdef FEAT_VIRTUALEDIT
17779 n = list_find_nr(l, i, NULL);
17780 if (n < 0)
Bram Moolenaarbde35262006-07-23 20:12:24 +000017781 posp->coladd = 0;
17782 else
17783 posp->coladd = n;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017784#endif
17785
17786 return OK;
17787}
17788
17789/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017790 * Get the length of an environment variable name.
17791 * Advance "arg" to the first character after the name.
17792 * Return 0 for error.
17793 */
17794 static int
17795get_env_len(arg)
17796 char_u **arg;
17797{
17798 char_u *p;
17799 int len;
17800
17801 for (p = *arg; vim_isIDc(*p); ++p)
17802 ;
17803 if (p == *arg) /* no name found */
17804 return 0;
17805
17806 len = (int)(p - *arg);
17807 *arg = p;
17808 return len;
17809}
17810
17811/*
17812 * Get the length of the name of a function or internal variable.
17813 * "arg" is advanced to the first non-white character after the name.
17814 * Return 0 if something is wrong.
17815 */
17816 static int
17817get_id_len(arg)
17818 char_u **arg;
17819{
17820 char_u *p;
17821 int len;
17822
17823 /* Find the end of the name. */
17824 for (p = *arg; eval_isnamec(*p); ++p)
17825 ;
17826 if (p == *arg) /* no name found */
17827 return 0;
17828
17829 len = (int)(p - *arg);
17830 *arg = skipwhite(p);
17831
17832 return len;
17833}
17834
17835/*
Bram Moolenaara7043832005-01-21 11:56:39 +000017836 * Get the length of the name of a variable or function.
17837 * Only the name is recognized, does not handle ".key" or "[idx]".
Bram Moolenaar071d4272004-06-13 20:20:40 +000017838 * "arg" is advanced to the first non-white character after the name.
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017839 * Return -1 if curly braces expansion failed.
17840 * Return 0 if something else is wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017841 * If the name contains 'magic' {}'s, expand them and return the
17842 * expanded name in an allocated string via 'alias' - caller must free.
17843 */
17844 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017845get_name_len(arg, alias, evaluate, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017846 char_u **arg;
17847 char_u **alias;
17848 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017849 int verbose;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017850{
17851 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017852 char_u *p;
17853 char_u *expr_start;
17854 char_u *expr_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017855
17856 *alias = NULL; /* default to no alias */
17857
17858 if ((*arg)[0] == K_SPECIAL && (*arg)[1] == KS_EXTRA
17859 && (*arg)[2] == (int)KE_SNR)
17860 {
17861 /* hard coded <SNR>, already translated */
17862 *arg += 3;
17863 return get_id_len(arg) + 3;
17864 }
17865 len = eval_fname_script(*arg);
17866 if (len > 0)
17867 {
17868 /* literal "<SID>", "s:" or "<SNR>" */
17869 *arg += len;
17870 }
17871
Bram Moolenaar071d4272004-06-13 20:20:40 +000017872 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017873 * Find the end of the name; check for {} construction.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017874 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017875 p = find_name_end(*arg, &expr_start, &expr_end,
17876 len > 0 ? 0 : FNE_CHECK_START);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017877 if (expr_start != NULL)
17878 {
17879 char_u *temp_string;
17880
17881 if (!evaluate)
17882 {
17883 len += (int)(p - *arg);
17884 *arg = skipwhite(p);
17885 return len;
17886 }
17887
17888 /*
17889 * Include any <SID> etc in the expanded string:
17890 * Thus the -len here.
17891 */
17892 temp_string = make_expanded_name(*arg - len, expr_start, expr_end, p);
17893 if (temp_string == NULL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017894 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017895 *alias = temp_string;
17896 *arg = skipwhite(p);
17897 return (int)STRLEN(temp_string);
17898 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017899
17900 len += get_id_len(arg);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017901 if (len == 0 && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017902 EMSG2(_(e_invexpr2), *arg);
17903
17904 return len;
17905}
17906
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017907/*
17908 * Find the end of a variable or function name, taking care of magic braces.
17909 * If "expr_start" is not NULL then "expr_start" and "expr_end" are set to the
17910 * start and end of the first magic braces item.
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017911 * "flags" can have FNE_INCL_BR and FNE_CHECK_START.
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017912 * Return a pointer to just after the name. Equal to "arg" if there is no
17913 * valid name.
17914 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017915 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017916find_name_end(arg, expr_start, expr_end, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017917 char_u *arg;
17918 char_u **expr_start;
17919 char_u **expr_end;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017920 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017921{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017922 int mb_nest = 0;
17923 int br_nest = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017924 char_u *p;
17925
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017926 if (expr_start != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017927 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017928 *expr_start = NULL;
17929 *expr_end = NULL;
17930 }
17931
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017932 /* Quick check for valid starting character. */
17933 if ((flags & FNE_CHECK_START) && !eval_isnamec1(*arg) && *arg != '{')
17934 return arg;
17935
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017936 for (p = arg; *p != NUL
17937 && (eval_isnamec(*p)
Bram Moolenaare9a41262005-01-15 22:18:47 +000017938 || *p == '{'
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017939 || ((flags & FNE_INCL_BR) && (*p == '[' || *p == '.'))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017940 || mb_nest != 0
Bram Moolenaar8af24422005-08-08 22:06:28 +000017941 || br_nest != 0); mb_ptr_adv(p))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017942 {
Bram Moolenaar8af24422005-08-08 22:06:28 +000017943 if (*p == '\'')
17944 {
17945 /* skip over 'string' to avoid counting [ and ] inside it. */
17946 for (p = p + 1; *p != NUL && *p != '\''; mb_ptr_adv(p))
17947 ;
17948 if (*p == NUL)
17949 break;
17950 }
17951 else if (*p == '"')
17952 {
17953 /* skip over "str\"ing" to avoid counting [ and ] inside it. */
17954 for (p = p + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
17955 if (*p == '\\' && p[1] != NUL)
17956 ++p;
17957 if (*p == NUL)
17958 break;
17959 }
17960
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017961 if (mb_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017962 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017963 if (*p == '[')
17964 ++br_nest;
17965 else if (*p == ']')
17966 --br_nest;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017967 }
Bram Moolenaar8af24422005-08-08 22:06:28 +000017968
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017969 if (br_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017970 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017971 if (*p == '{')
17972 {
17973 mb_nest++;
17974 if (expr_start != NULL && *expr_start == NULL)
17975 *expr_start = p;
17976 }
17977 else if (*p == '}')
17978 {
17979 mb_nest--;
17980 if (expr_start != NULL && mb_nest == 0 && *expr_end == NULL)
17981 *expr_end = p;
17982 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017983 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017984 }
17985
17986 return p;
17987}
17988
17989/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017990 * Expands out the 'magic' {}'s in a variable/function name.
17991 * Note that this can call itself recursively, to deal with
17992 * constructs like foo{bar}{baz}{bam}
17993 * The four pointer arguments point to "foo{expre}ss{ion}bar"
17994 * "in_start" ^
17995 * "expr_start" ^
17996 * "expr_end" ^
17997 * "in_end" ^
17998 *
17999 * Returns a new allocated string, which the caller must free.
18000 * Returns NULL for failure.
18001 */
18002 static char_u *
18003make_expanded_name(in_start, expr_start, expr_end, in_end)
18004 char_u *in_start;
18005 char_u *expr_start;
18006 char_u *expr_end;
18007 char_u *in_end;
18008{
18009 char_u c1;
18010 char_u *retval = NULL;
18011 char_u *temp_result;
18012 char_u *nextcmd = NULL;
18013
18014 if (expr_end == NULL || in_end == NULL)
18015 return NULL;
18016 *expr_start = NUL;
18017 *expr_end = NUL;
18018 c1 = *in_end;
18019 *in_end = NUL;
18020
Bram Moolenaar362e1a32006-03-06 23:29:24 +000018021 temp_result = eval_to_string(expr_start + 1, &nextcmd, FALSE);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018022 if (temp_result != NULL && nextcmd == NULL)
18023 {
18024 retval = alloc((unsigned)(STRLEN(temp_result) + (expr_start - in_start)
18025 + (in_end - expr_end) + 1));
18026 if (retval != NULL)
18027 {
18028 STRCPY(retval, in_start);
18029 STRCAT(retval, temp_result);
18030 STRCAT(retval, expr_end + 1);
18031 }
18032 }
18033 vim_free(temp_result);
18034
18035 *in_end = c1; /* put char back for error messages */
18036 *expr_start = '{';
18037 *expr_end = '}';
18038
18039 if (retval != NULL)
18040 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018041 temp_result = find_name_end(retval, &expr_start, &expr_end, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018042 if (expr_start != NULL)
18043 {
18044 /* Further expansion! */
18045 temp_result = make_expanded_name(retval, expr_start,
18046 expr_end, temp_result);
18047 vim_free(retval);
18048 retval = temp_result;
18049 }
18050 }
18051
18052 return retval;
18053}
18054
18055/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018056 * Return TRUE if character "c" can be used in a variable or function name.
Bram Moolenaare9a41262005-01-15 22:18:47 +000018057 * Does not include '{' or '}' for magic braces.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018058 */
18059 static int
18060eval_isnamec(c)
18061 int c;
18062{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018063 return (ASCII_ISALNUM(c) || c == '_' || c == ':' || c == AUTOLOAD_CHAR);
18064}
18065
18066/*
18067 * Return TRUE if character "c" can be used as the first character in a
18068 * variable or function name (excluding '{' and '}').
18069 */
18070 static int
18071eval_isnamec1(c)
18072 int c;
18073{
18074 return (ASCII_ISALPHA(c) || c == '_');
Bram Moolenaar071d4272004-06-13 20:20:40 +000018075}
18076
18077/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018078 * Set number v: variable to "val".
18079 */
18080 void
18081set_vim_var_nr(idx, val)
18082 int idx;
18083 long val;
18084{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018085 vimvars[idx].vv_nr = val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018086}
18087
18088/*
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018089 * Get number v: variable value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018090 */
18091 long
18092get_vim_var_nr(idx)
18093 int idx;
18094{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018095 return vimvars[idx].vv_nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018096}
18097
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018098/*
18099 * Get string v: variable value. Uses a static buffer, can only be used once.
18100 */
18101 char_u *
18102get_vim_var_str(idx)
18103 int idx;
18104{
18105 return get_tv_string(&vimvars[idx].vv_tv);
18106}
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018107
Bram Moolenaar071d4272004-06-13 20:20:40 +000018108/*
18109 * Set v:count, v:count1 and v:prevcount.
18110 */
18111 void
18112set_vcount(count, count1)
18113 long count;
18114 long count1;
18115{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018116 vimvars[VV_PREVCOUNT].vv_nr = vimvars[VV_COUNT].vv_nr;
18117 vimvars[VV_COUNT].vv_nr = count;
18118 vimvars[VV_COUNT1].vv_nr = count1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018119}
18120
18121/*
18122 * Set string v: variable to a copy of "val".
18123 */
18124 void
18125set_vim_var_string(idx, val, len)
18126 int idx;
18127 char_u *val;
18128 int len; /* length of "val" to use or -1 (whole string) */
18129{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018130 /* Need to do this (at least) once, since we can't initialize a union.
18131 * Will always be invoked when "v:progname" is set. */
18132 vimvars[VV_VERSION].vv_nr = VIM_VERSION_100;
18133
Bram Moolenaare9a41262005-01-15 22:18:47 +000018134 vim_free(vimvars[idx].vv_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018135 if (val == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018136 vimvars[idx].vv_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018137 else if (len == -1)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018138 vimvars[idx].vv_str = vim_strsave(val);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018139 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000018140 vimvars[idx].vv_str = vim_strnsave(val, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018141}
18142
18143/*
18144 * Set v:register if needed.
18145 */
18146 void
18147set_reg_var(c)
18148 int c;
18149{
18150 char_u regname;
18151
18152 if (c == 0 || c == ' ')
18153 regname = '"';
18154 else
18155 regname = c;
18156 /* Avoid free/alloc when the value is already right. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000018157 if (vimvars[VV_REG].vv_str == NULL || vimvars[VV_REG].vv_str[0] != c)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018158 set_vim_var_string(VV_REG, &regname, 1);
18159}
18160
18161/*
18162 * Get or set v:exception. If "oldval" == NULL, return the current value.
18163 * Otherwise, restore the value to "oldval" and return NULL.
18164 * Must always be called in pairs to save and restore v:exception! Does not
18165 * take care of memory allocations.
18166 */
18167 char_u *
18168v_exception(oldval)
18169 char_u *oldval;
18170{
18171 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018172 return vimvars[VV_EXCEPTION].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018173
Bram Moolenaare9a41262005-01-15 22:18:47 +000018174 vimvars[VV_EXCEPTION].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018175 return NULL;
18176}
18177
18178/*
18179 * Get or set v:throwpoint. If "oldval" == NULL, return the current value.
18180 * Otherwise, restore the value to "oldval" and return NULL.
18181 * Must always be called in pairs to save and restore v:throwpoint! Does not
18182 * take care of memory allocations.
18183 */
18184 char_u *
18185v_throwpoint(oldval)
18186 char_u *oldval;
18187{
18188 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018189 return vimvars[VV_THROWPOINT].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018190
Bram Moolenaare9a41262005-01-15 22:18:47 +000018191 vimvars[VV_THROWPOINT].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018192 return NULL;
18193}
18194
18195#if defined(FEAT_AUTOCMD) || defined(PROTO)
18196/*
18197 * Set v:cmdarg.
18198 * If "eap" != NULL, use "eap" to generate the value and return the old value.
18199 * If "oldarg" != NULL, restore the value to "oldarg" and return NULL.
18200 * Must always be called in pairs!
18201 */
18202 char_u *
18203set_cmdarg(eap, oldarg)
18204 exarg_T *eap;
18205 char_u *oldarg;
18206{
18207 char_u *oldval;
18208 char_u *newval;
18209 unsigned len;
18210
Bram Moolenaare9a41262005-01-15 22:18:47 +000018211 oldval = vimvars[VV_CMDARG].vv_str;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018212 if (eap == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018213 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018214 vim_free(oldval);
Bram Moolenaare9a41262005-01-15 22:18:47 +000018215 vimvars[VV_CMDARG].vv_str = oldarg;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018216 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018217 }
18218
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018219 if (eap->force_bin == FORCE_BIN)
18220 len = 6;
18221 else if (eap->force_bin == FORCE_NOBIN)
18222 len = 8;
18223 else
18224 len = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018225
18226 if (eap->read_edit)
18227 len += 7;
18228
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018229 if (eap->force_ff != 0)
18230 len += (unsigned)STRLEN(eap->cmd + eap->force_ff) + 6;
18231# ifdef FEAT_MBYTE
18232 if (eap->force_enc != 0)
18233 len += (unsigned)STRLEN(eap->cmd + eap->force_enc) + 7;
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018234 if (eap->bad_char != 0)
18235 len += (unsigned)STRLEN(eap->cmd + eap->bad_char) + 7;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018236# endif
18237
18238 newval = alloc(len + 1);
18239 if (newval == NULL)
18240 return NULL;
18241
18242 if (eap->force_bin == FORCE_BIN)
18243 sprintf((char *)newval, " ++bin");
18244 else if (eap->force_bin == FORCE_NOBIN)
18245 sprintf((char *)newval, " ++nobin");
18246 else
18247 *newval = NUL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018248
18249 if (eap->read_edit)
18250 STRCAT(newval, " ++edit");
18251
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018252 if (eap->force_ff != 0)
18253 sprintf((char *)newval + STRLEN(newval), " ++ff=%s",
18254 eap->cmd + eap->force_ff);
18255# ifdef FEAT_MBYTE
18256 if (eap->force_enc != 0)
18257 sprintf((char *)newval + STRLEN(newval), " ++enc=%s",
18258 eap->cmd + eap->force_enc);
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018259 if (eap->bad_char != 0)
18260 sprintf((char *)newval + STRLEN(newval), " ++bad=%s",
18261 eap->cmd + eap->bad_char);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018262# endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000018263 vimvars[VV_CMDARG].vv_str = newval;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018264 return oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018265}
18266#endif
18267
18268/*
18269 * Get the value of internal variable "name".
18270 * Return OK or FAIL.
18271 */
18272 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018273get_var_tv(name, len, rettv, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018274 char_u *name;
18275 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +000018276 typval_T *rettv; /* NULL when only checking existence */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018277 int verbose; /* may give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018278{
18279 int ret = OK;
Bram Moolenaar33570922005-01-25 22:26:29 +000018280 typval_T *tv = NULL;
18281 typval_T atv;
18282 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018283 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018284
18285 /* truncate the name, so that we can use strcmp() */
18286 cc = name[len];
18287 name[len] = NUL;
18288
18289 /*
18290 * Check for "b:changedtick".
18291 */
18292 if (STRCMP(name, "b:changedtick") == 0)
18293 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000018294 atv.v_type = VAR_NUMBER;
18295 atv.vval.v_number = curbuf->b_changedtick;
18296 tv = &atv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018297 }
18298
18299 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018300 * Check for user-defined variables.
18301 */
18302 else
18303 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018304 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018305 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018306 tv = &v->di_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018307 }
18308
Bram Moolenaare9a41262005-01-15 22:18:47 +000018309 if (tv == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018310 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018311 if (rettv != NULL && verbose)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018312 EMSG2(_(e_undefvar), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018313 ret = FAIL;
18314 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018315 else if (rettv != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018316 copy_tv(tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018317
18318 name[len] = cc;
18319
18320 return ret;
18321}
18322
18323/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018324 * Handle expr[expr], expr[expr:expr] subscript and .name lookup.
18325 * Also handle function call with Funcref variable: func(expr)
18326 * Can all be combined: dict.func(expr)[idx]['func'](expr)
18327 */
18328 static int
18329handle_subscript(arg, rettv, evaluate, verbose)
18330 char_u **arg;
18331 typval_T *rettv;
18332 int evaluate; /* do more than finding the end */
18333 int verbose; /* give error messages */
18334{
18335 int ret = OK;
18336 dict_T *selfdict = NULL;
18337 char_u *s;
18338 int len;
Bram Moolenaard9fba312005-06-26 22:34:35 +000018339 typval_T functv;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018340
18341 while (ret == OK
18342 && (**arg == '['
18343 || (**arg == '.' && rettv->v_type == VAR_DICT)
18344 || (**arg == '(' && rettv->v_type == VAR_FUNC))
18345 && !vim_iswhite(*(*arg - 1)))
18346 {
18347 if (**arg == '(')
18348 {
Bram Moolenaard9fba312005-06-26 22:34:35 +000018349 /* need to copy the funcref so that we can clear rettv */
18350 functv = *rettv;
18351 rettv->v_type = VAR_UNKNOWN;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018352
18353 /* Invoke the function. Recursive! */
Bram Moolenaard9fba312005-06-26 22:34:35 +000018354 s = functv.vval.v_string;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018355 ret = get_func_tv(s, (int)STRLEN(s), rettv, arg,
Bram Moolenaard9fba312005-06-26 22:34:35 +000018356 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
18357 &len, evaluate, selfdict);
18358
18359 /* Clear the funcref afterwards, so that deleting it while
18360 * evaluating the arguments is possible (see test55). */
18361 clear_tv(&functv);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018362
18363 /* Stop the expression evaluation when immediately aborting on
18364 * error, or when an interrupt occurred or an exception was thrown
18365 * but not caught. */
18366 if (aborting())
18367 {
18368 if (ret == OK)
18369 clear_tv(rettv);
18370 ret = FAIL;
18371 }
18372 dict_unref(selfdict);
18373 selfdict = NULL;
18374 }
18375 else /* **arg == '[' || **arg == '.' */
18376 {
18377 dict_unref(selfdict);
18378 if (rettv->v_type == VAR_DICT)
18379 {
18380 selfdict = rettv->vval.v_dict;
18381 if (selfdict != NULL)
18382 ++selfdict->dv_refcount;
18383 }
18384 else
18385 selfdict = NULL;
18386 if (eval_index(arg, rettv, evaluate, verbose) == FAIL)
18387 {
18388 clear_tv(rettv);
18389 ret = FAIL;
18390 }
18391 }
18392 }
18393 dict_unref(selfdict);
18394 return ret;
18395}
18396
18397/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018398 * Allocate memory for a variable type-value, and make it empty (0 or NULL
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018399 * value).
18400 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018401 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018402alloc_tv()
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018403{
Bram Moolenaar33570922005-01-25 22:26:29 +000018404 return (typval_T *)alloc_clear((unsigned)sizeof(typval_T));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018405}
18406
18407/*
18408 * Allocate memory for a variable type-value, and assign a string to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018409 * The string "s" must have been allocated, it is consumed.
18410 * Return NULL for out of memory, the variable otherwise.
18411 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018412 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018413alloc_string_tv(s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018414 char_u *s;
18415{
Bram Moolenaar33570922005-01-25 22:26:29 +000018416 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018417
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018418 rettv = alloc_tv();
18419 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018420 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018421 rettv->v_type = VAR_STRING;
18422 rettv->vval.v_string = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018423 }
18424 else
18425 vim_free(s);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018426 return rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018427}
18428
18429/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018430 * Free the memory for a variable type-value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018431 */
Bram Moolenaar4770d092006-01-12 23:22:24 +000018432 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018433free_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018434 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018435{
18436 if (varp != NULL)
18437 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018438 switch (varp->v_type)
18439 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018440 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018441 func_unref(varp->vval.v_string);
18442 /*FALLTHROUGH*/
18443 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018444 vim_free(varp->vval.v_string);
18445 break;
18446 case VAR_LIST:
18447 list_unref(varp->vval.v_list);
18448 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018449 case VAR_DICT:
18450 dict_unref(varp->vval.v_dict);
18451 break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000018452 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018453#ifdef FEAT_FLOAT
18454 case VAR_FLOAT:
18455#endif
Bram Moolenaar758711c2005-02-02 23:11:38 +000018456 case VAR_UNKNOWN:
18457 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018458 default:
Bram Moolenaar758711c2005-02-02 23:11:38 +000018459 EMSG2(_(e_intern2), "free_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018460 break;
18461 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018462 vim_free(varp);
18463 }
18464}
18465
18466/*
18467 * Free the memory for a variable value and set the value to NULL or 0.
18468 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018469 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018470clear_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018471 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018472{
18473 if (varp != NULL)
18474 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018475 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018476 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018477 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018478 func_unref(varp->vval.v_string);
18479 /*FALLTHROUGH*/
18480 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018481 vim_free(varp->vval.v_string);
18482 varp->vval.v_string = NULL;
18483 break;
18484 case VAR_LIST:
18485 list_unref(varp->vval.v_list);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018486 varp->vval.v_list = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018487 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018488 case VAR_DICT:
18489 dict_unref(varp->vval.v_dict);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018490 varp->vval.v_dict = NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018491 break;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018492 case VAR_NUMBER:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018493 varp->vval.v_number = 0;
18494 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018495#ifdef FEAT_FLOAT
18496 case VAR_FLOAT:
18497 varp->vval.v_float = 0.0;
18498 break;
18499#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018500 case VAR_UNKNOWN:
18501 break;
18502 default:
18503 EMSG2(_(e_intern2), "clear_tv()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000018504 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018505 varp->v_lock = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018506 }
18507}
18508
18509/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018510 * Set the value of a variable to NULL without freeing items.
18511 */
18512 static void
18513init_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018514 typval_T *varp;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018515{
18516 if (varp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018517 vim_memset(varp, 0, sizeof(typval_T));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018518}
18519
18520/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018521 * Get the number value of a variable.
18522 * If it is a String variable, uses vim_str2nr().
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018523 * For incompatible types, return 0.
18524 * get_tv_number_chk() is similar to get_tv_number(), but informs the
18525 * caller of incompatible types: it sets *denote to TRUE if "denote"
18526 * is not NULL or returns -1 otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018527 */
18528 static long
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018529get_tv_number(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018530 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018531{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018532 int error = FALSE;
18533
18534 return get_tv_number_chk(varp, &error); /* return 0L on error */
18535}
18536
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018537 long
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018538get_tv_number_chk(varp, denote)
18539 typval_T *varp;
18540 int *denote;
18541{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018542 long n = 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018543
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018544 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018545 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018546 case VAR_NUMBER:
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018547 return (long)(varp->vval.v_number);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018548#ifdef FEAT_FLOAT
18549 case VAR_FLOAT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018550 EMSG(_("E805: Using a Float as a Number"));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018551 break;
18552#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018553 case VAR_FUNC:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018554 EMSG(_("E703: Using a Funcref as a Number"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018555 break;
18556 case VAR_STRING:
18557 if (varp->vval.v_string != NULL)
18558 vim_str2nr(varp->vval.v_string, NULL, NULL,
18559 TRUE, TRUE, &n, NULL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018560 return n;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018561 case VAR_LIST:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018562 EMSG(_("E745: Using a List as a Number"));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018563 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018564 case VAR_DICT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018565 EMSG(_("E728: Using a Dictionary as a Number"));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018566 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018567 default:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018568 EMSG2(_(e_intern2), "get_tv_number()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018569 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018570 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018571 if (denote == NULL) /* useful for values that must be unsigned */
18572 n = -1;
18573 else
18574 *denote = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018575 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018576}
18577
18578/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018579 * Get the lnum from the first argument.
18580 * Also accepts ".", "$", etc., but that only works for the current buffer.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018581 * Returns -1 on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018582 */
18583 static linenr_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018584get_tv_lnum(argvars)
Bram Moolenaar33570922005-01-25 22:26:29 +000018585 typval_T *argvars;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018586{
Bram Moolenaar33570922005-01-25 22:26:29 +000018587 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018588 linenr_T lnum;
18589
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018590 lnum = get_tv_number_chk(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018591 if (lnum == 0) /* no valid number, try using line() */
18592 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018593 rettv.v_type = VAR_NUMBER;
18594 f_line(argvars, &rettv);
18595 lnum = rettv.vval.v_number;
18596 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018597 }
18598 return lnum;
18599}
18600
18601/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018602 * Get the lnum from the first argument.
18603 * Also accepts "$", then "buf" is used.
18604 * Returns 0 on error.
18605 */
18606 static linenr_T
18607get_tv_lnum_buf(argvars, buf)
18608 typval_T *argvars;
18609 buf_T *buf;
18610{
18611 if (argvars[0].v_type == VAR_STRING
18612 && argvars[0].vval.v_string != NULL
18613 && argvars[0].vval.v_string[0] == '$'
18614 && buf != NULL)
18615 return buf->b_ml.ml_line_count;
18616 return get_tv_number_chk(&argvars[0], NULL);
18617}
18618
18619/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018620 * Get the string value of a variable.
18621 * If it is a Number variable, the number is converted into a string.
Bram Moolenaara7043832005-01-21 11:56:39 +000018622 * get_tv_string() uses a single, static buffer. YOU CAN ONLY USE IT ONCE!
18623 * get_tv_string_buf() uses a given buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018624 * If the String variable has never been set, return an empty string.
18625 * Never returns NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018626 * get_tv_string_chk() and get_tv_string_buf_chk() are similar, but return
18627 * NULL on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018628 */
18629 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018630get_tv_string(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018631 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018632{
18633 static char_u mybuf[NUMBUFLEN];
18634
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018635 return get_tv_string_buf(varp, mybuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018636}
18637
18638 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018639get_tv_string_buf(varp, buf)
Bram Moolenaar33570922005-01-25 22:26:29 +000018640 typval_T *varp;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018641 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018642{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018643 char_u *res = get_tv_string_buf_chk(varp, buf);
18644
18645 return res != NULL ? res : (char_u *)"";
18646}
18647
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018648 char_u *
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018649get_tv_string_chk(varp)
18650 typval_T *varp;
18651{
18652 static char_u mybuf[NUMBUFLEN];
18653
18654 return get_tv_string_buf_chk(varp, mybuf);
18655}
18656
18657 static char_u *
18658get_tv_string_buf_chk(varp, buf)
18659 typval_T *varp;
18660 char_u *buf;
18661{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018662 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018663 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018664 case VAR_NUMBER:
18665 sprintf((char *)buf, "%ld", (long)varp->vval.v_number);
18666 return buf;
18667 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018668 EMSG(_("E729: using Funcref as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018669 break;
18670 case VAR_LIST:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018671 EMSG(_("E730: using List as a String"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000018672 break;
18673 case VAR_DICT:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018674 EMSG(_("E731: using Dictionary as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018675 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018676#ifdef FEAT_FLOAT
18677 case VAR_FLOAT:
18678 EMSG(_("E806: using Float as a String"));
18679 break;
18680#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018681 case VAR_STRING:
18682 if (varp->vval.v_string != NULL)
18683 return varp->vval.v_string;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018684 return (char_u *)"";
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018685 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018686 EMSG2(_(e_intern2), "get_tv_string_buf()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018687 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018688 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018689 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018690}
18691
18692/*
18693 * Find variable "name" in the list of variables.
18694 * Return a pointer to it if found, NULL if not found.
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018695 * Careful: "a:0" variables don't have a name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018696 * When "htp" is not NULL we are writing to the variable, set "htp" to the
Bram Moolenaar33570922005-01-25 22:26:29 +000018697 * hashtab_T used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018698 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018699 static dictitem_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018700find_var(name, htp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018701 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000018702 hashtab_T **htp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018703{
Bram Moolenaar071d4272004-06-13 20:20:40 +000018704 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000018705 hashtab_T *ht;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018706
Bram Moolenaara7043832005-01-21 11:56:39 +000018707 ht = find_var_ht(name, &varname);
18708 if (htp != NULL)
18709 *htp = ht;
18710 if (ht == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018711 return NULL;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018712 return find_var_in_ht(ht, varname, htp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018713}
18714
18715/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018716 * Find variable "varname" in hashtab "ht".
Bram Moolenaara7043832005-01-21 11:56:39 +000018717 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018718 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018719 static dictitem_T *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018720find_var_in_ht(ht, varname, writing)
Bram Moolenaar33570922005-01-25 22:26:29 +000018721 hashtab_T *ht;
Bram Moolenaara7043832005-01-21 11:56:39 +000018722 char_u *varname;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018723 int writing;
Bram Moolenaara7043832005-01-21 11:56:39 +000018724{
Bram Moolenaar33570922005-01-25 22:26:29 +000018725 hashitem_T *hi;
18726
18727 if (*varname == NUL)
18728 {
18729 /* Must be something like "s:", otherwise "ht" would be NULL. */
18730 switch (varname[-2])
18731 {
18732 case 's': return &SCRIPT_SV(current_SID).sv_var;
18733 case 'g': return &globvars_var;
18734 case 'v': return &vimvars_var;
18735 case 'b': return &curbuf->b_bufvar;
18736 case 'w': return &curwin->w_winvar;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018737#ifdef FEAT_WINDOWS
18738 case 't': return &curtab->tp_winvar;
18739#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000018740 case 'l': return current_funccal == NULL
18741 ? NULL : &current_funccal->l_vars_var;
18742 case 'a': return current_funccal == NULL
18743 ? NULL : &current_funccal->l_avars_var;
Bram Moolenaar33570922005-01-25 22:26:29 +000018744 }
18745 return NULL;
18746 }
Bram Moolenaara7043832005-01-21 11:56:39 +000018747
18748 hi = hash_find(ht, varname);
18749 if (HASHITEM_EMPTY(hi))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018750 {
18751 /* For global variables we may try auto-loading the script. If it
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018752 * worked find the variable again. Don't auto-load a script if it was
18753 * loaded already, otherwise it would be loaded every time when
18754 * checking if a function name is a Funcref variable. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018755 if (ht == &globvarht && !writing
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018756 && script_autoload(varname, FALSE) && !aborting())
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018757 hi = hash_find(ht, varname);
18758 if (HASHITEM_EMPTY(hi))
18759 return NULL;
18760 }
Bram Moolenaar33570922005-01-25 22:26:29 +000018761 return HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000018762}
18763
18764/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018765 * Find the hashtab used for a variable name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018766 * Set "varname" to the start of name without ':'.
18767 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018768 static hashtab_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018769find_var_ht(name, varname)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018770 char_u *name;
18771 char_u **varname;
18772{
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018773 hashitem_T *hi;
18774
Bram Moolenaar071d4272004-06-13 20:20:40 +000018775 if (name[1] != ':')
18776 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018777 /* The name must not start with a colon or #. */
18778 if (name[0] == ':' || name[0] == AUTOLOAD_CHAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018779 return NULL;
18780 *varname = name;
Bram Moolenaar532c7802005-01-27 14:44:31 +000018781
18782 /* "version" is "v:version" in all scopes */
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018783 hi = hash_find(&compat_hashtab, name);
18784 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar532c7802005-01-27 14:44:31 +000018785 return &compat_hashtab;
18786
Bram Moolenaar071d4272004-06-13 20:20:40 +000018787 if (current_funccal == NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018788 return &globvarht; /* global variable */
18789 return &current_funccal->l_vars.dv_hashtab; /* l: variable */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018790 }
18791 *varname = name + 2;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018792 if (*name == 'g') /* global variable */
18793 return &globvarht;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018794 /* There must be no ':' or '#' in the rest of the name, unless g: is used
18795 */
18796 if (vim_strchr(name + 2, ':') != NULL
18797 || vim_strchr(name + 2, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018798 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018799 if (*name == 'b') /* buffer variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018800 return &curbuf->b_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018801 if (*name == 'w') /* window variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018802 return &curwin->w_vars.dv_hashtab;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018803#ifdef FEAT_WINDOWS
18804 if (*name == 't') /* tab page variable */
18805 return &curtab->tp_vars.dv_hashtab;
18806#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000018807 if (*name == 'v') /* v: variable */
18808 return &vimvarht;
18809 if (*name == 'a' && current_funccal != NULL) /* function argument */
18810 return &current_funccal->l_avars.dv_hashtab;
18811 if (*name == 'l' && current_funccal != NULL) /* local function variable */
18812 return &current_funccal->l_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018813 if (*name == 's' /* script variable */
18814 && current_SID > 0 && current_SID <= ga_scripts.ga_len)
18815 return &SCRIPT_VARS(current_SID);
18816 return NULL;
18817}
18818
18819/*
18820 * Get the string value of a (global/local) variable.
18821 * Returns NULL when it doesn't exist.
18822 */
18823 char_u *
18824get_var_value(name)
18825 char_u *name;
18826{
Bram Moolenaar33570922005-01-25 22:26:29 +000018827 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018828
Bram Moolenaara7043832005-01-21 11:56:39 +000018829 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018830 if (v == NULL)
18831 return NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000018832 return get_tv_string(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018833}
18834
18835/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018836 * Allocate a new hashtab for a sourced script. It will be used while
Bram Moolenaar071d4272004-06-13 20:20:40 +000018837 * sourcing this script and when executing functions defined in the script.
18838 */
18839 void
18840new_script_vars(id)
18841 scid_T id;
18842{
Bram Moolenaara7043832005-01-21 11:56:39 +000018843 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +000018844 hashtab_T *ht;
18845 scriptvar_T *sv;
Bram Moolenaara7043832005-01-21 11:56:39 +000018846
Bram Moolenaar071d4272004-06-13 20:20:40 +000018847 if (ga_grow(&ga_scripts, (int)(id - ga_scripts.ga_len)) == OK)
18848 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018849 /* Re-allocating ga_data means that an ht_array pointing to
18850 * ht_smallarray becomes invalid. We can recognize this: ht_mask is
Bram Moolenaar33570922005-01-25 22:26:29 +000018851 * at its init value. Also reset "v_dict", it's always the same. */
Bram Moolenaara7043832005-01-21 11:56:39 +000018852 for (i = 1; i <= ga_scripts.ga_len; ++i)
18853 {
18854 ht = &SCRIPT_VARS(i);
18855 if (ht->ht_mask == HT_INIT_SIZE - 1)
18856 ht->ht_array = ht->ht_smallarray;
Bram Moolenaar33570922005-01-25 22:26:29 +000018857 sv = &SCRIPT_SV(i);
18858 sv->sv_var.di_tv.vval.v_dict = &sv->sv_dict;
Bram Moolenaara7043832005-01-21 11:56:39 +000018859 }
18860
Bram Moolenaar071d4272004-06-13 20:20:40 +000018861 while (ga_scripts.ga_len < id)
18862 {
Bram Moolenaar33570922005-01-25 22:26:29 +000018863 sv = &SCRIPT_SV(ga_scripts.ga_len + 1);
18864 init_var_dict(&sv->sv_dict, &sv->sv_var);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018865 ++ga_scripts.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018866 }
18867 }
18868}
18869
18870/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018871 * Initialize dictionary "dict" as a scope and set variable "dict_var" to
18872 * point to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018873 */
18874 void
Bram Moolenaar33570922005-01-25 22:26:29 +000018875init_var_dict(dict, dict_var)
18876 dict_T *dict;
18877 dictitem_T *dict_var;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018878{
Bram Moolenaar33570922005-01-25 22:26:29 +000018879 hash_init(&dict->dv_hashtab);
18880 dict->dv_refcount = 99999;
18881 dict_var->di_tv.vval.v_dict = dict;
18882 dict_var->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018883 dict_var->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000018884 dict_var->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
18885 dict_var->di_key[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018886}
18887
18888/*
18889 * Clean up a list of internal variables.
Bram Moolenaar33570922005-01-25 22:26:29 +000018890 * Frees all allocated variables and the value they contain.
18891 * Clears hashtab "ht", does not free it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018892 */
18893 void
Bram Moolenaara7043832005-01-21 11:56:39 +000018894vars_clear(ht)
Bram Moolenaar33570922005-01-25 22:26:29 +000018895 hashtab_T *ht;
18896{
18897 vars_clear_ext(ht, TRUE);
18898}
18899
18900/*
18901 * Like vars_clear(), but only free the value if "free_val" is TRUE.
18902 */
18903 static void
18904vars_clear_ext(ht, free_val)
18905 hashtab_T *ht;
18906 int free_val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018907{
Bram Moolenaara7043832005-01-21 11:56:39 +000018908 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000018909 hashitem_T *hi;
18910 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018911
Bram Moolenaar33570922005-01-25 22:26:29 +000018912 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018913 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +000018914 for (hi = ht->ht_array; todo > 0; ++hi)
18915 {
18916 if (!HASHITEM_EMPTY(hi))
18917 {
18918 --todo;
18919
Bram Moolenaar33570922005-01-25 22:26:29 +000018920 /* Free the variable. Don't remove it from the hashtab,
Bram Moolenaara7043832005-01-21 11:56:39 +000018921 * ht_array might change then. hash_clear() takes care of it
18922 * later. */
Bram Moolenaar33570922005-01-25 22:26:29 +000018923 v = HI2DI(hi);
18924 if (free_val)
18925 clear_tv(&v->di_tv);
18926 if ((v->di_flags & DI_FLAGS_FIX) == 0)
18927 vim_free(v);
Bram Moolenaara7043832005-01-21 11:56:39 +000018928 }
18929 }
18930 hash_clear(ht);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000018931 ht->ht_used = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018932}
18933
Bram Moolenaara7043832005-01-21 11:56:39 +000018934/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018935 * Delete a variable from hashtab "ht" at item "hi".
18936 * Clear the variable value and free the dictitem.
Bram Moolenaara7043832005-01-21 11:56:39 +000018937 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018938 static void
Bram Moolenaara7043832005-01-21 11:56:39 +000018939delete_var(ht, hi)
Bram Moolenaar33570922005-01-25 22:26:29 +000018940 hashtab_T *ht;
18941 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018942{
Bram Moolenaar33570922005-01-25 22:26:29 +000018943 dictitem_T *di = HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000018944
18945 hash_remove(ht, hi);
Bram Moolenaar33570922005-01-25 22:26:29 +000018946 clear_tv(&di->di_tv);
18947 vim_free(di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018948}
18949
18950/*
18951 * List the value of one internal variable.
18952 */
18953 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000018954list_one_var(v, prefix, first)
Bram Moolenaar33570922005-01-25 22:26:29 +000018955 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018956 char_u *prefix;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000018957 int *first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018958{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018959 char_u *tofree;
18960 char_u *s;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000018961 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018962
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000018963 s = echo_string(&v->di_tv, &tofree, numbuf, ++current_copyID);
Bram Moolenaar33570922005-01-25 22:26:29 +000018964 list_one_var_a(prefix, v->di_key, v->di_tv.v_type,
Bram Moolenaar7d61a922007-08-30 09:12:23 +000018965 s == NULL ? (char_u *)"" : s, first);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018966 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018967}
18968
Bram Moolenaar071d4272004-06-13 20:20:40 +000018969 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000018970list_one_var_a(prefix, name, type, string, first)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018971 char_u *prefix;
18972 char_u *name;
18973 int type;
18974 char_u *string;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000018975 int *first; /* when TRUE clear rest of screen and set to FALSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018976{
Bram Moolenaar31859182007-08-14 20:41:13 +000018977 /* don't use msg() or msg_attr() to avoid overwriting "v:statusmsg" */
18978 msg_start();
18979 msg_puts(prefix);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018980 if (name != NULL) /* "a:" vars don't have a name stored */
18981 msg_puts(name);
18982 msg_putchar(' ');
18983 msg_advance(22);
18984 if (type == VAR_NUMBER)
18985 msg_putchar('#');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018986 else if (type == VAR_FUNC)
18987 msg_putchar('*');
18988 else if (type == VAR_LIST)
18989 {
18990 msg_putchar('[');
18991 if (*string == '[')
18992 ++string;
18993 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000018994 else if (type == VAR_DICT)
18995 {
18996 msg_putchar('{');
18997 if (*string == '{')
18998 ++string;
18999 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019000 else
19001 msg_putchar(' ');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019002
Bram Moolenaar071d4272004-06-13 20:20:40 +000019003 msg_outtrans(string);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019004
19005 if (type == VAR_FUNC)
19006 msg_puts((char_u *)"()");
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019007 if (*first)
19008 {
19009 msg_clr_eos();
19010 *first = FALSE;
19011 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019012}
19013
19014/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019015 * Set variable "name" to value in "tv".
Bram Moolenaar071d4272004-06-13 20:20:40 +000019016 * If the variable already exists, the value is updated.
19017 * Otherwise the variable is created.
19018 */
19019 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019020set_var(name, tv, copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019021 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000019022 typval_T *tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019023 int copy; /* make copy of value in "tv" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019024{
Bram Moolenaar33570922005-01-25 22:26:29 +000019025 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019026 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000019027 hashtab_T *ht;
Bram Moolenaar92124a32005-06-17 22:03:40 +000019028 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019029
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019030 if (tv->v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019031 {
19032 if (!(vim_strchr((char_u *)"wbs", name[0]) != NULL && name[1] == ':')
19033 && !ASCII_ISUPPER((name[0] != NUL && name[1] == ':')
19034 ? name[2] : name[0]))
19035 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019036 EMSG2(_("E704: Funcref variable name must start with a capital: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019037 return;
19038 }
19039 if (function_exists(name))
19040 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000019041 EMSG2(_("E705: Variable name conflicts with existing function: %s"),
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019042 name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019043 return;
19044 }
19045 }
19046
Bram Moolenaara7043832005-01-21 11:56:39 +000019047 ht = find_var_ht(name, &varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019048 if (ht == NULL || *varname == NUL)
Bram Moolenaara7043832005-01-21 11:56:39 +000019049 {
Bram Moolenaar92124a32005-06-17 22:03:40 +000019050 EMSG2(_(e_illvar), name);
Bram Moolenaara7043832005-01-21 11:56:39 +000019051 return;
19052 }
19053
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019054 v = find_var_in_ht(ht, varname, TRUE);
Bram Moolenaar33570922005-01-25 22:26:29 +000019055 if (v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019056 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019057 /* existing variable, need to clear the value */
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019058 if (var_check_ro(v->di_flags, name)
19059 || tv_check_lock(v->di_tv.v_lock, name))
Bram Moolenaar33570922005-01-25 22:26:29 +000019060 return;
19061 if (v->di_tv.v_type != tv->v_type
19062 && !((v->di_tv.v_type == VAR_STRING
19063 || v->di_tv.v_type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019064 && (tv->v_type == VAR_STRING
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019065 || tv->v_type == VAR_NUMBER))
19066#ifdef FEAT_FLOAT
19067 && !((v->di_tv.v_type == VAR_NUMBER
19068 || v->di_tv.v_type == VAR_FLOAT)
19069 && (tv->v_type == VAR_NUMBER
19070 || tv->v_type == VAR_FLOAT))
19071#endif
19072 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019073 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019074 EMSG2(_("E706: Variable type mismatch for: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019075 return;
19076 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019077
19078 /*
Bram Moolenaar758711c2005-02-02 23:11:38 +000019079 * Handle setting internal v: variables separately: we don't change
19080 * the type.
Bram Moolenaar33570922005-01-25 22:26:29 +000019081 */
19082 if (ht == &vimvarht)
19083 {
19084 if (v->di_tv.v_type == VAR_STRING)
19085 {
19086 vim_free(v->di_tv.vval.v_string);
19087 if (copy || tv->v_type != VAR_STRING)
19088 v->di_tv.vval.v_string = vim_strsave(get_tv_string(tv));
19089 else
19090 {
19091 /* Take over the string to avoid an extra alloc/free. */
19092 v->di_tv.vval.v_string = tv->vval.v_string;
19093 tv->vval.v_string = NULL;
19094 }
19095 }
19096 else if (v->di_tv.v_type != VAR_NUMBER)
19097 EMSG2(_(e_intern2), "set_var()");
19098 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019099 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019100 v->di_tv.vval.v_number = get_tv_number(tv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019101 if (STRCMP(varname, "searchforward") == 0)
19102 set_search_direction(v->di_tv.vval.v_number ? '/' : '?');
19103 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019104 return;
19105 }
19106
19107 clear_tv(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019108 }
19109 else /* add a new variable */
19110 {
Bram Moolenaar5fcc3fe2006-06-22 15:35:14 +000019111 /* Can't add "v:" variable. */
19112 if (ht == &vimvarht)
19113 {
19114 EMSG2(_(e_illvar), name);
19115 return;
19116 }
19117
Bram Moolenaar92124a32005-06-17 22:03:40 +000019118 /* Make sure the variable name is valid. */
19119 for (p = varname; *p != NUL; ++p)
Bram Moolenaara5792f52005-11-23 21:25:05 +000019120 if (!eval_isnamec1(*p) && (p == varname || !VIM_ISDIGIT(*p))
19121 && *p != AUTOLOAD_CHAR)
Bram Moolenaar92124a32005-06-17 22:03:40 +000019122 {
19123 EMSG2(_(e_illvar), varname);
19124 return;
19125 }
19126
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019127 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
19128 + STRLEN(varname)));
Bram Moolenaara7043832005-01-21 11:56:39 +000019129 if (v == NULL)
19130 return;
Bram Moolenaar33570922005-01-25 22:26:29 +000019131 STRCPY(v->di_key, varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019132 if (hash_add(ht, DI2HIKEY(v)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019133 {
Bram Moolenaara7043832005-01-21 11:56:39 +000019134 vim_free(v);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019135 return;
19136 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019137 v->di_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019138 }
Bram Moolenaara7043832005-01-21 11:56:39 +000019139
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019140 if (copy || tv->v_type == VAR_NUMBER || tv->v_type == VAR_FLOAT)
Bram Moolenaar33570922005-01-25 22:26:29 +000019141 copy_tv(tv, &v->di_tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019142 else
19143 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019144 v->di_tv = *tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019145 v->di_tv.v_lock = 0;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019146 init_tv(tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019147 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019148}
19149
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019150/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019151 * Return TRUE if di_flags "flags" indicates variable "name" is read-only.
Bram Moolenaar33570922005-01-25 22:26:29 +000019152 * Also give an error message.
19153 */
19154 static int
19155var_check_ro(flags, name)
19156 int flags;
19157 char_u *name;
19158{
19159 if (flags & DI_FLAGS_RO)
19160 {
19161 EMSG2(_(e_readonlyvar), name);
19162 return TRUE;
19163 }
19164 if ((flags & DI_FLAGS_RO_SBX) && sandbox)
19165 {
19166 EMSG2(_(e_readonlysbx), name);
19167 return TRUE;
19168 }
19169 return FALSE;
19170}
19171
19172/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019173 * Return TRUE if di_flags "flags" indicates variable "name" is fixed.
19174 * Also give an error message.
19175 */
19176 static int
19177var_check_fixed(flags, name)
19178 int flags;
19179 char_u *name;
19180{
19181 if (flags & DI_FLAGS_FIX)
19182 {
19183 EMSG2(_("E795: Cannot delete variable %s"), name);
19184 return TRUE;
19185 }
19186 return FALSE;
19187}
19188
19189/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019190 * Return TRUE if typeval "tv" is set to be locked (immutable).
19191 * Also give an error message, using "name".
19192 */
19193 static int
19194tv_check_lock(lock, name)
19195 int lock;
19196 char_u *name;
19197{
19198 if (lock & VAR_LOCKED)
19199 {
19200 EMSG2(_("E741: Value is locked: %s"),
19201 name == NULL ? (char_u *)_("Unknown") : name);
19202 return TRUE;
19203 }
19204 if (lock & VAR_FIXED)
19205 {
19206 EMSG2(_("E742: Cannot change value of %s"),
19207 name == NULL ? (char_u *)_("Unknown") : name);
19208 return TRUE;
19209 }
19210 return FALSE;
19211}
19212
19213/*
Bram Moolenaar33570922005-01-25 22:26:29 +000019214 * Copy the values from typval_T "from" to typval_T "to".
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019215 * When needed allocates string or increases reference count.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019216 * Does not make a copy of a list or dict but copies the reference!
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019217 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019218 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019219copy_tv(from, to)
Bram Moolenaar33570922005-01-25 22:26:29 +000019220 typval_T *from;
19221 typval_T *to;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019222{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019223 to->v_type = from->v_type;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019224 to->v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019225 switch (from->v_type)
19226 {
19227 case VAR_NUMBER:
19228 to->vval.v_number = from->vval.v_number;
19229 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019230#ifdef FEAT_FLOAT
19231 case VAR_FLOAT:
19232 to->vval.v_float = from->vval.v_float;
19233 break;
19234#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019235 case VAR_STRING:
19236 case VAR_FUNC:
19237 if (from->vval.v_string == NULL)
19238 to->vval.v_string = NULL;
19239 else
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019240 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019241 to->vval.v_string = vim_strsave(from->vval.v_string);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019242 if (from->v_type == VAR_FUNC)
19243 func_ref(to->vval.v_string);
19244 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019245 break;
19246 case VAR_LIST:
19247 if (from->vval.v_list == NULL)
19248 to->vval.v_list = NULL;
19249 else
19250 {
19251 to->vval.v_list = from->vval.v_list;
19252 ++to->vval.v_list->lv_refcount;
19253 }
19254 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000019255 case VAR_DICT:
19256 if (from->vval.v_dict == NULL)
19257 to->vval.v_dict = NULL;
19258 else
19259 {
19260 to->vval.v_dict = from->vval.v_dict;
19261 ++to->vval.v_dict->dv_refcount;
19262 }
19263 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019264 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019265 EMSG2(_(e_intern2), "copy_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019266 break;
19267 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019268}
19269
19270/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000019271 * Make a copy of an item.
19272 * Lists and Dictionaries are also copied. A deep copy if "deep" is set.
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019273 * For deepcopy() "copyID" is zero for a full copy or the ID for when a
19274 * reference to an already copied list/dict can be used.
19275 * Returns FAIL or OK.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019276 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019277 static int
19278item_copy(from, to, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +000019279 typval_T *from;
19280 typval_T *to;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019281 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019282 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019283{
19284 static int recurse = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019285 int ret = OK;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019286
Bram Moolenaar33570922005-01-25 22:26:29 +000019287 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +000019288 {
19289 EMSG(_("E698: variable nested too deep for making a copy"));
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019290 return FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019291 }
19292 ++recurse;
19293
19294 switch (from->v_type)
19295 {
19296 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019297#ifdef FEAT_FLOAT
19298 case VAR_FLOAT:
19299#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000019300 case VAR_STRING:
19301 case VAR_FUNC:
19302 copy_tv(from, to);
19303 break;
19304 case VAR_LIST:
19305 to->v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019306 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019307 if (from->vval.v_list == NULL)
19308 to->vval.v_list = NULL;
19309 else if (copyID != 0 && from->vval.v_list->lv_copyID == copyID)
19310 {
19311 /* use the copy made earlier */
19312 to->vval.v_list = from->vval.v_list->lv_copylist;
19313 ++to->vval.v_list->lv_refcount;
19314 }
19315 else
19316 to->vval.v_list = list_copy(from->vval.v_list, deep, copyID);
19317 if (to->vval.v_list == NULL)
19318 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019319 break;
19320 case VAR_DICT:
19321 to->v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019322 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019323 if (from->vval.v_dict == NULL)
19324 to->vval.v_dict = NULL;
19325 else if (copyID != 0 && from->vval.v_dict->dv_copyID == copyID)
19326 {
19327 /* use the copy made earlier */
19328 to->vval.v_dict = from->vval.v_dict->dv_copydict;
19329 ++to->vval.v_dict->dv_refcount;
19330 }
19331 else
19332 to->vval.v_dict = dict_copy(from->vval.v_dict, deep, copyID);
19333 if (to->vval.v_dict == NULL)
19334 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019335 break;
19336 default:
19337 EMSG2(_(e_intern2), "item_copy()");
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019338 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019339 }
19340 --recurse;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019341 return ret;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019342}
19343
19344/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000019345 * ":echo expr1 ..." print each argument separated with a space, add a
19346 * newline at the end.
19347 * ":echon expr1 ..." print each argument plain.
19348 */
19349 void
19350ex_echo(eap)
19351 exarg_T *eap;
19352{
19353 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019354 typval_T rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019355 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019356 char_u *p;
19357 int needclr = TRUE;
19358 int atstart = TRUE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019359 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000019360
19361 if (eap->skip)
19362 ++emsg_skip;
19363 while (*arg != NUL && *arg != '|' && *arg != '\n' && !got_int)
19364 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019365 /* If eval1() causes an error message the text from the command may
19366 * still need to be cleared. E.g., "echo 22,44". */
19367 need_clr_eos = needclr;
19368
Bram Moolenaar071d4272004-06-13 20:20:40 +000019369 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019370 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019371 {
19372 /*
19373 * Report the invalid expression unless the expression evaluation
19374 * has been cancelled due to an aborting error, an interrupt, or an
19375 * exception.
19376 */
19377 if (!aborting())
19378 EMSG2(_(e_invexpr2), p);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019379 need_clr_eos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019380 break;
19381 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019382 need_clr_eos = FALSE;
19383
Bram Moolenaar071d4272004-06-13 20:20:40 +000019384 if (!eap->skip)
19385 {
19386 if (atstart)
19387 {
19388 atstart = FALSE;
19389 /* Call msg_start() after eval1(), evaluating the expression
19390 * may cause a message to appear. */
19391 if (eap->cmdidx == CMD_echo)
19392 msg_start();
19393 }
19394 else if (eap->cmdidx == CMD_echo)
19395 msg_puts_attr((char_u *)" ", echo_attr);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000019396 p = echo_string(&rettv, &tofree, numbuf, ++current_copyID);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019397 if (p != NULL)
19398 for ( ; *p != NUL && !got_int; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019399 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019400 if (*p == '\n' || *p == '\r' || *p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019401 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019402 if (*p != TAB && needclr)
19403 {
19404 /* remove any text still there from the command */
19405 msg_clr_eos();
19406 needclr = FALSE;
19407 }
19408 msg_putchar_attr(*p, echo_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019409 }
19410 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019411 {
19412#ifdef FEAT_MBYTE
19413 if (has_mbyte)
19414 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000019415 int i = (*mb_ptr2len)(p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019416
19417 (void)msg_outtrans_len_attr(p, i, echo_attr);
19418 p += i - 1;
19419 }
19420 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000019421#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019422 (void)msg_outtrans_len_attr(p, 1, echo_attr);
19423 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019424 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019425 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019426 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019427 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019428 arg = skipwhite(arg);
19429 }
19430 eap->nextcmd = check_nextcmd(arg);
19431
19432 if (eap->skip)
19433 --emsg_skip;
19434 else
19435 {
19436 /* remove text that may still be there from the command */
19437 if (needclr)
19438 msg_clr_eos();
19439 if (eap->cmdidx == CMD_echo)
19440 msg_end();
19441 }
19442}
19443
19444/*
19445 * ":echohl {name}".
19446 */
19447 void
19448ex_echohl(eap)
19449 exarg_T *eap;
19450{
19451 int id;
19452
19453 id = syn_name2id(eap->arg);
19454 if (id == 0)
19455 echo_attr = 0;
19456 else
19457 echo_attr = syn_id2attr(id);
19458}
19459
19460/*
19461 * ":execute expr1 ..." execute the result of an expression.
19462 * ":echomsg expr1 ..." Print a message
19463 * ":echoerr expr1 ..." Print an error
19464 * Each gets spaces around each argument and a newline at the end for
19465 * echo commands
19466 */
19467 void
19468ex_execute(eap)
19469 exarg_T *eap;
19470{
19471 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019472 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019473 int ret = OK;
19474 char_u *p;
19475 garray_T ga;
19476 int len;
19477 int save_did_emsg;
19478
19479 ga_init2(&ga, 1, 80);
19480
19481 if (eap->skip)
19482 ++emsg_skip;
19483 while (*arg != NUL && *arg != '|' && *arg != '\n')
19484 {
19485 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019486 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019487 {
19488 /*
19489 * Report the invalid expression unless the expression evaluation
19490 * has been cancelled due to an aborting error, an interrupt, or an
19491 * exception.
19492 */
19493 if (!aborting())
19494 EMSG2(_(e_invexpr2), p);
19495 ret = FAIL;
19496 break;
19497 }
19498
19499 if (!eap->skip)
19500 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019501 p = get_tv_string(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019502 len = (int)STRLEN(p);
19503 if (ga_grow(&ga, len + 2) == FAIL)
19504 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019505 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019506 ret = FAIL;
19507 break;
19508 }
19509 if (ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019510 ((char_u *)(ga.ga_data))[ga.ga_len++] = ' ';
Bram Moolenaar071d4272004-06-13 20:20:40 +000019511 STRCPY((char_u *)(ga.ga_data) + ga.ga_len, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019512 ga.ga_len += len;
19513 }
19514
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019515 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019516 arg = skipwhite(arg);
19517 }
19518
19519 if (ret != FAIL && ga.ga_data != NULL)
19520 {
19521 if (eap->cmdidx == CMD_echomsg)
Bram Moolenaar4770d092006-01-12 23:22:24 +000019522 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000019523 MSG_ATTR(ga.ga_data, echo_attr);
Bram Moolenaar4770d092006-01-12 23:22:24 +000019524 out_flush();
19525 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019526 else if (eap->cmdidx == CMD_echoerr)
19527 {
19528 /* We don't want to abort following commands, restore did_emsg. */
19529 save_did_emsg = did_emsg;
19530 EMSG((char_u *)ga.ga_data);
19531 if (!force_abort)
19532 did_emsg = save_did_emsg;
19533 }
19534 else if (eap->cmdidx == CMD_execute)
19535 do_cmdline((char_u *)ga.ga_data,
19536 eap->getline, eap->cookie, DOCMD_NOWAIT|DOCMD_VERBOSE);
19537 }
19538
19539 ga_clear(&ga);
19540
19541 if (eap->skip)
19542 --emsg_skip;
19543
19544 eap->nextcmd = check_nextcmd(arg);
19545}
19546
19547/*
19548 * Skip over the name of an option: "&option", "&g:option" or "&l:option".
19549 * "arg" points to the "&" or '+' when called, to "option" when returning.
19550 * Returns NULL when no option name found. Otherwise pointer to the char
19551 * after the option name.
19552 */
19553 static char_u *
19554find_option_end(arg, opt_flags)
19555 char_u **arg;
19556 int *opt_flags;
19557{
19558 char_u *p = *arg;
19559
19560 ++p;
19561 if (*p == 'g' && p[1] == ':')
19562 {
19563 *opt_flags = OPT_GLOBAL;
19564 p += 2;
19565 }
19566 else if (*p == 'l' && p[1] == ':')
19567 {
19568 *opt_flags = OPT_LOCAL;
19569 p += 2;
19570 }
19571 else
19572 *opt_flags = 0;
19573
19574 if (!ASCII_ISALPHA(*p))
19575 return NULL;
19576 *arg = p;
19577
19578 if (p[0] == 't' && p[1] == '_' && p[2] != NUL && p[3] != NUL)
19579 p += 4; /* termcap option */
19580 else
19581 while (ASCII_ISALPHA(*p))
19582 ++p;
19583 return p;
19584}
19585
19586/*
19587 * ":function"
19588 */
19589 void
19590ex_function(eap)
19591 exarg_T *eap;
19592{
19593 char_u *theline;
19594 int j;
19595 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019596 int saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019597 char_u *name = NULL;
19598 char_u *p;
19599 char_u *arg;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019600 char_u *line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019601 garray_T newargs;
19602 garray_T newlines;
19603 int varargs = FALSE;
19604 int mustend = FALSE;
19605 int flags = 0;
19606 ufunc_T *fp;
19607 int indent;
19608 int nesting;
19609 char_u *skip_until = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000019610 dictitem_T *v;
19611 funcdict_T fudi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019612 static int func_nr = 0; /* number for nameless function */
19613 int paren;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019614 hashtab_T *ht;
19615 int todo;
19616 hashitem_T *hi;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019617 int sourcing_lnum_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019618
19619 /*
19620 * ":function" without argument: list functions.
19621 */
19622 if (ends_excmd(*eap->arg))
19623 {
19624 if (!eap->skip)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019625 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019626 todo = (int)func_hashtab.ht_used;
Bram Moolenaar038eb0e2005-02-27 22:43:26 +000019627 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019628 {
19629 if (!HASHITEM_EMPTY(hi))
19630 {
19631 --todo;
19632 fp = HI2UF(hi);
19633 if (!isdigit(*fp->uf_name))
19634 list_func_head(fp, FALSE);
19635 }
19636 }
19637 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019638 eap->nextcmd = check_nextcmd(eap->arg);
19639 return;
19640 }
19641
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019642 /*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019643 * ":function /pat": list functions matching pattern.
19644 */
19645 if (*eap->arg == '/')
19646 {
19647 p = skip_regexp(eap->arg + 1, '/', TRUE, NULL);
19648 if (!eap->skip)
19649 {
19650 regmatch_T regmatch;
19651
19652 c = *p;
19653 *p = NUL;
19654 regmatch.regprog = vim_regcomp(eap->arg + 1, RE_MAGIC);
19655 *p = c;
19656 if (regmatch.regprog != NULL)
19657 {
19658 regmatch.rm_ic = p_ic;
19659
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019660 todo = (int)func_hashtab.ht_used;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019661 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
19662 {
19663 if (!HASHITEM_EMPTY(hi))
19664 {
19665 --todo;
19666 fp = HI2UF(hi);
19667 if (!isdigit(*fp->uf_name)
19668 && vim_regexec(&regmatch, fp->uf_name, 0))
19669 list_func_head(fp, FALSE);
19670 }
19671 }
19672 }
19673 }
19674 if (*p == '/')
19675 ++p;
19676 eap->nextcmd = check_nextcmd(p);
19677 return;
19678 }
19679
19680 /*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019681 * Get the function name. There are these situations:
19682 * func normal function name
19683 * "name" == func, "fudi.fd_dict" == NULL
19684 * dict.func new dictionary entry
19685 * "name" == NULL, "fudi.fd_dict" set,
19686 * "fudi.fd_di" == NULL, "fudi.fd_newkey" == func
19687 * dict.func existing dict entry with a Funcref
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019688 * "name" == func, "fudi.fd_dict" set,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019689 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19690 * dict.func existing dict entry that's not a Funcref
19691 * "name" == NULL, "fudi.fd_dict" set,
19692 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19693 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019694 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019695 name = trans_function_name(&p, eap->skip, 0, &fudi);
19696 paren = (vim_strchr(p, '(') != NULL);
19697 if (name == NULL && (fudi.fd_dict == NULL || !paren) && !eap->skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019698 {
19699 /*
19700 * Return on an invalid expression in braces, unless the expression
19701 * evaluation has been cancelled due to an aborting error, an
19702 * interrupt, or an exception.
19703 */
19704 if (!aborting())
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019705 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000019706 if (!eap->skip && fudi.fd_newkey != NULL)
19707 EMSG2(_(e_dictkey), fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019708 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019709 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019710 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019711 else
19712 eap->skip = TRUE;
19713 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000019714
Bram Moolenaar071d4272004-06-13 20:20:40 +000019715 /* An error in a function call during evaluation of an expression in magic
19716 * braces should not cause the function not to be defined. */
19717 saved_did_emsg = did_emsg;
19718 did_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019719
19720 /*
19721 * ":function func" with only function name: list function.
19722 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019723 if (!paren)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019724 {
19725 if (!ends_excmd(*skipwhite(p)))
19726 {
19727 EMSG(_(e_trailing));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019728 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019729 }
19730 eap->nextcmd = check_nextcmd(p);
19731 if (eap->nextcmd != NULL)
19732 *p = NUL;
19733 if (!eap->skip && !got_int)
19734 {
19735 fp = find_func(name);
19736 if (fp != NULL)
19737 {
19738 list_func_head(fp, TRUE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019739 for (j = 0; j < fp->uf_lines.ga_len && !got_int; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019740 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019741 if (FUNCLINE(fp, j) == NULL)
19742 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019743 msg_putchar('\n');
19744 msg_outnum((long)(j + 1));
19745 if (j < 9)
19746 msg_putchar(' ');
19747 if (j < 99)
19748 msg_putchar(' ');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019749 msg_prt_line(FUNCLINE(fp, j), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019750 out_flush(); /* show a line at a time */
19751 ui_breakcheck();
19752 }
19753 if (!got_int)
19754 {
19755 msg_putchar('\n');
19756 msg_puts((char_u *)" endfunction");
19757 }
19758 }
19759 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019760 emsg_funcname("E123: Undefined function: %s", name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019761 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019762 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019763 }
19764
19765 /*
19766 * ":function name(arg1, arg2)" Define function.
19767 */
19768 p = skipwhite(p);
19769 if (*p != '(')
19770 {
19771 if (!eap->skip)
19772 {
19773 EMSG2(_("E124: Missing '(': %s"), eap->arg);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019774 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019775 }
19776 /* attempt to continue by skipping some text */
19777 if (vim_strchr(p, '(') != NULL)
19778 p = vim_strchr(p, '(');
19779 }
19780 p = skipwhite(p + 1);
19781
19782 ga_init2(&newargs, (int)sizeof(char_u *), 3);
19783 ga_init2(&newlines, (int)sizeof(char_u *), 3);
19784
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019785 if (!eap->skip)
19786 {
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019787 /* Check the name of the function. Unless it's a dictionary function
19788 * (that we are overwriting). */
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019789 if (name != NULL)
19790 arg = name;
19791 else
19792 arg = fudi.fd_newkey;
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019793 if (arg != NULL && (fudi.fd_di == NULL
19794 || fudi.fd_di->di_tv.v_type != VAR_FUNC))
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019795 {
19796 if (*arg == K_SPECIAL)
19797 j = 3;
19798 else
19799 j = 0;
19800 while (arg[j] != NUL && (j == 0 ? eval_isnamec1(arg[j])
19801 : eval_isnamec(arg[j])))
19802 ++j;
19803 if (arg[j] != NUL)
19804 emsg_funcname(_(e_invarg2), arg);
19805 }
19806 }
19807
Bram Moolenaar071d4272004-06-13 20:20:40 +000019808 /*
19809 * Isolate the arguments: "arg1, arg2, ...)"
19810 */
19811 while (*p != ')')
19812 {
19813 if (p[0] == '.' && p[1] == '.' && p[2] == '.')
19814 {
19815 varargs = TRUE;
19816 p += 3;
19817 mustend = TRUE;
19818 }
19819 else
19820 {
19821 arg = p;
19822 while (ASCII_ISALNUM(*p) || *p == '_')
19823 ++p;
19824 if (arg == p || isdigit(*arg)
19825 || (p - arg == 9 && STRNCMP(arg, "firstline", 9) == 0)
19826 || (p - arg == 8 && STRNCMP(arg, "lastline", 8) == 0))
19827 {
19828 if (!eap->skip)
19829 EMSG2(_("E125: Illegal argument: %s"), arg);
19830 break;
19831 }
19832 if (ga_grow(&newargs, 1) == FAIL)
19833 goto erret;
19834 c = *p;
19835 *p = NUL;
19836 arg = vim_strsave(arg);
19837 if (arg == NULL)
19838 goto erret;
19839 ((char_u **)(newargs.ga_data))[newargs.ga_len] = arg;
19840 *p = c;
19841 newargs.ga_len++;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019842 if (*p == ',')
19843 ++p;
19844 else
19845 mustend = TRUE;
19846 }
19847 p = skipwhite(p);
19848 if (mustend && *p != ')')
19849 {
19850 if (!eap->skip)
19851 EMSG2(_(e_invarg2), eap->arg);
19852 break;
19853 }
19854 }
19855 ++p; /* skip the ')' */
19856
Bram Moolenaare9a41262005-01-15 22:18:47 +000019857 /* find extra arguments "range", "dict" and "abort" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019858 for (;;)
19859 {
19860 p = skipwhite(p);
19861 if (STRNCMP(p, "range", 5) == 0)
19862 {
19863 flags |= FC_RANGE;
19864 p += 5;
19865 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000019866 else if (STRNCMP(p, "dict", 4) == 0)
19867 {
19868 flags |= FC_DICT;
19869 p += 4;
19870 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019871 else if (STRNCMP(p, "abort", 5) == 0)
19872 {
19873 flags |= FC_ABORT;
19874 p += 5;
19875 }
19876 else
19877 break;
19878 }
19879
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019880 /* When there is a line break use what follows for the function body.
19881 * Makes 'exe "func Test()\n...\nendfunc"' work. */
19882 if (*p == '\n')
19883 line_arg = p + 1;
19884 else if (*p != NUL && *p != '"' && !eap->skip && !did_emsg)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019885 EMSG(_(e_trailing));
19886
19887 /*
19888 * Read the body of the function, until ":endfunction" is found.
19889 */
19890 if (KeyTyped)
19891 {
19892 /* Check if the function already exists, don't let the user type the
19893 * whole function before telling him it doesn't work! For a script we
19894 * need to skip the body to be able to find what follows. */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019895 if (!eap->skip && !eap->forceit)
19896 {
19897 if (fudi.fd_dict != NULL && fudi.fd_newkey == NULL)
19898 EMSG(_(e_funcdict));
19899 else if (name != NULL && find_func(name) != NULL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019900 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019901 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019902
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019903 if (!eap->skip && did_emsg)
19904 goto erret;
19905
Bram Moolenaar071d4272004-06-13 20:20:40 +000019906 msg_putchar('\n'); /* don't overwrite the function name */
19907 cmdline_row = msg_row;
19908 }
19909
19910 indent = 2;
19911 nesting = 0;
19912 for (;;)
19913 {
19914 msg_scroll = TRUE;
19915 need_wait_return = FALSE;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019916 sourcing_lnum_off = sourcing_lnum;
19917
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019918 if (line_arg != NULL)
19919 {
19920 /* Use eap->arg, split up in parts by line breaks. */
19921 theline = line_arg;
19922 p = vim_strchr(theline, '\n');
19923 if (p == NULL)
19924 line_arg += STRLEN(line_arg);
19925 else
19926 {
19927 *p = NUL;
19928 line_arg = p + 1;
19929 }
19930 }
19931 else if (eap->getline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019932 theline = getcmdline(':', 0L, indent);
19933 else
19934 theline = eap->getline(':', eap->cookie, indent);
19935 if (KeyTyped)
19936 lines_left = Rows - 1;
19937 if (theline == NULL)
19938 {
19939 EMSG(_("E126: Missing :endfunction"));
19940 goto erret;
19941 }
19942
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019943 /* Detect line continuation: sourcing_lnum increased more than one. */
19944 if (sourcing_lnum > sourcing_lnum_off + 1)
19945 sourcing_lnum_off = sourcing_lnum - sourcing_lnum_off - 1;
19946 else
19947 sourcing_lnum_off = 0;
19948
Bram Moolenaar071d4272004-06-13 20:20:40 +000019949 if (skip_until != NULL)
19950 {
19951 /* between ":append" and "." and between ":python <<EOF" and "EOF"
19952 * don't check for ":endfunc". */
19953 if (STRCMP(theline, skip_until) == 0)
19954 {
19955 vim_free(skip_until);
19956 skip_until = NULL;
19957 }
19958 }
19959 else
19960 {
19961 /* skip ':' and blanks*/
19962 for (p = theline; vim_iswhite(*p) || *p == ':'; ++p)
19963 ;
19964
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000019965 /* Check for "endfunction". */
19966 if (checkforcmd(&p, "endfunction", 4) && nesting-- == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019967 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019968 if (line_arg == NULL)
19969 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019970 break;
19971 }
19972
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000019973 /* Increase indent inside "if", "while", "for" and "try", decrease
Bram Moolenaar071d4272004-06-13 20:20:40 +000019974 * at "end". */
19975 if (indent > 2 && STRNCMP(p, "end", 3) == 0)
19976 indent -= 2;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000019977 else if (STRNCMP(p, "if", 2) == 0
19978 || STRNCMP(p, "wh", 2) == 0
19979 || STRNCMP(p, "for", 3) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000019980 || STRNCMP(p, "try", 3) == 0)
19981 indent += 2;
19982
19983 /* Check for defining a function inside this function. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000019984 if (checkforcmd(&p, "function", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +000019985 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000019986 if (*p == '!')
19987 p = skipwhite(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019988 p += eval_fname_script(p);
19989 if (ASCII_ISALPHA(*p))
19990 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019991 vim_free(trans_function_name(&p, TRUE, 0, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +000019992 if (*skipwhite(p) == '(')
19993 {
19994 ++nesting;
19995 indent += 2;
19996 }
19997 }
19998 }
19999
20000 /* Check for ":append" or ":insert". */
20001 p = skip_range(p, NULL);
20002 if ((p[0] == 'a' && (!ASCII_ISALPHA(p[1]) || p[1] == 'p'))
20003 || (p[0] == 'i'
20004 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'n'
20005 && (!ASCII_ISALPHA(p[2]) || (p[2] == 's'))))))
20006 skip_until = vim_strsave((char_u *)".");
20007
20008 /* Check for ":python <<EOF", ":tcl <<EOF", etc. */
20009 arg = skipwhite(skiptowhite(p));
20010 if (arg[0] == '<' && arg[1] =='<'
20011 && ((p[0] == 'p' && p[1] == 'y'
20012 && (!ASCII_ISALPHA(p[2]) || p[2] == 't'))
20013 || (p[0] == 'p' && p[1] == 'e'
20014 && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
20015 || (p[0] == 't' && p[1] == 'c'
20016 && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
20017 || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
20018 && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
Bram Moolenaar325b7a22004-07-05 15:58:32 +000020019 || (p[0] == 'm' && p[1] == 'z'
20020 && (!ASCII_ISALPHA(p[2]) || p[2] == 's'))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020021 ))
20022 {
20023 /* ":python <<" continues until a dot, like ":append" */
20024 p = skipwhite(arg + 2);
20025 if (*p == NUL)
20026 skip_until = vim_strsave((char_u *)".");
20027 else
20028 skip_until = vim_strsave(p);
20029 }
20030 }
20031
20032 /* Add the line to the function. */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020033 if (ga_grow(&newlines, 1 + sourcing_lnum_off) == FAIL)
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020034 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020035 if (line_arg == NULL)
20036 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020037 goto erret;
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020038 }
20039
20040 /* Copy the line to newly allocated memory. get_one_sourceline()
20041 * allocates 250 bytes per line, this saves 80% on average. The cost
20042 * is an extra alloc/free. */
20043 p = vim_strsave(theline);
20044 if (p != NULL)
20045 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020046 if (line_arg == NULL)
20047 vim_free(theline);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020048 theline = p;
20049 }
20050
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020051 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = theline;
20052
20053 /* Add NULL lines for continuation lines, so that the line count is
20054 * equal to the index in the growarray. */
20055 while (sourcing_lnum_off-- > 0)
20056 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = NULL;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020057
20058 /* Check for end of eap->arg. */
20059 if (line_arg != NULL && *line_arg == NUL)
20060 line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020061 }
20062
20063 /* Don't define the function when skipping commands or when an error was
20064 * detected. */
20065 if (eap->skip || did_emsg)
20066 goto erret;
20067
20068 /*
20069 * If there are no errors, add the function
20070 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020071 if (fudi.fd_dict == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020072 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020073 v = find_var(name, &ht);
Bram Moolenaar33570922005-01-25 22:26:29 +000020074 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020075 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020076 emsg_funcname("E707: Function name conflicts with variable: %s",
20077 name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020078 goto erret;
20079 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020080
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020081 fp = find_func(name);
20082 if (fp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020083 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020084 if (!eap->forceit)
20085 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020086 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020087 goto erret;
20088 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020089 if (fp->uf_calls > 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020090 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020091 emsg_funcname("E127: Cannot redefine function %s: It is in use",
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020092 name);
20093 goto erret;
20094 }
20095 /* redefine existing function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020096 ga_clear_strings(&(fp->uf_args));
20097 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020098 vim_free(name);
20099 name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020100 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020101 }
20102 else
20103 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020104 char numbuf[20];
20105
20106 fp = NULL;
20107 if (fudi.fd_newkey == NULL && !eap->forceit)
20108 {
20109 EMSG(_(e_funcdict));
20110 goto erret;
20111 }
Bram Moolenaar758711c2005-02-02 23:11:38 +000020112 if (fudi.fd_di == NULL)
20113 {
20114 /* Can't add a function to a locked dictionary */
20115 if (tv_check_lock(fudi.fd_dict->dv_lock, eap->arg))
20116 goto erret;
20117 }
20118 /* Can't change an existing function if it is locked */
20119 else if (tv_check_lock(fudi.fd_di->di_tv.v_lock, eap->arg))
20120 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020121
20122 /* Give the function a sequential number. Can only be used with a
20123 * Funcref! */
20124 vim_free(name);
20125 sprintf(numbuf, "%d", ++func_nr);
20126 name = vim_strsave((char_u *)numbuf);
20127 if (name == NULL)
20128 goto erret;
20129 }
20130
20131 if (fp == NULL)
20132 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020133 if (fudi.fd_dict == NULL && vim_strchr(name, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020134 {
20135 int slen, plen;
20136 char_u *scriptname;
20137
20138 /* Check that the autoload name matches the script name. */
20139 j = FAIL;
20140 if (sourcing_name != NULL)
20141 {
20142 scriptname = autoload_name(name);
20143 if (scriptname != NULL)
20144 {
20145 p = vim_strchr(scriptname, '/');
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020146 plen = (int)STRLEN(p);
20147 slen = (int)STRLEN(sourcing_name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020148 if (slen > plen && fnamecmp(p,
20149 sourcing_name + slen - plen) == 0)
20150 j = OK;
20151 vim_free(scriptname);
20152 }
20153 }
20154 if (j == FAIL)
20155 {
20156 EMSG2(_("E746: Function name does not match script file name: %s"), name);
20157 goto erret;
20158 }
20159 }
20160
20161 fp = (ufunc_T *)alloc((unsigned)(sizeof(ufunc_T) + STRLEN(name)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020162 if (fp == NULL)
20163 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020164
20165 if (fudi.fd_dict != NULL)
20166 {
20167 if (fudi.fd_di == NULL)
20168 {
20169 /* add new dict entry */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020170 fudi.fd_di = dictitem_alloc(fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020171 if (fudi.fd_di == NULL)
20172 {
20173 vim_free(fp);
20174 goto erret;
20175 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020176 if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
20177 {
20178 vim_free(fudi.fd_di);
Bram Moolenaar0a5fd8b2006-08-16 20:02:22 +000020179 vim_free(fp);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020180 goto erret;
20181 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020182 }
20183 else
20184 /* overwrite existing dict entry */
20185 clear_tv(&fudi.fd_di->di_tv);
20186 fudi.fd_di->di_tv.v_type = VAR_FUNC;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000020187 fudi.fd_di->di_tv.v_lock = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020188 fudi.fd_di->di_tv.vval.v_string = vim_strsave(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020189 fp->uf_refcount = 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000020190
20191 /* behave like "dict" was used */
20192 flags |= FC_DICT;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020193 }
20194
Bram Moolenaar071d4272004-06-13 20:20:40 +000020195 /* insert the new function in the function list */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020196 STRCPY(fp->uf_name, name);
20197 hash_add(&func_hashtab, UF2HIKEY(fp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020198 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020199 fp->uf_args = newargs;
20200 fp->uf_lines = newlines;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020201#ifdef FEAT_PROFILE
20202 fp->uf_tml_count = NULL;
20203 fp->uf_tml_total = NULL;
20204 fp->uf_tml_self = NULL;
20205 fp->uf_profiling = FALSE;
20206 if (prof_def_func())
20207 func_do_profile(fp);
20208#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020209 fp->uf_varargs = varargs;
20210 fp->uf_flags = flags;
20211 fp->uf_calls = 0;
20212 fp->uf_script_ID = current_SID;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020213 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020214
20215erret:
Bram Moolenaar071d4272004-06-13 20:20:40 +000020216 ga_clear_strings(&newargs);
20217 ga_clear_strings(&newlines);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020218ret_free:
20219 vim_free(skip_until);
20220 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020221 vim_free(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020222 did_emsg |= saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020223}
20224
20225/*
20226 * Get a function name, translating "<SID>" and "<SNR>".
Bram Moolenaara7043832005-01-21 11:56:39 +000020227 * Also handles a Funcref in a List or Dictionary.
Bram Moolenaar071d4272004-06-13 20:20:40 +000020228 * Returns the function name in allocated memory, or NULL for failure.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020229 * flags:
20230 * TFN_INT: internal function name OK
20231 * TFN_QUIET: be quiet
Bram Moolenaar071d4272004-06-13 20:20:40 +000020232 * Advances "pp" to just after the function name (if no error).
20233 */
20234 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020235trans_function_name(pp, skip, flags, fdp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020236 char_u **pp;
20237 int skip; /* only find the end, don't evaluate */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020238 int flags;
Bram Moolenaar33570922005-01-25 22:26:29 +000020239 funcdict_T *fdp; /* return: info about dictionary used */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020240{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020241 char_u *name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020242 char_u *start;
20243 char_u *end;
20244 int lead;
20245 char_u sid_buf[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +000020246 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +000020247 lval_T lv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020248
20249 if (fdp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000020250 vim_memset(fdp, 0, sizeof(funcdict_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020251 start = *pp;
Bram Moolenaara7043832005-01-21 11:56:39 +000020252
20253 /* Check for hard coded <SNR>: already translated function ID (from a user
20254 * command). */
20255 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA
20256 && (*pp)[2] == (int)KE_SNR)
20257 {
20258 *pp += 3;
20259 len = get_id_len(pp) + 3;
20260 return vim_strnsave(start, len);
20261 }
20262
20263 /* A name starting with "<SID>" or "<SNR>" is local to a script. But
20264 * don't skip over "s:", get_lval() needs it for "s:dict.func". */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020265 lead = eval_fname_script(start);
Bram Moolenaara7043832005-01-21 11:56:39 +000020266 if (lead > 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020267 start += lead;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020268
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020269 end = get_lval(start, NULL, &lv, FALSE, skip, flags & TFN_QUIET,
20270 lead > 2 ? 0 : FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020271 if (end == start)
20272 {
20273 if (!skip)
20274 EMSG(_("E129: Function name required"));
20275 goto theend;
20276 }
Bram Moolenaara7043832005-01-21 11:56:39 +000020277 if (end == NULL || (lv.ll_tv != NULL && (lead > 2 || lv.ll_range)))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020278 {
20279 /*
20280 * Report an invalid expression in braces, unless the expression
20281 * evaluation has been cancelled due to an aborting error, an
20282 * interrupt, or an exception.
20283 */
20284 if (!aborting())
20285 {
20286 if (end != NULL)
20287 EMSG2(_(e_invarg2), start);
20288 }
20289 else
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020290 *pp = find_name_end(start, NULL, NULL, FNE_INCL_BR);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020291 goto theend;
20292 }
20293
20294 if (lv.ll_tv != NULL)
20295 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020296 if (fdp != NULL)
20297 {
20298 fdp->fd_dict = lv.ll_dict;
20299 fdp->fd_newkey = lv.ll_newkey;
20300 lv.ll_newkey = NULL;
20301 fdp->fd_di = lv.ll_di;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020302 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020303 if (lv.ll_tv->v_type == VAR_FUNC && lv.ll_tv->vval.v_string != NULL)
20304 {
20305 name = vim_strsave(lv.ll_tv->vval.v_string);
20306 *pp = end;
20307 }
20308 else
20309 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020310 if (!skip && !(flags & TFN_QUIET) && (fdp == NULL
20311 || lv.ll_dict == NULL || fdp->fd_newkey == NULL))
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020312 EMSG(_(e_funcref));
20313 else
20314 *pp = end;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020315 name = NULL;
20316 }
20317 goto theend;
20318 }
20319
20320 if (lv.ll_name == NULL)
20321 {
20322 /* Error found, but continue after the function name. */
20323 *pp = end;
20324 goto theend;
20325 }
20326
Bram Moolenaar33e1a802007-09-06 12:26:44 +000020327 /* Check if the name is a Funcref. If so, use the value. */
20328 if (lv.ll_exp_name != NULL)
20329 {
20330 len = (int)STRLEN(lv.ll_exp_name);
20331 name = deref_func_name(lv.ll_exp_name, &len);
20332 if (name == lv.ll_exp_name)
20333 name = NULL;
20334 }
20335 else
20336 {
20337 len = (int)(end - *pp);
20338 name = deref_func_name(*pp, &len);
20339 if (name == *pp)
20340 name = NULL;
20341 }
20342 if (name != NULL)
20343 {
20344 name = vim_strsave(name);
20345 *pp = end;
20346 goto theend;
20347 }
20348
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020349 if (lv.ll_exp_name != NULL)
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020350 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020351 len = (int)STRLEN(lv.ll_exp_name);
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020352 if (lead <= 2 && lv.ll_name == lv.ll_exp_name
20353 && STRNCMP(lv.ll_name, "s:", 2) == 0)
20354 {
20355 /* When there was "s:" already or the name expanded to get a
20356 * leading "s:" then remove it. */
20357 lv.ll_name += 2;
20358 len -= 2;
20359 lead = 2;
20360 }
20361 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020362 else
Bram Moolenaara7043832005-01-21 11:56:39 +000020363 {
20364 if (lead == 2) /* skip over "s:" */
20365 lv.ll_name += 2;
20366 len = (int)(end - lv.ll_name);
20367 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020368
20369 /*
20370 * Copy the function name to allocated memory.
20371 * Accept <SID>name() inside a script, translate into <SNR>123_name().
20372 * Accept <SNR>123_name() outside a script.
20373 */
20374 if (skip)
20375 lead = 0; /* do nothing */
20376 else if (lead > 0)
20377 {
20378 lead = 3;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000020379 if ((lv.ll_exp_name != NULL && eval_fname_sid(lv.ll_exp_name))
20380 || eval_fname_sid(*pp))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020381 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +000020382 /* It's "s:" or "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020383 if (current_SID <= 0)
20384 {
20385 EMSG(_(e_usingsid));
20386 goto theend;
20387 }
20388 sprintf((char *)sid_buf, "%ld_", (long)current_SID);
20389 lead += (int)STRLEN(sid_buf);
20390 }
20391 }
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020392 else if (!(flags & TFN_INT) && builtin_function(lv.ll_name))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020393 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020394 EMSG2(_("E128: Function name must start with a capital or contain a colon: %s"), lv.ll_name);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020395 goto theend;
20396 }
20397 name = alloc((unsigned)(len + lead + 1));
20398 if (name != NULL)
20399 {
20400 if (lead > 0)
20401 {
20402 name[0] = K_SPECIAL;
20403 name[1] = KS_EXTRA;
20404 name[2] = (int)KE_SNR;
Bram Moolenaara7043832005-01-21 11:56:39 +000020405 if (lead > 3) /* If it's "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020406 STRCPY(name + 3, sid_buf);
20407 }
20408 mch_memmove(name + lead, lv.ll_name, (size_t)len);
20409 name[len + lead] = NUL;
20410 }
20411 *pp = end;
20412
20413theend:
20414 clear_lval(&lv);
20415 return name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020416}
20417
20418/*
20419 * Return 5 if "p" starts with "<SID>" or "<SNR>" (ignoring case).
20420 * Return 2 if "p" starts with "s:".
20421 * Return 0 otherwise.
20422 */
20423 static int
20424eval_fname_script(p)
20425 char_u *p;
20426{
20427 if (p[0] == '<' && (STRNICMP(p + 1, "SID>", 4) == 0
20428 || STRNICMP(p + 1, "SNR>", 4) == 0))
20429 return 5;
20430 if (p[0] == 's' && p[1] == ':')
20431 return 2;
20432 return 0;
20433}
20434
20435/*
20436 * Return TRUE if "p" starts with "<SID>" or "s:".
20437 * Only works if eval_fname_script() returned non-zero for "p"!
20438 */
20439 static int
20440eval_fname_sid(p)
20441 char_u *p;
20442{
20443 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I');
20444}
20445
20446/*
20447 * List the head of the function: "name(arg1, arg2)".
20448 */
20449 static void
20450list_func_head(fp, indent)
20451 ufunc_T *fp;
20452 int indent;
20453{
20454 int j;
20455
20456 msg_start();
20457 if (indent)
20458 MSG_PUTS(" ");
20459 MSG_PUTS("function ");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020460 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020461 {
20462 MSG_PUTS_ATTR("<SNR>", hl_attr(HLF_8));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020463 msg_puts(fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020464 }
20465 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020466 msg_puts(fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020467 msg_putchar('(');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020468 for (j = 0; j < fp->uf_args.ga_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020469 {
20470 if (j)
20471 MSG_PUTS(", ");
20472 msg_puts(FUNCARG(fp, j));
20473 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020474 if (fp->uf_varargs)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020475 {
20476 if (j)
20477 MSG_PUTS(", ");
20478 MSG_PUTS("...");
20479 }
20480 msg_putchar(')');
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000020481 msg_clr_eos();
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000020482 if (p_verbose > 0)
20483 last_set_msg(fp->uf_script_ID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020484}
20485
20486/*
20487 * Find a function by name, return pointer to it in ufuncs.
20488 * Return NULL for unknown function.
20489 */
20490 static ufunc_T *
20491find_func(name)
20492 char_u *name;
20493{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020494 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020495
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020496 hi = hash_find(&func_hashtab, name);
20497 if (!HASHITEM_EMPTY(hi))
20498 return HI2UF(hi);
20499 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020500}
20501
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020502#if defined(EXITFREE) || defined(PROTO)
20503 void
20504free_all_functions()
20505{
20506 hashitem_T *hi;
20507
20508 /* Need to start all over every time, because func_free() may change the
20509 * hash table. */
20510 while (func_hashtab.ht_used > 0)
20511 for (hi = func_hashtab.ht_array; ; ++hi)
20512 if (!HASHITEM_EMPTY(hi))
20513 {
20514 func_free(HI2UF(hi));
20515 break;
20516 }
20517}
20518#endif
20519
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020520/*
20521 * Return TRUE if a function "name" exists.
20522 */
20523 static int
20524function_exists(name)
20525 char_u *name;
20526{
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020527 char_u *nm = name;
20528 char_u *p;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020529 int n = FALSE;
20530
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020531 p = trans_function_name(&nm, FALSE, TFN_INT|TFN_QUIET, NULL);
Bram Moolenaar79783442006-05-05 21:18:03 +000020532 nm = skipwhite(nm);
20533
20534 /* Only accept "funcname", "funcname ", "funcname (..." and
20535 * "funcname(...", not "funcname!...". */
20536 if (p != NULL && (*nm == NUL || *nm == '('))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020537 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020538 if (builtin_function(p))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020539 n = (find_internal_func(p) >= 0);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020540 else
20541 n = (find_func(p) != NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020542 }
Bram Moolenaar79783442006-05-05 21:18:03 +000020543 vim_free(p);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020544 return n;
20545}
20546
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020547/*
20548 * Return TRUE if "name" looks like a builtin function name: starts with a
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020549 * lower case letter and doesn't contain a ':' or AUTOLOAD_CHAR.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020550 */
20551 static int
20552builtin_function(name)
20553 char_u *name;
20554{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020555 return ASCII_ISLOWER(name[0]) && vim_strchr(name, ':') == NULL
20556 && vim_strchr(name, AUTOLOAD_CHAR) == NULL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020557}
20558
Bram Moolenaar05159a02005-02-26 23:04:13 +000020559#if defined(FEAT_PROFILE) || defined(PROTO)
20560/*
20561 * Start profiling function "fp".
20562 */
20563 static void
20564func_do_profile(fp)
20565 ufunc_T *fp;
20566{
20567 fp->uf_tm_count = 0;
20568 profile_zero(&fp->uf_tm_self);
20569 profile_zero(&fp->uf_tm_total);
20570 if (fp->uf_tml_count == NULL)
20571 fp->uf_tml_count = (int *)alloc_clear((unsigned)
20572 (sizeof(int) * fp->uf_lines.ga_len));
20573 if (fp->uf_tml_total == NULL)
20574 fp->uf_tml_total = (proftime_T *)alloc_clear((unsigned)
20575 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20576 if (fp->uf_tml_self == NULL)
20577 fp->uf_tml_self = (proftime_T *)alloc_clear((unsigned)
20578 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20579 fp->uf_tml_idx = -1;
20580 if (fp->uf_tml_count == NULL || fp->uf_tml_total == NULL
20581 || fp->uf_tml_self == NULL)
20582 return; /* out of memory */
20583
20584 fp->uf_profiling = TRUE;
20585}
20586
20587/*
20588 * Dump the profiling results for all functions in file "fd".
20589 */
20590 void
20591func_dump_profile(fd)
20592 FILE *fd;
20593{
20594 hashitem_T *hi;
20595 int todo;
20596 ufunc_T *fp;
20597 int i;
Bram Moolenaar73830342005-02-28 22:48:19 +000020598 ufunc_T **sorttab;
20599 int st_len = 0;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020600
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020601 todo = (int)func_hashtab.ht_used;
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020602 if (todo == 0)
20603 return; /* nothing to dump */
20604
Bram Moolenaar73830342005-02-28 22:48:19 +000020605 sorttab = (ufunc_T **)alloc((unsigned)(sizeof(ufunc_T) * todo));
20606
Bram Moolenaar05159a02005-02-26 23:04:13 +000020607 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
20608 {
20609 if (!HASHITEM_EMPTY(hi))
20610 {
20611 --todo;
20612 fp = HI2UF(hi);
20613 if (fp->uf_profiling)
20614 {
Bram Moolenaar73830342005-02-28 22:48:19 +000020615 if (sorttab != NULL)
20616 sorttab[st_len++] = fp;
20617
Bram Moolenaar05159a02005-02-26 23:04:13 +000020618 if (fp->uf_name[0] == K_SPECIAL)
20619 fprintf(fd, "FUNCTION <SNR>%s()\n", fp->uf_name + 3);
20620 else
20621 fprintf(fd, "FUNCTION %s()\n", fp->uf_name);
20622 if (fp->uf_tm_count == 1)
20623 fprintf(fd, "Called 1 time\n");
20624 else
20625 fprintf(fd, "Called %d times\n", fp->uf_tm_count);
20626 fprintf(fd, "Total time: %s\n", profile_msg(&fp->uf_tm_total));
20627 fprintf(fd, " Self time: %s\n", profile_msg(&fp->uf_tm_self));
20628 fprintf(fd, "\n");
20629 fprintf(fd, "count total (s) self (s)\n");
20630
20631 for (i = 0; i < fp->uf_lines.ga_len; ++i)
20632 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020633 if (FUNCLINE(fp, i) == NULL)
20634 continue;
Bram Moolenaar73830342005-02-28 22:48:19 +000020635 prof_func_line(fd, fp->uf_tml_count[i],
20636 &fp->uf_tml_total[i], &fp->uf_tml_self[i], TRUE);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020637 fprintf(fd, "%s\n", FUNCLINE(fp, i));
20638 }
20639 fprintf(fd, "\n");
20640 }
20641 }
20642 }
Bram Moolenaar73830342005-02-28 22:48:19 +000020643
20644 if (sorttab != NULL && st_len > 0)
20645 {
20646 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20647 prof_total_cmp);
20648 prof_sort_list(fd, sorttab, st_len, "TOTAL", FALSE);
20649 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20650 prof_self_cmp);
20651 prof_sort_list(fd, sorttab, st_len, "SELF", TRUE);
20652 }
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020653
20654 vim_free(sorttab);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020655}
Bram Moolenaar73830342005-02-28 22:48:19 +000020656
20657 static void
20658prof_sort_list(fd, sorttab, st_len, title, prefer_self)
20659 FILE *fd;
20660 ufunc_T **sorttab;
20661 int st_len;
20662 char *title;
20663 int prefer_self; /* when equal print only self time */
20664{
20665 int i;
20666 ufunc_T *fp;
20667
20668 fprintf(fd, "FUNCTIONS SORTED ON %s TIME\n", title);
20669 fprintf(fd, "count total (s) self (s) function\n");
20670 for (i = 0; i < 20 && i < st_len; ++i)
20671 {
20672 fp = sorttab[i];
20673 prof_func_line(fd, fp->uf_tm_count, &fp->uf_tm_total, &fp->uf_tm_self,
20674 prefer_self);
20675 if (fp->uf_name[0] == K_SPECIAL)
20676 fprintf(fd, " <SNR>%s()\n", fp->uf_name + 3);
20677 else
20678 fprintf(fd, " %s()\n", fp->uf_name);
20679 }
20680 fprintf(fd, "\n");
20681}
20682
20683/*
20684 * Print the count and times for one function or function line.
20685 */
20686 static void
20687prof_func_line(fd, count, total, self, prefer_self)
20688 FILE *fd;
20689 int count;
20690 proftime_T *total;
20691 proftime_T *self;
20692 int prefer_self; /* when equal print only self time */
20693{
20694 if (count > 0)
20695 {
20696 fprintf(fd, "%5d ", count);
20697 if (prefer_self && profile_equal(total, self))
20698 fprintf(fd, " ");
20699 else
20700 fprintf(fd, "%s ", profile_msg(total));
20701 if (!prefer_self && profile_equal(total, self))
20702 fprintf(fd, " ");
20703 else
20704 fprintf(fd, "%s ", profile_msg(self));
20705 }
20706 else
20707 fprintf(fd, " ");
20708}
20709
20710/*
20711 * Compare function for total time sorting.
20712 */
20713 static int
20714#ifdef __BORLANDC__
20715_RTLENTRYF
20716#endif
20717prof_total_cmp(s1, s2)
20718 const void *s1;
20719 const void *s2;
20720{
20721 ufunc_T *p1, *p2;
20722
20723 p1 = *(ufunc_T **)s1;
20724 p2 = *(ufunc_T **)s2;
20725 return profile_cmp(&p1->uf_tm_total, &p2->uf_tm_total);
20726}
20727
20728/*
20729 * Compare function for self time sorting.
20730 */
20731 static int
20732#ifdef __BORLANDC__
20733_RTLENTRYF
20734#endif
20735prof_self_cmp(s1, s2)
20736 const void *s1;
20737 const void *s2;
20738{
20739 ufunc_T *p1, *p2;
20740
20741 p1 = *(ufunc_T **)s1;
20742 p2 = *(ufunc_T **)s2;
20743 return profile_cmp(&p1->uf_tm_self, &p2->uf_tm_self);
20744}
20745
Bram Moolenaar05159a02005-02-26 23:04:13 +000020746#endif
20747
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020748/*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020749 * If "name" has a package name try autoloading the script for it.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020750 * Return TRUE if a package was loaded.
20751 */
20752 static int
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020753script_autoload(name, reload)
20754 char_u *name;
20755 int reload; /* load script again when already loaded */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020756{
20757 char_u *p;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020758 char_u *scriptname, *tofree;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020759 int ret = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020760 int i;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020761
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020762 /* If there is no '#' after name[0] there is no package name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020763 p = vim_strchr(name, AUTOLOAD_CHAR);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020764 if (p == NULL || p == name)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020765 return FALSE;
20766
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020767 tofree = scriptname = autoload_name(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020768
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020769 /* Find the name in the list of previously loaded package names. Skip
20770 * "autoload/", it's always the same. */
20771 for (i = 0; i < ga_loaded.ga_len; ++i)
20772 if (STRCMP(((char_u **)ga_loaded.ga_data)[i] + 9, scriptname + 9) == 0)
20773 break;
20774 if (!reload && i < ga_loaded.ga_len)
20775 ret = FALSE; /* was loaded already */
20776 else
20777 {
20778 /* Remember the name if it wasn't loaded already. */
20779 if (i == ga_loaded.ga_len && ga_grow(&ga_loaded, 1) == OK)
20780 {
20781 ((char_u **)ga_loaded.ga_data)[ga_loaded.ga_len++] = scriptname;
20782 tofree = NULL;
20783 }
20784
20785 /* Try loading the package from $VIMRUNTIME/autoload/<name>.vim */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +000020786 if (source_runtime(scriptname, FALSE) == OK)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020787 ret = TRUE;
20788 }
20789
20790 vim_free(tofree);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020791 return ret;
20792}
20793
20794/*
20795 * Return the autoload script name for a function or variable name.
20796 * Returns NULL when out of memory.
20797 */
20798 static char_u *
20799autoload_name(name)
20800 char_u *name;
20801{
20802 char_u *p;
20803 char_u *scriptname;
20804
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020805 /* Get the script file name: replace '#' with '/', append ".vim". */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020806 scriptname = alloc((unsigned)(STRLEN(name) + 14));
20807 if (scriptname == NULL)
20808 return FALSE;
20809 STRCPY(scriptname, "autoload/");
20810 STRCAT(scriptname, name);
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020811 *vim_strrchr(scriptname, AUTOLOAD_CHAR) = NUL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020812 STRCAT(scriptname, ".vim");
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020813 while ((p = vim_strchr(scriptname, AUTOLOAD_CHAR)) != NULL)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020814 *p = '/';
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020815 return scriptname;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020816}
20817
Bram Moolenaar071d4272004-06-13 20:20:40 +000020818#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
20819
20820/*
20821 * Function given to ExpandGeneric() to obtain the list of user defined
20822 * function names.
20823 */
20824 char_u *
20825get_user_func_name(xp, idx)
20826 expand_T *xp;
20827 int idx;
20828{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020829 static long_u done;
20830 static hashitem_T *hi;
20831 ufunc_T *fp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020832
20833 if (idx == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020834 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020835 done = 0;
20836 hi = func_hashtab.ht_array;
20837 }
20838 if (done < func_hashtab.ht_used)
20839 {
20840 if (done++ > 0)
20841 ++hi;
20842 while (HASHITEM_EMPTY(hi))
20843 ++hi;
20844 fp = HI2UF(hi);
20845
20846 if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
20847 return fp->uf_name; /* prevents overflow */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020848
20849 cat_func_name(IObuff, fp);
20850 if (xp->xp_context != EXPAND_USER_FUNC)
20851 {
20852 STRCAT(IObuff, "(");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020853 if (!fp->uf_varargs && fp->uf_args.ga_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020854 STRCAT(IObuff, ")");
20855 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020856 return IObuff;
20857 }
20858 return NULL;
20859}
20860
20861#endif /* FEAT_CMDL_COMPL */
20862
20863/*
20864 * Copy the function name of "fp" to buffer "buf".
20865 * "buf" must be able to hold the function name plus three bytes.
20866 * Takes care of script-local function names.
20867 */
20868 static void
20869cat_func_name(buf, fp)
20870 char_u *buf;
20871 ufunc_T *fp;
20872{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020873 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020874 {
20875 STRCPY(buf, "<SNR>");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020876 STRCAT(buf, fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020877 }
20878 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020879 STRCPY(buf, fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020880}
20881
20882/*
20883 * ":delfunction {name}"
20884 */
20885 void
20886ex_delfunction(eap)
20887 exarg_T *eap;
20888{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020889 ufunc_T *fp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020890 char_u *p;
20891 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000020892 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020893
20894 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020895 name = trans_function_name(&p, eap->skip, 0, &fudi);
20896 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020897 if (name == NULL)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020898 {
20899 if (fudi.fd_dict != NULL && !eap->skip)
20900 EMSG(_(e_funcref));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020901 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020902 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020903 if (!ends_excmd(*skipwhite(p)))
20904 {
20905 vim_free(name);
20906 EMSG(_(e_trailing));
20907 return;
20908 }
20909 eap->nextcmd = check_nextcmd(p);
20910 if (eap->nextcmd != NULL)
20911 *p = NUL;
20912
20913 if (!eap->skip)
20914 fp = find_func(name);
20915 vim_free(name);
20916
20917 if (!eap->skip)
20918 {
20919 if (fp == NULL)
20920 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000020921 EMSG2(_(e_nofunc), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020922 return;
20923 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020924 if (fp->uf_calls > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020925 {
20926 EMSG2(_("E131: Cannot delete function %s: It is in use"), eap->arg);
20927 return;
20928 }
20929
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020930 if (fudi.fd_dict != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020931 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020932 /* Delete the dict item that refers to the function, it will
20933 * invoke func_unref() and possibly delete the function. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020934 dictitem_remove(fudi.fd_dict, fudi.fd_di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020935 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020936 else
20937 func_free(fp);
20938 }
20939}
20940
20941/*
20942 * Free a function and remove it from the list of functions.
20943 */
20944 static void
20945func_free(fp)
20946 ufunc_T *fp;
20947{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020948 hashitem_T *hi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020949
20950 /* clear this function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020951 ga_clear_strings(&(fp->uf_args));
20952 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar05159a02005-02-26 23:04:13 +000020953#ifdef FEAT_PROFILE
20954 vim_free(fp->uf_tml_count);
20955 vim_free(fp->uf_tml_total);
20956 vim_free(fp->uf_tml_self);
20957#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020958
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020959 /* remove the function from the function hashtable */
20960 hi = hash_find(&func_hashtab, UF2HIKEY(fp));
20961 if (HASHITEM_EMPTY(hi))
20962 EMSG2(_(e_intern2), "func_free()");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020963 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020964 hash_remove(&func_hashtab, hi);
20965
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020966 vim_free(fp);
20967}
20968
20969/*
20970 * Unreference a Function: decrement the reference count and free it when it
20971 * becomes zero. Only for numbered functions.
20972 */
20973 static void
20974func_unref(name)
20975 char_u *name;
20976{
20977 ufunc_T *fp;
20978
20979 if (name != NULL && isdigit(*name))
20980 {
20981 fp = find_func(name);
20982 if (fp == NULL)
20983 EMSG2(_(e_intern2), "func_unref()");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020984 else if (--fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020985 {
20986 /* Only delete it when it's not being used. Otherwise it's done
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020987 * when "uf_calls" becomes zero. */
20988 if (fp->uf_calls == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020989 func_free(fp);
20990 }
20991 }
20992}
20993
20994/*
20995 * Count a reference to a Function.
20996 */
20997 static void
20998func_ref(name)
20999 char_u *name;
21000{
21001 ufunc_T *fp;
21002
21003 if (name != NULL && isdigit(*name))
21004 {
21005 fp = find_func(name);
21006 if (fp == NULL)
21007 EMSG2(_(e_intern2), "func_ref()");
21008 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021009 ++fp->uf_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021010 }
21011}
21012
21013/*
21014 * Call a user function.
21015 */
21016 static void
Bram Moolenaare9a41262005-01-15 22:18:47 +000021017call_user_func(fp, argcount, argvars, rettv, firstline, lastline, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021018 ufunc_T *fp; /* pointer to function */
21019 int argcount; /* nr of args */
Bram Moolenaar33570922005-01-25 22:26:29 +000021020 typval_T *argvars; /* arguments */
21021 typval_T *rettv; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021022 linenr_T firstline; /* first line of range */
21023 linenr_T lastline; /* last line of range */
Bram Moolenaar33570922005-01-25 22:26:29 +000021024 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021025{
Bram Moolenaar33570922005-01-25 22:26:29 +000021026 char_u *save_sourcing_name;
21027 linenr_T save_sourcing_lnum;
21028 scid_T save_current_SID;
21029 funccall_T fc;
Bram Moolenaar33570922005-01-25 22:26:29 +000021030 int save_did_emsg;
21031 static int depth = 0;
21032 dictitem_T *v;
21033 int fixvar_idx = 0; /* index in fixvar[] */
21034 int i;
21035 int ai;
21036 char_u numbuf[NUMBUFLEN];
21037 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021038#ifdef FEAT_PROFILE
21039 proftime_T wait_start;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021040 proftime_T call_start;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021041#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021042
21043 /* If depth of calling is getting too high, don't execute the function */
21044 if (depth >= p_mfd)
21045 {
21046 EMSG(_("E132: Function call depth is higher than 'maxfuncdepth'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021047 rettv->v_type = VAR_NUMBER;
21048 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021049 return;
21050 }
21051 ++depth;
21052
21053 line_breakcheck(); /* check for CTRL-C hit */
21054
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000021055 fc.caller = current_funccal;
Bram Moolenaar33570922005-01-25 22:26:29 +000021056 current_funccal = &fc;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021057 fc.func = fp;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021058 fc.rettv = rettv;
21059 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021060 fc.linenr = 0;
21061 fc.returned = FALSE;
21062 fc.level = ex_nesting_level;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021063 /* Check if this function has a breakpoint. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021064 fc.breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021065 fc.dbg_tick = debug_tick;
21066
Bram Moolenaar33570922005-01-25 22:26:29 +000021067 /*
21068 * Note about using fc.fixvar[]: This is an array of FIXVAR_CNT variables
21069 * with names up to VAR_SHORT_LEN long. This avoids having to alloc/free
21070 * each argument variable and saves a lot of time.
21071 */
21072 /*
21073 * Init l: variables.
21074 */
21075 init_var_dict(&fc.l_vars, &fc.l_vars_var);
Bram Moolenaara7043832005-01-21 11:56:39 +000021076 if (selfdict != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000021077 {
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021078 /* Set l:self to "selfdict". Use "name" to avoid a warning from
21079 * some compiler that checks the destination size. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021080 v = &fc.fixvar[fixvar_idx++].var;
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021081 name = v->di_key;
21082 STRCPY(name, "self");
Bram Moolenaar33570922005-01-25 22:26:29 +000021083 v->di_flags = DI_FLAGS_RO + DI_FLAGS_FIX;
21084 hash_add(&fc.l_vars.dv_hashtab, DI2HIKEY(v));
21085 v->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021086 v->di_tv.v_lock = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000021087 v->di_tv.vval.v_dict = selfdict;
21088 ++selfdict->dv_refcount;
21089 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000021090
Bram Moolenaar33570922005-01-25 22:26:29 +000021091 /*
21092 * Init a: variables.
21093 * Set a:0 to "argcount".
21094 * Set a:000 to a list with room for the "..." arguments.
21095 */
21096 init_var_dict(&fc.l_avars, &fc.l_avars_var);
21097 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "0",
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021098 (varnumber_T)(argcount - fp->uf_args.ga_len));
Bram Moolenaar33570922005-01-25 22:26:29 +000021099 v = &fc.fixvar[fixvar_idx++].var;
21100 STRCPY(v->di_key, "000");
21101 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21102 hash_add(&fc.l_avars.dv_hashtab, DI2HIKEY(v));
21103 v->di_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021104 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021105 v->di_tv.vval.v_list = &fc.l_varlist;
21106 vim_memset(&fc.l_varlist, 0, sizeof(list_T));
21107 fc.l_varlist.lv_refcount = 99999;
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000021108 fc.l_varlist.lv_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021109
21110 /*
21111 * Set a:firstline to "firstline" and a:lastline to "lastline".
21112 * Set a:name to named arguments.
21113 * Set a:N to the "..." arguments.
21114 */
21115 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "firstline",
21116 (varnumber_T)firstline);
21117 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "lastline",
21118 (varnumber_T)lastline);
21119 for (i = 0; i < argcount; ++i)
21120 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021121 ai = i - fp->uf_args.ga_len;
Bram Moolenaar33570922005-01-25 22:26:29 +000021122 if (ai < 0)
21123 /* named argument a:name */
21124 name = FUNCARG(fp, i);
21125 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000021126 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021127 /* "..." argument a:1, a:2, etc. */
21128 sprintf((char *)numbuf, "%d", ai + 1);
21129 name = numbuf;
21130 }
21131 if (fixvar_idx < FIXVAR_CNT && STRLEN(name) <= VAR_SHORT_LEN)
21132 {
21133 v = &fc.fixvar[fixvar_idx++].var;
21134 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21135 }
21136 else
21137 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021138 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
21139 + STRLEN(name)));
Bram Moolenaar33570922005-01-25 22:26:29 +000021140 if (v == NULL)
21141 break;
21142 v->di_flags = DI_FLAGS_RO;
21143 }
21144 STRCPY(v->di_key, name);
21145 hash_add(&fc.l_avars.dv_hashtab, DI2HIKEY(v));
21146
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021147 /* Note: the values are copied directly to avoid alloc/free.
21148 * "argvars" must have VAR_FIXED for v_lock. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021149 v->di_tv = argvars[i];
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021150 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021151
21152 if (ai >= 0 && ai < MAX_FUNC_ARGS)
21153 {
21154 list_append(&fc.l_varlist, &fc.l_listitems[ai]);
21155 fc.l_listitems[ai].li_tv = argvars[i];
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021156 fc.l_listitems[ai].li_tv.v_lock = VAR_FIXED;
Bram Moolenaare9a41262005-01-15 22:18:47 +000021157 }
21158 }
21159
Bram Moolenaar071d4272004-06-13 20:20:40 +000021160 /* Don't redraw while executing the function. */
21161 ++RedrawingDisabled;
21162 save_sourcing_name = sourcing_name;
21163 save_sourcing_lnum = sourcing_lnum;
21164 sourcing_lnum = 1;
21165 sourcing_name = alloc((unsigned)((save_sourcing_name == NULL ? 0
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021166 : STRLEN(save_sourcing_name)) + STRLEN(fp->uf_name) + 13));
Bram Moolenaar071d4272004-06-13 20:20:40 +000021167 if (sourcing_name != NULL)
21168 {
21169 if (save_sourcing_name != NULL
21170 && STRNCMP(save_sourcing_name, "function ", 9) == 0)
21171 sprintf((char *)sourcing_name, "%s..", save_sourcing_name);
21172 else
21173 STRCPY(sourcing_name, "function ");
21174 cat_func_name(sourcing_name + STRLEN(sourcing_name), fp);
21175
21176 if (p_verbose >= 12)
21177 {
21178 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021179 verbose_enter_scroll();
21180
Bram Moolenaar555b2802005-05-19 21:08:39 +000021181 smsg((char_u *)_("calling %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021182 if (p_verbose >= 14)
21183 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021184 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021185 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021186 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021187 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021188
21189 msg_puts((char_u *)"(");
21190 for (i = 0; i < argcount; ++i)
21191 {
21192 if (i > 0)
21193 msg_puts((char_u *)", ");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000021194 if (argvars[i].v_type == VAR_NUMBER)
21195 msg_outnum((long)argvars[i].vval.v_number);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021196 else
21197 {
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021198 s = tv2string(&argvars[i], &tofree, numbuf2, 0);
21199 if (s != NULL)
21200 {
21201 trunc_string(s, buf, MSG_BUF_CLEN);
21202 msg_puts(buf);
21203 vim_free(tofree);
21204 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021205 }
21206 }
21207 msg_puts((char_u *)")");
21208 }
21209 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021210
21211 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021212 --no_wait_return;
21213 }
21214 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021215#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021216 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021217 {
21218 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
21219 func_do_profile(fp);
21220 if (fp->uf_profiling
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000021221 || (fc.caller != NULL && fc.caller->func->uf_profiling))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021222 {
21223 ++fp->uf_tm_count;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021224 profile_start(&call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021225 profile_zero(&fp->uf_tm_children);
21226 }
21227 script_prof_save(&wait_start);
21228 }
21229#endif
21230
Bram Moolenaar071d4272004-06-13 20:20:40 +000021231 save_current_SID = current_SID;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021232 current_SID = fp->uf_script_ID;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021233 save_did_emsg = did_emsg;
21234 did_emsg = FALSE;
21235
21236 /* call do_cmdline() to execute the lines */
21237 do_cmdline(NULL, get_func_line, (void *)&fc,
21238 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
21239
21240 --RedrawingDisabled;
21241
21242 /* when the function was aborted because of an error, return -1 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021243 if ((did_emsg && (fp->uf_flags & FC_ABORT)) || rettv->v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021244 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021245 clear_tv(rettv);
21246 rettv->v_type = VAR_NUMBER;
21247 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021248 }
21249
Bram Moolenaar05159a02005-02-26 23:04:13 +000021250#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021251 if (do_profiling == PROF_YES && (fp->uf_profiling
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000021252 || (fc.caller != NULL && fc.caller->func->uf_profiling)))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021253 {
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021254 profile_end(&call_start);
21255 profile_sub_wait(&wait_start, &call_start);
21256 profile_add(&fp->uf_tm_total, &call_start);
21257 profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000021258 if (fc.caller != NULL && fc.caller->func->uf_profiling)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021259 {
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021260 profile_add(&fc.caller->func->uf_tm_children, &call_start);
21261 profile_add(&fc.caller->func->uf_tml_children, &call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021262 }
21263 }
21264#endif
21265
Bram Moolenaar071d4272004-06-13 20:20:40 +000021266 /* when being verbose, mention the return value */
21267 if (p_verbose >= 12)
21268 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021269 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021270 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021271
Bram Moolenaar071d4272004-06-13 20:20:40 +000021272 if (aborting())
Bram Moolenaar555b2802005-05-19 21:08:39 +000021273 smsg((char_u *)_("%s aborted"), sourcing_name);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021274 else if (fc.rettv->v_type == VAR_NUMBER)
Bram Moolenaar555b2802005-05-19 21:08:39 +000021275 smsg((char_u *)_("%s returning #%ld"), sourcing_name,
21276 (long)fc.rettv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +000021277 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000021278 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000021279 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021280 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021281 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021282 char_u *s;
Bram Moolenaar758711c2005-02-02 23:11:38 +000021283
Bram Moolenaar555b2802005-05-19 21:08:39 +000021284 /* The value may be very long. Skip the middle part, so that we
21285 * have some idea how it starts and ends. smsg() would always
21286 * truncate it at the end. */
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021287 s = tv2string(fc.rettv, &tofree, numbuf2, 0);
21288 if (s != NULL)
21289 {
21290 trunc_string(s, buf, MSG_BUF_CLEN);
21291 smsg((char_u *)_("%s returning %s"), sourcing_name, buf);
21292 vim_free(tofree);
21293 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021294 }
21295 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021296
21297 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021298 --no_wait_return;
21299 }
21300
21301 vim_free(sourcing_name);
21302 sourcing_name = save_sourcing_name;
21303 sourcing_lnum = save_sourcing_lnum;
21304 current_SID = save_current_SID;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021305#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021306 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021307 script_prof_restore(&wait_start);
21308#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021309
21310 if (p_verbose >= 12 && sourcing_name != NULL)
21311 {
21312 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021313 verbose_enter_scroll();
21314
Bram Moolenaar555b2802005-05-19 21:08:39 +000021315 smsg((char_u *)_("continuing in %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021316 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021317
21318 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021319 --no_wait_return;
21320 }
21321
21322 did_emsg |= save_did_emsg;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000021323 current_funccal = fc.caller;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021324
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021325 /* The a: variables typevals were not allocated, only free the allocated
Bram Moolenaar33570922005-01-25 22:26:29 +000021326 * variables. */
21327 vars_clear_ext(&fc.l_avars.dv_hashtab, FALSE);
21328
21329 vars_clear(&fc.l_vars.dv_hashtab); /* free all l: variables */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021330 --depth;
21331}
21332
21333/*
Bram Moolenaar33570922005-01-25 22:26:29 +000021334 * Add a number variable "name" to dict "dp" with value "nr".
21335 */
21336 static void
21337add_nr_var(dp, v, name, nr)
21338 dict_T *dp;
21339 dictitem_T *v;
21340 char *name;
21341 varnumber_T nr;
21342{
21343 STRCPY(v->di_key, name);
21344 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21345 hash_add(&dp->dv_hashtab, DI2HIKEY(v));
21346 v->di_tv.v_type = VAR_NUMBER;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021347 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021348 v->di_tv.vval.v_number = nr;
21349}
21350
21351/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000021352 * ":return [expr]"
21353 */
21354 void
21355ex_return(eap)
21356 exarg_T *eap;
21357{
21358 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000021359 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021360 int returning = FALSE;
21361
21362 if (current_funccal == NULL)
21363 {
21364 EMSG(_("E133: :return not inside a function"));
21365 return;
21366 }
21367
21368 if (eap->skip)
21369 ++emsg_skip;
21370
21371 eap->nextcmd = NULL;
21372 if ((*arg != NUL && *arg != '|' && *arg != '\n')
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021373 && eval0(arg, &rettv, &eap->nextcmd, !eap->skip) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021374 {
21375 if (!eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021376 returning = do_return(eap, FALSE, TRUE, &rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021377 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021378 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021379 }
21380 /* It's safer to return also on error. */
21381 else if (!eap->skip)
21382 {
21383 /*
21384 * Return unless the expression evaluation has been cancelled due to an
21385 * aborting error, an interrupt, or an exception.
21386 */
21387 if (!aborting())
21388 returning = do_return(eap, FALSE, TRUE, NULL);
21389 }
21390
21391 /* When skipping or the return gets pending, advance to the next command
21392 * in this line (!returning). Otherwise, ignore the rest of the line.
21393 * Following lines will be ignored by get_func_line(). */
21394 if (returning)
21395 eap->nextcmd = NULL;
21396 else if (eap->nextcmd == NULL) /* no argument */
21397 eap->nextcmd = check_nextcmd(arg);
21398
21399 if (eap->skip)
21400 --emsg_skip;
21401}
21402
21403/*
21404 * Return from a function. Possibly makes the return pending. Also called
21405 * for a pending return at the ":endtry" or after returning from an extra
21406 * do_cmdline(). "reanimate" is used in the latter case. "is_cmd" is set
Bram Moolenaar33570922005-01-25 22:26:29 +000021407 * when called due to a ":return" command. "rettv" may point to a typval_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021408 * with the return rettv. Returns TRUE when the return can be carried out,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021409 * FALSE when the return gets pending.
21410 */
21411 int
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021412do_return(eap, reanimate, is_cmd, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021413 exarg_T *eap;
21414 int reanimate;
21415 int is_cmd;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021416 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021417{
21418 int idx;
21419 struct condstack *cstack = eap->cstack;
21420
21421 if (reanimate)
21422 /* Undo the return. */
21423 current_funccal->returned = FALSE;
21424
21425 /*
21426 * Cleanup (and inactivate) conditionals, but stop when a try conditional
21427 * not in its finally clause (which then is to be executed next) is found.
21428 * In this case, make the ":return" pending for execution at the ":endtry".
21429 * Otherwise, return normally.
21430 */
21431 idx = cleanup_conditionals(eap->cstack, 0, TRUE);
21432 if (idx >= 0)
21433 {
21434 cstack->cs_pending[idx] = CSTP_RETURN;
21435
21436 if (!is_cmd && !reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021437 /* A pending return again gets pending. "rettv" points to an
21438 * allocated variable with the rettv of the original ":return"'s
Bram Moolenaar071d4272004-06-13 20:20:40 +000021439 * argument if present or is NULL else. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021440 cstack->cs_rettv[idx] = rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021441 else
21442 {
21443 /* When undoing a return in order to make it pending, get the stored
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021444 * return rettv. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021445 if (reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021446 rettv = current_funccal->rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021447
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021448 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021449 {
21450 /* Store the value of the pending return. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021451 if ((cstack->cs_rettv[idx] = alloc_tv()) != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000021452 *(typval_T *)cstack->cs_rettv[idx] = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021453 else
21454 EMSG(_(e_outofmem));
21455 }
21456 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021457 cstack->cs_rettv[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021458
21459 if (reanimate)
21460 {
21461 /* The pending return value could be overwritten by a ":return"
21462 * without argument in a finally clause; reset the default
21463 * return value. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021464 current_funccal->rettv->v_type = VAR_NUMBER;
21465 current_funccal->rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021466 }
21467 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021468 report_make_pending(CSTP_RETURN, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021469 }
21470 else
21471 {
21472 current_funccal->returned = TRUE;
21473
21474 /* If the return is carried out now, store the return value. For
21475 * a return immediately after reanimation, the value is already
21476 * there. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021477 if (!reanimate && rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021478 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021479 clear_tv(current_funccal->rettv);
Bram Moolenaar33570922005-01-25 22:26:29 +000021480 *current_funccal->rettv = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021481 if (!is_cmd)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021482 vim_free(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021483 }
21484 }
21485
21486 return idx < 0;
21487}
21488
21489/*
21490 * Free the variable with a pending return value.
21491 */
21492 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021493discard_pending_return(rettv)
21494 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021495{
Bram Moolenaar33570922005-01-25 22:26:29 +000021496 free_tv((typval_T *)rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021497}
21498
21499/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021500 * Generate a return command for producing the value of "rettv". The result
Bram Moolenaar071d4272004-06-13 20:20:40 +000021501 * is an allocated string. Used by report_pending() for verbose messages.
21502 */
21503 char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021504get_return_cmd(rettv)
21505 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021506{
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021507 char_u *s = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021508 char_u *tofree = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021509 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021510
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021511 if (rettv != NULL)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021512 s = echo_string((typval_T *)rettv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021513 if (s == NULL)
21514 s = (char_u *)"";
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021515
21516 STRCPY(IObuff, ":return ");
21517 STRNCPY(IObuff + 8, s, IOSIZE - 8);
21518 if (STRLEN(s) + 8 >= IOSIZE)
21519 STRCPY(IObuff + IOSIZE - 4, "...");
21520 vim_free(tofree);
21521 return vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021522}
21523
21524/*
21525 * Get next function line.
21526 * Called by do_cmdline() to get the next line.
21527 * Returns allocated string, or NULL for end of function.
21528 */
21529/* ARGSUSED */
21530 char_u *
21531get_func_line(c, cookie, indent)
21532 int c; /* not used */
21533 void *cookie;
21534 int indent; /* not used */
21535{
Bram Moolenaar33570922005-01-25 22:26:29 +000021536 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021537 ufunc_T *fp = fcp->func;
21538 char_u *retval;
21539 garray_T *gap; /* growarray with function lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021540
21541 /* If breakpoints have been added/deleted need to check for it. */
21542 if (fcp->dbg_tick != debug_tick)
21543 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021544 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021545 sourcing_lnum);
21546 fcp->dbg_tick = debug_tick;
21547 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021548#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021549 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021550 func_line_end(cookie);
21551#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021552
Bram Moolenaar05159a02005-02-26 23:04:13 +000021553 gap = &fp->uf_lines;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021554 if (((fp->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
21555 || fcp->returned)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021556 retval = NULL;
21557 else
21558 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021559 /* Skip NULL lines (continuation lines). */
21560 while (fcp->linenr < gap->ga_len
21561 && ((char_u **)(gap->ga_data))[fcp->linenr] == NULL)
21562 ++fcp->linenr;
21563 if (fcp->linenr >= gap->ga_len)
21564 retval = NULL;
21565 else
21566 {
21567 retval = vim_strsave(((char_u **)(gap->ga_data))[fcp->linenr++]);
21568 sourcing_lnum = fcp->linenr;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021569#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021570 if (do_profiling == PROF_YES)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021571 func_line_start(cookie);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021572#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021573 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021574 }
21575
21576 /* Did we encounter a breakpoint? */
21577 if (fcp->breakpoint != 0 && fcp->breakpoint <= sourcing_lnum)
21578 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021579 dbg_breakpoint(fp->uf_name, sourcing_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021580 /* Find next breakpoint. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000021581 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021582 sourcing_lnum);
21583 fcp->dbg_tick = debug_tick;
21584 }
21585
21586 return retval;
21587}
21588
Bram Moolenaar05159a02005-02-26 23:04:13 +000021589#if defined(FEAT_PROFILE) || defined(PROTO)
21590/*
21591 * Called when starting to read a function line.
21592 * "sourcing_lnum" must be correct!
21593 * When skipping lines it may not actually be executed, but we won't find out
21594 * until later and we need to store the time now.
21595 */
21596 void
21597func_line_start(cookie)
21598 void *cookie;
21599{
21600 funccall_T *fcp = (funccall_T *)cookie;
21601 ufunc_T *fp = fcp->func;
21602
21603 if (fp->uf_profiling && sourcing_lnum >= 1
21604 && sourcing_lnum <= fp->uf_lines.ga_len)
21605 {
21606 fp->uf_tml_idx = sourcing_lnum - 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021607 /* Skip continuation lines. */
21608 while (fp->uf_tml_idx > 0 && FUNCLINE(fp, fp->uf_tml_idx) == NULL)
21609 --fp->uf_tml_idx;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021610 fp->uf_tml_execed = FALSE;
21611 profile_start(&fp->uf_tml_start);
21612 profile_zero(&fp->uf_tml_children);
21613 profile_get_wait(&fp->uf_tml_wait);
21614 }
21615}
21616
21617/*
21618 * Called when actually executing a function line.
21619 */
21620 void
21621func_line_exec(cookie)
21622 void *cookie;
21623{
21624 funccall_T *fcp = (funccall_T *)cookie;
21625 ufunc_T *fp = fcp->func;
21626
21627 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21628 fp->uf_tml_execed = TRUE;
21629}
21630
21631/*
21632 * Called when done with a function line.
21633 */
21634 void
21635func_line_end(cookie)
21636 void *cookie;
21637{
21638 funccall_T *fcp = (funccall_T *)cookie;
21639 ufunc_T *fp = fcp->func;
21640
21641 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21642 {
21643 if (fp->uf_tml_execed)
21644 {
21645 ++fp->uf_tml_count[fp->uf_tml_idx];
21646 profile_end(&fp->uf_tml_start);
21647 profile_sub_wait(&fp->uf_tml_wait, &fp->uf_tml_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021648 profile_add(&fp->uf_tml_total[fp->uf_tml_idx], &fp->uf_tml_start);
Bram Moolenaar1056d982006-03-09 22:37:52 +000021649 profile_self(&fp->uf_tml_self[fp->uf_tml_idx], &fp->uf_tml_start,
21650 &fp->uf_tml_children);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021651 }
21652 fp->uf_tml_idx = -1;
21653 }
21654}
21655#endif
21656
Bram Moolenaar071d4272004-06-13 20:20:40 +000021657/*
21658 * Return TRUE if the currently active function should be ended, because a
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021659 * return was encountered or an error occurred. Used inside a ":while".
Bram Moolenaar071d4272004-06-13 20:20:40 +000021660 */
21661 int
21662func_has_ended(cookie)
21663 void *cookie;
21664{
Bram Moolenaar33570922005-01-25 22:26:29 +000021665 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021666
21667 /* Ignore the "abort" flag if the abortion behavior has been changed due to
21668 * an error inside a try conditional. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021669 return (((fcp->func->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
Bram Moolenaar071d4272004-06-13 20:20:40 +000021670 || fcp->returned);
21671}
21672
21673/*
21674 * return TRUE if cookie indicates a function which "abort"s on errors.
21675 */
21676 int
21677func_has_abort(cookie)
21678 void *cookie;
21679{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021680 return ((funccall_T *)cookie)->func->uf_flags & FC_ABORT;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021681}
21682
21683#if defined(FEAT_VIMINFO) || defined(FEAT_SESSION)
21684typedef enum
21685{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021686 VAR_FLAVOUR_DEFAULT, /* doesn't start with uppercase */
21687 VAR_FLAVOUR_SESSION, /* starts with uppercase, some lower */
21688 VAR_FLAVOUR_VIMINFO /* all uppercase */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021689} var_flavour_T;
21690
21691static var_flavour_T var_flavour __ARGS((char_u *varname));
21692
21693 static var_flavour_T
21694var_flavour(varname)
21695 char_u *varname;
21696{
21697 char_u *p = varname;
21698
21699 if (ASCII_ISUPPER(*p))
21700 {
21701 while (*(++p))
21702 if (ASCII_ISLOWER(*p))
21703 return VAR_FLAVOUR_SESSION;
21704 return VAR_FLAVOUR_VIMINFO;
21705 }
21706 else
21707 return VAR_FLAVOUR_DEFAULT;
21708}
21709#endif
21710
21711#if defined(FEAT_VIMINFO) || defined(PROTO)
21712/*
21713 * Restore global vars that start with a capital from the viminfo file
21714 */
21715 int
21716read_viminfo_varlist(virp, writing)
21717 vir_T *virp;
21718 int writing;
21719{
21720 char_u *tab;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021721 int type = VAR_NUMBER;
Bram Moolenaar33570922005-01-25 22:26:29 +000021722 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021723
21724 if (!writing && (find_viminfo_parameter('!') != NULL))
21725 {
21726 tab = vim_strchr(virp->vir_line + 1, '\t');
21727 if (tab != NULL)
21728 {
21729 *tab++ = '\0'; /* isolate the variable name */
21730 if (*tab == 'S') /* string var */
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021731 type = VAR_STRING;
21732#ifdef FEAT_FLOAT
21733 else if (*tab == 'F')
21734 type = VAR_FLOAT;
21735#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021736
21737 tab = vim_strchr(tab, '\t');
21738 if (tab != NULL)
21739 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021740 tv.v_type = type;
21741 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021742 tv.vval.v_string = viminfo_readstring(virp,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021743 (int)(tab - virp->vir_line + 1), TRUE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021744#ifdef FEAT_FLOAT
21745 else if (type == VAR_FLOAT)
21746 (void)string2float(tab + 1, &tv.vval.v_float);
21747#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021748 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021749 tv.vval.v_number = atol((char *)tab + 1);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021750 set_var(virp->vir_line + 1, &tv, FALSE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021751 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021752 vim_free(tv.vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021753 }
21754 }
21755 }
21756
21757 return viminfo_readline(virp);
21758}
21759
21760/*
21761 * Write global vars that start with a capital to the viminfo file
21762 */
21763 void
21764write_viminfo_varlist(fp)
21765 FILE *fp;
21766{
Bram Moolenaar33570922005-01-25 22:26:29 +000021767 hashitem_T *hi;
21768 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021769 int todo;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021770 char *s;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021771 char_u *p;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021772 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021773 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021774
21775 if (find_viminfo_parameter('!') == NULL)
21776 return;
21777
21778 fprintf(fp, _("\n# global variables:\n"));
Bram Moolenaara7043832005-01-21 11:56:39 +000021779
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021780 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021781 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021782 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021783 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021784 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021785 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021786 this_var = HI2DI(hi);
21787 if (var_flavour(this_var->di_key) == VAR_FLAVOUR_VIMINFO)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021788 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021789 switch (this_var->di_tv.v_type)
Bram Moolenaara7043832005-01-21 11:56:39 +000021790 {
21791 case VAR_STRING: s = "STR"; break;
21792 case VAR_NUMBER: s = "NUM"; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021793#ifdef FEAT_FLOAT
21794 case VAR_FLOAT: s = "FLO"; break;
21795#endif
Bram Moolenaara7043832005-01-21 11:56:39 +000021796 default: continue;
21797 }
Bram Moolenaar33570922005-01-25 22:26:29 +000021798 fprintf(fp, "!%s\t%s\t", this_var->di_key, s);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021799 p = echo_string(&this_var->di_tv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021800 if (p != NULL)
21801 viminfo_writestring(fp, p);
Bram Moolenaara7043832005-01-21 11:56:39 +000021802 vim_free(tofree);
21803 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021804 }
21805 }
21806}
21807#endif
21808
21809#if defined(FEAT_SESSION) || defined(PROTO)
21810 int
21811store_session_globals(fd)
21812 FILE *fd;
21813{
Bram Moolenaar33570922005-01-25 22:26:29 +000021814 hashitem_T *hi;
21815 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021816 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021817 char_u *p, *t;
21818
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021819 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021820 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021821 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021822 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021823 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021824 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021825 this_var = HI2DI(hi);
21826 if ((this_var->di_tv.v_type == VAR_NUMBER
21827 || this_var->di_tv.v_type == VAR_STRING)
21828 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021829 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021830 /* Escape special characters with a backslash. Turn a LF and
21831 * CR into \n and \r. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021832 p = vim_strsave_escaped(get_tv_string(&this_var->di_tv),
Bram Moolenaara7043832005-01-21 11:56:39 +000021833 (char_u *)"\\\"\n\r");
21834 if (p == NULL) /* out of memory */
21835 break;
21836 for (t = p; *t != NUL; ++t)
21837 if (*t == '\n')
21838 *t = 'n';
21839 else if (*t == '\r')
21840 *t = 'r';
21841 if ((fprintf(fd, "let %s = %c%s%c",
Bram Moolenaar33570922005-01-25 22:26:29 +000021842 this_var->di_key,
21843 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21844 : ' ',
21845 p,
21846 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21847 : ' ') < 0)
Bram Moolenaara7043832005-01-21 11:56:39 +000021848 || put_eol(fd) == FAIL)
21849 {
21850 vim_free(p);
21851 return FAIL;
21852 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021853 vim_free(p);
21854 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021855#ifdef FEAT_FLOAT
21856 else if (this_var->di_tv.v_type == VAR_FLOAT
21857 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
21858 {
21859 float_T f = this_var->di_tv.vval.v_float;
21860 int sign = ' ';
21861
21862 if (f < 0)
21863 {
21864 f = -f;
21865 sign = '-';
21866 }
21867 if ((fprintf(fd, "let %s = %c&%f",
21868 this_var->di_key, sign, f) < 0)
21869 || put_eol(fd) == FAIL)
21870 return FAIL;
21871 }
21872#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021873 }
21874 }
21875 return OK;
21876}
21877#endif
21878
Bram Moolenaar661b1822005-07-28 22:36:45 +000021879/*
21880 * Display script name where an item was last set.
21881 * Should only be invoked when 'verbose' is non-zero.
21882 */
21883 void
21884last_set_msg(scriptID)
21885 scid_T scriptID;
21886{
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000021887 char_u *p;
21888
Bram Moolenaar661b1822005-07-28 22:36:45 +000021889 if (scriptID != 0)
21890 {
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000021891 p = home_replace_save(NULL, get_scriptname(scriptID));
21892 if (p != NULL)
21893 {
21894 verbose_enter();
21895 MSG_PUTS(_("\n\tLast set from "));
21896 MSG_PUTS(p);
21897 vim_free(p);
21898 verbose_leave();
21899 }
Bram Moolenaar661b1822005-07-28 22:36:45 +000021900 }
21901}
21902
Bram Moolenaar071d4272004-06-13 20:20:40 +000021903#endif /* FEAT_EVAL */
21904
Bram Moolenaar071d4272004-06-13 20:20:40 +000021905
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021906#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021907
21908#ifdef WIN3264
21909/*
21910 * Functions for ":8" filename modifier: get 8.3 version of a filename.
21911 */
21912static int get_short_pathname __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
21913static int shortpath_for_invalid_fname __ARGS((char_u **fname, char_u **bufp, int *fnamelen));
21914static int shortpath_for_partial __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
21915
21916/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021917 * Get the short path (8.3) for the filename in "fnamep".
21918 * Only works for a valid file name.
21919 * When the path gets longer "fnamep" is changed and the allocated buffer
21920 * is put in "bufp".
21921 * *fnamelen is the length of "fnamep" and set to 0 for a nonexistent path.
21922 * Returns OK on success, FAIL on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000021923 */
21924 static int
21925get_short_pathname(fnamep, bufp, fnamelen)
21926 char_u **fnamep;
21927 char_u **bufp;
21928 int *fnamelen;
21929{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021930 int l, len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021931 char_u *newbuf;
21932
21933 len = *fnamelen;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021934 l = GetShortPathName(*fnamep, *fnamep, len);
21935 if (l > len - 1)
21936 {
21937 /* If that doesn't work (not enough space), then save the string
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021938 * and try again with a new buffer big enough. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021939 newbuf = vim_strnsave(*fnamep, l);
21940 if (newbuf == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021941 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021942
21943 vim_free(*bufp);
21944 *fnamep = *bufp = newbuf;
21945
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021946 /* Really should always succeed, as the buffer is big enough. */
21947 l = GetShortPathName(*fnamep, *fnamep, l+1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021948 }
21949
21950 *fnamelen = l;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021951 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021952}
21953
21954/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021955 * Get the short path (8.3) for the filename in "fname". The converted
21956 * path is returned in "bufp".
21957 *
21958 * Some of the directories specified in "fname" may not exist. This function
21959 * will shorten the existing directories at the beginning of the path and then
21960 * append the remaining non-existing path.
21961 *
21962 * fname - Pointer to the filename to shorten. On return, contains the
21963 * pointer to the shortened pathname
21964 * bufp - Pointer to an allocated buffer for the filename.
21965 * fnamelen - Length of the filename pointed to by fname
21966 *
21967 * Returns OK on success (or nothing done) and FAIL on failure (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +000021968 */
21969 static int
21970shortpath_for_invalid_fname(fname, bufp, fnamelen)
21971 char_u **fname;
21972 char_u **bufp;
21973 int *fnamelen;
21974{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021975 char_u *short_fname, *save_fname, *pbuf_unused;
21976 char_u *endp, *save_endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021977 char_u ch;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021978 int old_len, len;
21979 int new_len, sfx_len;
21980 int retval = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021981
21982 /* Make a copy */
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021983 old_len = *fnamelen;
21984 save_fname = vim_strnsave(*fname, old_len);
21985 pbuf_unused = NULL;
21986 short_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021987
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021988 endp = save_fname + old_len - 1; /* Find the end of the copy */
21989 save_endp = endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021990
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021991 /*
21992 * Try shortening the supplied path till it succeeds by removing one
21993 * directory at a time from the tail of the path.
21994 */
21995 len = 0;
21996 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021997 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021998 /* go back one path-separator */
21999 while (endp > save_fname && !after_pathsep(save_fname, endp + 1))
22000 --endp;
22001 if (endp <= save_fname)
22002 break; /* processed the complete path */
22003
22004 /*
22005 * Replace the path separator with a NUL and try to shorten the
22006 * resulting path.
22007 */
22008 ch = *endp;
22009 *endp = 0;
22010 short_fname = save_fname;
Bram Moolenaarc236c162008-07-13 17:41:49 +000022011 len = (int)STRLEN(short_fname) + 1;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022012 if (get_short_pathname(&short_fname, &pbuf_unused, &len) == FAIL)
22013 {
22014 retval = FAIL;
22015 goto theend;
22016 }
22017 *endp = ch; /* preserve the string */
22018
22019 if (len > 0)
22020 break; /* successfully shortened the path */
22021
22022 /* failed to shorten the path. Skip the path separator */
22023 --endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022024 }
22025
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022026 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022027 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022028 /*
22029 * Succeeded in shortening the path. Now concatenate the shortened
22030 * path with the remaining path at the tail.
22031 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022032
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022033 /* Compute the length of the new path. */
22034 sfx_len = (int)(save_endp - endp) + 1;
22035 new_len = len + sfx_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022036
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022037 *fnamelen = new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022038 vim_free(*bufp);
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022039 if (new_len > old_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022040 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022041 /* There is not enough space in the currently allocated string,
22042 * copy it to a buffer big enough. */
22043 *fname = *bufp = vim_strnsave(short_fname, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022044 if (*fname == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022045 {
22046 retval = FAIL;
22047 goto theend;
22048 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022049 }
22050 else
22051 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022052 /* Transfer short_fname to the main buffer (it's big enough),
22053 * unless get_short_pathname() did its work in-place. */
22054 *fname = *bufp = save_fname;
22055 if (short_fname != save_fname)
22056 vim_strncpy(save_fname, short_fname, len);
22057 save_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022058 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022059
22060 /* concat the not-shortened part of the path */
22061 vim_strncpy(*fname + len, endp, sfx_len);
22062 (*fname)[new_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022063 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022064
22065theend:
22066 vim_free(pbuf_unused);
22067 vim_free(save_fname);
22068
22069 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022070}
22071
22072/*
22073 * Get a pathname for a partial path.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022074 * Returns OK for success, FAIL for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022075 */
22076 static int
22077shortpath_for_partial(fnamep, bufp, fnamelen)
22078 char_u **fnamep;
22079 char_u **bufp;
22080 int *fnamelen;
22081{
22082 int sepcount, len, tflen;
22083 char_u *p;
22084 char_u *pbuf, *tfname;
22085 int hasTilde;
22086
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022087 /* Count up the path separators from the RHS.. so we know which part
22088 * of the path to return. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022089 sepcount = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022090 for (p = *fnamep; p < *fnamep + *fnamelen; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022091 if (vim_ispathsep(*p))
22092 ++sepcount;
22093
22094 /* Need full path first (use expand_env() to remove a "~/") */
22095 hasTilde = (**fnamep == '~');
22096 if (hasTilde)
22097 pbuf = tfname = expand_env_save(*fnamep);
22098 else
22099 pbuf = tfname = FullName_save(*fnamep, FALSE);
22100
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000022101 len = tflen = (int)STRLEN(tfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022102
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022103 if (get_short_pathname(&tfname, &pbuf, &len) == FAIL)
22104 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022105
22106 if (len == 0)
22107 {
22108 /* Don't have a valid filename, so shorten the rest of the
22109 * path if we can. This CAN give us invalid 8.3 filenames, but
22110 * there's not a lot of point in guessing what it might be.
22111 */
22112 len = tflen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022113 if (shortpath_for_invalid_fname(&tfname, &pbuf, &len) == FAIL)
22114 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022115 }
22116
22117 /* Count the paths backward to find the beginning of the desired string. */
22118 for (p = tfname + len - 1; p >= tfname; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022119 {
22120#ifdef FEAT_MBYTE
22121 if (has_mbyte)
22122 p -= mb_head_off(tfname, p);
22123#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000022124 if (vim_ispathsep(*p))
22125 {
22126 if (sepcount == 0 || (hasTilde && sepcount == 1))
22127 break;
22128 else
22129 sepcount --;
22130 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022131 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022132 if (hasTilde)
22133 {
22134 --p;
22135 if (p >= tfname)
22136 *p = '~';
22137 else
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022138 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022139 }
22140 else
22141 ++p;
22142
22143 /* Copy in the string - p indexes into tfname - allocated at pbuf */
22144 vim_free(*bufp);
22145 *fnamelen = (int)STRLEN(p);
22146 *bufp = pbuf;
22147 *fnamep = p;
22148
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022149 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022150}
22151#endif /* WIN3264 */
22152
22153/*
22154 * Adjust a filename, according to a string of modifiers.
22155 * *fnamep must be NUL terminated when called. When returning, the length is
22156 * determined by *fnamelen.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022157 * Returns VALID_ flags or -1 for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022158 * When there is an error, *fnamep is set to NULL.
22159 */
22160 int
22161modify_fname(src, usedlen, fnamep, bufp, fnamelen)
22162 char_u *src; /* string with modifiers */
22163 int *usedlen; /* characters after src that are used */
22164 char_u **fnamep; /* file name so far */
22165 char_u **bufp; /* buffer for allocated file name or NULL */
22166 int *fnamelen; /* length of fnamep */
22167{
22168 int valid = 0;
22169 char_u *tail;
22170 char_u *s, *p, *pbuf;
22171 char_u dirname[MAXPATHL];
22172 int c;
22173 int has_fullname = 0;
22174#ifdef WIN3264
22175 int has_shortname = 0;
22176#endif
22177
22178repeat:
22179 /* ":p" - full path/file_name */
22180 if (src[*usedlen] == ':' && src[*usedlen + 1] == 'p')
22181 {
22182 has_fullname = 1;
22183
22184 valid |= VALID_PATH;
22185 *usedlen += 2;
22186
22187 /* Expand "~/path" for all systems and "~user/path" for Unix and VMS */
22188 if ((*fnamep)[0] == '~'
22189#if !defined(UNIX) && !(defined(VMS) && defined(USER_HOME))
22190 && ((*fnamep)[1] == '/'
22191# ifdef BACKSLASH_IN_FILENAME
22192 || (*fnamep)[1] == '\\'
22193# endif
22194 || (*fnamep)[1] == NUL)
22195
22196#endif
22197 )
22198 {
22199 *fnamep = expand_env_save(*fnamep);
22200 vim_free(*bufp); /* free any allocated file name */
22201 *bufp = *fnamep;
22202 if (*fnamep == NULL)
22203 return -1;
22204 }
22205
22206 /* When "/." or "/.." is used: force expansion to get rid of it. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022207 for (p = *fnamep; *p != NUL; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022208 {
22209 if (vim_ispathsep(*p)
22210 && p[1] == '.'
22211 && (p[2] == NUL
22212 || vim_ispathsep(p[2])
22213 || (p[2] == '.'
22214 && (p[3] == NUL || vim_ispathsep(p[3])))))
22215 break;
22216 }
22217
22218 /* FullName_save() is slow, don't use it when not needed. */
22219 if (*p != NUL || !vim_isAbsName(*fnamep))
22220 {
22221 *fnamep = FullName_save(*fnamep, *p != NUL);
22222 vim_free(*bufp); /* free any allocated file name */
22223 *bufp = *fnamep;
22224 if (*fnamep == NULL)
22225 return -1;
22226 }
22227
22228 /* Append a path separator to a directory. */
22229 if (mch_isdir(*fnamep))
22230 {
22231 /* Make room for one or two extra characters. */
22232 *fnamep = vim_strnsave(*fnamep, (int)STRLEN(*fnamep) + 2);
22233 vim_free(*bufp); /* free any allocated file name */
22234 *bufp = *fnamep;
22235 if (*fnamep == NULL)
22236 return -1;
22237 add_pathsep(*fnamep);
22238 }
22239 }
22240
22241 /* ":." - path relative to the current directory */
22242 /* ":~" - path relative to the home directory */
22243 /* ":8" - shortname path - postponed till after */
22244 while (src[*usedlen] == ':'
22245 && ((c = src[*usedlen + 1]) == '.' || c == '~' || c == '8'))
22246 {
22247 *usedlen += 2;
22248 if (c == '8')
22249 {
22250#ifdef WIN3264
22251 has_shortname = 1; /* Postpone this. */
22252#endif
22253 continue;
22254 }
22255 pbuf = NULL;
22256 /* Need full path first (use expand_env() to remove a "~/") */
22257 if (!has_fullname)
22258 {
22259 if (c == '.' && **fnamep == '~')
22260 p = pbuf = expand_env_save(*fnamep);
22261 else
22262 p = pbuf = FullName_save(*fnamep, FALSE);
22263 }
22264 else
22265 p = *fnamep;
22266
22267 has_fullname = 0;
22268
22269 if (p != NULL)
22270 {
22271 if (c == '.')
22272 {
22273 mch_dirname(dirname, MAXPATHL);
22274 s = shorten_fname(p, dirname);
22275 if (s != NULL)
22276 {
22277 *fnamep = s;
22278 if (pbuf != NULL)
22279 {
22280 vim_free(*bufp); /* free any allocated file name */
22281 *bufp = pbuf;
22282 pbuf = NULL;
22283 }
22284 }
22285 }
22286 else
22287 {
22288 home_replace(NULL, p, dirname, MAXPATHL, TRUE);
22289 /* Only replace it when it starts with '~' */
22290 if (*dirname == '~')
22291 {
22292 s = vim_strsave(dirname);
22293 if (s != NULL)
22294 {
22295 *fnamep = s;
22296 vim_free(*bufp);
22297 *bufp = s;
22298 }
22299 }
22300 }
22301 vim_free(pbuf);
22302 }
22303 }
22304
22305 tail = gettail(*fnamep);
22306 *fnamelen = (int)STRLEN(*fnamep);
22307
22308 /* ":h" - head, remove "/file_name", can be repeated */
22309 /* Don't remove the first "/" or "c:\" */
22310 while (src[*usedlen] == ':' && src[*usedlen + 1] == 'h')
22311 {
22312 valid |= VALID_HEAD;
22313 *usedlen += 2;
22314 s = get_past_head(*fnamep);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022315 while (tail > s && after_pathsep(s, tail))
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022316 mb_ptr_back(*fnamep, tail);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022317 *fnamelen = (int)(tail - *fnamep);
22318#ifdef VMS
22319 if (*fnamelen > 0)
22320 *fnamelen += 1; /* the path separator is part of the path */
22321#endif
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022322 if (*fnamelen == 0)
22323 {
22324 /* Result is empty. Turn it into "." to make ":cd %:h" work. */
22325 p = vim_strsave((char_u *)".");
22326 if (p == NULL)
22327 return -1;
22328 vim_free(*bufp);
22329 *bufp = *fnamep = tail = p;
22330 *fnamelen = 1;
22331 }
22332 else
22333 {
22334 while (tail > s && !after_pathsep(s, tail))
22335 mb_ptr_back(*fnamep, tail);
22336 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022337 }
22338
22339 /* ":8" - shortname */
22340 if (src[*usedlen] == ':' && src[*usedlen + 1] == '8')
22341 {
22342 *usedlen += 2;
22343#ifdef WIN3264
22344 has_shortname = 1;
22345#endif
22346 }
22347
22348#ifdef WIN3264
22349 /* Check shortname after we have done 'heads' and before we do 'tails'
22350 */
22351 if (has_shortname)
22352 {
22353 pbuf = NULL;
22354 /* Copy the string if it is shortened by :h */
22355 if (*fnamelen < (int)STRLEN(*fnamep))
22356 {
22357 p = vim_strnsave(*fnamep, *fnamelen);
22358 if (p == 0)
22359 return -1;
22360 vim_free(*bufp);
22361 *bufp = *fnamep = p;
22362 }
22363
22364 /* Split into two implementations - makes it easier. First is where
22365 * there isn't a full name already, second is where there is.
22366 */
22367 if (!has_fullname && !vim_isAbsName(*fnamep))
22368 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022369 if (shortpath_for_partial(fnamep, bufp, fnamelen) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022370 return -1;
22371 }
22372 else
22373 {
22374 int l;
22375
22376 /* Simple case, already have the full-name
22377 * Nearly always shorter, so try first time. */
22378 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022379 if (get_short_pathname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022380 return -1;
22381
22382 if (l == 0)
22383 {
22384 /* Couldn't find the filename.. search the paths.
22385 */
22386 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022387 if (shortpath_for_invalid_fname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022388 return -1;
22389 }
22390 *fnamelen = l;
22391 }
22392 }
22393#endif /* WIN3264 */
22394
22395 /* ":t" - tail, just the basename */
22396 if (src[*usedlen] == ':' && src[*usedlen + 1] == 't')
22397 {
22398 *usedlen += 2;
22399 *fnamelen -= (int)(tail - *fnamep);
22400 *fnamep = tail;
22401 }
22402
22403 /* ":e" - extension, can be repeated */
22404 /* ":r" - root, without extension, can be repeated */
22405 while (src[*usedlen] == ':'
22406 && (src[*usedlen + 1] == 'e' || src[*usedlen + 1] == 'r'))
22407 {
22408 /* find a '.' in the tail:
22409 * - for second :e: before the current fname
22410 * - otherwise: The last '.'
22411 */
22412 if (src[*usedlen + 1] == 'e' && *fnamep > tail)
22413 s = *fnamep - 2;
22414 else
22415 s = *fnamep + *fnamelen - 1;
22416 for ( ; s > tail; --s)
22417 if (s[0] == '.')
22418 break;
22419 if (src[*usedlen + 1] == 'e') /* :e */
22420 {
22421 if (s > tail)
22422 {
22423 *fnamelen += (int)(*fnamep - (s + 1));
22424 *fnamep = s + 1;
22425#ifdef VMS
22426 /* cut version from the extension */
22427 s = *fnamep + *fnamelen - 1;
22428 for ( ; s > *fnamep; --s)
22429 if (s[0] == ';')
22430 break;
22431 if (s > *fnamep)
22432 *fnamelen = s - *fnamep;
22433#endif
22434 }
22435 else if (*fnamep <= tail)
22436 *fnamelen = 0;
22437 }
22438 else /* :r */
22439 {
22440 if (s > tail) /* remove one extension */
22441 *fnamelen = (int)(s - *fnamep);
22442 }
22443 *usedlen += 2;
22444 }
22445
22446 /* ":s?pat?foo?" - substitute */
22447 /* ":gs?pat?foo?" - global substitute */
22448 if (src[*usedlen] == ':'
22449 && (src[*usedlen + 1] == 's'
22450 || (src[*usedlen + 1] == 'g' && src[*usedlen + 2] == 's')))
22451 {
22452 char_u *str;
22453 char_u *pat;
22454 char_u *sub;
22455 int sep;
22456 char_u *flags;
22457 int didit = FALSE;
22458
22459 flags = (char_u *)"";
22460 s = src + *usedlen + 2;
22461 if (src[*usedlen + 1] == 'g')
22462 {
22463 flags = (char_u *)"g";
22464 ++s;
22465 }
22466
22467 sep = *s++;
22468 if (sep)
22469 {
22470 /* find end of pattern */
22471 p = vim_strchr(s, sep);
22472 if (p != NULL)
22473 {
22474 pat = vim_strnsave(s, (int)(p - s));
22475 if (pat != NULL)
22476 {
22477 s = p + 1;
22478 /* find end of substitution */
22479 p = vim_strchr(s, sep);
22480 if (p != NULL)
22481 {
22482 sub = vim_strnsave(s, (int)(p - s));
22483 str = vim_strnsave(*fnamep, *fnamelen);
22484 if (sub != NULL && str != NULL)
22485 {
22486 *usedlen = (int)(p + 1 - src);
22487 s = do_string_sub(str, pat, sub, flags);
22488 if (s != NULL)
22489 {
22490 *fnamep = s;
22491 *fnamelen = (int)STRLEN(s);
22492 vim_free(*bufp);
22493 *bufp = s;
22494 didit = TRUE;
22495 }
22496 }
22497 vim_free(sub);
22498 vim_free(str);
22499 }
22500 vim_free(pat);
22501 }
22502 }
22503 /* after using ":s", repeat all the modifiers */
22504 if (didit)
22505 goto repeat;
22506 }
22507 }
22508
22509 return valid;
22510}
22511
22512/*
22513 * Perform a substitution on "str" with pattern "pat" and substitute "sub".
22514 * "flags" can be "g" to do a global substitute.
22515 * Returns an allocated string, NULL for error.
22516 */
22517 char_u *
22518do_string_sub(str, pat, sub, flags)
22519 char_u *str;
22520 char_u *pat;
22521 char_u *sub;
22522 char_u *flags;
22523{
22524 int sublen;
22525 regmatch_T regmatch;
22526 int i;
22527 int do_all;
22528 char_u *tail;
22529 garray_T ga;
22530 char_u *ret;
22531 char_u *save_cpo;
22532
22533 /* Make 'cpoptions' empty, so that the 'l' flag doesn't work here */
22534 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022535 p_cpo = empty_option;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022536
22537 ga_init2(&ga, 1, 200);
22538
22539 do_all = (flags[0] == 'g');
22540
22541 regmatch.rm_ic = p_ic;
22542 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
22543 if (regmatch.regprog != NULL)
22544 {
22545 tail = str;
22546 while (vim_regexec_nl(&regmatch, str, (colnr_T)(tail - str)))
22547 {
22548 /*
22549 * Get some space for a temporary buffer to do the substitution
22550 * into. It will contain:
22551 * - The text up to where the match is.
22552 * - The substituted text.
22553 * - The text after the match.
22554 */
22555 sublen = vim_regsub(&regmatch, sub, tail, FALSE, TRUE, FALSE);
22556 if (ga_grow(&ga, (int)(STRLEN(tail) + sublen -
22557 (regmatch.endp[0] - regmatch.startp[0]))) == FAIL)
22558 {
22559 ga_clear(&ga);
22560 break;
22561 }
22562
22563 /* copy the text up to where the match is */
22564 i = (int)(regmatch.startp[0] - tail);
22565 mch_memmove((char_u *)ga.ga_data + ga.ga_len, tail, (size_t)i);
22566 /* add the substituted text */
22567 (void)vim_regsub(&regmatch, sub, (char_u *)ga.ga_data
22568 + ga.ga_len + i, TRUE, TRUE, FALSE);
22569 ga.ga_len += i + sublen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022570 /* avoid getting stuck on a match with an empty string */
22571 if (tail == regmatch.endp[0])
22572 {
22573 if (*tail == NUL)
22574 break;
22575 *((char_u *)ga.ga_data + ga.ga_len) = *tail++;
22576 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022577 }
22578 else
22579 {
22580 tail = regmatch.endp[0];
22581 if (*tail == NUL)
22582 break;
22583 }
22584 if (!do_all)
22585 break;
22586 }
22587
22588 if (ga.ga_data != NULL)
22589 STRCPY((char *)ga.ga_data + ga.ga_len, tail);
22590
22591 vim_free(regmatch.regprog);
22592 }
22593
22594 ret = vim_strsave(ga.ga_data == NULL ? str : (char_u *)ga.ga_data);
22595 ga_clear(&ga);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022596 if (p_cpo == empty_option)
22597 p_cpo = save_cpo;
22598 else
22599 /* Darn, evaluating {sub} expression changed the value. */
22600 free_string_option(save_cpo);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022601
22602 return ret;
22603}
22604
22605#endif /* defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) */