blob: e118f042eb59924b13f73f7563eb7318005e0842 [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 Moolenaard812df62008-11-09 12:46:09 +0000351 {VV_NAME("oldfiles", VAR_LIST), 0},
Bram Moolenaar33570922005-01-25 22:26:29 +0000352};
353
354/* shorthand */
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000355#define vv_type vv_di.di_tv.v_type
356#define vv_nr vv_di.di_tv.vval.v_number
357#define vv_float vv_di.di_tv.vval.v_float
358#define vv_str vv_di.di_tv.vval.v_string
Bram Moolenaard812df62008-11-09 12:46:09 +0000359#define vv_list vv_di.di_tv.vval.v_list
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000360#define vv_tv vv_di.di_tv
Bram Moolenaar33570922005-01-25 22:26:29 +0000361
362/*
363 * The v: variables are stored in dictionary "vimvardict".
364 * "vimvars_var" is the variable that is used for the "l:" scope.
365 */
366static dict_T vimvardict;
367static dictitem_T vimvars_var;
368#define vimvarht vimvardict.dv_hashtab
369
Bram Moolenaara40058a2005-07-11 22:42:07 +0000370static void prepare_vimvar __ARGS((int idx, typval_T *save_tv));
371static void restore_vimvar __ARGS((int idx, typval_T *save_tv));
372#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
373static int call_vim_function __ARGS((char_u *func, int argc, char_u **argv, int safe, typval_T *rettv));
374#endif
375static int ex_let_vars __ARGS((char_u *arg, typval_T *tv, int copy, int semicolon, int var_count, char_u *nextchars));
376static char_u *skip_var_list __ARGS((char_u *arg, int *var_count, int *semicolon));
377static char_u *skip_var_one __ARGS((char_u *arg));
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000378static void list_hashtable_vars __ARGS((hashtab_T *ht, char_u *prefix, int empty, int *first));
379static void list_glob_vars __ARGS((int *first));
380static void list_buf_vars __ARGS((int *first));
381static void list_win_vars __ARGS((int *first));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000382#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000383static void list_tab_vars __ARGS((int *first));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000384#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000385static void list_vim_vars __ARGS((int *first));
386static void list_script_vars __ARGS((int *first));
387static void list_func_vars __ARGS((int *first));
388static char_u *list_arg_vars __ARGS((exarg_T *eap, char_u *arg, int *first));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000389static char_u *ex_let_one __ARGS((char_u *arg, typval_T *tv, int copy, char_u *endchars, char_u *op));
390static int check_changedtick __ARGS((char_u *arg));
391static char_u *get_lval __ARGS((char_u *name, typval_T *rettv, lval_T *lp, int unlet, int skip, int quiet, int fne_flags));
392static void clear_lval __ARGS((lval_T *lp));
393static void set_var_lval __ARGS((lval_T *lp, char_u *endp, typval_T *rettv, int copy, char_u *op));
394static int tv_op __ARGS((typval_T *tv1, typval_T *tv2, char_u *op));
395static void list_add_watch __ARGS((list_T *l, listwatch_T *lw));
396static void list_rem_watch __ARGS((list_T *l, listwatch_T *lwrem));
397static void list_fix_watch __ARGS((list_T *l, listitem_T *item));
398static void ex_unletlock __ARGS((exarg_T *eap, char_u *argstart, int deep));
399static int do_unlet_var __ARGS((lval_T *lp, char_u *name_end, int forceit));
400static int do_lock_var __ARGS((lval_T *lp, char_u *name_end, int deep, int lock));
401static void item_lock __ARGS((typval_T *tv, int deep, int lock));
402static int tv_islocked __ARGS((typval_T *tv));
403
Bram Moolenaar33570922005-01-25 22:26:29 +0000404static int eval0 __ARGS((char_u *arg, typval_T *rettv, char_u **nextcmd, int evaluate));
405static int eval1 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
406static int eval2 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
407static int eval3 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
408static int eval4 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
409static int eval5 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +0000410static int eval6 __ARGS((char_u **arg, typval_T *rettv, int evaluate, int want_string));
411static int eval7 __ARGS((char_u **arg, typval_T *rettv, int evaluate, int want_string));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000412
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000413static int eval_index __ARGS((char_u **arg, typval_T *rettv, int evaluate, int verbose));
Bram Moolenaar33570922005-01-25 22:26:29 +0000414static int get_option_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
415static int get_string_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
416static int get_lit_string_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
417static int get_list_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaareddf53b2006-02-27 00:11:10 +0000418static int rettv_list_alloc __ARGS((typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000419static listitem_T *listitem_alloc __ARGS((void));
420static void listitem_free __ARGS((listitem_T *item));
421static void listitem_remove __ARGS((list_T *l, listitem_T *item));
422static long list_len __ARGS((list_T *l));
423static int list_equal __ARGS((list_T *l1, list_T *l2, int ic));
424static int dict_equal __ARGS((dict_T *d1, dict_T *d2, int ic));
425static int tv_equal __ARGS((typval_T *tv1, typval_T *tv2, int ic));
Bram Moolenaar33570922005-01-25 22:26:29 +0000426static listitem_T *list_find __ARGS((list_T *l, long n));
Bram Moolenaara5525202006-03-02 22:52:09 +0000427static long list_find_nr __ARGS((list_T *l, long idx, int *errorp));
Bram Moolenaar33570922005-01-25 22:26:29 +0000428static long list_idx_of_item __ARGS((list_T *l, listitem_T *item));
Bram Moolenaar33570922005-01-25 22:26:29 +0000429static void list_append __ARGS((list_T *l, listitem_T *item));
430static int list_append_tv __ARGS((list_T *l, typval_T *tv));
Bram Moolenaar4463f292005-09-25 22:20:24 +0000431static int list_append_number __ARGS((list_T *l, varnumber_T n));
Bram Moolenaar33570922005-01-25 22:26:29 +0000432static int list_insert_tv __ARGS((list_T *l, typval_T *tv, listitem_T *item));
433static int list_extend __ARGS((list_T *l1, list_T *l2, listitem_T *bef));
434static int list_concat __ARGS((list_T *l1, list_T *l2, typval_T *tv));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000435static list_T *list_copy __ARGS((list_T *orig, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000436static void list_remove __ARGS((list_T *l, listitem_T *item, listitem_T *item2));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000437static char_u *list2string __ARGS((typval_T *tv, int copyID));
438static int list_join __ARGS((garray_T *gap, list_T *l, char_u *sep, int echo, int copyID));
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000439static void set_ref_in_ht __ARGS((hashtab_T *ht, int copyID));
440static void set_ref_in_list __ARGS((list_T *l, int copyID));
441static void set_ref_in_item __ARGS((typval_T *tv, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000442static void dict_unref __ARGS((dict_T *d));
Bram Moolenaar685295c2006-10-15 20:37:38 +0000443static void dict_free __ARGS((dict_T *d, int recurse));
Bram Moolenaar33570922005-01-25 22:26:29 +0000444static dictitem_T *dictitem_alloc __ARGS((char_u *key));
445static dictitem_T *dictitem_copy __ARGS((dictitem_T *org));
446static void dictitem_remove __ARGS((dict_T *dict, dictitem_T *item));
447static void dictitem_free __ARGS((dictitem_T *item));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000448static dict_T *dict_copy __ARGS((dict_T *orig, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000449static int dict_add __ARGS((dict_T *d, dictitem_T *item));
450static long dict_len __ARGS((dict_T *d));
451static dictitem_T *dict_find __ARGS((dict_T *d, char_u *key, int len));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000452static char_u *dict2string __ARGS((typval_T *tv, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000453static int get_dict_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000454static char_u *echo_string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
455static char_u *tv2string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000456static char_u *string_quote __ARGS((char_u *str, int function));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000457#ifdef FEAT_FLOAT
458static int string2float __ARGS((char_u *text, float_T *value));
459#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000460static int get_env_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
461static int find_internal_func __ARGS((char_u *name));
462static char_u *deref_func_name __ARGS((char_u *name, int *lenp));
463static 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));
464static 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 +0000465static void emsg_funcname __ARGS((char *ermsg, char_u *name));
Bram Moolenaar05bb9532008-07-04 09:44:11 +0000466static int non_zero_arg __ARGS((typval_T *argvars));
Bram Moolenaar33570922005-01-25 22:26:29 +0000467
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000468#ifdef FEAT_FLOAT
469static void f_abs __ARGS((typval_T *argvars, typval_T *rettv));
470#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000471static void f_add __ARGS((typval_T *argvars, typval_T *rettv));
472static void f_append __ARGS((typval_T *argvars, typval_T *rettv));
473static void f_argc __ARGS((typval_T *argvars, typval_T *rettv));
474static void f_argidx __ARGS((typval_T *argvars, typval_T *rettv));
475static void f_argv __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000476#ifdef FEAT_FLOAT
477static void f_atan __ARGS((typval_T *argvars, typval_T *rettv));
478#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000479static void f_browse __ARGS((typval_T *argvars, typval_T *rettv));
480static void f_browsedir __ARGS((typval_T *argvars, typval_T *rettv));
481static void f_bufexists __ARGS((typval_T *argvars, typval_T *rettv));
482static void f_buflisted __ARGS((typval_T *argvars, typval_T *rettv));
483static void f_bufloaded __ARGS((typval_T *argvars, typval_T *rettv));
484static void f_bufname __ARGS((typval_T *argvars, typval_T *rettv));
485static void f_bufnr __ARGS((typval_T *argvars, typval_T *rettv));
486static void f_bufwinnr __ARGS((typval_T *argvars, typval_T *rettv));
487static void f_byte2line __ARGS((typval_T *argvars, typval_T *rettv));
488static void f_byteidx __ARGS((typval_T *argvars, typval_T *rettv));
489static void f_call __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000490#ifdef FEAT_FLOAT
491static void f_ceil __ARGS((typval_T *argvars, typval_T *rettv));
492#endif
Bram Moolenaarf0acfce2006-03-17 23:21:19 +0000493static void f_changenr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000494static void f_char2nr __ARGS((typval_T *argvars, typval_T *rettv));
495static void f_cindent __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000496static void f_clearmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000497static void f_col __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar572cb562005-08-05 21:35:02 +0000498#if defined(FEAT_INS_EXPAND)
Bram Moolenaarade00832006-03-10 21:46:58 +0000499static void f_complete __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar572cb562005-08-05 21:35:02 +0000500static void f_complete_add __ARGS((typval_T *argvars, typval_T *rettv));
501static void f_complete_check __ARGS((typval_T *argvars, typval_T *rettv));
502#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000503static void f_confirm __ARGS((typval_T *argvars, typval_T *rettv));
504static void f_copy __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000505#ifdef FEAT_FLOAT
506static void f_cos __ARGS((typval_T *argvars, typval_T *rettv));
507#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000508static void f_count __ARGS((typval_T *argvars, typval_T *rettv));
509static void f_cscope_connection __ARGS((typval_T *argvars, typval_T *rettv));
510static void f_cursor __ARGS((typval_T *argsvars, typval_T *rettv));
511static void f_deepcopy __ARGS((typval_T *argvars, typval_T *rettv));
512static void f_delete __ARGS((typval_T *argvars, typval_T *rettv));
513static void f_did_filetype __ARGS((typval_T *argvars, typval_T *rettv));
514static void f_diff_filler __ARGS((typval_T *argvars, typval_T *rettv));
515static void f_diff_hlID __ARGS((typval_T *argvars, typval_T *rettv));
516static void f_empty __ARGS((typval_T *argvars, typval_T *rettv));
517static void f_escape __ARGS((typval_T *argvars, typval_T *rettv));
518static void f_eval __ARGS((typval_T *argvars, typval_T *rettv));
519static void f_eventhandler __ARGS((typval_T *argvars, typval_T *rettv));
520static void f_executable __ARGS((typval_T *argvars, typval_T *rettv));
521static void f_exists __ARGS((typval_T *argvars, typval_T *rettv));
522static void f_expand __ARGS((typval_T *argvars, typval_T *rettv));
523static void f_extend __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000524static void f_feedkeys __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000525static void f_filereadable __ARGS((typval_T *argvars, typval_T *rettv));
526static void f_filewritable __ARGS((typval_T *argvars, typval_T *rettv));
527static void f_filter __ARGS((typval_T *argvars, typval_T *rettv));
528static void f_finddir __ARGS((typval_T *argvars, typval_T *rettv));
529static void f_findfile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000530#ifdef FEAT_FLOAT
531static void f_float2nr __ARGS((typval_T *argvars, typval_T *rettv));
532static void f_floor __ARGS((typval_T *argvars, typval_T *rettv));
533#endif
Bram Moolenaaraebaf892008-05-28 14:49:58 +0000534static void f_fnameescape __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000535static void f_fnamemodify __ARGS((typval_T *argvars, typval_T *rettv));
536static void f_foldclosed __ARGS((typval_T *argvars, typval_T *rettv));
537static void f_foldclosedend __ARGS((typval_T *argvars, typval_T *rettv));
538static void f_foldlevel __ARGS((typval_T *argvars, typval_T *rettv));
539static void f_foldtext __ARGS((typval_T *argvars, typval_T *rettv));
540static void f_foldtextresult __ARGS((typval_T *argvars, typval_T *rettv));
541static void f_foreground __ARGS((typval_T *argvars, typval_T *rettv));
542static void f_function __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000543static void f_garbagecollect __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000544static void f_get __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar80fc0432005-07-20 22:06:07 +0000545static void f_getbufline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000546static void f_getbufvar __ARGS((typval_T *argvars, typval_T *rettv));
547static void f_getchar __ARGS((typval_T *argvars, typval_T *rettv));
548static void f_getcharmod __ARGS((typval_T *argvars, typval_T *rettv));
549static void f_getcmdline __ARGS((typval_T *argvars, typval_T *rettv));
550static void f_getcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000551static void f_getcmdtype __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000552static void f_getcwd __ARGS((typval_T *argvars, typval_T *rettv));
553static void f_getfontname __ARGS((typval_T *argvars, typval_T *rettv));
554static void f_getfperm __ARGS((typval_T *argvars, typval_T *rettv));
555static void f_getfsize __ARGS((typval_T *argvars, typval_T *rettv));
556static void f_getftime __ARGS((typval_T *argvars, typval_T *rettv));
557static void f_getftype __ARGS((typval_T *argvars, typval_T *rettv));
558static void f_getline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000559static void f_getmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar18081e32008-02-20 19:11:07 +0000560static void f_getpid __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaara5525202006-03-02 22:52:09 +0000561static void f_getpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2641f772005-03-25 21:58:17 +0000562static void f_getqflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000563static void f_getreg __ARGS((typval_T *argvars, typval_T *rettv));
564static void f_getregtype __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000565static void f_gettabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000566static void f_getwinposx __ARGS((typval_T *argvars, typval_T *rettv));
567static void f_getwinposy __ARGS((typval_T *argvars, typval_T *rettv));
568static void f_getwinvar __ARGS((typval_T *argvars, typval_T *rettv));
569static void f_glob __ARGS((typval_T *argvars, typval_T *rettv));
570static void f_globpath __ARGS((typval_T *argvars, typval_T *rettv));
571static void f_has __ARGS((typval_T *argvars, typval_T *rettv));
572static void f_has_key __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard267b9c2007-04-26 15:06:45 +0000573static void f_haslocaldir __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000574static void f_hasmapto __ARGS((typval_T *argvars, typval_T *rettv));
575static void f_histadd __ARGS((typval_T *argvars, typval_T *rettv));
576static void f_histdel __ARGS((typval_T *argvars, typval_T *rettv));
577static void f_histget __ARGS((typval_T *argvars, typval_T *rettv));
578static void f_histnr __ARGS((typval_T *argvars, typval_T *rettv));
579static void f_hlID __ARGS((typval_T *argvars, typval_T *rettv));
580static void f_hlexists __ARGS((typval_T *argvars, typval_T *rettv));
581static void f_hostname __ARGS((typval_T *argvars, typval_T *rettv));
582static void f_iconv __ARGS((typval_T *argvars, typval_T *rettv));
583static void f_indent __ARGS((typval_T *argvars, typval_T *rettv));
584static void f_index __ARGS((typval_T *argvars, typval_T *rettv));
585static void f_input __ARGS((typval_T *argvars, typval_T *rettv));
586static void f_inputdialog __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6efa2b32005-09-10 19:26:26 +0000587static void f_inputlist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000588static void f_inputrestore __ARGS((typval_T *argvars, typval_T *rettv));
589static void f_inputsave __ARGS((typval_T *argvars, typval_T *rettv));
590static void f_inputsecret __ARGS((typval_T *argvars, typval_T *rettv));
591static void f_insert __ARGS((typval_T *argvars, typval_T *rettv));
592static void f_isdirectory __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000593static void f_islocked __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000594static void f_items __ARGS((typval_T *argvars, typval_T *rettv));
595static void f_join __ARGS((typval_T *argvars, typval_T *rettv));
596static void f_keys __ARGS((typval_T *argvars, typval_T *rettv));
597static void f_last_buffer_nr __ARGS((typval_T *argvars, typval_T *rettv));
598static void f_len __ARGS((typval_T *argvars, typval_T *rettv));
599static void f_libcall __ARGS((typval_T *argvars, typval_T *rettv));
600static void f_libcallnr __ARGS((typval_T *argvars, typval_T *rettv));
601static void f_line __ARGS((typval_T *argvars, typval_T *rettv));
602static void f_line2byte __ARGS((typval_T *argvars, typval_T *rettv));
603static void f_lispindent __ARGS((typval_T *argvars, typval_T *rettv));
604static void f_localtime __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000605#ifdef FEAT_FLOAT
606static void f_log10 __ARGS((typval_T *argvars, typval_T *rettv));
607#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000608static void f_map __ARGS((typval_T *argvars, typval_T *rettv));
609static void f_maparg __ARGS((typval_T *argvars, typval_T *rettv));
610static void f_mapcheck __ARGS((typval_T *argvars, typval_T *rettv));
611static void f_match __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000612static void f_matchadd __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000613static void f_matcharg __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000614static void f_matchdelete __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000615static void f_matchend __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000616static void f_matchlist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000617static void f_matchstr __ARGS((typval_T *argvars, typval_T *rettv));
618static void f_max __ARGS((typval_T *argvars, typval_T *rettv));
619static void f_min __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000620#ifdef vim_mkdir
621static void f_mkdir __ARGS((typval_T *argvars, typval_T *rettv));
622#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000623static void f_mode __ARGS((typval_T *argvars, typval_T *rettv));
624static void f_nextnonblank __ARGS((typval_T *argvars, typval_T *rettv));
625static void f_nr2char __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000626static void f_pathshorten __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000627#ifdef FEAT_FLOAT
628static void f_pow __ARGS((typval_T *argvars, typval_T *rettv));
629#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000630static void f_prevnonblank __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000631static void f_printf __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000632static void f_pumvisible __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000633static void f_range __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000634static void f_readfile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaare580b0c2006-03-21 21:33:03 +0000635static void f_reltime __ARGS((typval_T *argvars, typval_T *rettv));
636static void f_reltimestr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000637static void f_remote_expr __ARGS((typval_T *argvars, typval_T *rettv));
638static void f_remote_foreground __ARGS((typval_T *argvars, typval_T *rettv));
639static void f_remote_peek __ARGS((typval_T *argvars, typval_T *rettv));
640static void f_remote_read __ARGS((typval_T *argvars, typval_T *rettv));
641static void f_remote_send __ARGS((typval_T *argvars, typval_T *rettv));
642static void f_remove __ARGS((typval_T *argvars, typval_T *rettv));
643static void f_rename __ARGS((typval_T *argvars, typval_T *rettv));
644static void f_repeat __ARGS((typval_T *argvars, typval_T *rettv));
645static void f_resolve __ARGS((typval_T *argvars, typval_T *rettv));
646static void f_reverse __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000647#ifdef FEAT_FLOAT
648static void f_round __ARGS((typval_T *argvars, typval_T *rettv));
649#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000650static void f_search __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaardd2436f2005-09-05 22:14:46 +0000651static void f_searchdecl __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000652static void f_searchpair __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000653static void f_searchpairpos __ARGS((typval_T *argvars, typval_T *rettv));
654static void f_searchpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000655static void f_server2client __ARGS((typval_T *argvars, typval_T *rettv));
656static void f_serverlist __ARGS((typval_T *argvars, typval_T *rettv));
657static void f_setbufvar __ARGS((typval_T *argvars, typval_T *rettv));
658static void f_setcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
659static void f_setline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000660static void f_setloclist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000661static void f_setmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar0e34f622006-03-03 23:00:03 +0000662static void f_setpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2641f772005-03-25 21:58:17 +0000663static void f_setqflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000664static void f_setreg __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000665static void f_settabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000666static void f_setwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar60a495f2006-10-03 12:44:42 +0000667static void f_shellescape __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000668static void f_simplify __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000669#ifdef FEAT_FLOAT
670static void f_sin __ARGS((typval_T *argvars, typval_T *rettv));
671#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000672static void f_sort __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +0000673static void f_soundfold __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000674static void f_spellbadword __ARGS((typval_T *argvars, typval_T *rettv));
675static void f_spellsuggest __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000676static void f_split __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000677#ifdef FEAT_FLOAT
678static void f_sqrt __ARGS((typval_T *argvars, typval_T *rettv));
679static void f_str2float __ARGS((typval_T *argvars, typval_T *rettv));
680#endif
Bram Moolenaar2c932302006-03-18 21:42:09 +0000681static void f_str2nr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000682#ifdef HAVE_STRFTIME
683static void f_strftime __ARGS((typval_T *argvars, typval_T *rettv));
684#endif
685static void f_stridx __ARGS((typval_T *argvars, typval_T *rettv));
686static void f_string __ARGS((typval_T *argvars, typval_T *rettv));
687static void f_strlen __ARGS((typval_T *argvars, typval_T *rettv));
688static void f_strpart __ARGS((typval_T *argvars, typval_T *rettv));
689static void f_strridx __ARGS((typval_T *argvars, typval_T *rettv));
690static void f_strtrans __ARGS((typval_T *argvars, typval_T *rettv));
691static void f_submatch __ARGS((typval_T *argvars, typval_T *rettv));
692static void f_substitute __ARGS((typval_T *argvars, typval_T *rettv));
693static void f_synID __ARGS((typval_T *argvars, typval_T *rettv));
694static void f_synIDattr __ARGS((typval_T *argvars, typval_T *rettv));
695static void f_synIDtrans __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar9d188ab2008-01-10 21:24:39 +0000696static void f_synstack __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000697static void f_system __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000698static void f_tabpagebuflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000699static void f_tabpagenr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000700static void f_tabpagewinnr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000701static void f_taglist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard43b6cf2005-09-09 19:53:42 +0000702static void f_tagfiles __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000703static void f_tempname __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard52d9742005-08-21 22:20:28 +0000704static void f_test __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000705static void f_tolower __ARGS((typval_T *argvars, typval_T *rettv));
706static void f_toupper __ARGS((typval_T *argvars, typval_T *rettv));
707static void f_tr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000708#ifdef FEAT_FLOAT
709static void f_trunc __ARGS((typval_T *argvars, typval_T *rettv));
710#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000711static void f_type __ARGS((typval_T *argvars, typval_T *rettv));
712static void f_values __ARGS((typval_T *argvars, typval_T *rettv));
713static void f_virtcol __ARGS((typval_T *argvars, typval_T *rettv));
714static void f_visualmode __ARGS((typval_T *argvars, typval_T *rettv));
715static void f_winbufnr __ARGS((typval_T *argvars, typval_T *rettv));
716static void f_wincol __ARGS((typval_T *argvars, typval_T *rettv));
717static void f_winheight __ARGS((typval_T *argvars, typval_T *rettv));
718static void f_winline __ARGS((typval_T *argvars, typval_T *rettv));
719static void f_winnr __ARGS((typval_T *argvars, typval_T *rettv));
720static void f_winrestcmd __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar768b8c42006-03-04 21:58:33 +0000721static void f_winrestview __ARGS((typval_T *argvars, typval_T *rettv));
722static void f_winsaveview __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000723static void f_winwidth __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000724static void f_writefile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000725
Bram Moolenaar0e34f622006-03-03 23:00:03 +0000726static int list2fpos __ARGS((typval_T *arg, pos_T *posp, int *fnump));
Bram Moolenaar477933c2007-07-17 14:32:23 +0000727static pos_T *var2fpos __ARGS((typval_T *varp, int dollar_lnum, int *fnum));
Bram Moolenaar33570922005-01-25 22:26:29 +0000728static int get_env_len __ARGS((char_u **arg));
729static int get_id_len __ARGS((char_u **arg));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000730static int get_name_len __ARGS((char_u **arg, char_u **alias, int evaluate, int verbose));
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000731static char_u *find_name_end __ARGS((char_u *arg, char_u **expr_start, char_u **expr_end, int flags));
732#define FNE_INCL_BR 1 /* find_name_end(): include [] in name */
733#define FNE_CHECK_START 2 /* find_name_end(): check name starts with
734 valid character */
Bram Moolenaara40058a2005-07-11 22:42:07 +0000735static 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 +0000736static int eval_isnamec __ARGS((int c));
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000737static int eval_isnamec1 __ARGS((int c));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000738static int get_var_tv __ARGS((char_u *name, int len, typval_T *rettv, int verbose));
739static int handle_subscript __ARGS((char_u **arg, typval_T *rettv, int evaluate, int verbose));
Bram Moolenaar33570922005-01-25 22:26:29 +0000740static typval_T *alloc_tv __ARGS((void));
741static typval_T *alloc_string_tv __ARGS((char_u *string));
Bram Moolenaar33570922005-01-25 22:26:29 +0000742static void init_tv __ARGS((typval_T *varp));
743static long get_tv_number __ARGS((typval_T *varp));
744static linenr_T get_tv_lnum __ARGS((typval_T *argvars));
Bram Moolenaar661b1822005-07-28 22:36:45 +0000745static linenr_T get_tv_lnum_buf __ARGS((typval_T *argvars, buf_T *buf));
Bram Moolenaar33570922005-01-25 22:26:29 +0000746static char_u *get_tv_string __ARGS((typval_T *varp));
747static char_u *get_tv_string_buf __ARGS((typval_T *varp, char_u *buf));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000748static char_u *get_tv_string_buf_chk __ARGS((typval_T *varp, char_u *buf));
Bram Moolenaar33570922005-01-25 22:26:29 +0000749static dictitem_T *find_var __ARGS((char_u *name, hashtab_T **htp));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000750static dictitem_T *find_var_in_ht __ARGS((hashtab_T *ht, char_u *varname, int writing));
Bram Moolenaar33570922005-01-25 22:26:29 +0000751static hashtab_T *find_var_ht __ARGS((char_u *name, char_u **varname));
752static void vars_clear_ext __ARGS((hashtab_T *ht, int free_val));
753static void delete_var __ARGS((hashtab_T *ht, hashitem_T *hi));
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000754static void list_one_var __ARGS((dictitem_T *v, char_u *prefix, int *first));
755static 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 +0000756static void set_var __ARGS((char_u *name, typval_T *varp, int copy));
757static int var_check_ro __ARGS((int flags, char_u *name));
Bram Moolenaar4e957af2006-09-02 11:41:07 +0000758static int var_check_fixed __ARGS((int flags, char_u *name));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000759static int tv_check_lock __ARGS((int lock, char_u *name));
Bram Moolenaar33570922005-01-25 22:26:29 +0000760static void copy_tv __ARGS((typval_T *from, typval_T *to));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000761static int item_copy __ARGS((typval_T *from, typval_T *to, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000762static char_u *find_option_end __ARGS((char_u **arg, int *opt_flags));
763static char_u *trans_function_name __ARGS((char_u **pp, int skip, int flags, funcdict_T *fd));
764static int eval_fname_script __ARGS((char_u *p));
765static int eval_fname_sid __ARGS((char_u *p));
766static void list_func_head __ARGS((ufunc_T *fp, int indent));
Bram Moolenaar33570922005-01-25 22:26:29 +0000767static ufunc_T *find_func __ARGS((char_u *name));
768static int function_exists __ARGS((char_u *name));
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000769static int builtin_function __ARGS((char_u *name));
Bram Moolenaar05159a02005-02-26 23:04:13 +0000770#ifdef FEAT_PROFILE
771static void func_do_profile __ARGS((ufunc_T *fp));
Bram Moolenaar73830342005-02-28 22:48:19 +0000772static void prof_sort_list __ARGS((FILE *fd, ufunc_T **sorttab, int st_len, char *title, int prefer_self));
773static void prof_func_line __ARGS((FILE *fd, int count, proftime_T *total, proftime_T *self, int prefer_self));
774static int
775# ifdef __BORLANDC__
776 _RTLENTRYF
777# endif
778 prof_total_cmp __ARGS((const void *s1, const void *s2));
779static int
780# ifdef __BORLANDC__
781 _RTLENTRYF
782# endif
783 prof_self_cmp __ARGS((const void *s1, const void *s2));
Bram Moolenaar05159a02005-02-26 23:04:13 +0000784#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000785static int script_autoload __ARGS((char_u *name, int reload));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000786static char_u *autoload_name __ARGS((char_u *name));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000787static void cat_func_name __ARGS((char_u *buf, ufunc_T *fp));
Bram Moolenaar33570922005-01-25 22:26:29 +0000788static void func_free __ARGS((ufunc_T *fp));
789static void func_unref __ARGS((char_u *name));
790static void func_ref __ARGS((char_u *name));
791static 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));
792static void add_nr_var __ARGS((dict_T *dp, dictitem_T *v, char *name, varnumber_T nr));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000793static win_T *find_win_by_nr __ARGS((typval_T *vp, tabpage_T *tp));
794static void getwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000795static int searchpair_cmn __ARGS((typval_T *argvars, pos_T *match_pos));
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000796static int search_cmn __ARGS((typval_T *argvars, pos_T *match_pos, int *flagsp));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000797static void setwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
Bram Moolenaar33570922005-01-25 22:26:29 +0000798
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000799/* Character used as separated in autoload function/variable names. */
800#define AUTOLOAD_CHAR '#'
801
Bram Moolenaar33570922005-01-25 22:26:29 +0000802/*
803 * Initialize the global and v: variables.
Bram Moolenaara7043832005-01-21 11:56:39 +0000804 */
805 void
806eval_init()
807{
Bram Moolenaar33570922005-01-25 22:26:29 +0000808 int i;
809 struct vimvar *p;
810
811 init_var_dict(&globvardict, &globvars_var);
812 init_var_dict(&vimvardict, &vimvars_var);
Bram Moolenaar532c7802005-01-27 14:44:31 +0000813 hash_init(&compat_hashtab);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000814 hash_init(&func_hashtab);
Bram Moolenaar33570922005-01-25 22:26:29 +0000815
816 for (i = 0; i < VV_LEN; ++i)
817 {
818 p = &vimvars[i];
819 STRCPY(p->vv_di.di_key, p->vv_name);
820 if (p->vv_flags & VV_RO)
821 p->vv_di.di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
822 else if (p->vv_flags & VV_RO_SBX)
823 p->vv_di.di_flags = DI_FLAGS_RO_SBX | DI_FLAGS_FIX;
824 else
825 p->vv_di.di_flags = DI_FLAGS_FIX;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000826
827 /* add to v: scope dict, unless the value is not always available */
828 if (p->vv_type != VAR_UNKNOWN)
829 hash_add(&vimvarht, p->vv_di.di_key);
Bram Moolenaar33570922005-01-25 22:26:29 +0000830 if (p->vv_flags & VV_COMPAT)
Bram Moolenaar532c7802005-01-27 14:44:31 +0000831 /* add to compat scope dict */
832 hash_add(&compat_hashtab, p->vv_di.di_key);
Bram Moolenaar33570922005-01-25 22:26:29 +0000833 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000834 set_vim_var_nr(VV_SEARCHFORWARD, 1L);
Bram Moolenaara7043832005-01-21 11:56:39 +0000835}
836
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000837#if defined(EXITFREE) || defined(PROTO)
838 void
839eval_clear()
840{
841 int i;
842 struct vimvar *p;
843
844 for (i = 0; i < VV_LEN; ++i)
845 {
846 p = &vimvars[i];
847 if (p->vv_di.di_tv.v_type == VAR_STRING)
Bram Moolenaard9fba312005-06-26 22:34:35 +0000848 {
Bram Moolenaar12193212008-11-09 16:22:01 +0000849 vim_free(p->vv_str);
850 p->vv_str = NULL;
Bram Moolenaard812df62008-11-09 12:46:09 +0000851 }
852 else if (p->vv_di.di_tv.v_type == VAR_LIST)
853 {
854 list_unref(p->vv_list);
855 p->vv_list = NULL;
Bram Moolenaard9fba312005-06-26 22:34:35 +0000856 }
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000857 }
858 hash_clear(&vimvarht);
Bram Moolenaar0f71c6d2008-11-12 14:29:28 +0000859 hash_init(&vimvarht); /* garbage_collect() will access it */
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000860 hash_clear(&compat_hashtab);
861
862 /* script-local variables */
863 for (i = 1; i <= ga_scripts.ga_len; ++i)
864 vars_clear(&SCRIPT_VARS(i));
865 ga_clear(&ga_scripts);
Bram Moolenaard9fba312005-06-26 22:34:35 +0000866 free_scriptnames();
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000867
868 /* global variables */
869 vars_clear(&globvarht);
Bram Moolenaard9fba312005-06-26 22:34:35 +0000870
Bram Moolenaaraa35dd12006-04-29 22:03:41 +0000871 /* autoloaded script names */
872 ga_clear_strings(&ga_loaded);
873
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000874 /* unreferenced lists and dicts */
875 (void)garbage_collect();
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000876
877 /* functions */
878 free_all_functions();
879 hash_clear(&func_hashtab);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000880}
881#endif
882
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000883/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 * Return the name of the executed function.
885 */
886 char_u *
887func_name(cookie)
888 void *cookie;
889{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000890 return ((funccall_T *)cookie)->func->uf_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891}
892
893/*
894 * Return the address holding the next breakpoint line for a funccall cookie.
895 */
896 linenr_T *
897func_breakpoint(cookie)
898 void *cookie;
899{
Bram Moolenaar33570922005-01-25 22:26:29 +0000900 return &((funccall_T *)cookie)->breakpoint;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901}
902
903/*
904 * Return the address holding the debug tick for a funccall cookie.
905 */
906 int *
907func_dbg_tick(cookie)
908 void *cookie;
909{
Bram Moolenaar33570922005-01-25 22:26:29 +0000910 return &((funccall_T *)cookie)->dbg_tick;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911}
912
913/*
914 * Return the nesting level for a funccall cookie.
915 */
916 int
917func_level(cookie)
918 void *cookie;
919{
Bram Moolenaar33570922005-01-25 22:26:29 +0000920 return ((funccall_T *)cookie)->level;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921}
922
923/* pointer to funccal for currently active function */
Bram Moolenaar33570922005-01-25 22:26:29 +0000924funccall_T *current_funccal = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925
926/*
927 * Return TRUE when a function was ended by a ":return" command.
928 */
929 int
930current_func_returned()
931{
932 return current_funccal->returned;
933}
934
935
936/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937 * Set an internal variable to a string value. Creates the variable if it does
938 * not already exist.
939 */
940 void
941set_internal_string_var(name, value)
942 char_u *name;
943 char_u *value;
944{
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000945 char_u *val;
Bram Moolenaar33570922005-01-25 22:26:29 +0000946 typval_T *tvp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947
948 val = vim_strsave(value);
949 if (val != NULL)
950 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +0000951 tvp = alloc_string_tv(val);
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000952 if (tvp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000954 set_var(name, tvp, FALSE);
Bram Moolenaarc70646c2005-01-04 21:52:38 +0000955 free_tv(tvp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956 }
957 }
958}
959
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000960static lval_T *redir_lval = NULL;
Bram Moolenaar863b53b2007-01-14 14:28:34 +0000961static garray_T redir_ga; /* only valid when redir_lval is not NULL */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000962static char_u *redir_endp = NULL;
963static char_u *redir_varname = NULL;
964
965/*
966 * Start recording command output to a variable
967 * Returns OK if successfully completed the setup. FAIL otherwise.
968 */
969 int
970var_redir_start(name, append)
971 char_u *name;
972 int append; /* append to an existing variable */
973{
974 int save_emsg;
975 int err;
976 typval_T tv;
977
978 /* Make sure a valid variable name is specified */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000979 if (!eval_isnamec1(*name))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000980 {
981 EMSG(_(e_invarg));
982 return FAIL;
983 }
984
985 redir_varname = vim_strsave(name);
986 if (redir_varname == NULL)
987 return FAIL;
988
989 redir_lval = (lval_T *)alloc_clear((unsigned)sizeof(lval_T));
990 if (redir_lval == NULL)
991 {
992 var_redir_stop();
993 return FAIL;
994 }
995
Bram Moolenaar863b53b2007-01-14 14:28:34 +0000996 /* The output is stored in growarray "redir_ga" until redirection ends. */
997 ga_init2(&redir_ga, (int)sizeof(char), 500);
998
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000999 /* Parse the variable name (can be a dict or list entry). */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00001000 redir_endp = get_lval(redir_varname, NULL, redir_lval, FALSE, FALSE, FALSE,
1001 FNE_CHECK_START);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001002 if (redir_endp == NULL || redir_lval->ll_name == NULL || *redir_endp != NUL)
1003 {
1004 if (redir_endp != NULL && *redir_endp != NUL)
1005 /* Trailing characters are present after the variable name */
1006 EMSG(_(e_trailing));
1007 else
1008 EMSG(_(e_invarg));
1009 var_redir_stop();
1010 return FAIL;
1011 }
1012
1013 /* check if we can write to the variable: set it to or append an empty
1014 * string */
1015 save_emsg = did_emsg;
1016 did_emsg = FALSE;
1017 tv.v_type = VAR_STRING;
1018 tv.vval.v_string = (char_u *)"";
1019 if (append)
1020 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)".");
1021 else
1022 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)"=");
1023 err = did_emsg;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00001024 did_emsg |= save_emsg;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001025 if (err)
1026 {
1027 var_redir_stop();
1028 return FAIL;
1029 }
1030 if (redir_lval->ll_newkey != NULL)
1031 {
1032 /* Dictionary item was created, don't do it again. */
1033 vim_free(redir_lval->ll_newkey);
1034 redir_lval->ll_newkey = NULL;
1035 }
1036
1037 return OK;
1038}
1039
1040/*
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001041 * Append "value[value_len]" to the variable set by var_redir_start().
1042 * The actual appending is postponed until redirection ends, because the value
1043 * appended may in fact be the string we write to, changing it may cause freed
1044 * memory to be used:
1045 * :redir => foo
1046 * :let foo
1047 * :redir END
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001048 */
1049 void
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001050var_redir_str(value, value_len)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001051 char_u *value;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001052 int value_len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001053{
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001054 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001055
1056 if (redir_lval == NULL)
1057 return;
1058
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001059 if (value_len == -1)
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001060 len = (int)STRLEN(value); /* Append the entire string */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001061 else
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001062 len = value_len; /* Append only "value_len" characters */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001063
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001064 if (ga_grow(&redir_ga, len) == OK)
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001065 {
1066 mch_memmove((char *)redir_ga.ga_data + redir_ga.ga_len, value, len);
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001067 redir_ga.ga_len += len;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001068 }
1069 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001070 var_redir_stop();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001071}
1072
1073/*
1074 * Stop redirecting command output to a variable.
1075 */
1076 void
1077var_redir_stop()
1078{
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001079 typval_T tv;
1080
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001081 if (redir_lval != NULL)
1082 {
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001083 /* Append the trailing NUL. */
1084 ga_append(&redir_ga, NUL);
1085
1086 /* Assign the text to the variable. */
1087 tv.v_type = VAR_STRING;
1088 tv.vval.v_string = redir_ga.ga_data;
1089 set_var_lval(redir_lval, redir_endp, &tv, FALSE, (char_u *)".");
1090 vim_free(tv.vval.v_string);
1091
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001092 clear_lval(redir_lval);
1093 vim_free(redir_lval);
1094 redir_lval = NULL;
1095 }
1096 vim_free(redir_varname);
1097 redir_varname = NULL;
1098}
1099
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100# if defined(FEAT_MBYTE) || defined(PROTO)
1101 int
1102eval_charconvert(enc_from, enc_to, fname_from, fname_to)
1103 char_u *enc_from;
1104 char_u *enc_to;
1105 char_u *fname_from;
1106 char_u *fname_to;
1107{
1108 int err = FALSE;
1109
1110 set_vim_var_string(VV_CC_FROM, enc_from, -1);
1111 set_vim_var_string(VV_CC_TO, enc_to, -1);
1112 set_vim_var_string(VV_FNAME_IN, fname_from, -1);
1113 set_vim_var_string(VV_FNAME_OUT, fname_to, -1);
1114 if (eval_to_bool(p_ccv, &err, NULL, FALSE))
1115 err = TRUE;
1116 set_vim_var_string(VV_CC_FROM, NULL, -1);
1117 set_vim_var_string(VV_CC_TO, NULL, -1);
1118 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1119 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1120
1121 if (err)
1122 return FAIL;
1123 return OK;
1124}
1125# endif
1126
1127# if defined(FEAT_POSTSCRIPT) || defined(PROTO)
1128 int
1129eval_printexpr(fname, args)
1130 char_u *fname;
1131 char_u *args;
1132{
1133 int err = FALSE;
1134
1135 set_vim_var_string(VV_FNAME_IN, fname, -1);
1136 set_vim_var_string(VV_CMDARG, args, -1);
1137 if (eval_to_bool(p_pexpr, &err, NULL, FALSE))
1138 err = TRUE;
1139 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1140 set_vim_var_string(VV_CMDARG, NULL, -1);
1141
1142 if (err)
1143 {
1144 mch_remove(fname);
1145 return FAIL;
1146 }
1147 return OK;
1148}
1149# endif
1150
1151# if defined(FEAT_DIFF) || defined(PROTO)
1152 void
1153eval_diff(origfile, newfile, outfile)
1154 char_u *origfile;
1155 char_u *newfile;
1156 char_u *outfile;
1157{
1158 int err = FALSE;
1159
1160 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1161 set_vim_var_string(VV_FNAME_NEW, newfile, -1);
1162 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1163 (void)eval_to_bool(p_dex, &err, NULL, FALSE);
1164 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1165 set_vim_var_string(VV_FNAME_NEW, NULL, -1);
1166 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1167}
1168
1169 void
1170eval_patch(origfile, difffile, outfile)
1171 char_u *origfile;
1172 char_u *difffile;
1173 char_u *outfile;
1174{
1175 int err;
1176
1177 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1178 set_vim_var_string(VV_FNAME_DIFF, difffile, -1);
1179 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1180 (void)eval_to_bool(p_pex, &err, NULL, FALSE);
1181 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1182 set_vim_var_string(VV_FNAME_DIFF, NULL, -1);
1183 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1184}
1185# endif
1186
1187/*
1188 * Top level evaluation function, returning a boolean.
1189 * Sets "error" to TRUE if there was an error.
1190 * Return TRUE or FALSE.
1191 */
1192 int
1193eval_to_bool(arg, error, nextcmd, skip)
1194 char_u *arg;
1195 int *error;
1196 char_u **nextcmd;
1197 int skip; /* only parse, don't execute */
1198{
Bram Moolenaar33570922005-01-25 22:26:29 +00001199 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 int retval = FALSE;
1201
1202 if (skip)
1203 ++emsg_skip;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001204 if (eval0(arg, &tv, nextcmd, !skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 *error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 else
1207 {
1208 *error = FALSE;
1209 if (!skip)
1210 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001211 retval = (get_tv_number_chk(&tv, error) != 0);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001212 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 }
1214 }
1215 if (skip)
1216 --emsg_skip;
1217
1218 return retval;
1219}
1220
1221/*
1222 * Top level evaluation function, returning a string. If "skip" is TRUE,
1223 * only parsing to "nextcmd" is done, without reporting errors. Return
1224 * pointer to allocated memory, or NULL for failure or when "skip" is TRUE.
1225 */
1226 char_u *
1227eval_to_string_skip(arg, nextcmd, skip)
1228 char_u *arg;
1229 char_u **nextcmd;
1230 int skip; /* only parse, don't execute */
1231{
Bram Moolenaar33570922005-01-25 22:26:29 +00001232 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 char_u *retval;
1234
1235 if (skip)
1236 ++emsg_skip;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001237 if (eval0(arg, &tv, nextcmd, !skip) == FAIL || skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 retval = NULL;
1239 else
1240 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001241 retval = vim_strsave(get_tv_string(&tv));
1242 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243 }
1244 if (skip)
1245 --emsg_skip;
1246
1247 return retval;
1248}
1249
1250/*
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001251 * Skip over an expression at "*pp".
1252 * Return FAIL for an error, OK otherwise.
1253 */
1254 int
1255skip_expr(pp)
1256 char_u **pp;
1257{
Bram Moolenaar33570922005-01-25 22:26:29 +00001258 typval_T rettv;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001259
1260 *pp = skipwhite(*pp);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001261 return eval1(pp, &rettv, FALSE);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001262}
1263
1264/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 * Top level evaluation function, returning a string.
Bram Moolenaara85fb752008-09-07 11:55:43 +00001266 * When "convert" is TRUE convert a List into a sequence of lines and convert
1267 * a Float to a String.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 * Return pointer to allocated memory, or NULL for failure.
1269 */
1270 char_u *
Bram Moolenaara85fb752008-09-07 11:55:43 +00001271eval_to_string(arg, nextcmd, convert)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 char_u *arg;
1273 char_u **nextcmd;
Bram Moolenaara85fb752008-09-07 11:55:43 +00001274 int convert;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275{
Bram Moolenaar33570922005-01-25 22:26:29 +00001276 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 char_u *retval;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001278 garray_T ga;
Bram Moolenaara85fb752008-09-07 11:55:43 +00001279 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001281 if (eval0(arg, &tv, nextcmd, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282 retval = NULL;
1283 else
1284 {
Bram Moolenaara85fb752008-09-07 11:55:43 +00001285 if (convert && tv.v_type == VAR_LIST)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001286 {
1287 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001288 if (tv.vval.v_list != NULL)
1289 list_join(&ga, tv.vval.v_list, (char_u *)"\n", TRUE, 0);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001290 ga_append(&ga, NUL);
1291 retval = (char_u *)ga.ga_data;
1292 }
Bram Moolenaara85fb752008-09-07 11:55:43 +00001293#ifdef FEAT_FLOAT
1294 else if (convert && tv.v_type == VAR_FLOAT)
1295 {
1296 vim_snprintf((char *)numbuf, NUMBUFLEN, "%g", tv.vval.v_float);
1297 retval = vim_strsave(numbuf);
1298 }
1299#endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001300 else
1301 retval = vim_strsave(get_tv_string(&tv));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001302 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 }
1304
1305 return retval;
1306}
1307
1308/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001309 * Call eval_to_string() without using current local variables and using
1310 * textlock. When "use_sandbox" is TRUE use the sandbox.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 */
1312 char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001313eval_to_string_safe(arg, nextcmd, use_sandbox)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 char_u *arg;
1315 char_u **nextcmd;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001316 int use_sandbox;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317{
1318 char_u *retval;
1319 void *save_funccalp;
1320
1321 save_funccalp = save_funccal();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001322 if (use_sandbox)
1323 ++sandbox;
1324 ++textlock;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001325 retval = eval_to_string(arg, nextcmd, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001326 if (use_sandbox)
1327 --sandbox;
1328 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 restore_funccal(save_funccalp);
1330 return retval;
1331}
1332
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333/*
1334 * Top level evaluation function, returning a number.
1335 * Evaluates "expr" silently.
1336 * Returns -1 for an error.
1337 */
1338 int
1339eval_to_number(expr)
1340 char_u *expr;
1341{
Bram Moolenaar33570922005-01-25 22:26:29 +00001342 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 int retval;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00001344 char_u *p = skipwhite(expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345
1346 ++emsg_off;
1347
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001348 if (eval1(&p, &rettv, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 retval = -1;
1350 else
1351 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001352 retval = get_tv_number_chk(&rettv, NULL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001353 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 }
1355 --emsg_off;
1356
1357 return retval;
1358}
1359
Bram Moolenaara40058a2005-07-11 22:42:07 +00001360/*
1361 * Prepare v: variable "idx" to be used.
1362 * Save the current typeval in "save_tv".
1363 * When not used yet add the variable to the v: hashtable.
1364 */
1365 static void
1366prepare_vimvar(idx, save_tv)
1367 int idx;
1368 typval_T *save_tv;
1369{
1370 *save_tv = vimvars[idx].vv_tv;
1371 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1372 hash_add(&vimvarht, vimvars[idx].vv_di.di_key);
1373}
1374
1375/*
1376 * Restore v: variable "idx" to typeval "save_tv".
1377 * When no longer defined, remove the variable from the v: hashtable.
1378 */
1379 static void
1380restore_vimvar(idx, save_tv)
1381 int idx;
1382 typval_T *save_tv;
1383{
1384 hashitem_T *hi;
1385
Bram Moolenaara40058a2005-07-11 22:42:07 +00001386 vimvars[idx].vv_tv = *save_tv;
1387 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1388 {
1389 hi = hash_find(&vimvarht, vimvars[idx].vv_di.di_key);
1390 if (HASHITEM_EMPTY(hi))
1391 EMSG2(_(e_intern2), "restore_vimvar()");
1392 else
1393 hash_remove(&vimvarht, hi);
1394 }
1395}
1396
Bram Moolenaar3c56a962006-03-12 22:19:04 +00001397#if defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001398/*
1399 * Evaluate an expression to a list with suggestions.
1400 * For the "expr:" part of 'spellsuggest'.
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001401 * Returns NULL when there is an error.
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001402 */
1403 list_T *
1404eval_spell_expr(badword, expr)
1405 char_u *badword;
1406 char_u *expr;
1407{
1408 typval_T save_val;
1409 typval_T rettv;
1410 list_T *list = NULL;
1411 char_u *p = skipwhite(expr);
1412
1413 /* Set "v:val" to the bad word. */
1414 prepare_vimvar(VV_VAL, &save_val);
1415 vimvars[VV_VAL].vv_type = VAR_STRING;
1416 vimvars[VV_VAL].vv_str = badword;
1417 if (p_verbose == 0)
1418 ++emsg_off;
1419
1420 if (eval1(&p, &rettv, TRUE) == OK)
1421 {
1422 if (rettv.v_type != VAR_LIST)
1423 clear_tv(&rettv);
1424 else
1425 list = rettv.vval.v_list;
1426 }
1427
1428 if (p_verbose == 0)
1429 --emsg_off;
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001430 restore_vimvar(VV_VAL, &save_val);
1431
1432 return list;
1433}
1434
1435/*
1436 * "list" is supposed to contain two items: a word and a number. Return the
1437 * word in "pp" and the number as the return value.
1438 * Return -1 if anything isn't right.
1439 * Used to get the good word and score from the eval_spell_expr() result.
1440 */
1441 int
1442get_spellword(list, pp)
1443 list_T *list;
1444 char_u **pp;
1445{
1446 listitem_T *li;
1447
1448 li = list->lv_first;
1449 if (li == NULL)
1450 return -1;
1451 *pp = get_tv_string(&li->li_tv);
1452
1453 li = li->li_next;
1454 if (li == NULL)
1455 return -1;
1456 return get_tv_number(&li->li_tv);
1457}
1458#endif
1459
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001460/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001461 * Top level evaluation function.
1462 * Returns an allocated typval_T with the result.
1463 * Returns NULL when there is an error.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001464 */
1465 typval_T *
1466eval_expr(arg, nextcmd)
1467 char_u *arg;
1468 char_u **nextcmd;
1469{
1470 typval_T *tv;
1471
1472 tv = (typval_T *)alloc(sizeof(typval_T));
Bram Moolenaar4770d092006-01-12 23:22:24 +00001473 if (tv != NULL && eval0(arg, tv, nextcmd, TRUE) == FAIL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001474 {
1475 vim_free(tv);
Bram Moolenaar4770d092006-01-12 23:22:24 +00001476 tv = NULL;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001477 }
1478
1479 return tv;
1480}
1481
1482
Bram Moolenaar4f688582007-07-24 12:34:30 +00001483#if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) \
1484 || defined(FEAT_COMPL_FUNC) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485/*
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001486 * Call some vimL function and return the result in "*rettv".
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001487 * Uses argv[argc] for the function arguments. Only Number and String
1488 * arguments are currently supported.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001489 * Returns OK or FAIL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 */
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001491 static int
1492call_vim_function(func, argc, argv, safe, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 char_u *func;
1494 int argc;
1495 char_u **argv;
1496 int safe; /* use the sandbox */
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001497 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498{
Bram Moolenaar33570922005-01-25 22:26:29 +00001499 typval_T *argvars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 long n;
1501 int len;
1502 int i;
1503 int doesrange;
1504 void *save_funccalp = NULL;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001505 int ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001507 argvars = (typval_T *)alloc((unsigned)((argc + 1) * sizeof(typval_T)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 if (argvars == NULL)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001509 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510
1511 for (i = 0; i < argc; i++)
1512 {
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001513 /* Pass a NULL or empty argument as an empty string */
1514 if (argv[i] == NULL || *argv[i] == NUL)
1515 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001516 argvars[i].v_type = VAR_STRING;
1517 argvars[i].vval.v_string = (char_u *)"";
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001518 continue;
1519 }
1520
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 /* Recognize a number argument, the others must be strings. */
1522 vim_str2nr(argv[i], NULL, &len, TRUE, TRUE, &n, NULL);
1523 if (len != 0 && len == (int)STRLEN(argv[i]))
1524 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001525 argvars[i].v_type = VAR_NUMBER;
1526 argvars[i].vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 }
1528 else
1529 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001530 argvars[i].v_type = VAR_STRING;
1531 argvars[i].vval.v_string = argv[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 }
1533 }
1534
1535 if (safe)
1536 {
1537 save_funccalp = save_funccal();
1538 ++sandbox;
1539 }
1540
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001541 rettv->v_type = VAR_UNKNOWN; /* clear_tv() uses this */
1542 ret = call_func(func, (int)STRLEN(func), rettv, argc, argvars,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001544 &doesrange, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 if (safe)
1546 {
1547 --sandbox;
1548 restore_funccal(save_funccalp);
1549 }
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001550 vim_free(argvars);
1551
1552 if (ret == FAIL)
1553 clear_tv(rettv);
1554
1555 return ret;
1556}
1557
Bram Moolenaar4f688582007-07-24 12:34:30 +00001558# if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) || defined(PROTO)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001559/*
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001560 * Call vimL function "func" and return the result as a string.
1561 * Returns NULL when calling the function fails.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001562 * Uses argv[argc] for the function arguments.
1563 */
1564 void *
1565call_func_retstr(func, argc, argv, safe)
1566 char_u *func;
1567 int argc;
1568 char_u **argv;
1569 int safe; /* use the sandbox */
1570{
1571 typval_T rettv;
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001572 char_u *retval;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001573
1574 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1575 return NULL;
1576
1577 retval = vim_strsave(get_tv_string(&rettv));
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001578 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 return retval;
1580}
Bram Moolenaar4f688582007-07-24 12:34:30 +00001581# endif
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001582
Bram Moolenaar4f688582007-07-24 12:34:30 +00001583# if defined(FEAT_COMPL_FUNC) || defined(PROTO)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001584/*
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001585 * Call vimL function "func" and return the result as a number.
1586 * Returns -1 when calling the function fails.
1587 * Uses argv[argc] for the function arguments.
1588 */
1589 long
1590call_func_retnr(func, argc, argv, safe)
1591 char_u *func;
1592 int argc;
1593 char_u **argv;
1594 int safe; /* use the sandbox */
1595{
1596 typval_T rettv;
1597 long retval;
1598
1599 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1600 return -1;
1601
1602 retval = get_tv_number_chk(&rettv, NULL);
1603 clear_tv(&rettv);
1604 return retval;
1605}
Bram Moolenaar4f688582007-07-24 12:34:30 +00001606# endif
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001607
1608/*
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001609 * Call vimL function "func" and return the result as a List.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001610 * Uses argv[argc] for the function arguments.
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001611 * Returns NULL when there is something wrong.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001612 */
1613 void *
1614call_func_retlist(func, argc, argv, safe)
1615 char_u *func;
1616 int argc;
1617 char_u **argv;
1618 int safe; /* use the sandbox */
1619{
1620 typval_T rettv;
1621
1622 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1623 return NULL;
1624
1625 if (rettv.v_type != VAR_LIST)
1626 {
1627 clear_tv(&rettv);
1628 return NULL;
1629 }
1630
1631 return rettv.vval.v_list;
1632}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633#endif
1634
Bram Moolenaar4f688582007-07-24 12:34:30 +00001635
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636/*
1637 * Save the current function call pointer, and set it to NULL.
1638 * Used when executing autocommands and for ":source".
1639 */
1640 void *
1641save_funccal()
1642{
Bram Moolenaar05159a02005-02-26 23:04:13 +00001643 funccall_T *fc = current_funccal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645 current_funccal = NULL;
1646 return (void *)fc;
1647}
1648
1649 void
Bram Moolenaar05159a02005-02-26 23:04:13 +00001650restore_funccal(vfc)
1651 void *vfc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652{
Bram Moolenaar05159a02005-02-26 23:04:13 +00001653 funccall_T *fc = (funccall_T *)vfc;
1654
1655 current_funccal = fc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656}
1657
Bram Moolenaar05159a02005-02-26 23:04:13 +00001658#if defined(FEAT_PROFILE) || defined(PROTO)
1659/*
1660 * Prepare profiling for entering a child or something else that is not
1661 * counted for the script/function itself.
1662 * Should always be called in pair with prof_child_exit().
1663 */
1664 void
1665prof_child_enter(tm)
1666 proftime_T *tm; /* place to store waittime */
1667{
1668 funccall_T *fc = current_funccal;
1669
1670 if (fc != NULL && fc->func->uf_profiling)
1671 profile_start(&fc->prof_child);
1672 script_prof_save(tm);
1673}
1674
1675/*
1676 * Take care of time spent in a child.
1677 * Should always be called after prof_child_enter().
1678 */
1679 void
1680prof_child_exit(tm)
1681 proftime_T *tm; /* where waittime was stored */
1682{
1683 funccall_T *fc = current_funccal;
1684
1685 if (fc != NULL && fc->func->uf_profiling)
1686 {
1687 profile_end(&fc->prof_child);
1688 profile_sub_wait(tm, &fc->prof_child); /* don't count waiting time */
1689 profile_add(&fc->func->uf_tm_children, &fc->prof_child);
1690 profile_add(&fc->func->uf_tml_children, &fc->prof_child);
1691 }
1692 script_prof_restore(tm);
1693}
1694#endif
1695
1696
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697#ifdef FEAT_FOLDING
1698/*
1699 * Evaluate 'foldexpr'. Returns the foldlevel, and any character preceding
1700 * it in "*cp". Doesn't give error messages.
1701 */
1702 int
1703eval_foldexpr(arg, cp)
1704 char_u *arg;
1705 int *cp;
1706{
Bram Moolenaar33570922005-01-25 22:26:29 +00001707 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708 int retval;
1709 char_u *s;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001710 int use_sandbox = was_set_insecurely((char_u *)"foldexpr",
1711 OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712
1713 ++emsg_off;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001714 if (use_sandbox)
1715 ++sandbox;
1716 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 *cp = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001718 if (eval0(arg, &tv, NULL, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719 retval = 0;
1720 else
1721 {
1722 /* If the result is a number, just return the number. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001723 if (tv.v_type == VAR_NUMBER)
1724 retval = tv.vval.v_number;
Bram Moolenaar758711c2005-02-02 23:11:38 +00001725 else if (tv.v_type != VAR_STRING || tv.vval.v_string == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 retval = 0;
1727 else
1728 {
1729 /* If the result is a string, check if there is a non-digit before
1730 * the number. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001731 s = tv.vval.v_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 if (!VIM_ISDIGIT(*s) && *s != '-')
1733 *cp = *s++;
1734 retval = atol((char *)s);
1735 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001736 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 }
1738 --emsg_off;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001739 if (use_sandbox)
1740 --sandbox;
1741 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742
1743 return retval;
1744}
1745#endif
1746
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001748 * ":let" list all variable values
1749 * ":let var1 var2" list variable values
1750 * ":let var = expr" assignment command.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001751 * ":let var += expr" assignment command.
1752 * ":let var -= expr" assignment command.
1753 * ":let var .= expr" assignment command.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001754 * ":let [var1, var2] = expr" unpack list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 */
1756 void
1757ex_let(eap)
1758 exarg_T *eap;
1759{
1760 char_u *arg = eap->arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001761 char_u *expr = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00001762 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 int i;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001764 int var_count = 0;
1765 int semicolon = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001766 char_u op[2];
Bram Moolenaardb552d602006-03-23 22:59:57 +00001767 char_u *argend;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001768 int first = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769
Bram Moolenaardb552d602006-03-23 22:59:57 +00001770 argend = skip_var_list(arg, &var_count, &semicolon);
1771 if (argend == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001772 return;
Bram Moolenaar76b92b22006-03-24 22:46:53 +00001773 if (argend > arg && argend[-1] == '.') /* for var.='str' */
1774 --argend;
Bram Moolenaardb552d602006-03-23 22:59:57 +00001775 expr = vim_strchr(argend, '=');
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001776 if (expr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00001778 /*
1779 * ":let" without "=": list variables
1780 */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001781 if (*arg == '[')
1782 EMSG(_(e_invarg));
1783 else if (!ends_excmd(*arg))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001784 /* ":let var1 var2" */
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001785 arg = list_arg_vars(eap, arg, &first);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001786 else if (!eap->skip)
Bram Moolenaara7043832005-01-21 11:56:39 +00001787 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001788 /* ":let" */
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001789 list_glob_vars(&first);
1790 list_buf_vars(&first);
1791 list_win_vars(&first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001792#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001793 list_tab_vars(&first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001794#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001795 list_script_vars(&first);
1796 list_func_vars(&first);
1797 list_vim_vars(&first);
Bram Moolenaara7043832005-01-21 11:56:39 +00001798 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 eap->nextcmd = check_nextcmd(arg);
1800 }
1801 else
1802 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001803 op[0] = '=';
1804 op[1] = NUL;
Bram Moolenaardb552d602006-03-23 22:59:57 +00001805 if (expr > argend)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001806 {
1807 if (vim_strchr((char_u *)"+-.", expr[-1]) != NULL)
1808 op[0] = expr[-1]; /* +=, -= or .= */
1809 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001810 expr = skipwhite(expr + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001811
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812 if (eap->skip)
1813 ++emsg_skip;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001814 i = eval0(expr, &rettv, &eap->nextcmd, !eap->skip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 if (eap->skip)
1816 {
1817 if (i != FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001818 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819 --emsg_skip;
1820 }
1821 else if (i != FAIL)
1822 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001823 (void)ex_let_vars(eap->arg, &rettv, FALSE, semicolon, var_count,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001824 op);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001825 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 }
1827 }
1828}
1829
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001830/*
1831 * Assign the typevalue "tv" to the variable or variables at "arg_start".
1832 * Handles both "var" with any type and "[var, var; var]" with a list type.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001833 * When "nextchars" is not NULL it points to a string with characters that
1834 * must appear after the variable(s). Use "+", "-" or "." for add, subtract
1835 * or concatenate.
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001836 * Returns OK or FAIL;
1837 */
1838 static int
1839ex_let_vars(arg_start, tv, copy, semicolon, var_count, nextchars)
1840 char_u *arg_start;
Bram Moolenaar33570922005-01-25 22:26:29 +00001841 typval_T *tv;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001842 int copy; /* copy values from "tv", don't move */
1843 int semicolon; /* from skip_var_list() */
1844 int var_count; /* from skip_var_list() */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001845 char_u *nextchars;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001846{
1847 char_u *arg = arg_start;
Bram Moolenaar33570922005-01-25 22:26:29 +00001848 list_T *l;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001849 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +00001850 listitem_T *item;
1851 typval_T ltv;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001852
1853 if (*arg != '[')
1854 {
1855 /*
1856 * ":let var = expr" or ":for var in list"
1857 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001858 if (ex_let_one(arg, tv, copy, nextchars, nextchars) == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001859 return FAIL;
1860 return OK;
1861 }
1862
1863 /*
1864 * ":let [v1, v2] = list" or ":for [v1, v2] in listlist"
1865 */
Bram Moolenaar758711c2005-02-02 23:11:38 +00001866 if (tv->v_type != VAR_LIST || (l = tv->vval.v_list) == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001867 {
1868 EMSG(_(e_listreq));
1869 return FAIL;
1870 }
1871
1872 i = list_len(l);
1873 if (semicolon == 0 && var_count < i)
1874 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00001875 EMSG(_("E687: Less targets than List items"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001876 return FAIL;
1877 }
1878 if (var_count - semicolon > i)
1879 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00001880 EMSG(_("E688: More targets than List items"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001881 return FAIL;
1882 }
1883
1884 item = l->lv_first;
1885 while (*arg != ']')
1886 {
1887 arg = skipwhite(arg + 1);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001888 arg = ex_let_one(arg, &item->li_tv, TRUE, (char_u *)",;]", nextchars);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001889 item = item->li_next;
1890 if (arg == NULL)
1891 return FAIL;
1892
1893 arg = skipwhite(arg);
1894 if (*arg == ';')
1895 {
1896 /* Put the rest of the list (may be empty) in the var after ';'.
1897 * Create a new list for this. */
1898 l = list_alloc();
1899 if (l == NULL)
1900 return FAIL;
1901 while (item != NULL)
1902 {
1903 list_append_tv(l, &item->li_tv);
1904 item = item->li_next;
1905 }
1906
1907 ltv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00001908 ltv.v_lock = 0;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001909 ltv.vval.v_list = l;
1910 l->lv_refcount = 1;
1911
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001912 arg = ex_let_one(skipwhite(arg + 1), &ltv, FALSE,
1913 (char_u *)"]", nextchars);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001914 clear_tv(&ltv);
1915 if (arg == NULL)
1916 return FAIL;
1917 break;
1918 }
1919 else if (*arg != ',' && *arg != ']')
1920 {
1921 EMSG2(_(e_intern2), "ex_let_vars()");
1922 return FAIL;
1923 }
1924 }
1925
1926 return OK;
1927}
1928
1929/*
1930 * Skip over assignable variable "var" or list of variables "[var, var]".
1931 * Used for ":let varvar = expr" and ":for varvar in expr".
1932 * For "[var, var]" increment "*var_count" for each variable.
1933 * for "[var, var; var]" set "semicolon".
1934 * Return NULL for an error.
1935 */
1936 static char_u *
1937skip_var_list(arg, var_count, semicolon)
1938 char_u *arg;
1939 int *var_count;
1940 int *semicolon;
1941{
1942 char_u *p, *s;
1943
1944 if (*arg == '[')
1945 {
1946 /* "[var, var]": find the matching ']'. */
1947 p = arg;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001948 for (;;)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001949 {
1950 p = skipwhite(p + 1); /* skip whites after '[', ';' or ',' */
1951 s = skip_var_one(p);
1952 if (s == p)
1953 {
1954 EMSG2(_(e_invarg2), p);
1955 return NULL;
1956 }
1957 ++*var_count;
1958
1959 p = skipwhite(s);
1960 if (*p == ']')
1961 break;
1962 else if (*p == ';')
1963 {
1964 if (*semicolon == 1)
1965 {
1966 EMSG(_("Double ; in list of variables"));
1967 return NULL;
1968 }
1969 *semicolon = 1;
1970 }
1971 else if (*p != ',')
1972 {
1973 EMSG2(_(e_invarg2), p);
1974 return NULL;
1975 }
1976 }
1977 return p + 1;
1978 }
1979 else
1980 return skip_var_one(arg);
1981}
1982
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00001983/*
Bram Moolenaarbae0c162007-05-10 19:30:25 +00001984 * Skip one (assignable) variable name, including @r, $VAR, &option, d.key,
Bram Moolenaar92124a32005-06-17 22:03:40 +00001985 * l[idx].
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00001986 */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001987 static char_u *
1988skip_var_one(arg)
1989 char_u *arg;
1990{
Bram Moolenaar92124a32005-06-17 22:03:40 +00001991 if (*arg == '@' && arg[1] != NUL)
1992 return arg + 2;
1993 return find_name_end(*arg == '$' || *arg == '&' ? arg + 1 : arg,
1994 NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001995}
1996
Bram Moolenaara7043832005-01-21 11:56:39 +00001997/*
Bram Moolenaar33570922005-01-25 22:26:29 +00001998 * List variables for hashtab "ht" with prefix "prefix".
1999 * If "empty" is TRUE also list NULL strings as empty strings.
Bram Moolenaara7043832005-01-21 11:56:39 +00002000 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002001 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002002list_hashtable_vars(ht, prefix, empty, first)
Bram Moolenaar33570922005-01-25 22:26:29 +00002003 hashtab_T *ht;
Bram Moolenaara7043832005-01-21 11:56:39 +00002004 char_u *prefix;
Bram Moolenaar33570922005-01-25 22:26:29 +00002005 int empty;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002006 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002007{
Bram Moolenaar33570922005-01-25 22:26:29 +00002008 hashitem_T *hi;
2009 dictitem_T *di;
Bram Moolenaara7043832005-01-21 11:56:39 +00002010 int todo;
2011
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002012 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +00002013 for (hi = ht->ht_array; todo > 0 && !got_int; ++hi)
2014 {
2015 if (!HASHITEM_EMPTY(hi))
2016 {
2017 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00002018 di = HI2DI(hi);
2019 if (empty || di->di_tv.v_type != VAR_STRING
2020 || di->di_tv.vval.v_string != NULL)
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002021 list_one_var(di, prefix, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002022 }
2023 }
2024}
2025
2026/*
2027 * List global variables.
2028 */
2029 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002030list_glob_vars(first)
2031 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002032{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002033 list_hashtable_vars(&globvarht, (char_u *)"", TRUE, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002034}
2035
2036/*
2037 * List buffer variables.
2038 */
2039 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002040list_buf_vars(first)
2041 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002042{
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002043 char_u numbuf[NUMBUFLEN];
2044
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002045 list_hashtable_vars(&curbuf->b_vars.dv_hashtab, (char_u *)"b:",
2046 TRUE, first);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002047
2048 sprintf((char *)numbuf, "%ld", (long)curbuf->b_changedtick);
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002049 list_one_var_a((char_u *)"b:", (char_u *)"changedtick", VAR_NUMBER,
2050 numbuf, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002051}
2052
2053/*
2054 * List window variables.
2055 */
2056 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002057list_win_vars(first)
2058 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002059{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002060 list_hashtable_vars(&curwin->w_vars.dv_hashtab,
2061 (char_u *)"w:", TRUE, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002062}
2063
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002064#ifdef FEAT_WINDOWS
2065/*
2066 * List tab page variables.
2067 */
2068 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002069list_tab_vars(first)
2070 int *first;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002071{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002072 list_hashtable_vars(&curtab->tp_vars.dv_hashtab,
2073 (char_u *)"t:", TRUE, first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002074}
2075#endif
2076
Bram Moolenaara7043832005-01-21 11:56:39 +00002077/*
2078 * List Vim variables.
2079 */
2080 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002081list_vim_vars(first)
2082 int *first;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002083{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002084 list_hashtable_vars(&vimvarht, (char_u *)"v:", FALSE, first);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002085}
2086
2087/*
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002088 * List script-local variables, if there is a script.
2089 */
2090 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002091list_script_vars(first)
2092 int *first;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002093{
2094 if (current_SID > 0 && current_SID <= ga_scripts.ga_len)
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002095 list_hashtable_vars(&SCRIPT_VARS(current_SID),
2096 (char_u *)"s:", FALSE, first);
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002097}
2098
2099/*
2100 * List function variables, if there is a function.
2101 */
2102 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002103list_func_vars(first)
2104 int *first;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002105{
2106 if (current_funccal != NULL)
2107 list_hashtable_vars(&current_funccal->l_vars.dv_hashtab,
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002108 (char_u *)"l:", FALSE, first);
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002109}
2110
2111/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002112 * List variables in "arg".
2113 */
2114 static char_u *
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002115list_arg_vars(eap, arg, first)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002116 exarg_T *eap;
2117 char_u *arg;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002118 int *first;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002119{
2120 int error = FALSE;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002121 int len;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002122 char_u *name;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002123 char_u *name_start;
2124 char_u *arg_subsc;
2125 char_u *tofree;
2126 typval_T tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002127
2128 while (!ends_excmd(*arg) && !got_int)
2129 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002130 if (error || eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002131 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002132 arg = find_name_end(arg, NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002133 if (!vim_iswhite(*arg) && !ends_excmd(*arg))
2134 {
2135 emsg_severe = TRUE;
2136 EMSG(_(e_trailing));
2137 break;
2138 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002139 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002140 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002141 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002142 /* get_name_len() takes care of expanding curly braces */
2143 name_start = name = arg;
2144 len = get_name_len(&arg, &tofree, TRUE, TRUE);
2145 if (len <= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002146 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002147 /* This is mainly to keep test 49 working: when expanding
2148 * curly braces fails overrule the exception error message. */
2149 if (len < 0 && !aborting())
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002150 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002151 emsg_severe = TRUE;
2152 EMSG2(_(e_invarg2), arg);
2153 break;
2154 }
2155 error = TRUE;
2156 }
2157 else
2158 {
2159 if (tofree != NULL)
2160 name = tofree;
2161 if (get_var_tv(name, len, &tv, TRUE) == FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002162 error = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002163 else
2164 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002165 /* handle d.key, l[idx], f(expr) */
2166 arg_subsc = arg;
2167 if (handle_subscript(&arg, &tv, TRUE, TRUE) == FAIL)
Bram Moolenaara7043832005-01-21 11:56:39 +00002168 error = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002169 else
Bram Moolenaara7043832005-01-21 11:56:39 +00002170 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002171 if (arg == arg_subsc && len == 2 && name[1] == ':')
Bram Moolenaara7043832005-01-21 11:56:39 +00002172 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002173 switch (*name)
Bram Moolenaara7043832005-01-21 11:56:39 +00002174 {
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002175 case 'g': list_glob_vars(first); break;
2176 case 'b': list_buf_vars(first); break;
2177 case 'w': list_win_vars(first); break;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002178#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002179 case 't': list_tab_vars(first); break;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002180#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002181 case 'v': list_vim_vars(first); break;
2182 case 's': list_script_vars(first); break;
2183 case 'l': list_func_vars(first); break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002184 default:
2185 EMSG2(_("E738: Can't list variables for %s"), name);
Bram Moolenaara7043832005-01-21 11:56:39 +00002186 }
Bram Moolenaara7043832005-01-21 11:56:39 +00002187 }
2188 else
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002189 {
2190 char_u numbuf[NUMBUFLEN];
2191 char_u *tf;
2192 int c;
2193 char_u *s;
2194
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002195 s = echo_string(&tv, &tf, numbuf, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002196 c = *arg;
2197 *arg = NUL;
2198 list_one_var_a((char_u *)"",
2199 arg == arg_subsc ? name : name_start,
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002200 tv.v_type,
2201 s == NULL ? (char_u *)"" : s,
2202 first);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002203 *arg = c;
2204 vim_free(tf);
2205 }
2206 clear_tv(&tv);
Bram Moolenaara7043832005-01-21 11:56:39 +00002207 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002208 }
2209 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002210
2211 vim_free(tofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002212 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002213
2214 arg = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002215 }
2216
2217 return arg;
2218}
2219
2220/*
2221 * Set one item of ":let var = expr" or ":let [v1, v2] = list" to its value.
2222 * Returns a pointer to the char just after the var name.
2223 * Returns NULL if there is an error.
2224 */
2225 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002226ex_let_one(arg, tv, copy, endchars, op)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002227 char_u *arg; /* points to variable name */
Bram Moolenaar33570922005-01-25 22:26:29 +00002228 typval_T *tv; /* value to assign to variable */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002229 int copy; /* copy value from "tv" */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002230 char_u *endchars; /* valid chars after variable name or NULL */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002231 char_u *op; /* "+", "-", "." or NULL*/
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002232{
2233 int c1;
2234 char_u *name;
2235 char_u *p;
2236 char_u *arg_end = NULL;
2237 int len;
2238 int opt_flags;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002239 char_u *tofree = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002240
2241 /*
2242 * ":let $VAR = expr": Set environment variable.
2243 */
2244 if (*arg == '$')
2245 {
2246 /* Find the end of the name. */
2247 ++arg;
2248 name = arg;
2249 len = get_env_len(&arg);
2250 if (len == 0)
2251 EMSG2(_(e_invarg2), name - 1);
2252 else
2253 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002254 if (op != NULL && (*op == '+' || *op == '-'))
2255 EMSG2(_(e_letwrong), op);
2256 else if (endchars != NULL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002257 && vim_strchr(endchars, *skipwhite(arg)) == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002258 EMSG(_(e_letunexp));
2259 else
2260 {
2261 c1 = name[len];
2262 name[len] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002263 p = get_tv_string_chk(tv);
2264 if (p != NULL && op != NULL && *op == '.')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002265 {
2266 int mustfree = FALSE;
2267 char_u *s = vim_getenv(name, &mustfree);
2268
2269 if (s != NULL)
2270 {
2271 p = tofree = concat_str(s, p);
2272 if (mustfree)
2273 vim_free(s);
2274 }
2275 }
2276 if (p != NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002277 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002278 vim_setenv(name, p);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002279 if (STRICMP(name, "HOME") == 0)
2280 init_homedir();
2281 else if (didset_vim && STRICMP(name, "VIM") == 0)
2282 didset_vim = FALSE;
2283 else if (didset_vimruntime
2284 && STRICMP(name, "VIMRUNTIME") == 0)
2285 didset_vimruntime = FALSE;
2286 arg_end = arg;
2287 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002288 name[len] = c1;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002289 vim_free(tofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002290 }
2291 }
2292 }
2293
2294 /*
2295 * ":let &option = expr": Set option value.
2296 * ":let &l:option = expr": Set local option value.
2297 * ":let &g:option = expr": Set global option value.
2298 */
2299 else if (*arg == '&')
2300 {
2301 /* Find the end of the name. */
2302 p = find_option_end(&arg, &opt_flags);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002303 if (p == NULL || (endchars != NULL
2304 && vim_strchr(endchars, *skipwhite(p)) == NULL))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002305 EMSG(_(e_letunexp));
2306 else
2307 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002308 long n;
2309 int opt_type;
2310 long numval;
2311 char_u *stringval = NULL;
2312 char_u *s;
2313
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002314 c1 = *p;
2315 *p = NUL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002316
2317 n = get_tv_number(tv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002318 s = get_tv_string_chk(tv); /* != NULL if number or string */
2319 if (s != NULL && op != NULL && *op != '=')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002320 {
2321 opt_type = get_option_value(arg, &numval,
2322 &stringval, opt_flags);
2323 if ((opt_type == 1 && *op == '.')
2324 || (opt_type == 0 && *op != '.'))
2325 EMSG2(_(e_letwrong), op);
2326 else
2327 {
2328 if (opt_type == 1) /* number */
2329 {
2330 if (*op == '+')
2331 n = numval + n;
2332 else
2333 n = numval - n;
2334 }
2335 else if (opt_type == 0 && stringval != NULL) /* string */
2336 {
2337 s = concat_str(stringval, s);
2338 vim_free(stringval);
2339 stringval = s;
2340 }
2341 }
2342 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002343 if (s != NULL)
2344 {
2345 set_option_value(arg, n, s, opt_flags);
2346 arg_end = p;
2347 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002348 *p = c1;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002349 vim_free(stringval);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002350 }
2351 }
2352
2353 /*
2354 * ":let @r = expr": Set register contents.
2355 */
2356 else if (*arg == '@')
2357 {
2358 ++arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002359 if (op != NULL && (*op == '+' || *op == '-'))
2360 EMSG2(_(e_letwrong), op);
2361 else if (endchars != NULL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002362 && vim_strchr(endchars, *skipwhite(arg + 1)) == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002363 EMSG(_(e_letunexp));
2364 else
2365 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002366 char_u *ptofree = NULL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002367 char_u *s;
2368
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002369 p = get_tv_string_chk(tv);
2370 if (p != NULL && op != NULL && *op == '.')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002371 {
Bram Moolenaar92124a32005-06-17 22:03:40 +00002372 s = get_reg_contents(*arg == '@' ? '"' : *arg, TRUE, TRUE);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002373 if (s != NULL)
2374 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002375 p = ptofree = concat_str(s, p);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002376 vim_free(s);
2377 }
2378 }
2379 if (p != NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002380 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002381 write_reg_contents(*arg == '@' ? '"' : *arg, p, -1, FALSE);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002382 arg_end = arg + 1;
2383 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002384 vim_free(ptofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002385 }
2386 }
2387
2388 /*
2389 * ":let var = expr": Set internal variable.
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002390 * ":let {expr} = expr": Idem, name made with curly braces
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002391 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002392 else if (eval_isnamec1(*arg) || *arg == '{')
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002393 {
Bram Moolenaar33570922005-01-25 22:26:29 +00002394 lval_T lv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002395
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002396 p = get_lval(arg, tv, &lv, FALSE, FALSE, FALSE, FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002397 if (p != NULL && lv.ll_name != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002398 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002399 if (endchars != NULL && vim_strchr(endchars, *skipwhite(p)) == NULL)
2400 EMSG(_(e_letunexp));
2401 else
2402 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002403 set_var_lval(&lv, p, tv, copy, op);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002404 arg_end = p;
2405 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002406 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002407 clear_lval(&lv);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002408 }
2409
2410 else
2411 EMSG2(_(e_invarg2), arg);
2412
2413 return arg_end;
2414}
2415
2416/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00002417 * If "arg" is equal to "b:changedtick" give an error and return TRUE.
2418 */
2419 static int
2420check_changedtick(arg)
2421 char_u *arg;
2422{
2423 if (STRNCMP(arg, "b:changedtick", 13) == 0 && !eval_isnamec(arg[13]))
2424 {
2425 EMSG2(_(e_readonlyvar), arg);
2426 return TRUE;
2427 }
2428 return FALSE;
2429}
2430
2431/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002432 * Get an lval: variable, Dict item or List item that can be assigned a value
2433 * to: "name", "na{me}", "name[expr]", "name[expr:expr]", "name[expr][expr]",
2434 * "name.key", "name.key[expr]" etc.
2435 * Indexing only works if "name" is an existing List or Dictionary.
2436 * "name" points to the start of the name.
2437 * If "rettv" is not NULL it points to the value to be assigned.
2438 * "unlet" is TRUE for ":unlet": slightly different behavior when something is
2439 * wrong; must end in space or cmd separator.
2440 *
2441 * Returns a pointer to just after the name, including indexes.
Bram Moolenaara7043832005-01-21 11:56:39 +00002442 * When an evaluation error occurs "lp->ll_name" is NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002443 * Returns NULL for a parsing error. Still need to free items in "lp"!
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002444 */
2445 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002446get_lval(name, rettv, lp, unlet, skip, quiet, fne_flags)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002447 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +00002448 typval_T *rettv;
2449 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002450 int unlet;
2451 int skip;
2452 int quiet; /* don't give error messages */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002453 int fne_flags; /* flags for find_name_end() */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002454{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002455 char_u *p;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002456 char_u *expr_start, *expr_end;
2457 int cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00002458 dictitem_T *v;
2459 typval_T var1;
2460 typval_T var2;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002461 int empty1 = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00002462 listitem_T *ni;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002463 char_u *key = NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002464 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +00002465 hashtab_T *ht;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002466
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002467 /* Clear everything in "lp". */
Bram Moolenaar33570922005-01-25 22:26:29 +00002468 vim_memset(lp, 0, sizeof(lval_T));
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002469
2470 if (skip)
2471 {
2472 /* When skipping just find the end of the name. */
2473 lp->ll_name = name;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002474 return find_name_end(name, NULL, NULL, FNE_INCL_BR | fne_flags);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002475 }
2476
2477 /* Find the end of the name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002478 p = find_name_end(name, &expr_start, &expr_end, fne_flags);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002479 if (expr_start != NULL)
2480 {
2481 /* Don't expand the name when we already know there is an error. */
2482 if (unlet && !vim_iswhite(*p) && !ends_excmd(*p)
2483 && *p != '[' && *p != '.')
2484 {
2485 EMSG(_(e_trailing));
2486 return NULL;
2487 }
2488
2489 lp->ll_exp_name = make_expanded_name(name, expr_start, expr_end, p);
2490 if (lp->ll_exp_name == NULL)
2491 {
2492 /* Report an invalid expression in braces, unless the
2493 * expression evaluation has been cancelled due to an
2494 * aborting error, an interrupt, or an exception. */
2495 if (!aborting() && !quiet)
2496 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002497 emsg_severe = TRUE;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002498 EMSG2(_(e_invarg2), name);
2499 return NULL;
2500 }
2501 }
2502 lp->ll_name = lp->ll_exp_name;
2503 }
2504 else
2505 lp->ll_name = name;
2506
2507 /* Without [idx] or .key we are done. */
2508 if ((*p != '[' && *p != '.') || lp->ll_name == NULL)
2509 return p;
2510
2511 cc = *p;
2512 *p = NUL;
Bram Moolenaara7043832005-01-21 11:56:39 +00002513 v = find_var(lp->ll_name, &ht);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002514 if (v == NULL && !quiet)
2515 EMSG2(_(e_undefvar), lp->ll_name);
2516 *p = cc;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002517 if (v == NULL)
2518 return NULL;
2519
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002520 /*
2521 * Loop until no more [idx] or .key is following.
2522 */
Bram Moolenaar33570922005-01-25 22:26:29 +00002523 lp->ll_tv = &v->di_tv;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002524 while (*p == '[' || (*p == '.' && lp->ll_tv->v_type == VAR_DICT))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002525 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002526 if (!(lp->ll_tv->v_type == VAR_LIST && lp->ll_tv->vval.v_list != NULL)
2527 && !(lp->ll_tv->v_type == VAR_DICT
2528 && lp->ll_tv->vval.v_dict != NULL))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002529 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002530 if (!quiet)
2531 EMSG(_("E689: Can only index a List or Dictionary"));
2532 return NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002533 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002534 if (lp->ll_range)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002535 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002536 if (!quiet)
2537 EMSG(_("E708: [:] must come last"));
2538 return NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002539 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002540
Bram Moolenaar8c711452005-01-14 21:53:12 +00002541 len = -1;
2542 if (*p == '.')
2543 {
2544 key = p + 1;
2545 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
2546 ;
2547 if (len == 0)
2548 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002549 if (!quiet)
2550 EMSG(_(e_emptykey));
2551 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002552 }
2553 p = key + len;
2554 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002555 else
2556 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002557 /* Get the index [expr] or the first index [expr: ]. */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002558 p = skipwhite(p + 1);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002559 if (*p == ':')
2560 empty1 = TRUE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002561 else
2562 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002563 empty1 = FALSE;
2564 if (eval1(&p, &var1, TRUE) == FAIL) /* recursive! */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002565 return NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002566 if (get_tv_string_chk(&var1) == NULL)
2567 {
2568 /* not a number or string */
2569 clear_tv(&var1);
2570 return NULL;
2571 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002572 }
2573
2574 /* Optionally get the second index [ :expr]. */
2575 if (*p == ':')
2576 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002577 if (lp->ll_tv->v_type == VAR_DICT)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002578 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002579 if (!quiet)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002580 EMSG(_(e_dictrange));
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002581 if (!empty1)
2582 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002583 return NULL;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002584 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002585 if (rettv != NULL && (rettv->v_type != VAR_LIST
2586 || rettv->vval.v_list == NULL))
Bram Moolenaar8c711452005-01-14 21:53:12 +00002587 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002588 if (!quiet)
2589 EMSG(_("E709: [:] requires a List value"));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002590 if (!empty1)
2591 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002592 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002593 }
2594 p = skipwhite(p + 1);
2595 if (*p == ']')
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002596 lp->ll_empty2 = TRUE;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002597 else
2598 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002599 lp->ll_empty2 = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002600 if (eval1(&p, &var2, TRUE) == FAIL) /* recursive! */
2601 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002602 if (!empty1)
2603 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002604 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002605 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002606 if (get_tv_string_chk(&var2) == NULL)
2607 {
2608 /* not a number or string */
2609 if (!empty1)
2610 clear_tv(&var1);
2611 clear_tv(&var2);
2612 return NULL;
2613 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002614 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002615 lp->ll_range = TRUE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002616 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002617 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002618 lp->ll_range = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002619
Bram Moolenaar8c711452005-01-14 21:53:12 +00002620 if (*p != ']')
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002621 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002622 if (!quiet)
2623 EMSG(_(e_missbrac));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002624 if (!empty1)
2625 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002626 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002627 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002628 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002629 }
2630
2631 /* Skip to past ']'. */
2632 ++p;
2633 }
2634
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002635 if (lp->ll_tv->v_type == VAR_DICT)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002636 {
2637 if (len == -1)
2638 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002639 /* "[key]": get key from "var1" */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002640 key = get_tv_string(&var1); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002641 if (*key == NUL)
2642 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002643 if (!quiet)
2644 EMSG(_(e_emptykey));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002645 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002646 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002647 }
2648 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002649 lp->ll_list = NULL;
2650 lp->ll_dict = lp->ll_tv->vval.v_dict;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002651 lp->ll_di = dict_find(lp->ll_dict, key, len);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002652 if (lp->ll_di == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002653 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002654 /* Key does not exist in dict: may need to add it. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002655 if (*p == '[' || *p == '.' || unlet)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002656 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002657 if (!quiet)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002658 EMSG2(_(e_dictkey), key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002659 if (len == -1)
2660 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002661 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002662 }
2663 if (len == -1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002664 lp->ll_newkey = vim_strsave(key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002665 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002666 lp->ll_newkey = vim_strnsave(key, len);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002667 if (len == -1)
2668 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002669 if (lp->ll_newkey == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002670 p = NULL;
2671 break;
2672 }
2673 if (len == -1)
2674 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002675 lp->ll_tv = &lp->ll_di->di_tv;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002676 }
2677 else
2678 {
2679 /*
2680 * Get the number and item for the only or first index of the List.
2681 */
2682 if (empty1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002683 lp->ll_n1 = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002684 else
2685 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002686 lp->ll_n1 = get_tv_number(&var1); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002687 clear_tv(&var1);
2688 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002689 lp->ll_dict = NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002690 lp->ll_list = lp->ll_tv->vval.v_list;
2691 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2692 if (lp->ll_li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002693 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002694 if (lp->ll_n1 < 0)
2695 {
2696 lp->ll_n1 = 0;
2697 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2698 }
2699 }
2700 if (lp->ll_li == NULL)
2701 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002702 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002703 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002704 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002705 }
2706
2707 /*
2708 * May need to find the item or absolute index for the second
2709 * index of a range.
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002710 * When no index given: "lp->ll_empty2" is TRUE.
2711 * Otherwise "lp->ll_n2" is set to the second index.
Bram Moolenaar8c711452005-01-14 21:53:12 +00002712 */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002713 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002714 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002715 lp->ll_n2 = get_tv_number(&var2); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002716 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002717 if (lp->ll_n2 < 0)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002718 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002719 ni = list_find(lp->ll_list, lp->ll_n2);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002720 if (ni == NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002721 return NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002722 lp->ll_n2 = list_idx_of_item(lp->ll_list, ni);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002723 }
2724
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002725 /* Check that lp->ll_n2 isn't before lp->ll_n1. */
2726 if (lp->ll_n1 < 0)
2727 lp->ll_n1 = list_idx_of_item(lp->ll_list, lp->ll_li);
2728 if (lp->ll_n2 < lp->ll_n1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002729 return NULL;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002730 }
2731
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002732 lp->ll_tv = &lp->ll_li->li_tv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002733 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002734 }
2735
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002736 return p;
2737}
2738
2739/*
Bram Moolenaar33570922005-01-25 22:26:29 +00002740 * Clear lval "lp" that was filled by get_lval().
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002741 */
2742 static void
2743clear_lval(lp)
Bram Moolenaar33570922005-01-25 22:26:29 +00002744 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002745{
2746 vim_free(lp->ll_exp_name);
2747 vim_free(lp->ll_newkey);
2748}
2749
2750/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002751 * Set a variable that was parsed by get_lval() to "rettv".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002752 * "endp" points to just after the parsed name.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002753 * "op" is NULL, "+" for "+=", "-" for "-=", "." for ".=" or "=" for "=".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002754 */
2755 static void
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002756set_var_lval(lp, endp, rettv, copy, op)
Bram Moolenaar33570922005-01-25 22:26:29 +00002757 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002758 char_u *endp;
Bram Moolenaar33570922005-01-25 22:26:29 +00002759 typval_T *rettv;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002760 int copy;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002761 char_u *op;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002762{
2763 int cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00002764 listitem_T *ri;
2765 dictitem_T *di;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002766
2767 if (lp->ll_tv == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002768 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002769 if (!check_changedtick(lp->ll_name))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002770 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002771 cc = *endp;
2772 *endp = NUL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002773 if (op != NULL && *op != '=')
2774 {
Bram Moolenaar33570922005-01-25 22:26:29 +00002775 typval_T tv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002776
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002777 /* handle +=, -= and .= */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002778 if (get_var_tv(lp->ll_name, (int)STRLEN(lp->ll_name),
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002779 &tv, TRUE) == OK)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002780 {
2781 if (tv_op(&tv, rettv, op) == OK)
2782 set_var(lp->ll_name, &tv, FALSE);
2783 clear_tv(&tv);
2784 }
2785 }
2786 else
2787 set_var(lp->ll_name, rettv, copy);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002788 *endp = cc;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002789 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002790 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002791 else if (tv_check_lock(lp->ll_newkey == NULL
2792 ? lp->ll_tv->v_lock
2793 : lp->ll_tv->vval.v_dict->dv_lock, lp->ll_name))
2794 ;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002795 else if (lp->ll_range)
2796 {
2797 /*
2798 * Assign the List values to the list items.
2799 */
2800 for (ri = rettv->vval.v_list->lv_first; ri != NULL; )
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002801 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002802 if (op != NULL && *op != '=')
2803 tv_op(&lp->ll_li->li_tv, &ri->li_tv, op);
2804 else
2805 {
2806 clear_tv(&lp->ll_li->li_tv);
2807 copy_tv(&ri->li_tv, &lp->ll_li->li_tv);
2808 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002809 ri = ri->li_next;
2810 if (ri == NULL || (!lp->ll_empty2 && lp->ll_n2 == lp->ll_n1))
2811 break;
2812 if (lp->ll_li->li_next == NULL)
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002813 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002814 /* Need to add an empty item. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00002815 if (list_append_number(lp->ll_list, 0) == FAIL)
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002816 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002817 ri = NULL;
2818 break;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002819 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002820 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002821 lp->ll_li = lp->ll_li->li_next;
2822 ++lp->ll_n1;
2823 }
2824 if (ri != NULL)
2825 EMSG(_("E710: List value has more items than target"));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002826 else if (lp->ll_empty2
2827 ? (lp->ll_li != NULL && lp->ll_li->li_next != NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002828 : lp->ll_n1 != lp->ll_n2)
2829 EMSG(_("E711: List value has not enough items"));
2830 }
2831 else
2832 {
2833 /*
2834 * Assign to a List or Dictionary item.
2835 */
2836 if (lp->ll_newkey != NULL)
2837 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002838 if (op != NULL && *op != '=')
2839 {
2840 EMSG2(_(e_letwrong), op);
2841 return;
2842 }
2843
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002844 /* Need to add an item to the Dictionary. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002845 di = dictitem_alloc(lp->ll_newkey);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002846 if (di == NULL)
2847 return;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002848 if (dict_add(lp->ll_tv->vval.v_dict, di) == FAIL)
2849 {
2850 vim_free(di);
2851 return;
2852 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002853 lp->ll_tv = &di->di_tv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002854 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002855 else if (op != NULL && *op != '=')
2856 {
2857 tv_op(lp->ll_tv, rettv, op);
2858 return;
2859 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002860 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002861 clear_tv(lp->ll_tv);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002862
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002863 /*
2864 * Assign the value to the variable or list item.
2865 */
2866 if (copy)
2867 copy_tv(rettv, lp->ll_tv);
2868 else
2869 {
2870 *lp->ll_tv = *rettv;
Bram Moolenaar758711c2005-02-02 23:11:38 +00002871 lp->ll_tv->v_lock = 0;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002872 init_tv(rettv);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002873 }
2874 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002875}
2876
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002877/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002878 * Handle "tv1 += tv2", "tv1 -= tv2" and "tv1 .= tv2"
2879 * Returns OK or FAIL.
2880 */
2881 static int
2882tv_op(tv1, tv2, op)
Bram Moolenaar33570922005-01-25 22:26:29 +00002883 typval_T *tv1;
2884 typval_T *tv2;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002885 char_u *op;
2886{
2887 long n;
2888 char_u numbuf[NUMBUFLEN];
2889 char_u *s;
2890
2891 /* Can't do anything with a Funcref or a Dict on the right. */
2892 if (tv2->v_type != VAR_FUNC && tv2->v_type != VAR_DICT)
2893 {
2894 switch (tv1->v_type)
2895 {
2896 case VAR_DICT:
2897 case VAR_FUNC:
2898 break;
2899
2900 case VAR_LIST:
2901 if (*op != '+' || tv2->v_type != VAR_LIST)
2902 break;
2903 /* List += List */
2904 if (tv1->vval.v_list != NULL && tv2->vval.v_list != NULL)
2905 list_extend(tv1->vval.v_list, tv2->vval.v_list, NULL);
2906 return OK;
2907
2908 case VAR_NUMBER:
2909 case VAR_STRING:
2910 if (tv2->v_type == VAR_LIST)
2911 break;
2912 if (*op == '+' || *op == '-')
2913 {
2914 /* nr += nr or nr -= nr*/
2915 n = get_tv_number(tv1);
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002916#ifdef FEAT_FLOAT
2917 if (tv2->v_type == VAR_FLOAT)
2918 {
2919 float_T f = n;
2920
2921 if (*op == '+')
2922 f += tv2->vval.v_float;
2923 else
2924 f -= tv2->vval.v_float;
2925 clear_tv(tv1);
2926 tv1->v_type = VAR_FLOAT;
2927 tv1->vval.v_float = f;
2928 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002929 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002930#endif
2931 {
2932 if (*op == '+')
2933 n += get_tv_number(tv2);
2934 else
2935 n -= get_tv_number(tv2);
2936 clear_tv(tv1);
2937 tv1->v_type = VAR_NUMBER;
2938 tv1->vval.v_number = n;
2939 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002940 }
2941 else
2942 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002943 if (tv2->v_type == VAR_FLOAT)
2944 break;
2945
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002946 /* str .= str */
2947 s = get_tv_string(tv1);
2948 s = concat_str(s, get_tv_string_buf(tv2, numbuf));
2949 clear_tv(tv1);
2950 tv1->v_type = VAR_STRING;
2951 tv1->vval.v_string = s;
2952 }
2953 return OK;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002954
2955#ifdef FEAT_FLOAT
2956 case VAR_FLOAT:
2957 {
2958 float_T f;
2959
2960 if (*op == '.' || (tv2->v_type != VAR_FLOAT
2961 && tv2->v_type != VAR_NUMBER
2962 && tv2->v_type != VAR_STRING))
2963 break;
2964 if (tv2->v_type == VAR_FLOAT)
2965 f = tv2->vval.v_float;
2966 else
2967 f = get_tv_number(tv2);
2968 if (*op == '+')
2969 tv1->vval.v_float += f;
2970 else
2971 tv1->vval.v_float -= f;
2972 }
2973 return OK;
2974#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002975 }
2976 }
2977
2978 EMSG2(_(e_letwrong), op);
2979 return FAIL;
2980}
2981
2982/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002983 * Add a watcher to a list.
2984 */
2985 static void
2986list_add_watch(l, lw)
Bram Moolenaar33570922005-01-25 22:26:29 +00002987 list_T *l;
2988 listwatch_T *lw;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002989{
2990 lw->lw_next = l->lv_watch;
2991 l->lv_watch = lw;
2992}
2993
2994/*
Bram Moolenaar758711c2005-02-02 23:11:38 +00002995 * Remove a watcher from a list.
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002996 * No warning when it isn't found...
2997 */
2998 static void
2999list_rem_watch(l, lwrem)
Bram Moolenaar33570922005-01-25 22:26:29 +00003000 list_T *l;
3001 listwatch_T *lwrem;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003002{
Bram Moolenaar33570922005-01-25 22:26:29 +00003003 listwatch_T *lw, **lwp;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003004
3005 lwp = &l->lv_watch;
3006 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3007 {
3008 if (lw == lwrem)
3009 {
3010 *lwp = lw->lw_next;
3011 break;
3012 }
3013 lwp = &lw->lw_next;
3014 }
3015}
3016
3017/*
3018 * Just before removing an item from a list: advance watchers to the next
3019 * item.
3020 */
3021 static void
3022list_fix_watch(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00003023 list_T *l;
3024 listitem_T *item;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003025{
Bram Moolenaar33570922005-01-25 22:26:29 +00003026 listwatch_T *lw;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003027
3028 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3029 if (lw->lw_item == item)
3030 lw->lw_item = item->li_next;
3031}
3032
3033/*
3034 * Evaluate the expression used in a ":for var in expr" command.
3035 * "arg" points to "var".
3036 * Set "*errp" to TRUE for an error, FALSE otherwise;
3037 * Return a pointer that holds the info. Null when there is an error.
3038 */
3039 void *
3040eval_for_line(arg, errp, nextcmdp, skip)
3041 char_u *arg;
3042 int *errp;
3043 char_u **nextcmdp;
3044 int skip;
3045{
Bram Moolenaar33570922005-01-25 22:26:29 +00003046 forinfo_T *fi;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003047 char_u *expr;
Bram Moolenaar33570922005-01-25 22:26:29 +00003048 typval_T tv;
3049 list_T *l;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003050
3051 *errp = TRUE; /* default: there is an error */
3052
Bram Moolenaar33570922005-01-25 22:26:29 +00003053 fi = (forinfo_T *)alloc_clear(sizeof(forinfo_T));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003054 if (fi == NULL)
3055 return NULL;
3056
3057 expr = skip_var_list(arg, &fi->fi_varcount, &fi->fi_semicolon);
3058 if (expr == NULL)
3059 return fi;
3060
3061 expr = skipwhite(expr);
3062 if (expr[0] != 'i' || expr[1] != 'n' || !vim_iswhite(expr[2]))
3063 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00003064 EMSG(_("E690: Missing \"in\" after :for"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003065 return fi;
3066 }
3067
3068 if (skip)
3069 ++emsg_skip;
3070 if (eval0(skipwhite(expr + 2), &tv, nextcmdp, !skip) == OK)
3071 {
3072 *errp = FALSE;
3073 if (!skip)
3074 {
3075 l = tv.vval.v_list;
3076 if (tv.v_type != VAR_LIST || l == NULL)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003077 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003078 EMSG(_(e_listreq));
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003079 clear_tv(&tv);
3080 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003081 else
3082 {
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00003083 /* No need to increment the refcount, it's already set for the
3084 * list being used in "tv". */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003085 fi->fi_list = l;
3086 list_add_watch(l, &fi->fi_lw);
3087 fi->fi_lw.lw_item = l->lv_first;
3088 }
3089 }
3090 }
3091 if (skip)
3092 --emsg_skip;
3093
3094 return fi;
3095}
3096
3097/*
3098 * Use the first item in a ":for" list. Advance to the next.
3099 * Assign the values to the variable (list). "arg" points to the first one.
3100 * Return TRUE when a valid item was found, FALSE when at end of list or
3101 * something wrong.
3102 */
3103 int
3104next_for_item(fi_void, arg)
3105 void *fi_void;
3106 char_u *arg;
3107{
Bram Moolenaar33570922005-01-25 22:26:29 +00003108 forinfo_T *fi = (forinfo_T *)fi_void;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003109 int result;
Bram Moolenaar33570922005-01-25 22:26:29 +00003110 listitem_T *item;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003111
3112 item = fi->fi_lw.lw_item;
3113 if (item == NULL)
3114 result = FALSE;
3115 else
3116 {
3117 fi->fi_lw.lw_item = item->li_next;
3118 result = (ex_let_vars(arg, &item->li_tv, TRUE,
3119 fi->fi_semicolon, fi->fi_varcount, NULL) == OK);
3120 }
3121 return result;
3122}
3123
3124/*
3125 * Free the structure used to store info used by ":for".
3126 */
3127 void
3128free_for_info(fi_void)
3129 void *fi_void;
3130{
Bram Moolenaar33570922005-01-25 22:26:29 +00003131 forinfo_T *fi = (forinfo_T *)fi_void;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003132
Bram Moolenaarab7013c2005-01-09 21:23:56 +00003133 if (fi != NULL && fi->fi_list != NULL)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003134 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003135 list_rem_watch(fi->fi_list, &fi->fi_lw);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003136 list_unref(fi->fi_list);
3137 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003138 vim_free(fi);
3139}
3140
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3142
3143 void
3144set_context_for_expression(xp, arg, cmdidx)
3145 expand_T *xp;
3146 char_u *arg;
3147 cmdidx_T cmdidx;
3148{
3149 int got_eq = FALSE;
3150 int c;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003151 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003153 if (cmdidx == CMD_let)
3154 {
3155 xp->xp_context = EXPAND_USER_VARS;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003156 if (vim_strpbrk(arg, (char_u *)"\"'+-*/%.=!?~|&$([<>,#") == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003157 {
3158 /* ":let var1 var2 ...": find last space. */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003159 for (p = arg + STRLEN(arg); p >= arg; )
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003160 {
3161 xp->xp_pattern = p;
Bram Moolenaar33570922005-01-25 22:26:29 +00003162 mb_ptr_back(arg, p);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003163 if (vim_iswhite(*p))
3164 break;
3165 }
3166 return;
3167 }
3168 }
3169 else
3170 xp->xp_context = cmdidx == CMD_call ? EXPAND_FUNCTIONS
3171 : EXPAND_EXPRESSION;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 while ((xp->xp_pattern = vim_strpbrk(arg,
3173 (char_u *)"\"'+-*/%.=!?~|&$([<>,#")) != NULL)
3174 {
3175 c = *xp->xp_pattern;
3176 if (c == '&')
3177 {
3178 c = xp->xp_pattern[1];
3179 if (c == '&')
3180 {
3181 ++xp->xp_pattern;
3182 xp->xp_context = cmdidx != CMD_let || got_eq
3183 ? EXPAND_EXPRESSION : EXPAND_NOTHING;
3184 }
3185 else if (c != ' ')
Bram Moolenaar11cbeb12005-03-11 22:51:16 +00003186 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187 xp->xp_context = EXPAND_SETTINGS;
Bram Moolenaar11cbeb12005-03-11 22:51:16 +00003188 if ((c == 'l' || c == 'g') && xp->xp_pattern[2] == ':')
3189 xp->xp_pattern += 2;
3190
3191 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 }
3193 else if (c == '$')
3194 {
3195 /* environment variable */
3196 xp->xp_context = EXPAND_ENV_VARS;
3197 }
3198 else if (c == '=')
3199 {
3200 got_eq = TRUE;
3201 xp->xp_context = EXPAND_EXPRESSION;
3202 }
3203 else if (c == '<'
3204 && xp->xp_context == EXPAND_FUNCTIONS
3205 && vim_strchr(xp->xp_pattern, '(') == NULL)
3206 {
3207 /* Function name can start with "<SNR>" */
3208 break;
3209 }
3210 else if (cmdidx != CMD_let || got_eq)
3211 {
3212 if (c == '"') /* string */
3213 {
3214 while ((c = *++xp->xp_pattern) != NUL && c != '"')
3215 if (c == '\\' && xp->xp_pattern[1] != NUL)
3216 ++xp->xp_pattern;
3217 xp->xp_context = EXPAND_NOTHING;
3218 }
3219 else if (c == '\'') /* literal string */
3220 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00003221 /* Trick: '' is like stopping and starting a literal string. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222 while ((c = *++xp->xp_pattern) != NUL && c != '\'')
3223 /* skip */ ;
3224 xp->xp_context = EXPAND_NOTHING;
3225 }
3226 else if (c == '|')
3227 {
3228 if (xp->xp_pattern[1] == '|')
3229 {
3230 ++xp->xp_pattern;
3231 xp->xp_context = EXPAND_EXPRESSION;
3232 }
3233 else
3234 xp->xp_context = EXPAND_COMMANDS;
3235 }
3236 else
3237 xp->xp_context = EXPAND_EXPRESSION;
3238 }
3239 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003240 /* Doesn't look like something valid, expand as an expression
3241 * anyway. */
3242 xp->xp_context = EXPAND_EXPRESSION;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243 arg = xp->xp_pattern;
3244 if (*arg != NUL)
3245 while ((c = *++arg) != NUL && (c == ' ' || c == '\t'))
3246 /* skip */ ;
3247 }
3248 xp->xp_pattern = arg;
3249}
3250
3251#endif /* FEAT_CMDL_COMPL */
3252
3253/*
3254 * ":1,25call func(arg1, arg2)" function call.
3255 */
3256 void
3257ex_call(eap)
3258 exarg_T *eap;
3259{
3260 char_u *arg = eap->arg;
3261 char_u *startarg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003262 char_u *name;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003263 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +00003265 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 linenr_T lnum;
3267 int doesrange;
3268 int failed = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00003269 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003271 tofree = trans_function_name(&arg, eap->skip, TFN_INT, &fudi);
Bram Moolenaara2a31752006-10-24 11:49:25 +00003272 if (fudi.fd_newkey != NULL)
3273 {
3274 /* Still need to give an error message for missing key. */
3275 EMSG2(_(e_dictkey), fudi.fd_newkey);
3276 vim_free(fudi.fd_newkey);
3277 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003278 if (tofree == NULL)
3279 return;
3280
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003281 /* Increase refcount on dictionary, it could get deleted when evaluating
3282 * the arguments. */
3283 if (fudi.fd_dict != NULL)
3284 ++fudi.fd_dict->dv_refcount;
3285
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003286 /* If it is the name of a variable of type VAR_FUNC use its contents. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003287 len = (int)STRLEN(tofree);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003288 name = deref_func_name(tofree, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289
Bram Moolenaar532c7802005-01-27 14:44:31 +00003290 /* Skip white space to allow ":call func ()". Not good, but required for
3291 * backward compatibility. */
3292 startarg = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003293 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294
3295 if (*startarg != '(')
3296 {
Bram Moolenaar8dd9ac52008-11-06 10:05:42 +00003297 EMSG2(_("E107: Missing parentheses: %s"), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298 goto end;
3299 }
3300
3301 /*
3302 * When skipping, evaluate the function once, to find the end of the
3303 * arguments.
3304 * When the function takes a range, this is discovered after the first
3305 * call, and the loop is broken.
3306 */
3307 if (eap->skip)
3308 {
3309 ++emsg_skip;
3310 lnum = eap->line2; /* do it once, also with an invalid range */
3311 }
3312 else
3313 lnum = eap->line1;
3314 for ( ; lnum <= eap->line2; ++lnum)
3315 {
3316 if (!eap->skip && eap->addr_count > 0)
3317 {
3318 curwin->w_cursor.lnum = lnum;
3319 curwin->w_cursor.col = 0;
3320 }
3321 arg = startarg;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003322 if (get_func_tv(name, (int)STRLEN(name), &rettv, &arg,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003323 eap->line1, eap->line2, &doesrange,
3324 !eap->skip, fudi.fd_dict) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325 {
3326 failed = TRUE;
3327 break;
3328 }
Bram Moolenaarf2789872006-11-28 19:54:04 +00003329
3330 /* Handle a function returning a Funcref, Dictionary or List. */
3331 if (handle_subscript(&arg, &rettv, !eap->skip, TRUE) == FAIL)
3332 {
3333 failed = TRUE;
3334 break;
3335 }
3336
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003337 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003338 if (doesrange || eap->skip)
3339 break;
Bram Moolenaarf2789872006-11-28 19:54:04 +00003340
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341 /* Stop when immediately aborting on error, or when an interrupt
Bram Moolenaar49cd9572005-01-03 21:06:01 +00003342 * occurred or an exception was thrown but not caught.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003343 * get_func_tv() returned OK, so that the check for trailing
Bram Moolenaar49cd9572005-01-03 21:06:01 +00003344 * characters below is executed. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345 if (aborting())
3346 break;
3347 }
3348 if (eap->skip)
3349 --emsg_skip;
3350
3351 if (!failed)
3352 {
3353 /* Check for trailing illegal characters and a following command. */
3354 if (!ends_excmd(*arg))
3355 {
3356 emsg_severe = TRUE;
3357 EMSG(_(e_trailing));
3358 }
3359 else
3360 eap->nextcmd = check_nextcmd(arg);
3361 }
3362
3363end:
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003364 dict_unref(fudi.fd_dict);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003365 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366}
3367
3368/*
3369 * ":unlet[!] var1 ... " command.
3370 */
3371 void
3372ex_unlet(eap)
3373 exarg_T *eap;
3374{
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003375 ex_unletlock(eap, eap->arg, 0);
3376}
3377
3378/*
3379 * ":lockvar" and ":unlockvar" commands
3380 */
3381 void
3382ex_lockvar(eap)
3383 exarg_T *eap;
3384{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 char_u *arg = eap->arg;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003386 int deep = 2;
3387
3388 if (eap->forceit)
3389 deep = -1;
3390 else if (vim_isdigit(*arg))
3391 {
3392 deep = getdigits(&arg);
3393 arg = skipwhite(arg);
3394 }
3395
3396 ex_unletlock(eap, arg, deep);
3397}
3398
3399/*
3400 * ":unlet", ":lockvar" and ":unlockvar" are quite similar.
3401 */
3402 static void
3403ex_unletlock(eap, argstart, deep)
3404 exarg_T *eap;
3405 char_u *argstart;
3406 int deep;
3407{
3408 char_u *arg = argstart;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409 char_u *name_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 int error = FALSE;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003411 lval_T lv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412
3413 do
3414 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003415 /* Parse the name and find the end. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00003416 name_end = get_lval(arg, NULL, &lv, TRUE, eap->skip || error, FALSE,
3417 FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003418 if (lv.ll_name == NULL)
3419 error = TRUE; /* error but continue parsing */
3420 if (name_end == NULL || (!vim_iswhite(*name_end)
3421 && !ends_excmd(*name_end)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003423 if (name_end != NULL)
3424 {
3425 emsg_severe = TRUE;
3426 EMSG(_(e_trailing));
3427 }
3428 if (!(eap->skip || error))
3429 clear_lval(&lv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 break;
3431 }
3432
3433 if (!error && !eap->skip)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003434 {
3435 if (eap->cmdidx == CMD_unlet)
3436 {
3437 if (do_unlet_var(&lv, name_end, eap->forceit) == FAIL)
3438 error = TRUE;
3439 }
3440 else
3441 {
3442 if (do_lock_var(&lv, name_end, deep,
3443 eap->cmdidx == CMD_lockvar) == FAIL)
3444 error = TRUE;
3445 }
3446 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003448 if (!eap->skip)
3449 clear_lval(&lv);
3450
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 arg = skipwhite(name_end);
3452 } while (!ends_excmd(*arg));
3453
3454 eap->nextcmd = check_nextcmd(arg);
3455}
3456
Bram Moolenaar8c711452005-01-14 21:53:12 +00003457 static int
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003458do_unlet_var(lp, name_end, forceit)
Bram Moolenaar33570922005-01-25 22:26:29 +00003459 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003460 char_u *name_end;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003461 int forceit;
3462{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003463 int ret = OK;
3464 int cc;
3465
3466 if (lp->ll_tv == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00003467 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003468 cc = *name_end;
3469 *name_end = NUL;
3470
3471 /* Normal name or expanded name. */
3472 if (check_changedtick(lp->ll_name))
3473 ret = FAIL;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003474 else if (do_unlet(lp->ll_name, forceit) == FAIL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003475 ret = FAIL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003476 *name_end = cc;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003477 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003478 else if (tv_check_lock(lp->ll_tv->v_lock, lp->ll_name))
3479 return FAIL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003480 else if (lp->ll_range)
3481 {
Bram Moolenaar33570922005-01-25 22:26:29 +00003482 listitem_T *li;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003483
3484 /* Delete a range of List items. */
3485 while (lp->ll_li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3486 {
3487 li = lp->ll_li->li_next;
3488 listitem_remove(lp->ll_list, lp->ll_li);
3489 lp->ll_li = li;
3490 ++lp->ll_n1;
3491 }
3492 }
3493 else
3494 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003495 if (lp->ll_list != NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003496 /* unlet a List item. */
3497 listitem_remove(lp->ll_list, lp->ll_li);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003498 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003499 /* unlet a Dictionary item. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003500 dictitem_remove(lp->ll_dict, lp->ll_di);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003501 }
3502
3503 return ret;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003504}
3505
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506/*
3507 * "unlet" a variable. Return OK if it existed, FAIL if not.
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003508 * When "forceit" is TRUE don't complain if the variable doesn't exist.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509 */
3510 int
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003511do_unlet(name, forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 char_u *name;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003513 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514{
Bram Moolenaar33570922005-01-25 22:26:29 +00003515 hashtab_T *ht;
3516 hashitem_T *hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003517 char_u *varname;
Bram Moolenaarafbdeb82008-01-05 21:16:31 +00003518 dictitem_T *di;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519
Bram Moolenaar33570922005-01-25 22:26:29 +00003520 ht = find_var_ht(name, &varname);
3521 if (ht != NULL && *varname != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003522 {
Bram Moolenaar33570922005-01-25 22:26:29 +00003523 hi = hash_find(ht, varname);
3524 if (!HASHITEM_EMPTY(hi))
Bram Moolenaara7043832005-01-21 11:56:39 +00003525 {
Bram Moolenaarafbdeb82008-01-05 21:16:31 +00003526 di = HI2DI(hi);
3527 if (var_check_fixed(di->di_flags, name)
3528 || var_check_ro(di->di_flags, name))
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003529 return FAIL;
3530 delete_var(ht, hi);
3531 return OK;
Bram Moolenaara7043832005-01-21 11:56:39 +00003532 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003534 if (forceit)
3535 return OK;
3536 EMSG2(_("E108: No such variable: \"%s\""), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 return FAIL;
3538}
3539
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003540/*
3541 * Lock or unlock variable indicated by "lp".
3542 * "deep" is the levels to go (-1 for unlimited);
3543 * "lock" is TRUE for ":lockvar", FALSE for ":unlockvar".
3544 */
3545 static int
3546do_lock_var(lp, name_end, deep, lock)
3547 lval_T *lp;
3548 char_u *name_end;
3549 int deep;
3550 int lock;
3551{
3552 int ret = OK;
3553 int cc;
3554 dictitem_T *di;
3555
3556 if (deep == 0) /* nothing to do */
3557 return OK;
3558
3559 if (lp->ll_tv == NULL)
3560 {
3561 cc = *name_end;
3562 *name_end = NUL;
3563
3564 /* Normal name or expanded name. */
3565 if (check_changedtick(lp->ll_name))
3566 ret = FAIL;
3567 else
3568 {
3569 di = find_var(lp->ll_name, NULL);
3570 if (di == NULL)
3571 ret = FAIL;
3572 else
3573 {
3574 if (lock)
3575 di->di_flags |= DI_FLAGS_LOCK;
3576 else
3577 di->di_flags &= ~DI_FLAGS_LOCK;
3578 item_lock(&di->di_tv, deep, lock);
3579 }
3580 }
3581 *name_end = cc;
3582 }
3583 else if (lp->ll_range)
3584 {
3585 listitem_T *li = lp->ll_li;
3586
3587 /* (un)lock a range of List items. */
3588 while (li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3589 {
3590 item_lock(&li->li_tv, deep, lock);
3591 li = li->li_next;
3592 ++lp->ll_n1;
3593 }
3594 }
3595 else if (lp->ll_list != NULL)
3596 /* (un)lock a List item. */
3597 item_lock(&lp->ll_li->li_tv, deep, lock);
3598 else
3599 /* un(lock) a Dictionary item. */
3600 item_lock(&lp->ll_di->di_tv, deep, lock);
3601
3602 return ret;
3603}
3604
3605/*
3606 * Lock or unlock an item. "deep" is nr of levels to go.
3607 */
3608 static void
3609item_lock(tv, deep, lock)
3610 typval_T *tv;
3611 int deep;
3612 int lock;
3613{
3614 static int recurse = 0;
3615 list_T *l;
3616 listitem_T *li;
3617 dict_T *d;
3618 hashitem_T *hi;
3619 int todo;
3620
3621 if (recurse >= DICT_MAXNEST)
3622 {
3623 EMSG(_("E743: variable nested too deep for (un)lock"));
3624 return;
3625 }
3626 if (deep == 0)
3627 return;
3628 ++recurse;
3629
3630 /* lock/unlock the item itself */
3631 if (lock)
3632 tv->v_lock |= VAR_LOCKED;
3633 else
3634 tv->v_lock &= ~VAR_LOCKED;
3635
3636 switch (tv->v_type)
3637 {
3638 case VAR_LIST:
3639 if ((l = tv->vval.v_list) != NULL)
3640 {
3641 if (lock)
3642 l->lv_lock |= VAR_LOCKED;
3643 else
3644 l->lv_lock &= ~VAR_LOCKED;
3645 if (deep < 0 || deep > 1)
3646 /* recursive: lock/unlock the items the List contains */
3647 for (li = l->lv_first; li != NULL; li = li->li_next)
3648 item_lock(&li->li_tv, deep - 1, lock);
3649 }
3650 break;
3651 case VAR_DICT:
3652 if ((d = tv->vval.v_dict) != NULL)
3653 {
3654 if (lock)
3655 d->dv_lock |= VAR_LOCKED;
3656 else
3657 d->dv_lock &= ~VAR_LOCKED;
3658 if (deep < 0 || deep > 1)
3659 {
3660 /* recursive: lock/unlock the items the List contains */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003661 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003662 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
3663 {
3664 if (!HASHITEM_EMPTY(hi))
3665 {
3666 --todo;
3667 item_lock(&HI2DI(hi)->di_tv, deep - 1, lock);
3668 }
3669 }
3670 }
3671 }
3672 }
3673 --recurse;
3674}
3675
Bram Moolenaara40058a2005-07-11 22:42:07 +00003676/*
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +00003677 * Return TRUE if typeval "tv" is locked: Either that value is locked itself
3678 * or it refers to a List or Dictionary that is locked.
Bram Moolenaara40058a2005-07-11 22:42:07 +00003679 */
3680 static int
3681tv_islocked(tv)
3682 typval_T *tv;
3683{
3684 return (tv->v_lock & VAR_LOCKED)
3685 || (tv->v_type == VAR_LIST
3686 && tv->vval.v_list != NULL
3687 && (tv->vval.v_list->lv_lock & VAR_LOCKED))
3688 || (tv->v_type == VAR_DICT
3689 && tv->vval.v_dict != NULL
3690 && (tv->vval.v_dict->dv_lock & VAR_LOCKED));
3691}
3692
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693#if (defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)) || defined(PROTO)
3694/*
3695 * Delete all "menutrans_" variables.
3696 */
3697 void
3698del_menutrans_vars()
3699{
Bram Moolenaar33570922005-01-25 22:26:29 +00003700 hashitem_T *hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003701 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702
Bram Moolenaar33570922005-01-25 22:26:29 +00003703 hash_lock(&globvarht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003704 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00003705 for (hi = globvarht.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaara7043832005-01-21 11:56:39 +00003706 {
3707 if (!HASHITEM_EMPTY(hi))
3708 {
3709 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00003710 if (STRNCMP(HI2DI(hi)->di_key, "menutrans_", 10) == 0)
3711 delete_var(&globvarht, hi);
Bram Moolenaara7043832005-01-21 11:56:39 +00003712 }
3713 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003714 hash_unlock(&globvarht);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715}
3716#endif
3717
3718#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3719
3720/*
3721 * Local string buffer for the next two functions to store a variable name
3722 * with its prefix. Allocated in cat_prefix_varname(), freed later in
3723 * get_user_var_name().
3724 */
3725
3726static char_u *cat_prefix_varname __ARGS((int prefix, char_u *name));
3727
3728static char_u *varnamebuf = NULL;
3729static int varnamebuflen = 0;
3730
3731/*
3732 * Function to concatenate a prefix and a variable name.
3733 */
3734 static char_u *
3735cat_prefix_varname(prefix, name)
3736 int prefix;
3737 char_u *name;
3738{
3739 int len;
3740
3741 len = (int)STRLEN(name) + 3;
3742 if (len > varnamebuflen)
3743 {
3744 vim_free(varnamebuf);
3745 len += 10; /* some additional space */
3746 varnamebuf = alloc(len);
3747 if (varnamebuf == NULL)
3748 {
3749 varnamebuflen = 0;
3750 return NULL;
3751 }
3752 varnamebuflen = len;
3753 }
3754 *varnamebuf = prefix;
3755 varnamebuf[1] = ':';
3756 STRCPY(varnamebuf + 2, name);
3757 return varnamebuf;
3758}
3759
3760/*
3761 * Function given to ExpandGeneric() to obtain the list of user defined
3762 * (global/buffer/window/built-in) variable names.
3763 */
3764/*ARGSUSED*/
3765 char_u *
3766get_user_var_name(xp, idx)
3767 expand_T *xp;
3768 int idx;
3769{
Bram Moolenaar532c7802005-01-27 14:44:31 +00003770 static long_u gdone;
3771 static long_u bdone;
3772 static long_u wdone;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003773#ifdef FEAT_WINDOWS
3774 static long_u tdone;
3775#endif
Bram Moolenaar532c7802005-01-27 14:44:31 +00003776 static int vidx;
3777 static hashitem_T *hi;
3778 hashtab_T *ht;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779
3780 if (idx == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003781 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003782 gdone = bdone = wdone = vidx = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003783#ifdef FEAT_WINDOWS
3784 tdone = 0;
3785#endif
3786 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003787
3788 /* Global variables */
3789 if (gdone < globvarht.ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003791 if (gdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003792 hi = globvarht.ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003793 else
3794 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003795 while (HASHITEM_EMPTY(hi))
3796 ++hi;
3797 if (STRNCMP("g:", xp->xp_pattern, 2) == 0)
3798 return cat_prefix_varname('g', hi->hi_key);
3799 return hi->hi_key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003801
3802 /* b: variables */
3803 ht = &curbuf->b_vars.dv_hashtab;
3804 if (bdone < ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003806 if (bdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003807 hi = ht->ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003808 else
3809 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003810 while (HASHITEM_EMPTY(hi))
3811 ++hi;
3812 return cat_prefix_varname('b', hi->hi_key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003814 if (bdone == ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003816 ++bdone;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817 return (char_u *)"b:changedtick";
3818 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003819
3820 /* w: variables */
3821 ht = &curwin->w_vars.dv_hashtab;
3822 if (wdone < ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00003824 if (wdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003825 hi = ht->ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003826 else
3827 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003828 while (HASHITEM_EMPTY(hi))
3829 ++hi;
3830 return cat_prefix_varname('w', hi->hi_key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003832
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003833#ifdef FEAT_WINDOWS
3834 /* t: variables */
3835 ht = &curtab->tp_vars.dv_hashtab;
3836 if (tdone < ht->ht_used)
3837 {
3838 if (tdone++ == 0)
3839 hi = ht->ht_array;
3840 else
3841 ++hi;
3842 while (HASHITEM_EMPTY(hi))
3843 ++hi;
3844 return cat_prefix_varname('t', hi->hi_key);
3845 }
3846#endif
3847
Bram Moolenaar33570922005-01-25 22:26:29 +00003848 /* v: variables */
3849 if (vidx < VV_LEN)
3850 return cat_prefix_varname('v', (char_u *)vimvars[vidx++].vv_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851
3852 vim_free(varnamebuf);
3853 varnamebuf = NULL;
3854 varnamebuflen = 0;
3855 return NULL;
3856}
3857
3858#endif /* FEAT_CMDL_COMPL */
3859
3860/*
3861 * types for expressions.
3862 */
3863typedef enum
3864{
3865 TYPE_UNKNOWN = 0
3866 , TYPE_EQUAL /* == */
3867 , TYPE_NEQUAL /* != */
3868 , TYPE_GREATER /* > */
3869 , TYPE_GEQUAL /* >= */
3870 , TYPE_SMALLER /* < */
3871 , TYPE_SEQUAL /* <= */
3872 , TYPE_MATCH /* =~ */
3873 , TYPE_NOMATCH /* !~ */
3874} exptype_T;
3875
3876/*
3877 * The "evaluate" argument: When FALSE, the argument is only parsed but not
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003878 * executed. The function may return OK, but the rettv will be of type
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 * VAR_UNKNOWN. The function still returns FAIL for a syntax error.
3880 */
3881
3882/*
3883 * Handle zero level expression.
3884 * This calls eval1() and handles error message and nextcmd.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003885 * Put the result in "rettv" when returning OK and "evaluate" is TRUE.
Bram Moolenaar4463f292005-09-25 22:20:24 +00003886 * Note: "rettv.v_lock" is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887 * Return OK or FAIL.
3888 */
3889 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003890eval0(arg, rettv, nextcmd, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891 char_u *arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00003892 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893 char_u **nextcmd;
3894 int evaluate;
3895{
3896 int ret;
3897 char_u *p;
3898
3899 p = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003900 ret = eval1(&p, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003901 if (ret == FAIL || !ends_excmd(*p))
3902 {
3903 if (ret != FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003904 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905 /*
3906 * Report the invalid expression unless the expression evaluation has
3907 * been cancelled due to an aborting error, an interrupt, or an
3908 * exception.
3909 */
3910 if (!aborting())
3911 EMSG2(_(e_invexpr2), arg);
3912 ret = FAIL;
3913 }
3914 if (nextcmd != NULL)
3915 *nextcmd = check_nextcmd(p);
3916
3917 return ret;
3918}
3919
3920/*
3921 * Handle top level expression:
3922 * expr1 ? expr0 : expr0
3923 *
3924 * "arg" must point to the first non-white of the expression.
3925 * "arg" is advanced to the next non-white after the recognized expression.
3926 *
Bram Moolenaar4463f292005-09-25 22:20:24 +00003927 * Note: "rettv.v_lock" is not set.
3928 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003929 * Return OK or FAIL.
3930 */
3931 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003932eval1(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00003934 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935 int evaluate;
3936{
3937 int result;
Bram Moolenaar33570922005-01-25 22:26:29 +00003938 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939
3940 /*
3941 * Get the first variable.
3942 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003943 if (eval2(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 return FAIL;
3945
3946 if ((*arg)[0] == '?')
3947 {
3948 result = FALSE;
3949 if (evaluate)
3950 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003951 int error = FALSE;
3952
3953 if (get_tv_number_chk(rettv, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003955 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003956 if (error)
3957 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958 }
3959
3960 /*
3961 * Get the second variable.
3962 */
3963 *arg = skipwhite(*arg + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003964 if (eval1(arg, rettv, evaluate && result) == FAIL) /* recursive! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965 return FAIL;
3966
3967 /*
3968 * Check for the ":".
3969 */
3970 if ((*arg)[0] != ':')
3971 {
3972 EMSG(_("E109: Missing ':' after '?'"));
3973 if (evaluate && result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003974 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975 return FAIL;
3976 }
3977
3978 /*
3979 * Get the third variable.
3980 */
3981 *arg = skipwhite(*arg + 1);
3982 if (eval1(arg, &var2, evaluate && !result) == FAIL) /* recursive! */
3983 {
3984 if (evaluate && result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003985 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 return FAIL;
3987 }
3988 if (evaluate && !result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003989 *rettv = var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 }
3991
3992 return OK;
3993}
3994
3995/*
3996 * Handle first level expression:
3997 * expr2 || expr2 || expr2 logical OR
3998 *
3999 * "arg" must point to the first non-white of the expression.
4000 * "arg" is advanced to the next non-white after the recognized expression.
4001 *
4002 * Return OK or FAIL.
4003 */
4004 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004005eval2(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004007 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008 int evaluate;
4009{
Bram Moolenaar33570922005-01-25 22:26:29 +00004010 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 long result;
4012 int first;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004013 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004014
4015 /*
4016 * Get the first variable.
4017 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004018 if (eval3(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019 return FAIL;
4020
4021 /*
4022 * Repeat until there is no following "||".
4023 */
4024 first = TRUE;
4025 result = FALSE;
4026 while ((*arg)[0] == '|' && (*arg)[1] == '|')
4027 {
4028 if (evaluate && first)
4029 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004030 if (get_tv_number_chk(rettv, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004032 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004033 if (error)
4034 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035 first = FALSE;
4036 }
4037
4038 /*
4039 * Get the second variable.
4040 */
4041 *arg = skipwhite(*arg + 2);
4042 if (eval3(arg, &var2, evaluate && !result) == FAIL)
4043 return FAIL;
4044
4045 /*
4046 * Compute the result.
4047 */
4048 if (evaluate && !result)
4049 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004050 if (get_tv_number_chk(&var2, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004052 clear_tv(&var2);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004053 if (error)
4054 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055 }
4056 if (evaluate)
4057 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004058 rettv->v_type = VAR_NUMBER;
4059 rettv->vval.v_number = result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060 }
4061 }
4062
4063 return OK;
4064}
4065
4066/*
4067 * Handle second level expression:
4068 * expr3 && expr3 && expr3 logical AND
4069 *
4070 * "arg" must point to the first non-white of the expression.
4071 * "arg" is advanced to the next non-white after the recognized expression.
4072 *
4073 * Return OK or FAIL.
4074 */
4075 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004076eval3(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004078 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 int evaluate;
4080{
Bram Moolenaar33570922005-01-25 22:26:29 +00004081 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082 long result;
4083 int first;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004084 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085
4086 /*
4087 * Get the first variable.
4088 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004089 if (eval4(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 return FAIL;
4091
4092 /*
4093 * Repeat until there is no following "&&".
4094 */
4095 first = TRUE;
4096 result = TRUE;
4097 while ((*arg)[0] == '&' && (*arg)[1] == '&')
4098 {
4099 if (evaluate && first)
4100 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004101 if (get_tv_number_chk(rettv, &error) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 result = FALSE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004103 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004104 if (error)
4105 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106 first = FALSE;
4107 }
4108
4109 /*
4110 * Get the second variable.
4111 */
4112 *arg = skipwhite(*arg + 2);
4113 if (eval4(arg, &var2, evaluate && result) == FAIL)
4114 return FAIL;
4115
4116 /*
4117 * Compute the result.
4118 */
4119 if (evaluate && result)
4120 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004121 if (get_tv_number_chk(&var2, &error) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122 result = FALSE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004123 clear_tv(&var2);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004124 if (error)
4125 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 }
4127 if (evaluate)
4128 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004129 rettv->v_type = VAR_NUMBER;
4130 rettv->vval.v_number = result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131 }
4132 }
4133
4134 return OK;
4135}
4136
4137/*
4138 * Handle third level expression:
4139 * var1 == var2
4140 * var1 =~ var2
4141 * var1 != var2
4142 * var1 !~ var2
4143 * var1 > var2
4144 * var1 >= var2
4145 * var1 < var2
4146 * var1 <= var2
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004147 * var1 is var2
4148 * var1 isnot var2
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149 *
4150 * "arg" must point to the first non-white of the expression.
4151 * "arg" is advanced to the next non-white after the recognized expression.
4152 *
4153 * Return OK or FAIL.
4154 */
4155 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004156eval4(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004158 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159 int evaluate;
4160{
Bram Moolenaar33570922005-01-25 22:26:29 +00004161 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162 char_u *p;
4163 int i;
4164 exptype_T type = TYPE_UNKNOWN;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004165 int type_is = FALSE; /* TRUE for "is" and "isnot" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166 int len = 2;
4167 long n1, n2;
4168 char_u *s1, *s2;
4169 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4170 regmatch_T regmatch;
4171 int ic;
4172 char_u *save_cpo;
4173
4174 /*
4175 * Get the first variable.
4176 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004177 if (eval5(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 return FAIL;
4179
4180 p = *arg;
4181 switch (p[0])
4182 {
4183 case '=': if (p[1] == '=')
4184 type = TYPE_EQUAL;
4185 else if (p[1] == '~')
4186 type = TYPE_MATCH;
4187 break;
4188 case '!': if (p[1] == '=')
4189 type = TYPE_NEQUAL;
4190 else if (p[1] == '~')
4191 type = TYPE_NOMATCH;
4192 break;
4193 case '>': if (p[1] != '=')
4194 {
4195 type = TYPE_GREATER;
4196 len = 1;
4197 }
4198 else
4199 type = TYPE_GEQUAL;
4200 break;
4201 case '<': if (p[1] != '=')
4202 {
4203 type = TYPE_SMALLER;
4204 len = 1;
4205 }
4206 else
4207 type = TYPE_SEQUAL;
4208 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004209 case 'i': if (p[1] == 's')
4210 {
4211 if (p[2] == 'n' && p[3] == 'o' && p[4] == 't')
4212 len = 5;
4213 if (!vim_isIDc(p[len]))
4214 {
4215 type = len == 2 ? TYPE_EQUAL : TYPE_NEQUAL;
4216 type_is = TRUE;
4217 }
4218 }
4219 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004220 }
4221
4222 /*
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004223 * If there is a comparative operator, use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 */
4225 if (type != TYPE_UNKNOWN)
4226 {
4227 /* extra question mark appended: ignore case */
4228 if (p[len] == '?')
4229 {
4230 ic = TRUE;
4231 ++len;
4232 }
4233 /* extra '#' appended: match case */
4234 else if (p[len] == '#')
4235 {
4236 ic = FALSE;
4237 ++len;
4238 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004239 /* nothing appended: use 'ignorecase' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240 else
4241 ic = p_ic;
4242
4243 /*
4244 * Get the second variable.
4245 */
4246 *arg = skipwhite(p + len);
4247 if (eval5(arg, &var2, evaluate) == FAIL)
4248 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004249 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 return FAIL;
4251 }
4252
4253 if (evaluate)
4254 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004255 if (type_is && rettv->v_type != var2.v_type)
4256 {
4257 /* For "is" a different type always means FALSE, for "notis"
4258 * it means TRUE. */
4259 n1 = (type == TYPE_NEQUAL);
4260 }
4261 else if (rettv->v_type == VAR_LIST || var2.v_type == VAR_LIST)
4262 {
4263 if (type_is)
4264 {
4265 n1 = (rettv->v_type == var2.v_type
4266 && rettv->vval.v_list == var2.vval.v_list);
4267 if (type == TYPE_NEQUAL)
4268 n1 = !n1;
4269 }
4270 else if (rettv->v_type != var2.v_type
4271 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4272 {
4273 if (rettv->v_type != var2.v_type)
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004274 EMSG(_("E691: Can only compare List with List"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004275 else
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004276 EMSG(_("E692: Invalid operation for Lists"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004277 clear_tv(rettv);
4278 clear_tv(&var2);
4279 return FAIL;
4280 }
4281 else
4282 {
4283 /* Compare two Lists for being equal or unequal. */
4284 n1 = list_equal(rettv->vval.v_list, var2.vval.v_list, ic);
4285 if (type == TYPE_NEQUAL)
4286 n1 = !n1;
4287 }
4288 }
4289
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00004290 else if (rettv->v_type == VAR_DICT || var2.v_type == VAR_DICT)
4291 {
4292 if (type_is)
4293 {
4294 n1 = (rettv->v_type == var2.v_type
4295 && rettv->vval.v_dict == var2.vval.v_dict);
4296 if (type == TYPE_NEQUAL)
4297 n1 = !n1;
4298 }
4299 else if (rettv->v_type != var2.v_type
4300 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4301 {
4302 if (rettv->v_type != var2.v_type)
4303 EMSG(_("E735: Can only compare Dictionary with Dictionary"));
4304 else
4305 EMSG(_("E736: Invalid operation for Dictionary"));
4306 clear_tv(rettv);
4307 clear_tv(&var2);
4308 return FAIL;
4309 }
4310 else
4311 {
4312 /* Compare two Dictionaries for being equal or unequal. */
4313 n1 = dict_equal(rettv->vval.v_dict, var2.vval.v_dict, ic);
4314 if (type == TYPE_NEQUAL)
4315 n1 = !n1;
4316 }
4317 }
4318
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004319 else if (rettv->v_type == VAR_FUNC || var2.v_type == VAR_FUNC)
4320 {
4321 if (rettv->v_type != var2.v_type
4322 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4323 {
4324 if (rettv->v_type != var2.v_type)
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004325 EMSG(_("E693: Can only compare Funcref with Funcref"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004326 else
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004327 EMSG(_("E694: Invalid operation for Funcrefs"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004328 clear_tv(rettv);
4329 clear_tv(&var2);
4330 return FAIL;
4331 }
4332 else
4333 {
4334 /* Compare two Funcrefs for being equal or unequal. */
4335 if (rettv->vval.v_string == NULL
4336 || var2.vval.v_string == NULL)
4337 n1 = FALSE;
4338 else
4339 n1 = STRCMP(rettv->vval.v_string,
4340 var2.vval.v_string) == 0;
4341 if (type == TYPE_NEQUAL)
4342 n1 = !n1;
4343 }
4344 }
4345
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004346#ifdef FEAT_FLOAT
4347 /*
4348 * If one of the two variables is a float, compare as a float.
4349 * When using "=~" or "!~", always compare as string.
4350 */
4351 else if ((rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4352 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4353 {
4354 float_T f1, f2;
4355
4356 if (rettv->v_type == VAR_FLOAT)
4357 f1 = rettv->vval.v_float;
4358 else
4359 f1 = get_tv_number(rettv);
4360 if (var2.v_type == VAR_FLOAT)
4361 f2 = var2.vval.v_float;
4362 else
4363 f2 = get_tv_number(&var2);
4364 n1 = FALSE;
4365 switch (type)
4366 {
4367 case TYPE_EQUAL: n1 = (f1 == f2); break;
4368 case TYPE_NEQUAL: n1 = (f1 != f2); break;
4369 case TYPE_GREATER: n1 = (f1 > f2); break;
4370 case TYPE_GEQUAL: n1 = (f1 >= f2); break;
4371 case TYPE_SMALLER: n1 = (f1 < f2); break;
4372 case TYPE_SEQUAL: n1 = (f1 <= f2); break;
4373 case TYPE_UNKNOWN:
4374 case TYPE_MATCH:
4375 case TYPE_NOMATCH: break; /* avoid gcc warning */
4376 }
4377 }
4378#endif
4379
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 /*
4381 * If one of the two variables is a number, compare as a number.
4382 * When using "=~" or "!~", always compare as string.
4383 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004384 else if ((rettv->v_type == VAR_NUMBER || var2.v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4386 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004387 n1 = get_tv_number(rettv);
4388 n2 = get_tv_number(&var2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004389 switch (type)
4390 {
4391 case TYPE_EQUAL: n1 = (n1 == n2); break;
4392 case TYPE_NEQUAL: n1 = (n1 != n2); break;
4393 case TYPE_GREATER: n1 = (n1 > n2); break;
4394 case TYPE_GEQUAL: n1 = (n1 >= n2); break;
4395 case TYPE_SMALLER: n1 = (n1 < n2); break;
4396 case TYPE_SEQUAL: n1 = (n1 <= n2); break;
4397 case TYPE_UNKNOWN:
4398 case TYPE_MATCH:
4399 case TYPE_NOMATCH: break; /* avoid gcc warning */
4400 }
4401 }
4402 else
4403 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004404 s1 = get_tv_string_buf(rettv, buf1);
4405 s2 = get_tv_string_buf(&var2, buf2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406 if (type != TYPE_MATCH && type != TYPE_NOMATCH)
4407 i = ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2);
4408 else
4409 i = 0;
4410 n1 = FALSE;
4411 switch (type)
4412 {
4413 case TYPE_EQUAL: n1 = (i == 0); break;
4414 case TYPE_NEQUAL: n1 = (i != 0); break;
4415 case TYPE_GREATER: n1 = (i > 0); break;
4416 case TYPE_GEQUAL: n1 = (i >= 0); break;
4417 case TYPE_SMALLER: n1 = (i < 0); break;
4418 case TYPE_SEQUAL: n1 = (i <= 0); break;
4419
4420 case TYPE_MATCH:
4421 case TYPE_NOMATCH:
4422 /* avoid 'l' flag in 'cpoptions' */
4423 save_cpo = p_cpo;
4424 p_cpo = (char_u *)"";
4425 regmatch.regprog = vim_regcomp(s2,
4426 RE_MAGIC + RE_STRING);
4427 regmatch.rm_ic = ic;
4428 if (regmatch.regprog != NULL)
4429 {
4430 n1 = vim_regexec_nl(&regmatch, s1, (colnr_T)0);
4431 vim_free(regmatch.regprog);
4432 if (type == TYPE_NOMATCH)
4433 n1 = !n1;
4434 }
4435 p_cpo = save_cpo;
4436 break;
4437
4438 case TYPE_UNKNOWN: break; /* avoid gcc warning */
4439 }
4440 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004441 clear_tv(rettv);
4442 clear_tv(&var2);
4443 rettv->v_type = VAR_NUMBER;
4444 rettv->vval.v_number = n1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445 }
4446 }
4447
4448 return OK;
4449}
4450
4451/*
4452 * Handle fourth level expression:
4453 * + number addition
4454 * - number subtraction
4455 * . string concatenation
4456 *
4457 * "arg" must point to the first non-white of the expression.
4458 * "arg" is advanced to the next non-white after the recognized expression.
4459 *
4460 * Return OK or FAIL.
4461 */
4462 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004463eval5(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004465 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466 int evaluate;
4467{
Bram Moolenaar33570922005-01-25 22:26:29 +00004468 typval_T var2;
4469 typval_T var3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 int op;
4471 long n1, n2;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004472#ifdef FEAT_FLOAT
4473 float_T f1 = 0, f2 = 0;
4474#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 char_u *s1, *s2;
4476 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4477 char_u *p;
4478
4479 /*
4480 * Get the first variable.
4481 */
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004482 if (eval6(arg, rettv, evaluate, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 return FAIL;
4484
4485 /*
4486 * Repeat computing, until no '+', '-' or '.' is following.
4487 */
4488 for (;;)
4489 {
4490 op = **arg;
4491 if (op != '+' && op != '-' && op != '.')
4492 break;
4493
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004494 if ((op != '+' || rettv->v_type != VAR_LIST)
4495#ifdef FEAT_FLOAT
4496 && (op == '.' || rettv->v_type != VAR_FLOAT)
4497#endif
4498 )
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004499 {
4500 /* For "list + ...", an illegal use of the first operand as
4501 * a number cannot be determined before evaluating the 2nd
4502 * operand: if this is also a list, all is ok.
4503 * For "something . ...", "something - ..." or "non-list + ...",
4504 * we know that the first operand needs to be a string or number
4505 * without evaluating the 2nd operand. So check before to avoid
4506 * side effects after an error. */
4507 if (evaluate && get_tv_string_chk(rettv) == NULL)
4508 {
4509 clear_tv(rettv);
4510 return FAIL;
4511 }
4512 }
4513
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514 /*
4515 * Get the second variable.
4516 */
4517 *arg = skipwhite(*arg + 1);
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004518 if (eval6(arg, &var2, evaluate, op == '.') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004519 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004520 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521 return FAIL;
4522 }
4523
4524 if (evaluate)
4525 {
4526 /*
4527 * Compute the result.
4528 */
4529 if (op == '.')
4530 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004531 s1 = get_tv_string_buf(rettv, buf1); /* already checked */
4532 s2 = get_tv_string_buf_chk(&var2, buf2);
4533 if (s2 == NULL) /* type error ? */
4534 {
4535 clear_tv(rettv);
4536 clear_tv(&var2);
4537 return FAIL;
4538 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00004539 p = concat_str(s1, s2);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004540 clear_tv(rettv);
4541 rettv->v_type = VAR_STRING;
4542 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004543 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00004544 else if (op == '+' && rettv->v_type == VAR_LIST
4545 && var2.v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004546 {
4547 /* concatenate Lists */
4548 if (list_concat(rettv->vval.v_list, var2.vval.v_list,
4549 &var3) == FAIL)
4550 {
4551 clear_tv(rettv);
4552 clear_tv(&var2);
4553 return FAIL;
4554 }
4555 clear_tv(rettv);
4556 *rettv = var3;
4557 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558 else
4559 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004560 int error = FALSE;
4561
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004562#ifdef FEAT_FLOAT
4563 if (rettv->v_type == VAR_FLOAT)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004564 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004565 f1 = rettv->vval.v_float;
4566 n1 = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004567 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004568 else
4569#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004570 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004571 n1 = get_tv_number_chk(rettv, &error);
4572 if (error)
4573 {
4574 /* This can only happen for "list + non-list". For
4575 * "non-list + ..." or "something - ...", we returned
4576 * before evaluating the 2nd operand. */
4577 clear_tv(rettv);
4578 return FAIL;
4579 }
4580#ifdef FEAT_FLOAT
4581 if (var2.v_type == VAR_FLOAT)
4582 f1 = n1;
4583#endif
4584 }
4585#ifdef FEAT_FLOAT
4586 if (var2.v_type == VAR_FLOAT)
4587 {
4588 f2 = var2.vval.v_float;
4589 n2 = 0;
4590 }
4591 else
4592#endif
4593 {
4594 n2 = get_tv_number_chk(&var2, &error);
4595 if (error)
4596 {
4597 clear_tv(rettv);
4598 clear_tv(&var2);
4599 return FAIL;
4600 }
4601#ifdef FEAT_FLOAT
4602 if (rettv->v_type == VAR_FLOAT)
4603 f2 = n2;
4604#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004605 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004606 clear_tv(rettv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004607
4608#ifdef FEAT_FLOAT
4609 /* If there is a float on either side the result is a float. */
4610 if (rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4611 {
4612 if (op == '+')
4613 f1 = f1 + f2;
4614 else
4615 f1 = f1 - f2;
4616 rettv->v_type = VAR_FLOAT;
4617 rettv->vval.v_float = f1;
4618 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004620#endif
4621 {
4622 if (op == '+')
4623 n1 = n1 + n2;
4624 else
4625 n1 = n1 - n2;
4626 rettv->v_type = VAR_NUMBER;
4627 rettv->vval.v_number = n1;
4628 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004630 clear_tv(&var2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631 }
4632 }
4633 return OK;
4634}
4635
4636/*
4637 * Handle fifth level expression:
4638 * * number multiplication
4639 * / number division
4640 * % number modulo
4641 *
4642 * "arg" must point to the first non-white of the expression.
4643 * "arg" is advanced to the next non-white after the recognized expression.
4644 *
4645 * Return OK or FAIL.
4646 */
4647 static int
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004648eval6(arg, rettv, evaluate, want_string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004650 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651 int evaluate;
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004652 int want_string; /* after "." operator */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653{
Bram Moolenaar33570922005-01-25 22:26:29 +00004654 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655 int op;
4656 long n1, n2;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004657#ifdef FEAT_FLOAT
4658 int use_float = FALSE;
4659 float_T f1 = 0, f2;
4660#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004661 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662
4663 /*
4664 * Get the first variable.
4665 */
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004666 if (eval7(arg, rettv, evaluate, want_string) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667 return FAIL;
4668
4669 /*
4670 * Repeat computing, until no '*', '/' or '%' is following.
4671 */
4672 for (;;)
4673 {
4674 op = **arg;
4675 if (op != '*' && op != '/' && op != '%')
4676 break;
4677
4678 if (evaluate)
4679 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004680#ifdef FEAT_FLOAT
4681 if (rettv->v_type == VAR_FLOAT)
4682 {
4683 f1 = rettv->vval.v_float;
4684 use_float = TRUE;
4685 n1 = 0;
4686 }
4687 else
4688#endif
4689 n1 = get_tv_number_chk(rettv, &error);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004690 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004691 if (error)
4692 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 }
4694 else
4695 n1 = 0;
4696
4697 /*
4698 * Get the second variable.
4699 */
4700 *arg = skipwhite(*arg + 1);
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004701 if (eval7(arg, &var2, evaluate, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702 return FAIL;
4703
4704 if (evaluate)
4705 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004706#ifdef FEAT_FLOAT
4707 if (var2.v_type == VAR_FLOAT)
4708 {
4709 if (!use_float)
4710 {
4711 f1 = n1;
4712 use_float = TRUE;
4713 }
4714 f2 = var2.vval.v_float;
4715 n2 = 0;
4716 }
4717 else
4718#endif
4719 {
4720 n2 = get_tv_number_chk(&var2, &error);
4721 clear_tv(&var2);
4722 if (error)
4723 return FAIL;
4724#ifdef FEAT_FLOAT
4725 if (use_float)
4726 f2 = n2;
4727#endif
4728 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729
4730 /*
4731 * Compute the result.
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004732 * When either side is a float the result is a float.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733 */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004734#ifdef FEAT_FLOAT
4735 if (use_float)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004737 if (op == '*')
4738 f1 = f1 * f2;
4739 else if (op == '/')
4740 {
4741 /* We rely on the floating point library to handle divide
4742 * by zero to result in "inf" and not a crash. */
4743 f1 = f1 / f2;
4744 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004746 {
Bram Moolenaar1378fca2008-07-04 16:51:55 +00004747 EMSG(_("E804: Cannot use '%' with Float"));
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004748 return FAIL;
4749 }
4750 rettv->v_type = VAR_FLOAT;
4751 rettv->vval.v_float = f1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752 }
4753 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004754#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004756 if (op == '*')
4757 n1 = n1 * n2;
4758 else if (op == '/')
4759 {
4760 if (n2 == 0) /* give an error message? */
4761 {
4762 if (n1 == 0)
4763 n1 = -0x7fffffffL - 1L; /* similar to NaN */
4764 else if (n1 < 0)
4765 n1 = -0x7fffffffL;
4766 else
4767 n1 = 0x7fffffffL;
4768 }
4769 else
4770 n1 = n1 / n2;
4771 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004773 {
4774 if (n2 == 0) /* give an error message? */
4775 n1 = 0;
4776 else
4777 n1 = n1 % n2;
4778 }
4779 rettv->v_type = VAR_NUMBER;
4780 rettv->vval.v_number = n1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782 }
4783 }
4784
4785 return OK;
4786}
4787
4788/*
4789 * Handle sixth level expression:
4790 * number number constant
Bram Moolenaarbae0c162007-05-10 19:30:25 +00004791 * "string" string constant
4792 * 'string' literal string constant
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793 * &option-name option value
4794 * @r register contents
4795 * identifier variable value
4796 * function() function call
4797 * $VAR environment variable
4798 * (expression) nested expression
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00004799 * [expr, expr] List
4800 * {key: val, key: val} Dictionary
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 *
4802 * Also handle:
4803 * ! in front logical NOT
4804 * - in front unary minus
4805 * + in front unary plus (ignored)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004806 * trailing [] subscript in String or List
4807 * trailing .name entry in Dictionary
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 *
4809 * "arg" must point to the first non-white of the expression.
4810 * "arg" is advanced to the next non-white after the recognized expression.
4811 *
4812 * Return OK or FAIL.
4813 */
4814 static int
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004815eval7(arg, rettv, evaluate, want_string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004817 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818 int evaluate;
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004819 int want_string; /* after "." operator */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 long n;
4822 int len;
4823 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824 char_u *start_leader, *end_leader;
4825 int ret = OK;
4826 char_u *alias;
4827
4828 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004829 * Initialise variable so that clear_tv() can't mistake this for a
Bram Moolenaar49cd9572005-01-03 21:06:01 +00004830 * string and free a string that isn't there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004832 rettv->v_type = VAR_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833
4834 /*
4835 * Skip '!' and '-' characters. They are handled later.
4836 */
4837 start_leader = *arg;
4838 while (**arg == '!' || **arg == '-' || **arg == '+')
4839 *arg = skipwhite(*arg + 1);
4840 end_leader = *arg;
4841
4842 switch (**arg)
4843 {
4844 /*
4845 * Number constant.
4846 */
4847 case '0':
4848 case '1':
4849 case '2':
4850 case '3':
4851 case '4':
4852 case '5':
4853 case '6':
4854 case '7':
4855 case '8':
4856 case '9':
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004857 {
4858#ifdef FEAT_FLOAT
4859 char_u *p = skipdigits(*arg + 1);
4860 int get_float = FALSE;
4861
4862 /* We accept a float when the format matches
4863 * "[0-9]\+\.[0-9]\+\([eE][+-]\?[0-9]\+\)\?". This is very
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004864 * strict to avoid backwards compatibility problems.
4865 * Don't look for a float after the "." operator, so that
4866 * ":let vers = 1.2.3" doesn't fail. */
4867 if (!want_string && p[0] == '.' && vim_isdigit(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004869 get_float = TRUE;
4870 p = skipdigits(p + 2);
4871 if (*p == 'e' || *p == 'E')
4872 {
4873 ++p;
4874 if (*p == '-' || *p == '+')
4875 ++p;
4876 if (!vim_isdigit(*p))
4877 get_float = FALSE;
4878 else
4879 p = skipdigits(p + 1);
4880 }
4881 if (ASCII_ISALPHA(*p) || *p == '.')
4882 get_float = FALSE;
4883 }
4884 if (get_float)
4885 {
4886 float_T f;
4887
4888 *arg += string2float(*arg, &f);
4889 if (evaluate)
4890 {
4891 rettv->v_type = VAR_FLOAT;
4892 rettv->vval.v_float = f;
4893 }
4894 }
4895 else
4896#endif
4897 {
4898 vim_str2nr(*arg, NULL, &len, TRUE, TRUE, &n, NULL);
4899 *arg += len;
4900 if (evaluate)
4901 {
4902 rettv->v_type = VAR_NUMBER;
4903 rettv->vval.v_number = n;
4904 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 }
4906 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004907 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908
4909 /*
4910 * String constant: "string".
4911 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004912 case '"': ret = get_string_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 break;
4914
4915 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00004916 * Literal string constant: 'str''ing'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004918 case '\'': ret = get_lit_string_tv(arg, rettv, evaluate);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00004919 break;
4920
4921 /*
4922 * List: [expr, expr]
4923 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004924 case '[': ret = get_list_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925 break;
4926
4927 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00004928 * Dictionary: {key: val, key: val}
4929 */
4930 case '{': ret = get_dict_tv(arg, rettv, evaluate);
4931 break;
4932
4933 /*
Bram Moolenaare9a41262005-01-15 22:18:47 +00004934 * Option value: &name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 */
Bram Moolenaare9a41262005-01-15 22:18:47 +00004936 case '&': ret = get_option_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 break;
4938
4939 /*
4940 * Environment variable: $VAR.
4941 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004942 case '$': ret = get_env_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 break;
4944
4945 /*
4946 * Register contents: @r.
4947 */
4948 case '@': ++*arg;
4949 if (evaluate)
4950 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004951 rettv->v_type = VAR_STRING;
Bram Moolenaar92124a32005-06-17 22:03:40 +00004952 rettv->vval.v_string = get_reg_contents(**arg, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953 }
4954 if (**arg != NUL)
4955 ++*arg;
4956 break;
4957
4958 /*
4959 * nested expression: (expression).
4960 */
4961 case '(': *arg = skipwhite(*arg + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004962 ret = eval1(arg, rettv, evaluate); /* recursive! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004963 if (**arg == ')')
4964 ++*arg;
4965 else if (ret == OK)
4966 {
4967 EMSG(_("E110: Missing ')'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004968 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 ret = FAIL;
4970 }
4971 break;
4972
Bram Moolenaar8c711452005-01-14 21:53:12 +00004973 default: ret = NOTDONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004974 break;
4975 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00004976
4977 if (ret == NOTDONE)
4978 {
4979 /*
4980 * Must be a variable or function name.
4981 * Can also be a curly-braces kind of name: {expr}.
4982 */
4983 s = *arg;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004984 len = get_name_len(arg, &alias, evaluate, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00004985 if (alias != NULL)
4986 s = alias;
4987
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004988 if (len <= 0)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004989 ret = FAIL;
4990 else
4991 {
4992 if (**arg == '(') /* recursive! */
4993 {
4994 /* If "s" is the name of a variable of type VAR_FUNC
4995 * use its contents. */
4996 s = deref_func_name(s, &len);
4997
4998 /* Invoke the function. */
4999 ret = get_func_tv(s, len, rettv, arg,
5000 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
Bram Moolenaare9a41262005-01-15 22:18:47 +00005001 &len, evaluate, NULL);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005002 /* Stop the expression evaluation when immediately
5003 * aborting on error, or when an interrupt occurred or
5004 * an exception was thrown but not caught. */
5005 if (aborting())
5006 {
5007 if (ret == OK)
5008 clear_tv(rettv);
5009 ret = FAIL;
5010 }
5011 }
5012 else if (evaluate)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005013 ret = get_var_tv(s, len, rettv, TRUE);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005014 else
5015 ret = OK;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005016 }
5017
5018 if (alias != NULL)
5019 vim_free(alias);
5020 }
5021
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 *arg = skipwhite(*arg);
5023
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005024 /* Handle following '[', '(' and '.' for expr[expr], expr.name,
5025 * expr(expr). */
5026 if (ret == OK)
5027 ret = handle_subscript(arg, rettv, evaluate, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028
5029 /*
5030 * Apply logical NOT and unary '-', from right to left, ignore '+'.
5031 */
5032 if (ret == OK && evaluate && end_leader > start_leader)
5033 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005034 int error = FALSE;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005035 int val = 0;
5036#ifdef FEAT_FLOAT
5037 float_T f = 0.0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005038
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005039 if (rettv->v_type == VAR_FLOAT)
5040 f = rettv->vval.v_float;
5041 else
5042#endif
5043 val = get_tv_number_chk(rettv, &error);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005044 if (error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005046 clear_tv(rettv);
5047 ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005049 else
5050 {
5051 while (end_leader > start_leader)
5052 {
5053 --end_leader;
5054 if (*end_leader == '!')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005055 {
5056#ifdef FEAT_FLOAT
5057 if (rettv->v_type == VAR_FLOAT)
5058 f = !f;
5059 else
5060#endif
5061 val = !val;
5062 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005063 else if (*end_leader == '-')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005064 {
5065#ifdef FEAT_FLOAT
5066 if (rettv->v_type == VAR_FLOAT)
5067 f = -f;
5068 else
5069#endif
5070 val = -val;
5071 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005072 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005073#ifdef FEAT_FLOAT
5074 if (rettv->v_type == VAR_FLOAT)
5075 {
5076 clear_tv(rettv);
5077 rettv->vval.v_float = f;
5078 }
5079 else
5080#endif
5081 {
5082 clear_tv(rettv);
5083 rettv->v_type = VAR_NUMBER;
5084 rettv->vval.v_number = val;
5085 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005086 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 }
5088
5089 return ret;
5090}
5091
5092/*
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005093 * Evaluate an "[expr]" or "[expr:expr]" index. Also "dict.key".
5094 * "*arg" points to the '[' or '.'.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005095 * Returns FAIL or OK. "*arg" is advanced to after the ']'.
5096 */
5097 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005098eval_index(arg, rettv, evaluate, verbose)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005099 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005100 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005101 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005102 int verbose; /* give error messages */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005103{
5104 int empty1 = FALSE, empty2 = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00005105 typval_T var1, var2;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005106 long n1, n2 = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005107 long len = -1;
5108 int range = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005109 char_u *s;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005110 char_u *key = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005111
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005112 if (rettv->v_type == VAR_FUNC
5113#ifdef FEAT_FLOAT
5114 || rettv->v_type == VAR_FLOAT
5115#endif
5116 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005117 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005118 if (verbose)
5119 EMSG(_("E695: Cannot index a Funcref"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005120 return FAIL;
5121 }
5122
Bram Moolenaar8c711452005-01-14 21:53:12 +00005123 if (**arg == '.')
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005124 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005125 /*
5126 * dict.name
5127 */
5128 key = *arg + 1;
5129 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
5130 ;
5131 if (len == 0)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005132 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005133 *arg = skipwhite(key + len);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005134 }
5135 else
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005136 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005137 /*
5138 * something[idx]
5139 *
5140 * Get the (first) variable from inside the [].
5141 */
5142 *arg = skipwhite(*arg + 1);
5143 if (**arg == ':')
5144 empty1 = TRUE;
5145 else if (eval1(arg, &var1, evaluate) == FAIL) /* recursive! */
5146 return FAIL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005147 else if (evaluate && get_tv_string_chk(&var1) == NULL)
5148 {
5149 /* not a number or string */
5150 clear_tv(&var1);
5151 return FAIL;
5152 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005153
5154 /*
5155 * Get the second variable from inside the [:].
5156 */
5157 if (**arg == ':')
5158 {
5159 range = TRUE;
5160 *arg = skipwhite(*arg + 1);
5161 if (**arg == ']')
5162 empty2 = TRUE;
5163 else if (eval1(arg, &var2, evaluate) == FAIL) /* recursive! */
5164 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005165 if (!empty1)
5166 clear_tv(&var1);
5167 return FAIL;
5168 }
5169 else if (evaluate && get_tv_string_chk(&var2) == NULL)
5170 {
5171 /* not a number or string */
5172 if (!empty1)
5173 clear_tv(&var1);
5174 clear_tv(&var2);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005175 return FAIL;
5176 }
5177 }
5178
5179 /* Check for the ']'. */
5180 if (**arg != ']')
5181 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005182 if (verbose)
5183 EMSG(_(e_missbrac));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005184 clear_tv(&var1);
5185 if (range)
5186 clear_tv(&var2);
5187 return FAIL;
5188 }
5189 *arg = skipwhite(*arg + 1); /* skip the ']' */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005190 }
5191
5192 if (evaluate)
5193 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005194 n1 = 0;
5195 if (!empty1 && rettv->v_type != VAR_DICT)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005196 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005197 n1 = get_tv_number(&var1);
5198 clear_tv(&var1);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005199 }
5200 if (range)
5201 {
5202 if (empty2)
5203 n2 = -1;
5204 else
5205 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005206 n2 = get_tv_number(&var2);
5207 clear_tv(&var2);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005208 }
5209 }
5210
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005211 switch (rettv->v_type)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005212 {
5213 case VAR_NUMBER:
5214 case VAR_STRING:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005215 s = get_tv_string(rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005216 len = (long)STRLEN(s);
5217 if (range)
5218 {
5219 /* The resulting variable is a substring. If the indexes
5220 * are out of range the result is empty. */
5221 if (n1 < 0)
5222 {
5223 n1 = len + n1;
5224 if (n1 < 0)
5225 n1 = 0;
5226 }
5227 if (n2 < 0)
5228 n2 = len + n2;
5229 else if (n2 >= len)
5230 n2 = len;
5231 if (n1 >= len || n2 < 0 || n1 > n2)
5232 s = NULL;
5233 else
5234 s = vim_strnsave(s + n1, (int)(n2 - n1 + 1));
5235 }
5236 else
5237 {
5238 /* The resulting variable is a string of a single
5239 * character. If the index is too big or negative the
5240 * result is empty. */
5241 if (n1 >= len || n1 < 0)
5242 s = NULL;
5243 else
5244 s = vim_strnsave(s + n1, 1);
5245 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005246 clear_tv(rettv);
5247 rettv->v_type = VAR_STRING;
5248 rettv->vval.v_string = s;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005249 break;
5250
5251 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005252 len = list_len(rettv->vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005253 if (n1 < 0)
5254 n1 = len + n1;
5255 if (!empty1 && (n1 < 0 || n1 >= len))
5256 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005257 /* For a range we allow invalid values and return an empty
5258 * list. A list index out of range is an error. */
5259 if (!range)
5260 {
5261 if (verbose)
5262 EMSGN(_(e_listidx), n1);
5263 return FAIL;
5264 }
5265 n1 = len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005266 }
5267 if (range)
5268 {
Bram Moolenaar33570922005-01-25 22:26:29 +00005269 list_T *l;
5270 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005271
5272 if (n2 < 0)
5273 n2 = len + n2;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005274 else if (n2 >= len)
5275 n2 = len - 1;
5276 if (!empty2 && (n2 < 0 || n2 + 1 < n1))
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005277 n2 = -1;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005278 l = list_alloc();
5279 if (l == NULL)
5280 return FAIL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005281 for (item = list_find(rettv->vval.v_list, n1);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005282 n1 <= n2; ++n1)
5283 {
5284 if (list_append_tv(l, &item->li_tv) == FAIL)
5285 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00005286 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005287 return FAIL;
5288 }
5289 item = item->li_next;
5290 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005291 clear_tv(rettv);
5292 rettv->v_type = VAR_LIST;
5293 rettv->vval.v_list = l;
Bram Moolenaar0d660222005-01-07 21:51:51 +00005294 ++l->lv_refcount;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005295 }
5296 else
5297 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005298 copy_tv(&list_find(rettv->vval.v_list, n1)->li_tv, &var1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005299 clear_tv(rettv);
5300 *rettv = var1;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005301 }
5302 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005303
5304 case VAR_DICT:
5305 if (range)
5306 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005307 if (verbose)
5308 EMSG(_(e_dictrange));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005309 if (len == -1)
5310 clear_tv(&var1);
5311 return FAIL;
5312 }
5313 {
Bram Moolenaar33570922005-01-25 22:26:29 +00005314 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005315
5316 if (len == -1)
5317 {
5318 key = get_tv_string(&var1);
5319 if (*key == NUL)
5320 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005321 if (verbose)
5322 EMSG(_(e_emptykey));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005323 clear_tv(&var1);
5324 return FAIL;
5325 }
5326 }
5327
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005328 item = dict_find(rettv->vval.v_dict, key, (int)len);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005329
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005330 if (item == NULL && verbose)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005331 EMSG2(_(e_dictkey), key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005332 if (len == -1)
5333 clear_tv(&var1);
5334 if (item == NULL)
5335 return FAIL;
5336
5337 copy_tv(&item->di_tv, &var1);
5338 clear_tv(rettv);
5339 *rettv = var1;
5340 }
5341 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005342 }
5343 }
5344
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005345 return OK;
5346}
5347
5348/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349 * Get an option value.
5350 * "arg" points to the '&' or '+' before the option name.
5351 * "arg" is advanced to character after the option name.
5352 * Return OK or FAIL.
5353 */
5354 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005355get_option_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005357 typval_T *rettv; /* when NULL, only check if option exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 int evaluate;
5359{
5360 char_u *option_end;
5361 long numval;
5362 char_u *stringval;
5363 int opt_type;
5364 int c;
5365 int working = (**arg == '+'); /* has("+option") */
5366 int ret = OK;
5367 int opt_flags;
5368
5369 /*
5370 * Isolate the option name and find its value.
5371 */
5372 option_end = find_option_end(arg, &opt_flags);
5373 if (option_end == NULL)
5374 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005375 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376 EMSG2(_("E112: Option name missing: %s"), *arg);
5377 return FAIL;
5378 }
5379
5380 if (!evaluate)
5381 {
5382 *arg = option_end;
5383 return OK;
5384 }
5385
5386 c = *option_end;
5387 *option_end = NUL;
5388 opt_type = get_option_value(*arg, &numval,
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005389 rettv == NULL ? NULL : &stringval, opt_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005390
5391 if (opt_type == -3) /* invalid name */
5392 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005393 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394 EMSG2(_("E113: Unknown option: %s"), *arg);
5395 ret = FAIL;
5396 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005397 else if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398 {
5399 if (opt_type == -2) /* hidden string option */
5400 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005401 rettv->v_type = VAR_STRING;
5402 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403 }
5404 else if (opt_type == -1) /* hidden number option */
5405 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005406 rettv->v_type = VAR_NUMBER;
5407 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005408 }
5409 else if (opt_type == 1) /* number option */
5410 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005411 rettv->v_type = VAR_NUMBER;
5412 rettv->vval.v_number = numval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413 }
5414 else /* string option */
5415 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005416 rettv->v_type = VAR_STRING;
5417 rettv->vval.v_string = stringval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 }
5419 }
5420 else if (working && (opt_type == -2 || opt_type == -1))
5421 ret = FAIL;
5422
5423 *option_end = c; /* put back for error messages */
5424 *arg = option_end;
5425
5426 return ret;
5427}
5428
5429/*
5430 * Allocate a variable for a string constant.
5431 * Return OK or FAIL.
5432 */
5433 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005434get_string_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005435 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005436 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437 int evaluate;
5438{
5439 char_u *p;
5440 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441 int extra = 0;
5442
5443 /*
5444 * Find the end of the string, skipping backslashed characters.
5445 */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005446 for (p = *arg + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447 {
5448 if (*p == '\\' && p[1] != NUL)
5449 {
5450 ++p;
5451 /* A "\<x>" form occupies at least 4 characters, and produces up
5452 * to 6 characters: reserve space for 2 extra */
5453 if (*p == '<')
5454 extra += 2;
5455 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456 }
5457
5458 if (*p != '"')
5459 {
5460 EMSG2(_("E114: Missing quote: %s"), *arg);
5461 return FAIL;
5462 }
5463
5464 /* If only parsing, set *arg and return here */
5465 if (!evaluate)
5466 {
5467 *arg = p + 1;
5468 return OK;
5469 }
5470
5471 /*
5472 * Copy the string into allocated memory, handling backslashed
5473 * characters.
5474 */
5475 name = alloc((unsigned)(p - *arg + extra));
5476 if (name == NULL)
5477 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005478 rettv->v_type = VAR_STRING;
5479 rettv->vval.v_string = name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480
Bram Moolenaar8c711452005-01-14 21:53:12 +00005481 for (p = *arg + 1; *p != NUL && *p != '"'; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482 {
5483 if (*p == '\\')
5484 {
5485 switch (*++p)
5486 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005487 case 'b': *name++ = BS; ++p; break;
5488 case 'e': *name++ = ESC; ++p; break;
5489 case 'f': *name++ = FF; ++p; break;
5490 case 'n': *name++ = NL; ++p; break;
5491 case 'r': *name++ = CAR; ++p; break;
5492 case 't': *name++ = TAB; ++p; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493
5494 case 'X': /* hex: "\x1", "\x12" */
5495 case 'x':
5496 case 'u': /* Unicode: "\u0023" */
5497 case 'U':
5498 if (vim_isxdigit(p[1]))
5499 {
5500 int n, nr;
5501 int c = toupper(*p);
5502
5503 if (c == 'X')
5504 n = 2;
5505 else
5506 n = 4;
5507 nr = 0;
5508 while (--n >= 0 && vim_isxdigit(p[1]))
5509 {
5510 ++p;
5511 nr = (nr << 4) + hex2nr(*p);
5512 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005513 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514#ifdef FEAT_MBYTE
5515 /* For "\u" store the number according to
5516 * 'encoding'. */
5517 if (c != 'X')
Bram Moolenaar8c711452005-01-14 21:53:12 +00005518 name += (*mb_char2bytes)(nr, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519 else
5520#endif
Bram Moolenaar8c711452005-01-14 21:53:12 +00005521 *name++ = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523 break;
5524
5525 /* octal: "\1", "\12", "\123" */
5526 case '0':
5527 case '1':
5528 case '2':
5529 case '3':
5530 case '4':
5531 case '5':
5532 case '6':
Bram Moolenaar8c711452005-01-14 21:53:12 +00005533 case '7': *name = *p++ - '0';
5534 if (*p >= '0' && *p <= '7')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005535 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005536 *name = (*name << 3) + *p++ - '0';
5537 if (*p >= '0' && *p <= '7')
5538 *name = (*name << 3) + *p++ - '0';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005539 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005540 ++name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 break;
5542
5543 /* Special key, e.g.: "\<C-W>" */
Bram Moolenaar8c711452005-01-14 21:53:12 +00005544 case '<': extra = trans_special(&p, name, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545 if (extra != 0)
5546 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005547 name += extra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005548 break;
5549 }
5550 /* FALLTHROUGH */
5551
Bram Moolenaar8c711452005-01-14 21:53:12 +00005552 default: MB_COPY_CHAR(p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553 break;
5554 }
5555 }
5556 else
Bram Moolenaar8c711452005-01-14 21:53:12 +00005557 MB_COPY_CHAR(p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005560 *name = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561 *arg = p + 1;
5562
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 return OK;
5564}
5565
5566/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005567 * Allocate a variable for a 'str''ing' constant.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568 * Return OK or FAIL.
5569 */
5570 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005571get_lit_string_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005573 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574 int evaluate;
5575{
5576 char_u *p;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005577 char_u *str;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005578 int reduce = 0;
5579
5580 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005581 * Find the end of the string, skipping ''.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005582 */
5583 for (p = *arg + 1; *p != NUL; mb_ptr_adv(p))
5584 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005585 if (*p == '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005586 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005587 if (p[1] != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005588 break;
5589 ++reduce;
5590 ++p;
5591 }
5592 }
5593
Bram Moolenaar8c711452005-01-14 21:53:12 +00005594 if (*p != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005595 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005596 EMSG2(_("E115: Missing quote: %s"), *arg);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005597 return FAIL;
5598 }
5599
Bram Moolenaar8c711452005-01-14 21:53:12 +00005600 /* If only parsing return after setting "*arg" */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005601 if (!evaluate)
5602 {
5603 *arg = p + 1;
5604 return OK;
5605 }
5606
5607 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005608 * Copy the string into allocated memory, handling '' to ' reduction.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005609 */
5610 str = alloc((unsigned)((p - *arg) - reduce));
5611 if (str == NULL)
5612 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005613 rettv->v_type = VAR_STRING;
5614 rettv->vval.v_string = str;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005615
Bram Moolenaar8c711452005-01-14 21:53:12 +00005616 for (p = *arg + 1; *p != NUL; )
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005617 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005618 if (*p == '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005619 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005620 if (p[1] != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005621 break;
5622 ++p;
5623 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005624 MB_COPY_CHAR(p, str);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005625 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005626 *str = NUL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005627 *arg = p + 1;
5628
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005629 return OK;
5630}
5631
5632/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005633 * Allocate a variable for a List and fill it from "*arg".
5634 * Return OK or FAIL.
5635 */
5636 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005637get_list_tv(arg, rettv, evaluate)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005638 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005639 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005640 int evaluate;
5641{
Bram Moolenaar33570922005-01-25 22:26:29 +00005642 list_T *l = NULL;
5643 typval_T tv;
5644 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005645
5646 if (evaluate)
5647 {
5648 l = list_alloc();
5649 if (l == NULL)
5650 return FAIL;
5651 }
5652
5653 *arg = skipwhite(*arg + 1);
5654 while (**arg != ']' && **arg != NUL)
5655 {
5656 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
5657 goto failret;
5658 if (evaluate)
5659 {
5660 item = listitem_alloc();
5661 if (item != NULL)
5662 {
5663 item->li_tv = tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00005664 item->li_tv.v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005665 list_append(l, item);
5666 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005667 else
5668 clear_tv(&tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005669 }
5670
5671 if (**arg == ']')
5672 break;
5673 if (**arg != ',')
5674 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005675 EMSG2(_("E696: Missing comma in List: %s"), *arg);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005676 goto failret;
5677 }
5678 *arg = skipwhite(*arg + 1);
5679 }
5680
5681 if (**arg != ']')
5682 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005683 EMSG2(_("E697: Missing end of List ']': %s"), *arg);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005684failret:
5685 if (evaluate)
Bram Moolenaar685295c2006-10-15 20:37:38 +00005686 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005687 return FAIL;
5688 }
5689
5690 *arg = skipwhite(*arg + 1);
5691 if (evaluate)
5692 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005693 rettv->v_type = VAR_LIST;
5694 rettv->vval.v_list = l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005695 ++l->lv_refcount;
5696 }
5697
5698 return OK;
5699}
5700
5701/*
5702 * Allocate an empty header for a list.
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00005703 * Caller should take care of the reference count.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005704 */
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00005705 list_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005706list_alloc()
5707{
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00005708 list_T *l;
5709
5710 l = (list_T *)alloc_clear(sizeof(list_T));
5711 if (l != NULL)
5712 {
5713 /* Prepend the list to the list of lists for garbage collection. */
5714 if (first_list != NULL)
5715 first_list->lv_used_prev = l;
5716 l->lv_used_prev = NULL;
5717 l->lv_used_next = first_list;
5718 first_list = l;
5719 }
5720 return l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005721}
5722
5723/*
Bram Moolenaareddf53b2006-02-27 00:11:10 +00005724 * Allocate an empty list for a return value.
5725 * Returns OK or FAIL.
5726 */
5727 static int
5728rettv_list_alloc(rettv)
5729 typval_T *rettv;
5730{
5731 list_T *l = list_alloc();
5732
5733 if (l == NULL)
5734 return FAIL;
5735
5736 rettv->vval.v_list = l;
5737 rettv->v_type = VAR_LIST;
5738 ++l->lv_refcount;
5739 return OK;
5740}
5741
5742/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005743 * Unreference a list: decrement the reference count and free it when it
5744 * becomes zero.
5745 */
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00005746 void
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005747list_unref(l)
Bram Moolenaar33570922005-01-25 22:26:29 +00005748 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005749{
Bram Moolenaar685295c2006-10-15 20:37:38 +00005750 if (l != NULL && --l->lv_refcount <= 0)
5751 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005752}
5753
5754/*
5755 * Free a list, including all items it points to.
5756 * Ignores the reference count.
5757 */
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00005758 void
Bram Moolenaar685295c2006-10-15 20:37:38 +00005759list_free(l, recurse)
5760 list_T *l;
5761 int recurse; /* Free Lists and Dictionaries recursively. */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005762{
Bram Moolenaar33570922005-01-25 22:26:29 +00005763 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005764
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00005765 /* Remove the list from the list of lists for garbage collection. */
5766 if (l->lv_used_prev == NULL)
5767 first_list = l->lv_used_next;
5768 else
5769 l->lv_used_prev->lv_used_next = l->lv_used_next;
5770 if (l->lv_used_next != NULL)
5771 l->lv_used_next->lv_used_prev = l->lv_used_prev;
5772
Bram Moolenaard9fba312005-06-26 22:34:35 +00005773 for (item = l->lv_first; item != NULL; item = l->lv_first)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005774 {
Bram Moolenaard9fba312005-06-26 22:34:35 +00005775 /* Remove the item before deleting it. */
5776 l->lv_first = item->li_next;
Bram Moolenaar685295c2006-10-15 20:37:38 +00005777 if (recurse || (item->li_tv.v_type != VAR_LIST
5778 && item->li_tv.v_type != VAR_DICT))
5779 clear_tv(&item->li_tv);
5780 vim_free(item);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005781 }
5782 vim_free(l);
5783}
5784
5785/*
5786 * Allocate a list item.
5787 */
Bram Moolenaar33570922005-01-25 22:26:29 +00005788 static listitem_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005789listitem_alloc()
5790{
Bram Moolenaar33570922005-01-25 22:26:29 +00005791 return (listitem_T *)alloc(sizeof(listitem_T));
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005792}
5793
5794/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00005795 * Free a list item. Also clears the value. Does not notify watchers.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005796 */
5797 static void
5798listitem_free(item)
Bram Moolenaar33570922005-01-25 22:26:29 +00005799 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005800{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005801 clear_tv(&item->li_tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005802 vim_free(item);
5803}
5804
5805/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00005806 * Remove a list item from a List and free it. Also clears the value.
5807 */
5808 static void
5809listitem_remove(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00005810 list_T *l;
5811 listitem_T *item;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00005812{
5813 list_remove(l, item, item);
5814 listitem_free(item);
5815}
5816
5817/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005818 * Get the number of items in a list.
5819 */
5820 static long
5821list_len(l)
Bram Moolenaar33570922005-01-25 22:26:29 +00005822 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005823{
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005824 if (l == NULL)
5825 return 0L;
Bram Moolenaar758711c2005-02-02 23:11:38 +00005826 return l->lv_len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005827}
5828
5829/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005830 * Return TRUE when two lists have exactly the same values.
5831 */
5832 static int
5833list_equal(l1, l2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005834 list_T *l1;
5835 list_T *l2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005836 int ic; /* ignore case for strings */
5837{
Bram Moolenaar33570922005-01-25 22:26:29 +00005838 listitem_T *item1, *item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005839
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00005840 if (l1 == NULL || l2 == NULL)
5841 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005842 if (l1 == l2)
5843 return TRUE;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005844 if (list_len(l1) != list_len(l2))
5845 return FALSE;
5846
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005847 for (item1 = l1->lv_first, item2 = l2->lv_first;
5848 item1 != NULL && item2 != NULL;
5849 item1 = item1->li_next, item2 = item2->li_next)
5850 if (!tv_equal(&item1->li_tv, &item2->li_tv, ic))
5851 return FALSE;
5852 return item1 == NULL && item2 == NULL;
5853}
5854
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005855#if defined(FEAT_PYTHON) || defined(PROTO)
5856/*
5857 * Return the dictitem that an entry in a hashtable points to.
5858 */
5859 dictitem_T *
5860dict_lookup(hi)
5861 hashitem_T *hi;
5862{
5863 return HI2DI(hi);
5864}
5865#endif
5866
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005867/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005868 * Return TRUE when two dictionaries have exactly the same key/values.
5869 */
5870 static int
5871dict_equal(d1, d2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005872 dict_T *d1;
5873 dict_T *d2;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005874 int ic; /* ignore case for strings */
5875{
Bram Moolenaar33570922005-01-25 22:26:29 +00005876 hashitem_T *hi;
5877 dictitem_T *item2;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005878 int todo;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005879
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00005880 if (d1 == NULL || d2 == NULL)
5881 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005882 if (d1 == d2)
5883 return TRUE;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005884 if (dict_len(d1) != dict_len(d2))
5885 return FALSE;
5886
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005887 todo = (int)d1->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00005888 for (hi = d1->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005889 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005890 if (!HASHITEM_EMPTY(hi))
5891 {
5892 item2 = dict_find(d2, hi->hi_key, -1);
5893 if (item2 == NULL)
5894 return FALSE;
5895 if (!tv_equal(&HI2DI(hi)->di_tv, &item2->di_tv, ic))
5896 return FALSE;
5897 --todo;
5898 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005899 }
5900 return TRUE;
5901}
5902
5903/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005904 * Return TRUE if "tv1" and "tv2" have the same value.
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005905 * Compares the items just like "==" would compare them, but strings and
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005906 * numbers are different. Floats and numbers are also different.
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005907 */
5908 static int
5909tv_equal(tv1, tv2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005910 typval_T *tv1;
5911 typval_T *tv2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005912 int ic; /* ignore case */
5913{
5914 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005915 char_u *s1, *s2;
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005916 static int recursive = 0; /* cach recursive loops */
5917 int r;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005918
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005919 if (tv1->v_type != tv2->v_type)
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005920 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005921 /* Catch lists and dicts that have an endless loop by limiting
5922 * recursiveness to 1000. We guess they are equal then. */
5923 if (recursive >= 1000)
5924 return TRUE;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005925
5926 switch (tv1->v_type)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005927 {
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005928 case VAR_LIST:
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005929 ++recursive;
5930 r = list_equal(tv1->vval.v_list, tv2->vval.v_list, ic);
5931 --recursive;
5932 return r;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005933
5934 case VAR_DICT:
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005935 ++recursive;
5936 r = dict_equal(tv1->vval.v_dict, tv2->vval.v_dict, ic);
5937 --recursive;
5938 return r;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005939
5940 case VAR_FUNC:
5941 return (tv1->vval.v_string != NULL
5942 && tv2->vval.v_string != NULL
5943 && STRCMP(tv1->vval.v_string, tv2->vval.v_string) == 0);
5944
5945 case VAR_NUMBER:
5946 return tv1->vval.v_number == tv2->vval.v_number;
5947
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005948#ifdef FEAT_FLOAT
5949 case VAR_FLOAT:
5950 return tv1->vval.v_float == tv2->vval.v_float;
5951#endif
5952
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005953 case VAR_STRING:
5954 s1 = get_tv_string_buf(tv1, buf1);
5955 s2 = get_tv_string_buf(tv2, buf2);
5956 return ((ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2)) == 0);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005957 }
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005958
5959 EMSG2(_(e_intern2), "tv_equal()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005960 return TRUE;
5961}
5962
5963/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005964 * Locate item with index "n" in list "l" and return it.
5965 * A negative index is counted from the end; -1 is the last item.
5966 * Returns NULL when "n" is out of range.
5967 */
Bram Moolenaar33570922005-01-25 22:26:29 +00005968 static listitem_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005969list_find(l, n)
Bram Moolenaar33570922005-01-25 22:26:29 +00005970 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005971 long n;
5972{
Bram Moolenaar33570922005-01-25 22:26:29 +00005973 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005974 long idx;
5975
5976 if (l == NULL)
5977 return NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +00005978
5979 /* Negative index is relative to the end. */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005980 if (n < 0)
Bram Moolenaar758711c2005-02-02 23:11:38 +00005981 n = l->lv_len + n;
5982
5983 /* Check for index out of range. */
5984 if (n < 0 || n >= l->lv_len)
5985 return NULL;
5986
5987 /* When there is a cached index may start search from there. */
5988 if (l->lv_idx_item != NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005989 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00005990 if (n < l->lv_idx / 2)
5991 {
5992 /* closest to the start of the list */
5993 item = l->lv_first;
5994 idx = 0;
5995 }
5996 else if (n > (l->lv_idx + l->lv_len) / 2)
5997 {
5998 /* closest to the end of the list */
5999 item = l->lv_last;
6000 idx = l->lv_len - 1;
6001 }
6002 else
6003 {
6004 /* closest to the cached index */
6005 item = l->lv_idx_item;
6006 idx = l->lv_idx;
6007 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006008 }
6009 else
6010 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006011 if (n < l->lv_len / 2)
6012 {
6013 /* closest to the start of the list */
6014 item = l->lv_first;
6015 idx = 0;
6016 }
6017 else
6018 {
6019 /* closest to the end of the list */
6020 item = l->lv_last;
6021 idx = l->lv_len - 1;
6022 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006023 }
Bram Moolenaar758711c2005-02-02 23:11:38 +00006024
6025 while (n > idx)
6026 {
6027 /* search forward */
6028 item = item->li_next;
6029 ++idx;
6030 }
6031 while (n < idx)
6032 {
6033 /* search backward */
6034 item = item->li_prev;
6035 --idx;
6036 }
6037
6038 /* cache the used index */
6039 l->lv_idx = idx;
6040 l->lv_idx_item = item;
6041
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006042 return item;
6043}
6044
6045/*
Bram Moolenaara5525202006-03-02 22:52:09 +00006046 * Get list item "l[idx]" as a number.
6047 */
6048 static long
6049list_find_nr(l, idx, errorp)
6050 list_T *l;
6051 long idx;
6052 int *errorp; /* set to TRUE when something wrong */
6053{
6054 listitem_T *li;
6055
6056 li = list_find(l, idx);
6057 if (li == NULL)
6058 {
6059 if (errorp != NULL)
6060 *errorp = TRUE;
6061 return -1L;
6062 }
6063 return get_tv_number_chk(&li->li_tv, errorp);
6064}
6065
6066/*
Bram Moolenaard812df62008-11-09 12:46:09 +00006067 * Get list item "l[idx - 1]" as a string. Returns NULL for failure.
6068 */
6069 char_u *
6070list_find_str(l, idx)
6071 list_T *l;
6072 long idx;
6073{
6074 listitem_T *li;
6075
6076 li = list_find(l, idx - 1);
6077 if (li == NULL)
6078 {
6079 EMSGN(_(e_listidx), idx);
6080 return NULL;
6081 }
6082 return get_tv_string(&li->li_tv);
6083}
6084
6085/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006086 * Locate "item" list "l" and return its index.
6087 * Returns -1 when "item" is not in the list.
6088 */
6089 static long
6090list_idx_of_item(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006091 list_T *l;
6092 listitem_T *item;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006093{
6094 long idx = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +00006095 listitem_T *li;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006096
6097 if (l == NULL)
6098 return -1;
6099 idx = 0;
6100 for (li = l->lv_first; li != NULL && li != item; li = li->li_next)
6101 ++idx;
6102 if (li == NULL)
6103 return -1;
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006104 return idx;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006105}
6106
6107/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006108 * Append item "item" to the end of list "l".
6109 */
6110 static void
6111list_append(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006112 list_T *l;
6113 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006114{
6115 if (l->lv_last == NULL)
6116 {
6117 /* empty list */
6118 l->lv_first = item;
6119 l->lv_last = item;
6120 item->li_prev = NULL;
6121 }
6122 else
6123 {
6124 l->lv_last->li_next = item;
6125 item->li_prev = l->lv_last;
6126 l->lv_last = item;
6127 }
Bram Moolenaar758711c2005-02-02 23:11:38 +00006128 ++l->lv_len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006129 item->li_next = NULL;
6130}
6131
6132/*
Bram Moolenaar33570922005-01-25 22:26:29 +00006133 * Append typval_T "tv" to the end of list "l".
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006134 * Return FAIL when out of memory.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006135 */
6136 static int
6137list_append_tv(l, tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00006138 list_T *l;
6139 typval_T *tv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006140{
Bram Moolenaar05159a02005-02-26 23:04:13 +00006141 listitem_T *li = listitem_alloc();
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006142
Bram Moolenaar05159a02005-02-26 23:04:13 +00006143 if (li == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006144 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00006145 copy_tv(tv, &li->li_tv);
6146 list_append(l, li);
6147 return OK;
6148}
6149
6150/*
Bram Moolenaar2641f772005-03-25 21:58:17 +00006151 * Add a dictionary to a list. Used by getqflist().
Bram Moolenaar05159a02005-02-26 23:04:13 +00006152 * Return FAIL when out of memory.
6153 */
6154 int
6155list_append_dict(list, dict)
6156 list_T *list;
6157 dict_T *dict;
6158{
6159 listitem_T *li = listitem_alloc();
6160
6161 if (li == NULL)
6162 return FAIL;
6163 li->li_tv.v_type = VAR_DICT;
6164 li->li_tv.v_lock = 0;
6165 li->li_tv.vval.v_dict = dict;
6166 list_append(list, li);
6167 ++dict->dv_refcount;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006168 return OK;
6169}
6170
6171/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006172 * Make a copy of "str" and append it as an item to list "l".
Bram Moolenaar4463f292005-09-25 22:20:24 +00006173 * When "len" >= 0 use "str[len]".
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006174 * Returns FAIL when out of memory.
6175 */
Bram Moolenaard812df62008-11-09 12:46:09 +00006176 int
Bram Moolenaar4463f292005-09-25 22:20:24 +00006177list_append_string(l, str, len)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006178 list_T *l;
6179 char_u *str;
Bram Moolenaar4463f292005-09-25 22:20:24 +00006180 int len;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006181{
6182 listitem_T *li = listitem_alloc();
6183
6184 if (li == NULL)
6185 return FAIL;
6186 list_append(l, li);
6187 li->li_tv.v_type = VAR_STRING;
6188 li->li_tv.v_lock = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006189 if (str == NULL)
6190 li->li_tv.vval.v_string = NULL;
6191 else if ((li->li_tv.vval.v_string = (len >= 0 ? vim_strnsave(str, len)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006192 : vim_strsave(str))) == NULL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006193 return FAIL;
6194 return OK;
6195}
6196
6197/*
Bram Moolenaar4463f292005-09-25 22:20:24 +00006198 * Append "n" to list "l".
6199 * Returns FAIL when out of memory.
6200 */
6201 static int
6202list_append_number(l, n)
6203 list_T *l;
6204 varnumber_T n;
6205{
6206 listitem_T *li;
6207
6208 li = listitem_alloc();
6209 if (li == NULL)
6210 return FAIL;
6211 li->li_tv.v_type = VAR_NUMBER;
6212 li->li_tv.v_lock = 0;
6213 li->li_tv.vval.v_number = n;
6214 list_append(l, li);
6215 return OK;
6216}
6217
6218/*
Bram Moolenaar33570922005-01-25 22:26:29 +00006219 * Insert typval_T "tv" in list "l" before "item".
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006220 * If "item" is NULL append at the end.
6221 * Return FAIL when out of memory.
6222 */
6223 static int
6224list_insert_tv(l, tv, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006225 list_T *l;
6226 typval_T *tv;
6227 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006228{
Bram Moolenaar33570922005-01-25 22:26:29 +00006229 listitem_T *ni = listitem_alloc();
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006230
6231 if (ni == NULL)
6232 return FAIL;
6233 copy_tv(tv, &ni->li_tv);
6234 if (item == NULL)
6235 /* Append new item at end of list. */
6236 list_append(l, ni);
6237 else
6238 {
6239 /* Insert new item before existing item. */
6240 ni->li_prev = item->li_prev;
6241 ni->li_next = item;
6242 if (item->li_prev == NULL)
Bram Moolenaar758711c2005-02-02 23:11:38 +00006243 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006244 l->lv_first = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006245 ++l->lv_idx;
6246 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006247 else
Bram Moolenaar758711c2005-02-02 23:11:38 +00006248 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006249 item->li_prev->li_next = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006250 l->lv_idx_item = NULL;
6251 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006252 item->li_prev = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006253 ++l->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006254 }
6255 return OK;
6256}
6257
6258/*
6259 * Extend "l1" with "l2".
6260 * If "bef" is NULL append at the end, otherwise insert before this item.
6261 * Returns FAIL when out of memory.
6262 */
6263 static int
6264list_extend(l1, l2, bef)
Bram Moolenaar33570922005-01-25 22:26:29 +00006265 list_T *l1;
6266 list_T *l2;
6267 listitem_T *bef;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006268{
Bram Moolenaar33570922005-01-25 22:26:29 +00006269 listitem_T *item;
Bram Moolenaardc9cf9c2008-08-08 10:36:31 +00006270 int todo = l2->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006271
Bram Moolenaardc9cf9c2008-08-08 10:36:31 +00006272 /* We also quit the loop when we have inserted the original item count of
6273 * the list, avoid a hang when we extend a list with itself. */
6274 for (item = l2->lv_first; item != NULL && --todo >= 0; item = item->li_next)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006275 if (list_insert_tv(l1, &item->li_tv, bef) == FAIL)
6276 return FAIL;
6277 return OK;
6278}
6279
6280/*
6281 * Concatenate lists "l1" and "l2" into a new list, stored in "tv".
6282 * Return FAIL when out of memory.
6283 */
6284 static int
6285list_concat(l1, l2, tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00006286 list_T *l1;
6287 list_T *l2;
6288 typval_T *tv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006289{
Bram Moolenaar33570922005-01-25 22:26:29 +00006290 list_T *l;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006291
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00006292 if (l1 == NULL || l2 == NULL)
6293 return FAIL;
6294
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006295 /* make a copy of the first list. */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006296 l = list_copy(l1, FALSE, 0);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006297 if (l == NULL)
6298 return FAIL;
6299 tv->v_type = VAR_LIST;
6300 tv->vval.v_list = l;
6301
6302 /* append all items from the second list */
6303 return list_extend(l, l2, NULL);
6304}
6305
6306/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006307 * Make a copy of list "orig". Shallow if "deep" is FALSE.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006308 * The refcount of the new list is set to 1.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006309 * See item_copy() for "copyID".
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006310 * Returns NULL when out of memory.
6311 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006312 static list_T *
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006313list_copy(orig, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006314 list_T *orig;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006315 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006316 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006317{
Bram Moolenaar33570922005-01-25 22:26:29 +00006318 list_T *copy;
6319 listitem_T *item;
6320 listitem_T *ni;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006321
6322 if (orig == NULL)
6323 return NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006324
6325 copy = list_alloc();
6326 if (copy != NULL)
6327 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006328 if (copyID != 0)
6329 {
6330 /* Do this before adding the items, because one of the items may
6331 * refer back to this list. */
6332 orig->lv_copyID = copyID;
6333 orig->lv_copylist = copy;
6334 }
6335 for (item = orig->lv_first; item != NULL && !got_int;
6336 item = item->li_next)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006337 {
6338 ni = listitem_alloc();
6339 if (ni == NULL)
6340 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006341 if (deep)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006342 {
6343 if (item_copy(&item->li_tv, &ni->li_tv, deep, copyID) == FAIL)
6344 {
6345 vim_free(ni);
6346 break;
6347 }
6348 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006349 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00006350 copy_tv(&item->li_tv, &ni->li_tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006351 list_append(copy, ni);
6352 }
6353 ++copy->lv_refcount;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006354 if (item != NULL)
6355 {
6356 list_unref(copy);
6357 copy = NULL;
6358 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006359 }
6360
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006361 return copy;
6362}
6363
6364/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006365 * Remove items "item" to "item2" from list "l".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006366 * Does not free the listitem or the value!
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006367 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006368 static void
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006369list_remove(l, item, item2)
Bram Moolenaar33570922005-01-25 22:26:29 +00006370 list_T *l;
6371 listitem_T *item;
6372 listitem_T *item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006373{
Bram Moolenaar33570922005-01-25 22:26:29 +00006374 listitem_T *ip;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006375
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006376 /* notify watchers */
6377 for (ip = item; ip != NULL; ip = ip->li_next)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006378 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006379 --l->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006380 list_fix_watch(l, ip);
6381 if (ip == item2)
6382 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006383 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006384
6385 if (item2->li_next == NULL)
6386 l->lv_last = item->li_prev;
6387 else
6388 item2->li_next->li_prev = item->li_prev;
6389 if (item->li_prev == NULL)
6390 l->lv_first = item2->li_next;
6391 else
6392 item->li_prev->li_next = item2->li_next;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006393 l->lv_idx_item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006394}
6395
6396/*
6397 * Return an allocated string with the string representation of a list.
6398 * May return NULL.
6399 */
6400 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006401list2string(tv, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006402 typval_T *tv;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006403 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006404{
6405 garray_T ga;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006406
6407 if (tv->vval.v_list == NULL)
6408 return NULL;
6409 ga_init2(&ga, (int)sizeof(char), 80);
6410 ga_append(&ga, '[');
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006411 if (list_join(&ga, tv->vval.v_list, (char_u *)", ", FALSE, copyID) == FAIL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006412 {
6413 vim_free(ga.ga_data);
6414 return NULL;
6415 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006416 ga_append(&ga, ']');
6417 ga_append(&ga, NUL);
6418 return (char_u *)ga.ga_data;
6419}
6420
6421/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006422 * Join list "l" into a string in "*gap", using separator "sep".
6423 * When "echo" is TRUE use String as echoed, otherwise as inside a List.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006424 * Return FAIL or OK.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006425 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006426 static int
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006427list_join(gap, l, sep, echo, copyID)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006428 garray_T *gap;
Bram Moolenaar33570922005-01-25 22:26:29 +00006429 list_T *l;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006430 char_u *sep;
6431 int echo;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006432 int copyID;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006433{
6434 int first = TRUE;
6435 char_u *tofree;
6436 char_u numbuf[NUMBUFLEN];
Bram Moolenaar33570922005-01-25 22:26:29 +00006437 listitem_T *item;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006438 char_u *s;
6439
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006440 for (item = l->lv_first; item != NULL && !got_int; item = item->li_next)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006441 {
6442 if (first)
6443 first = FALSE;
6444 else
6445 ga_concat(gap, sep);
6446
6447 if (echo)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006448 s = echo_string(&item->li_tv, &tofree, numbuf, copyID);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006449 else
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006450 s = tv2string(&item->li_tv, &tofree, numbuf, copyID);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006451 if (s != NULL)
6452 ga_concat(gap, s);
6453 vim_free(tofree);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006454 if (s == NULL)
6455 return FAIL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006456 }
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006457 return OK;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006458}
6459
6460/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006461 * Garbage collection for lists and dictionaries.
6462 *
6463 * We use reference counts to be able to free most items right away when they
6464 * are no longer used. But for composite items it's possible that it becomes
6465 * unused while the reference count is > 0: When there is a recursive
6466 * reference. Example:
6467 * :let l = [1, 2, 3]
6468 * :let d = {9: l}
6469 * :let l[1] = d
6470 *
6471 * Since this is quite unusual we handle this with garbage collection: every
6472 * once in a while find out which lists and dicts are not referenced from any
6473 * variable.
6474 *
6475 * Here is a good reference text about garbage collection (refers to Python
6476 * but it applies to all reference-counting mechanisms):
6477 * http://python.ca/nas/python/gc/
Bram Moolenaard9fba312005-06-26 22:34:35 +00006478 */
Bram Moolenaard9fba312005-06-26 22:34:35 +00006479
6480/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006481 * Do garbage collection for lists and dicts.
6482 * Return TRUE if some memory was freed.
Bram Moolenaard9fba312005-06-26 22:34:35 +00006483 */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006484 int
6485garbage_collect()
Bram Moolenaard9fba312005-06-26 22:34:35 +00006486{
6487 dict_T *dd;
6488 list_T *ll;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006489 int copyID = ++current_copyID;
6490 buf_T *buf;
6491 win_T *wp;
6492 int i;
6493 funccall_T *fc;
6494 int did_free = FALSE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006495#ifdef FEAT_WINDOWS
6496 tabpage_T *tp;
6497#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006498
Bram Moolenaar9fecb462006-09-05 10:59:47 +00006499 /* Only do this once. */
6500 want_garbage_collect = FALSE;
6501 may_garbage_collect = FALSE;
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00006502 garbage_collect_at_exit = FALSE;
Bram Moolenaar9fecb462006-09-05 10:59:47 +00006503
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006504 /*
6505 * 1. Go through all accessible variables and mark all lists and dicts
6506 * with copyID.
6507 */
6508 /* script-local variables */
6509 for (i = 1; i <= ga_scripts.ga_len; ++i)
6510 set_ref_in_ht(&SCRIPT_VARS(i), copyID);
6511
6512 /* buffer-local variables */
6513 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
6514 set_ref_in_ht(&buf->b_vars.dv_hashtab, copyID);
6515
6516 /* window-local variables */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006517 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006518 set_ref_in_ht(&wp->w_vars.dv_hashtab, copyID);
6519
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006520#ifdef FEAT_WINDOWS
6521 /* tabpage-local variables */
6522 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6523 set_ref_in_ht(&tp->tp_vars.dv_hashtab, copyID);
6524#endif
6525
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006526 /* global variables */
6527 set_ref_in_ht(&globvarht, copyID);
6528
6529 /* function-local variables */
6530 for (fc = current_funccal; fc != NULL; fc = fc->caller)
6531 {
6532 set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID);
6533 set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID);
6534 }
6535
Bram Moolenaard812df62008-11-09 12:46:09 +00006536 /* v: vars */
6537 set_ref_in_ht(&vimvarht, copyID);
6538
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006539 /*
6540 * 2. Go through the list of dicts and free items without the copyID.
6541 */
6542 for (dd = first_dict; dd != NULL; )
6543 if (dd->dv_copyID != copyID)
6544 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006545 /* Free the Dictionary and ordinary items it contains, but don't
6546 * recurse into Lists and Dictionaries, they will be in the list
6547 * of dicts or list of lists. */
6548 dict_free(dd, FALSE);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006549 did_free = TRUE;
6550
6551 /* restart, next dict may also have been freed */
6552 dd = first_dict;
6553 }
6554 else
6555 dd = dd->dv_used_next;
6556
6557 /*
6558 * 3. Go through the list of lists and free items without the copyID.
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00006559 * But don't free a list that has a watcher (used in a for loop), these
6560 * are not referenced anywhere.
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006561 */
6562 for (ll = first_list; ll != NULL; )
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00006563 if (ll->lv_copyID != copyID && ll->lv_watch == NULL)
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006564 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006565 /* Free the List and ordinary items it contains, but don't recurse
6566 * into Lists and Dictionaries, they will be in the list of dicts
6567 * or list of lists. */
6568 list_free(ll, FALSE);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006569 did_free = TRUE;
6570
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00006571 /* restart, next list may also have been freed */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006572 ll = first_list;
6573 }
6574 else
6575 ll = ll->lv_used_next;
6576
6577 return did_free;
6578}
6579
6580/*
6581 * Mark all lists and dicts referenced through hashtab "ht" with "copyID".
6582 */
6583 static void
6584set_ref_in_ht(ht, copyID)
6585 hashtab_T *ht;
6586 int copyID;
6587{
6588 int todo;
6589 hashitem_T *hi;
6590
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006591 todo = (int)ht->ht_used;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006592 for (hi = ht->ht_array; todo > 0; ++hi)
6593 if (!HASHITEM_EMPTY(hi))
6594 {
6595 --todo;
6596 set_ref_in_item(&HI2DI(hi)->di_tv, copyID);
6597 }
6598}
6599
6600/*
6601 * Mark all lists and dicts referenced through list "l" with "copyID".
6602 */
6603 static void
6604set_ref_in_list(l, copyID)
6605 list_T *l;
6606 int copyID;
6607{
6608 listitem_T *li;
6609
6610 for (li = l->lv_first; li != NULL; li = li->li_next)
6611 set_ref_in_item(&li->li_tv, copyID);
6612}
6613
6614/*
6615 * Mark all lists and dicts referenced through typval "tv" with "copyID".
6616 */
6617 static void
6618set_ref_in_item(tv, copyID)
6619 typval_T *tv;
6620 int copyID;
6621{
6622 dict_T *dd;
6623 list_T *ll;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006624
6625 switch (tv->v_type)
6626 {
6627 case VAR_DICT:
6628 dd = tv->vval.v_dict;
Bram Moolenaard812df62008-11-09 12:46:09 +00006629 if (dd != NULL && dd->dv_copyID != copyID)
Bram Moolenaard9fba312005-06-26 22:34:35 +00006630 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006631 /* Didn't see this dict yet. */
6632 dd->dv_copyID = copyID;
6633 set_ref_in_ht(&dd->dv_hashtab, copyID);
Bram Moolenaard9fba312005-06-26 22:34:35 +00006634 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006635 break;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006636
6637 case VAR_LIST:
6638 ll = tv->vval.v_list;
Bram Moolenaard812df62008-11-09 12:46:09 +00006639 if (ll != NULL && ll->lv_copyID != copyID)
Bram Moolenaard9fba312005-06-26 22:34:35 +00006640 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006641 /* Didn't see this list yet. */
6642 ll->lv_copyID = copyID;
6643 set_ref_in_list(ll, copyID);
Bram Moolenaard9fba312005-06-26 22:34:35 +00006644 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006645 break;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006646 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006647 return;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006648}
6649
6650/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006651 * Allocate an empty header for a dictionary.
6652 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00006653 dict_T *
Bram Moolenaar8c711452005-01-14 21:53:12 +00006654dict_alloc()
6655{
Bram Moolenaar33570922005-01-25 22:26:29 +00006656 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006657
Bram Moolenaar33570922005-01-25 22:26:29 +00006658 d = (dict_T *)alloc(sizeof(dict_T));
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006659 if (d != NULL)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006660 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006661 /* Add the list to the list of dicts for garbage collection. */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006662 if (first_dict != NULL)
6663 first_dict->dv_used_prev = d;
6664 d->dv_used_next = first_dict;
6665 d->dv_used_prev = NULL;
Bram Moolenaar685295c2006-10-15 20:37:38 +00006666 first_dict = d;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006667
Bram Moolenaar33570922005-01-25 22:26:29 +00006668 hash_init(&d->dv_hashtab);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006669 d->dv_lock = 0;
6670 d->dv_refcount = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006671 d->dv_copyID = 0;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006672 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006673 return d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006674}
6675
6676/*
6677 * Unreference a Dictionary: decrement the reference count and free it when it
6678 * becomes zero.
6679 */
6680 static void
6681dict_unref(d)
Bram Moolenaar33570922005-01-25 22:26:29 +00006682 dict_T *d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006683{
Bram Moolenaar685295c2006-10-15 20:37:38 +00006684 if (d != NULL && --d->dv_refcount <= 0)
6685 dict_free(d, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006686}
6687
6688/*
6689 * Free a Dictionary, including all items it contains.
6690 * Ignores the reference count.
6691 */
6692 static void
Bram Moolenaar685295c2006-10-15 20:37:38 +00006693dict_free(d, recurse)
6694 dict_T *d;
6695 int recurse; /* Free Lists and Dictionaries recursively. */
Bram Moolenaar8c711452005-01-14 21:53:12 +00006696{
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006697 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00006698 hashitem_T *hi;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006699 dictitem_T *di;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006700
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006701 /* Remove the dict from the list of dicts for garbage collection. */
6702 if (d->dv_used_prev == NULL)
6703 first_dict = d->dv_used_next;
6704 else
6705 d->dv_used_prev->dv_used_next = d->dv_used_next;
6706 if (d->dv_used_next != NULL)
6707 d->dv_used_next->dv_used_prev = d->dv_used_prev;
6708
6709 /* Lock the hashtab, we don't want it to resize while freeing items. */
Bram Moolenaard9fba312005-06-26 22:34:35 +00006710 hash_lock(&d->dv_hashtab);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006711 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00006712 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +00006713 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006714 if (!HASHITEM_EMPTY(hi))
6715 {
Bram Moolenaard9fba312005-06-26 22:34:35 +00006716 /* Remove the item before deleting it, just in case there is
6717 * something recursive causing trouble. */
6718 di = HI2DI(hi);
6719 hash_remove(&d->dv_hashtab, hi);
Bram Moolenaar685295c2006-10-15 20:37:38 +00006720 if (recurse || (di->di_tv.v_type != VAR_LIST
6721 && di->di_tv.v_type != VAR_DICT))
6722 clear_tv(&di->di_tv);
6723 vim_free(di);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006724 --todo;
6725 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00006726 }
Bram Moolenaar33570922005-01-25 22:26:29 +00006727 hash_clear(&d->dv_hashtab);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006728 vim_free(d);
6729}
6730
6731/*
6732 * Allocate a Dictionary item.
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006733 * The "key" is copied to the new item.
6734 * Note that the value of the item "di_tv" still needs to be initialized!
6735 * Returns NULL when out of memory.
Bram Moolenaar8c711452005-01-14 21:53:12 +00006736 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006737 static dictitem_T *
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006738dictitem_alloc(key)
6739 char_u *key;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006740{
Bram Moolenaar33570922005-01-25 22:26:29 +00006741 dictitem_T *di;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006742
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006743 di = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T) + STRLEN(key)));
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006744 if (di != NULL)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006745 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006746 STRCPY(di->di_key, key);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006747 di->di_flags = 0;
6748 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006749 return di;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006750}
6751
6752/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006753 * Make a copy of a Dictionary item.
6754 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006755 static dictitem_T *
Bram Moolenaare9a41262005-01-15 22:18:47 +00006756dictitem_copy(org)
Bram Moolenaar33570922005-01-25 22:26:29 +00006757 dictitem_T *org;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006758{
Bram Moolenaar33570922005-01-25 22:26:29 +00006759 dictitem_T *di;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006760
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006761 di = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
6762 + STRLEN(org->di_key)));
Bram Moolenaare9a41262005-01-15 22:18:47 +00006763 if (di != NULL)
6764 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006765 STRCPY(di->di_key, org->di_key);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006766 di->di_flags = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006767 copy_tv(&org->di_tv, &di->di_tv);
6768 }
6769 return di;
6770}
6771
6772/*
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006773 * Remove item "item" from Dictionary "dict" and free it.
6774 */
6775 static void
6776dictitem_remove(dict, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006777 dict_T *dict;
6778 dictitem_T *item;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006779{
Bram Moolenaar33570922005-01-25 22:26:29 +00006780 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006781
Bram Moolenaar33570922005-01-25 22:26:29 +00006782 hi = hash_find(&dict->dv_hashtab, item->di_key);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006783 if (HASHITEM_EMPTY(hi))
6784 EMSG2(_(e_intern2), "dictitem_remove()");
6785 else
Bram Moolenaar33570922005-01-25 22:26:29 +00006786 hash_remove(&dict->dv_hashtab, hi);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006787 dictitem_free(item);
6788}
6789
6790/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006791 * Free a dict item. Also clears the value.
6792 */
6793 static void
6794dictitem_free(item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006795 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006796{
Bram Moolenaar8c711452005-01-14 21:53:12 +00006797 clear_tv(&item->di_tv);
6798 vim_free(item);
6799}
6800
6801/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006802 * Make a copy of dict "d". Shallow if "deep" is FALSE.
6803 * The refcount of the new dict is set to 1.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006804 * See item_copy() for "copyID".
Bram Moolenaare9a41262005-01-15 22:18:47 +00006805 * Returns NULL when out of memory.
6806 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006807 static dict_T *
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006808dict_copy(orig, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006809 dict_T *orig;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006810 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006811 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006812{
Bram Moolenaar33570922005-01-25 22:26:29 +00006813 dict_T *copy;
6814 dictitem_T *di;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006815 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00006816 hashitem_T *hi;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006817
6818 if (orig == NULL)
6819 return NULL;
6820
6821 copy = dict_alloc();
6822 if (copy != NULL)
6823 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006824 if (copyID != 0)
6825 {
6826 orig->dv_copyID = copyID;
6827 orig->dv_copydict = copy;
6828 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006829 todo = (int)orig->dv_hashtab.ht_used;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006830 for (hi = orig->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +00006831 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006832 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +00006833 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006834 --todo;
6835
6836 di = dictitem_alloc(hi->hi_key);
6837 if (di == NULL)
6838 break;
6839 if (deep)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006840 {
6841 if (item_copy(&HI2DI(hi)->di_tv, &di->di_tv, deep,
6842 copyID) == FAIL)
6843 {
6844 vim_free(di);
6845 break;
6846 }
6847 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006848 else
6849 copy_tv(&HI2DI(hi)->di_tv, &di->di_tv);
6850 if (dict_add(copy, di) == FAIL)
6851 {
6852 dictitem_free(di);
6853 break;
6854 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006855 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006856 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006857
Bram Moolenaare9a41262005-01-15 22:18:47 +00006858 ++copy->dv_refcount;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006859 if (todo > 0)
6860 {
6861 dict_unref(copy);
6862 copy = NULL;
6863 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006864 }
6865
6866 return copy;
6867}
6868
6869/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006870 * Add item "item" to Dictionary "d".
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006871 * Returns FAIL when out of memory and when key already existed.
Bram Moolenaar8c711452005-01-14 21:53:12 +00006872 */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006873 static int
Bram Moolenaar8c711452005-01-14 21:53:12 +00006874dict_add(d, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006875 dict_T *d;
6876 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006877{
Bram Moolenaar33570922005-01-25 22:26:29 +00006878 return hash_add(&d->dv_hashtab, item->di_key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006879}
6880
Bram Moolenaar8c711452005-01-14 21:53:12 +00006881/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00006882 * Add a number or string entry to dictionary "d".
6883 * When "str" is NULL use number "nr", otherwise use "str".
6884 * Returns FAIL when out of memory and when key already exists.
6885 */
6886 int
6887dict_add_nr_str(d, key, nr, str)
6888 dict_T *d;
6889 char *key;
6890 long nr;
6891 char_u *str;
6892{
6893 dictitem_T *item;
6894
6895 item = dictitem_alloc((char_u *)key);
6896 if (item == NULL)
6897 return FAIL;
6898 item->di_tv.v_lock = 0;
6899 if (str == NULL)
6900 {
6901 item->di_tv.v_type = VAR_NUMBER;
6902 item->di_tv.vval.v_number = nr;
6903 }
6904 else
6905 {
6906 item->di_tv.v_type = VAR_STRING;
6907 item->di_tv.vval.v_string = vim_strsave(str);
6908 }
6909 if (dict_add(d, item) == FAIL)
6910 {
6911 dictitem_free(item);
6912 return FAIL;
6913 }
6914 return OK;
6915}
6916
6917/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006918 * Get the number of items in a Dictionary.
6919 */
6920 static long
6921dict_len(d)
Bram Moolenaar33570922005-01-25 22:26:29 +00006922 dict_T *d;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006923{
Bram Moolenaare9a41262005-01-15 22:18:47 +00006924 if (d == NULL)
6925 return 0L;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006926 return (long)d->dv_hashtab.ht_used;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006927}
6928
6929/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006930 * Find item "key[len]" in Dictionary "d".
6931 * If "len" is negative use strlen(key).
6932 * Returns NULL when not found.
6933 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006934 static dictitem_T *
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006935dict_find(d, key, len)
Bram Moolenaar33570922005-01-25 22:26:29 +00006936 dict_T *d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006937 char_u *key;
6938 int len;
6939{
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006940#define AKEYLEN 200
6941 char_u buf[AKEYLEN];
6942 char_u *akey;
6943 char_u *tofree = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00006944 hashitem_T *hi;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006945
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006946 if (len < 0)
6947 akey = key;
6948 else if (len >= AKEYLEN)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006949 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006950 tofree = akey = vim_strnsave(key, len);
6951 if (akey == NULL)
6952 return NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006953 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006954 else
6955 {
6956 /* Avoid a malloc/free by using buf[]. */
Bram Moolenaarce0842a2005-07-18 21:58:11 +00006957 vim_strncpy(buf, key, len);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006958 akey = buf;
6959 }
6960
Bram Moolenaar33570922005-01-25 22:26:29 +00006961 hi = hash_find(&d->dv_hashtab, akey);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006962 vim_free(tofree);
6963 if (HASHITEM_EMPTY(hi))
6964 return NULL;
6965 return HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006966}
6967
6968/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006969 * Get a string item from a dictionary.
6970 * When "save" is TRUE allocate memory for it.
Bram Moolenaar2641f772005-03-25 21:58:17 +00006971 * Returns NULL if the entry doesn't exist or out of memory.
6972 */
6973 char_u *
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006974get_dict_string(d, key, save)
Bram Moolenaar2641f772005-03-25 21:58:17 +00006975 dict_T *d;
6976 char_u *key;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006977 int save;
Bram Moolenaar2641f772005-03-25 21:58:17 +00006978{
6979 dictitem_T *di;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006980 char_u *s;
Bram Moolenaar2641f772005-03-25 21:58:17 +00006981
6982 di = dict_find(d, key, -1);
6983 if (di == NULL)
6984 return NULL;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006985 s = get_tv_string(&di->di_tv);
6986 if (save && s != NULL)
6987 s = vim_strsave(s);
6988 return s;
Bram Moolenaar2641f772005-03-25 21:58:17 +00006989}
6990
6991/*
6992 * Get a number item from a dictionary.
6993 * Returns 0 if the entry doesn't exist or out of memory.
6994 */
6995 long
6996get_dict_number(d, key)
6997 dict_T *d;
6998 char_u *key;
6999{
7000 dictitem_T *di;
7001
7002 di = dict_find(d, key, -1);
7003 if (di == NULL)
7004 return 0;
7005 return get_tv_number(&di->di_tv);
7006}
7007
7008/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00007009 * Return an allocated string with the string representation of a Dictionary.
7010 * May return NULL.
7011 */
7012 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007013dict2string(tv, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007014 typval_T *tv;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007015 int copyID;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007016{
7017 garray_T ga;
7018 int first = TRUE;
7019 char_u *tofree;
7020 char_u numbuf[NUMBUFLEN];
Bram Moolenaar33570922005-01-25 22:26:29 +00007021 hashitem_T *hi;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007022 char_u *s;
Bram Moolenaar33570922005-01-25 22:26:29 +00007023 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007024 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007025
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007026 if ((d = tv->vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007027 return NULL;
7028 ga_init2(&ga, (int)sizeof(char), 80);
7029 ga_append(&ga, '{');
7030
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007031 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007032 for (hi = d->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007033 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007034 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +00007035 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007036 --todo;
7037
7038 if (first)
7039 first = FALSE;
7040 else
7041 ga_concat(&ga, (char_u *)", ");
7042
7043 tofree = string_quote(hi->hi_key, FALSE);
7044 if (tofree != NULL)
7045 {
7046 ga_concat(&ga, tofree);
7047 vim_free(tofree);
7048 }
7049 ga_concat(&ga, (char_u *)": ");
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007050 s = tv2string(&HI2DI(hi)->di_tv, &tofree, numbuf, copyID);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007051 if (s != NULL)
7052 ga_concat(&ga, s);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007053 vim_free(tofree);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007054 if (s == NULL)
7055 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007056 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007057 }
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007058 if (todo > 0)
7059 {
7060 vim_free(ga.ga_data);
7061 return NULL;
7062 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007063
7064 ga_append(&ga, '}');
7065 ga_append(&ga, NUL);
7066 return (char_u *)ga.ga_data;
7067}
7068
7069/*
7070 * Allocate a variable for a Dictionary and fill it from "*arg".
7071 * Return OK or FAIL. Returns NOTDONE for {expr}.
7072 */
7073 static int
7074get_dict_tv(arg, rettv, evaluate)
7075 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00007076 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007077 int evaluate;
7078{
Bram Moolenaar33570922005-01-25 22:26:29 +00007079 dict_T *d = NULL;
7080 typval_T tvkey;
7081 typval_T tv;
Bram Moolenaarad6c2272007-09-17 20:21:33 +00007082 char_u *key = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00007083 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007084 char_u *start = skipwhite(*arg + 1);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007085 char_u buf[NUMBUFLEN];
Bram Moolenaar8c711452005-01-14 21:53:12 +00007086
7087 /*
7088 * First check if it's not a curly-braces thing: {expr}.
7089 * Must do this without evaluating, otherwise a function may be called
7090 * twice. Unfortunately this means we need to call eval1() twice for the
7091 * first item.
Bram Moolenaare9a41262005-01-15 22:18:47 +00007092 * But {} is an empty Dictionary.
Bram Moolenaar8c711452005-01-14 21:53:12 +00007093 */
Bram Moolenaare9a41262005-01-15 22:18:47 +00007094 if (*start != '}')
7095 {
7096 if (eval1(&start, &tv, FALSE) == FAIL) /* recursive! */
7097 return FAIL;
7098 if (*start == '}')
7099 return NOTDONE;
7100 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007101
7102 if (evaluate)
7103 {
7104 d = dict_alloc();
7105 if (d == NULL)
7106 return FAIL;
7107 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007108 tvkey.v_type = VAR_UNKNOWN;
7109 tv.v_type = VAR_UNKNOWN;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007110
7111 *arg = skipwhite(*arg + 1);
7112 while (**arg != '}' && **arg != NUL)
7113 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007114 if (eval1(arg, &tvkey, evaluate) == FAIL) /* recursive! */
Bram Moolenaar8c711452005-01-14 21:53:12 +00007115 goto failret;
7116 if (**arg != ':')
7117 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007118 EMSG2(_("E720: Missing colon in Dictionary: %s"), *arg);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007119 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007120 goto failret;
7121 }
Bram Moolenaar037cc642007-09-13 18:40:54 +00007122 if (evaluate)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007123 {
Bram Moolenaar037cc642007-09-13 18:40:54 +00007124 key = get_tv_string_buf_chk(&tvkey, buf);
7125 if (key == NULL || *key == NUL)
7126 {
7127 /* "key" is NULL when get_tv_string_buf_chk() gave an errmsg */
7128 if (key != NULL)
7129 EMSG(_(e_emptykey));
7130 clear_tv(&tvkey);
7131 goto failret;
7132 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007133 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007134
7135 *arg = skipwhite(*arg + 1);
7136 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
7137 {
Bram Moolenaar037cc642007-09-13 18:40:54 +00007138 if (evaluate)
7139 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007140 goto failret;
7141 }
7142 if (evaluate)
7143 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007144 item = dict_find(d, key, -1);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007145 if (item != NULL)
7146 {
Bram Moolenaarb982ca52005-03-28 21:02:15 +00007147 EMSG2(_("E721: Duplicate key in Dictionary: \"%s\""), key);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007148 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007149 clear_tv(&tv);
7150 goto failret;
7151 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007152 item = dictitem_alloc(key);
7153 clear_tv(&tvkey);
7154 if (item != NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007155 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00007156 item->di_tv = tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00007157 item->di_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007158 if (dict_add(d, item) == FAIL)
7159 dictitem_free(item);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007160 }
7161 }
7162
7163 if (**arg == '}')
7164 break;
7165 if (**arg != ',')
7166 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007167 EMSG2(_("E722: Missing comma in Dictionary: %s"), *arg);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007168 goto failret;
7169 }
7170 *arg = skipwhite(*arg + 1);
7171 }
7172
7173 if (**arg != '}')
7174 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007175 EMSG2(_("E723: Missing end of Dictionary '}': %s"), *arg);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007176failret:
7177 if (evaluate)
Bram Moolenaar685295c2006-10-15 20:37:38 +00007178 dict_free(d, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007179 return FAIL;
7180 }
7181
7182 *arg = skipwhite(*arg + 1);
7183 if (evaluate)
7184 {
7185 rettv->v_type = VAR_DICT;
7186 rettv->vval.v_dict = d;
7187 ++d->dv_refcount;
7188 }
7189
7190 return OK;
7191}
7192
Bram Moolenaar8c711452005-01-14 21:53:12 +00007193/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007194 * Return a string with the string representation of a variable.
7195 * If the memory is allocated "tofree" is set to it, otherwise NULL.
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007196 * "numbuf" is used for a number.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007197 * Does not put quotes around strings, as ":echo" displays values.
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007198 * When "copyID" is not NULL replace recursive lists and dicts with "...".
Bram Moolenaar92c5aba2007-08-14 20:29:31 +00007199 * May return NULL.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007200 */
7201 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007202echo_string(tv, tofree, numbuf, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007203 typval_T *tv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007204 char_u **tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007205 char_u *numbuf;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007206 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007207{
Bram Moolenaare9a41262005-01-15 22:18:47 +00007208 static int recurse = 0;
7209 char_u *r = NULL;
7210
Bram Moolenaar33570922005-01-25 22:26:29 +00007211 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +00007212 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007213 EMSG(_("E724: variable nested too deep for displaying"));
Bram Moolenaare9a41262005-01-15 22:18:47 +00007214 *tofree = NULL;
7215 return NULL;
7216 }
7217 ++recurse;
7218
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007219 switch (tv->v_type)
7220 {
7221 case VAR_FUNC:
7222 *tofree = NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00007223 r = tv->vval.v_string;
7224 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007225
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007226 case VAR_LIST:
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007227 if (tv->vval.v_list == NULL)
7228 {
7229 *tofree = NULL;
7230 r = NULL;
7231 }
7232 else if (copyID != 0 && tv->vval.v_list->lv_copyID == copyID)
7233 {
7234 *tofree = NULL;
7235 r = (char_u *)"[...]";
7236 }
7237 else
7238 {
7239 tv->vval.v_list->lv_copyID = copyID;
7240 *tofree = list2string(tv, copyID);
7241 r = *tofree;
7242 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007243 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007244
Bram Moolenaar8c711452005-01-14 21:53:12 +00007245 case VAR_DICT:
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007246 if (tv->vval.v_dict == NULL)
7247 {
7248 *tofree = NULL;
7249 r = NULL;
7250 }
7251 else if (copyID != 0 && tv->vval.v_dict->dv_copyID == copyID)
7252 {
7253 *tofree = NULL;
7254 r = (char_u *)"{...}";
7255 }
7256 else
7257 {
7258 tv->vval.v_dict->dv_copyID = copyID;
7259 *tofree = dict2string(tv, copyID);
7260 r = *tofree;
7261 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007262 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007263
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007264 case VAR_STRING:
7265 case VAR_NUMBER:
Bram Moolenaare9a41262005-01-15 22:18:47 +00007266 *tofree = NULL;
7267 r = get_tv_string_buf(tv, numbuf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007268 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007269
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007270#ifdef FEAT_FLOAT
7271 case VAR_FLOAT:
7272 *tofree = NULL;
7273 vim_snprintf((char *)numbuf, NUMBUFLEN, "%g", tv->vval.v_float);
7274 r = numbuf;
7275 break;
7276#endif
7277
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007278 default:
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007279 EMSG2(_(e_intern2), "echo_string()");
Bram Moolenaare9a41262005-01-15 22:18:47 +00007280 *tofree = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007281 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007282
7283 --recurse;
7284 return r;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007285}
7286
7287/*
7288 * Return a string with the string representation of a variable.
7289 * If the memory is allocated "tofree" is set to it, otherwise NULL.
7290 * "numbuf" is used for a number.
7291 * Puts quotes around strings, so that they can be parsed back by eval().
Bram Moolenaar92c5aba2007-08-14 20:29:31 +00007292 * May return NULL.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007293 */
7294 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007295tv2string(tv, tofree, numbuf, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007296 typval_T *tv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007297 char_u **tofree;
7298 char_u *numbuf;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007299 int copyID;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007300{
7301 switch (tv->v_type)
7302 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007303 case VAR_FUNC:
7304 *tofree = string_quote(tv->vval.v_string, TRUE);
7305 return *tofree;
7306 case VAR_STRING:
7307 *tofree = string_quote(tv->vval.v_string, FALSE);
7308 return *tofree;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007309#ifdef FEAT_FLOAT
7310 case VAR_FLOAT:
7311 *tofree = NULL;
7312 vim_snprintf((char *)numbuf, NUMBUFLEN - 1, "%g", tv->vval.v_float);
7313 return numbuf;
7314#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +00007315 case VAR_NUMBER:
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007316 case VAR_LIST:
Bram Moolenaar8c711452005-01-14 21:53:12 +00007317 case VAR_DICT:
Bram Moolenaare9a41262005-01-15 22:18:47 +00007318 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007319 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007320 EMSG2(_(e_intern2), "tv2string()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007321 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007322 return echo_string(tv, tofree, numbuf, copyID);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007323}
7324
7325/*
Bram Moolenaar33570922005-01-25 22:26:29 +00007326 * Return string "str" in ' quotes, doubling ' characters.
7327 * If "str" is NULL an empty string is assumed.
Bram Moolenaar8c711452005-01-14 21:53:12 +00007328 * If "function" is TRUE make it function('string').
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007329 */
7330 static char_u *
7331string_quote(str, function)
7332 char_u *str;
7333 int function;
7334{
Bram Moolenaar33570922005-01-25 22:26:29 +00007335 unsigned len;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007336 char_u *p, *r, *s;
7337
Bram Moolenaar33570922005-01-25 22:26:29 +00007338 len = (function ? 13 : 3);
7339 if (str != NULL)
7340 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007341 len += (unsigned)STRLEN(str);
Bram Moolenaar33570922005-01-25 22:26:29 +00007342 for (p = str; *p != NUL; mb_ptr_adv(p))
7343 if (*p == '\'')
7344 ++len;
7345 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007346 s = r = alloc(len);
7347 if (r != NULL)
7348 {
7349 if (function)
7350 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00007351 STRCPY(r, "function('");
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007352 r += 10;
7353 }
7354 else
Bram Moolenaar8c711452005-01-14 21:53:12 +00007355 *r++ = '\'';
Bram Moolenaar33570922005-01-25 22:26:29 +00007356 if (str != NULL)
7357 for (p = str; *p != NUL; )
7358 {
7359 if (*p == '\'')
7360 *r++ = '\'';
7361 MB_COPY_CHAR(p, r);
7362 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007363 *r++ = '\'';
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007364 if (function)
7365 *r++ = ')';
7366 *r++ = NUL;
7367 }
7368 return s;
7369}
7370
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007371#ifdef FEAT_FLOAT
7372/*
7373 * Convert the string "text" to a floating point number.
7374 * This uses strtod(). setlocale(LC_NUMERIC, "C") has been used to make sure
7375 * this always uses a decimal point.
7376 * Returns the length of the text that was consumed.
7377 */
7378 static int
7379string2float(text, value)
7380 char_u *text;
7381 float_T *value; /* result stored here */
7382{
7383 char *s = (char *)text;
7384 float_T f;
7385
7386 f = strtod(s, &s);
7387 *value = f;
7388 return (int)((char_u *)s - text);
7389}
7390#endif
7391
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007392/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007393 * Get the value of an environment variable.
7394 * "arg" is pointing to the '$'. It is advanced to after the name.
7395 * If the environment variable was not set, silently assume it is empty.
7396 * Always return OK.
7397 */
7398 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007399get_env_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007400 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00007401 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007402 int evaluate;
7403{
7404 char_u *string = NULL;
7405 int len;
7406 int cc;
7407 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +00007408 int mustfree = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007409
7410 ++*arg;
7411 name = *arg;
7412 len = get_env_len(arg);
7413 if (evaluate)
7414 {
7415 if (len != 0)
7416 {
7417 cc = name[len];
7418 name[len] = NUL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00007419 /* first try vim_getenv(), fast for normal environment vars */
7420 string = vim_getenv(name, &mustfree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007421 if (string != NULL && *string != NUL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00007422 {
7423 if (!mustfree)
7424 string = vim_strsave(string);
7425 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007426 else
7427 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00007428 if (mustfree)
7429 vim_free(string);
7430
Bram Moolenaar071d4272004-06-13 20:20:40 +00007431 /* next try expanding things like $VIM and ${HOME} */
7432 string = expand_env_save(name - 1);
7433 if (string != NULL && *string == '$')
7434 {
7435 vim_free(string);
7436 string = NULL;
7437 }
7438 }
7439 name[len] = cc;
7440 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007441 rettv->v_type = VAR_STRING;
7442 rettv->vval.v_string = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007443 }
7444
7445 return OK;
7446}
7447
7448/*
7449 * Array with names and number of arguments of all internal functions
7450 * MUST BE KEPT SORTED IN strcmp() ORDER FOR BINARY SEARCH!
7451 */
7452static struct fst
7453{
7454 char *f_name; /* function name */
7455 char f_min_argc; /* minimal number of arguments */
7456 char f_max_argc; /* maximal number of arguments */
Bram Moolenaar33570922005-01-25 22:26:29 +00007457 void (*f_func) __ARGS((typval_T *args, typval_T *rvar));
Bram Moolenaarbae0c162007-05-10 19:30:25 +00007458 /* implementation of function */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007459} functions[] =
7460{
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007461#ifdef FEAT_FLOAT
7462 {"abs", 1, 1, f_abs},
7463#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +00007464 {"add", 2, 2, f_add},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007465 {"append", 2, 2, f_append},
7466 {"argc", 0, 0, f_argc},
7467 {"argidx", 0, 0, f_argidx},
Bram Moolenaare2f98b92006-03-29 21:18:24 +00007468 {"argv", 0, 1, f_argv},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007469#ifdef FEAT_FLOAT
7470 {"atan", 1, 1, f_atan},
7471#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007472 {"browse", 4, 4, f_browse},
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00007473 {"browsedir", 2, 2, f_browsedir},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007474 {"bufexists", 1, 1, f_bufexists},
7475 {"buffer_exists", 1, 1, f_bufexists}, /* obsolete */
7476 {"buffer_name", 1, 1, f_bufname}, /* obsolete */
7477 {"buffer_number", 1, 1, f_bufnr}, /* obsolete */
7478 {"buflisted", 1, 1, f_buflisted},
7479 {"bufloaded", 1, 1, f_bufloaded},
7480 {"bufname", 1, 1, f_bufname},
Bram Moolenaar0e34f622006-03-03 23:00:03 +00007481 {"bufnr", 1, 2, f_bufnr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007482 {"bufwinnr", 1, 1, f_bufwinnr},
7483 {"byte2line", 1, 1, f_byte2line},
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007484 {"byteidx", 2, 2, f_byteidx},
Bram Moolenaare9a41262005-01-15 22:18:47 +00007485 {"call", 2, 3, f_call},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007486#ifdef FEAT_FLOAT
7487 {"ceil", 1, 1, f_ceil},
7488#endif
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00007489 {"changenr", 0, 0, f_changenr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007490 {"char2nr", 1, 1, f_char2nr},
7491 {"cindent", 1, 1, f_cindent},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007492 {"clearmatches", 0, 0, f_clearmatches},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007493 {"col", 1, 1, f_col},
Bram Moolenaar572cb562005-08-05 21:35:02 +00007494#if defined(FEAT_INS_EXPAND)
Bram Moolenaarade00832006-03-10 21:46:58 +00007495 {"complete", 2, 2, f_complete},
Bram Moolenaar572cb562005-08-05 21:35:02 +00007496 {"complete_add", 1, 1, f_complete_add},
7497 {"complete_check", 0, 0, f_complete_check},
7498#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007499 {"confirm", 1, 4, f_confirm},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007500 {"copy", 1, 1, f_copy},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007501#ifdef FEAT_FLOAT
7502 {"cos", 1, 1, f_cos},
7503#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007504 {"count", 2, 4, f_count},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007505 {"cscope_connection",0,3, f_cscope_connection},
Bram Moolenaara5525202006-03-02 22:52:09 +00007506 {"cursor", 1, 3, f_cursor},
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007507 {"deepcopy", 1, 2, f_deepcopy},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007508 {"delete", 1, 1, f_delete},
7509 {"did_filetype", 0, 0, f_did_filetype},
Bram Moolenaar47136d72004-10-12 20:02:24 +00007510 {"diff_filler", 1, 1, f_diff_filler},
7511 {"diff_hlID", 2, 2, f_diff_hlID},
Bram Moolenaare49b69a2005-01-08 16:11:57 +00007512 {"empty", 1, 1, f_empty},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007513 {"escape", 2, 2, f_escape},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007514 {"eval", 1, 1, f_eval},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007515 {"eventhandler", 0, 0, f_eventhandler},
7516 {"executable", 1, 1, f_executable},
7517 {"exists", 1, 1, f_exists},
7518 {"expand", 1, 2, f_expand},
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007519 {"extend", 2, 3, f_extend},
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007520 {"feedkeys", 1, 2, f_feedkeys},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007521 {"file_readable", 1, 1, f_filereadable}, /* obsolete */
7522 {"filereadable", 1, 1, f_filereadable},
7523 {"filewritable", 1, 1, f_filewritable},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007524 {"filter", 2, 2, f_filter},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007525 {"finddir", 1, 3, f_finddir},
7526 {"findfile", 1, 3, f_findfile},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007527#ifdef FEAT_FLOAT
7528 {"float2nr", 1, 1, f_float2nr},
7529 {"floor", 1, 1, f_floor},
7530#endif
Bram Moolenaaraebaf892008-05-28 14:49:58 +00007531 {"fnameescape", 1, 1, f_fnameescape},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007532 {"fnamemodify", 2, 2, f_fnamemodify},
7533 {"foldclosed", 1, 1, f_foldclosed},
7534 {"foldclosedend", 1, 1, f_foldclosedend},
7535 {"foldlevel", 1, 1, f_foldlevel},
7536 {"foldtext", 0, 0, f_foldtext},
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00007537 {"foldtextresult", 1, 1, f_foldtextresult},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007538 {"foreground", 0, 0, f_foreground},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007539 {"function", 1, 1, f_function},
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00007540 {"garbagecollect", 0, 1, f_garbagecollect},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007541 {"get", 2, 3, f_get},
Bram Moolenaar80fc0432005-07-20 22:06:07 +00007542 {"getbufline", 2, 3, f_getbufline},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007543 {"getbufvar", 2, 2, f_getbufvar},
7544 {"getchar", 0, 1, f_getchar},
7545 {"getcharmod", 0, 0, f_getcharmod},
7546 {"getcmdline", 0, 0, f_getcmdline},
7547 {"getcmdpos", 0, 0, f_getcmdpos},
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007548 {"getcmdtype", 0, 0, f_getcmdtype},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007549 {"getcwd", 0, 0, f_getcwd},
Bram Moolenaar46c9c732004-12-12 11:37:09 +00007550 {"getfontname", 0, 1, f_getfontname},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007551 {"getfperm", 1, 1, f_getfperm},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007552 {"getfsize", 1, 1, f_getfsize},
7553 {"getftime", 1, 1, f_getftime},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007554 {"getftype", 1, 1, f_getftype},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007555 {"getline", 1, 2, f_getline},
Bram Moolenaar280f1262006-01-30 00:14:18 +00007556 {"getloclist", 1, 1, f_getqflist},
Bram Moolenaar2240aeb2007-07-27 19:33:14 +00007557 {"getmatches", 0, 0, f_getmatches},
Bram Moolenaar18081e32008-02-20 19:11:07 +00007558 {"getpid", 0, 0, f_getpid},
Bram Moolenaara5525202006-03-02 22:52:09 +00007559 {"getpos", 1, 1, f_getpos},
Bram Moolenaar2641f772005-03-25 21:58:17 +00007560 {"getqflist", 0, 0, f_getqflist},
Bram Moolenaar67fe1a12005-05-22 22:12:58 +00007561 {"getreg", 0, 2, f_getreg},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007562 {"getregtype", 0, 1, f_getregtype},
Bram Moolenaar99ebf042006-04-15 20:28:54 +00007563 {"gettabwinvar", 3, 3, f_gettabwinvar},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007564 {"getwinposx", 0, 0, f_getwinposx},
7565 {"getwinposy", 0, 0, f_getwinposy},
7566 {"getwinvar", 2, 2, f_getwinvar},
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00007567 {"glob", 1, 2, f_glob},
7568 {"globpath", 2, 3, f_globpath},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007569 {"has", 1, 1, f_has},
Bram Moolenaare9a41262005-01-15 22:18:47 +00007570 {"has_key", 2, 2, f_has_key},
Bram Moolenaard267b9c2007-04-26 15:06:45 +00007571 {"haslocaldir", 0, 0, f_haslocaldir},
Bram Moolenaar2c932302006-03-18 21:42:09 +00007572 {"hasmapto", 1, 3, f_hasmapto},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007573 {"highlightID", 1, 1, f_hlID}, /* obsolete */
7574 {"highlight_exists",1, 1, f_hlexists}, /* obsolete */
7575 {"histadd", 2, 2, f_histadd},
7576 {"histdel", 1, 2, f_histdel},
7577 {"histget", 1, 2, f_histget},
7578 {"histnr", 1, 1, f_histnr},
7579 {"hlID", 1, 1, f_hlID},
7580 {"hlexists", 1, 1, f_hlexists},
7581 {"hostname", 0, 0, f_hostname},
7582 {"iconv", 3, 3, f_iconv},
7583 {"indent", 1, 1, f_indent},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007584 {"index", 2, 4, f_index},
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007585 {"input", 1, 3, f_input},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007586 {"inputdialog", 1, 3, f_inputdialog},
Bram Moolenaar6efa2b32005-09-10 19:26:26 +00007587 {"inputlist", 1, 1, f_inputlist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007588 {"inputrestore", 0, 0, f_inputrestore},
7589 {"inputsave", 0, 0, f_inputsave},
7590 {"inputsecret", 1, 2, f_inputsecret},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007591 {"insert", 2, 3, f_insert},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007592 {"isdirectory", 1, 1, f_isdirectory},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00007593 {"islocked", 1, 1, f_islocked},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007594 {"items", 1, 1, f_items},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007595 {"join", 1, 2, f_join},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007596 {"keys", 1, 1, f_keys},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007597 {"last_buffer_nr", 0, 0, f_last_buffer_nr},/* obsolete */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007598 {"len", 1, 1, f_len},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007599 {"libcall", 3, 3, f_libcall},
7600 {"libcallnr", 3, 3, f_libcallnr},
7601 {"line", 1, 1, f_line},
7602 {"line2byte", 1, 1, f_line2byte},
7603 {"lispindent", 1, 1, f_lispindent},
7604 {"localtime", 0, 0, f_localtime},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007605#ifdef FEAT_FLOAT
7606 {"log10", 1, 1, f_log10},
7607#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007608 {"map", 2, 2, f_map},
Bram Moolenaar2c932302006-03-18 21:42:09 +00007609 {"maparg", 1, 3, f_maparg},
7610 {"mapcheck", 1, 3, f_mapcheck},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007611 {"match", 2, 4, f_match},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007612 {"matchadd", 2, 4, f_matchadd},
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007613 {"matcharg", 1, 1, f_matcharg},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007614 {"matchdelete", 1, 1, f_matchdelete},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007615 {"matchend", 2, 4, f_matchend},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00007616 {"matchlist", 2, 4, f_matchlist},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007617 {"matchstr", 2, 4, f_matchstr},
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007618 {"max", 1, 1, f_max},
7619 {"min", 1, 1, f_min},
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007620#ifdef vim_mkdir
7621 {"mkdir", 1, 3, f_mkdir},
7622#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007623 {"mode", 0, 1, f_mode},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007624 {"nextnonblank", 1, 1, f_nextnonblank},
7625 {"nr2char", 1, 1, f_nr2char},
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007626 {"pathshorten", 1, 1, f_pathshorten},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007627#ifdef FEAT_FLOAT
7628 {"pow", 2, 2, f_pow},
7629#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007630 {"prevnonblank", 1, 1, f_prevnonblank},
Bram Moolenaar4be06f92005-07-29 22:36:03 +00007631 {"printf", 2, 19, f_printf},
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007632 {"pumvisible", 0, 0, f_pumvisible},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007633 {"range", 1, 3, f_range},
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007634 {"readfile", 1, 3, f_readfile},
Bram Moolenaare580b0c2006-03-21 21:33:03 +00007635 {"reltime", 0, 2, f_reltime},
7636 {"reltimestr", 1, 1, f_reltimestr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007637 {"remote_expr", 2, 3, f_remote_expr},
7638 {"remote_foreground", 1, 1, f_remote_foreground},
7639 {"remote_peek", 1, 2, f_remote_peek},
7640 {"remote_read", 1, 1, f_remote_read},
7641 {"remote_send", 2, 3, f_remote_send},
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007642 {"remove", 2, 3, f_remove},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007643 {"rename", 2, 2, f_rename},
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007644 {"repeat", 2, 2, f_repeat},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007645 {"resolve", 1, 1, f_resolve},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007646 {"reverse", 1, 1, f_reverse},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007647#ifdef FEAT_FLOAT
7648 {"round", 1, 1, f_round},
7649#endif
Bram Moolenaar76929292008-01-06 19:07:36 +00007650 {"search", 1, 4, f_search},
Bram Moolenaare6facf92005-09-13 21:22:27 +00007651 {"searchdecl", 1, 3, f_searchdecl},
Bram Moolenaar76929292008-01-06 19:07:36 +00007652 {"searchpair", 3, 7, f_searchpair},
7653 {"searchpairpos", 3, 7, f_searchpairpos},
7654 {"searchpos", 1, 4, f_searchpos},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007655 {"server2client", 2, 2, f_server2client},
7656 {"serverlist", 0, 0, f_serverlist},
7657 {"setbufvar", 3, 3, f_setbufvar},
7658 {"setcmdpos", 1, 1, f_setcmdpos},
7659 {"setline", 2, 2, f_setline},
Bram Moolenaar17c7c012006-01-26 22:25:15 +00007660 {"setloclist", 2, 3, f_setloclist},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007661 {"setmatches", 1, 1, f_setmatches},
Bram Moolenaar0e34f622006-03-03 23:00:03 +00007662 {"setpos", 2, 2, f_setpos},
Bram Moolenaarf4630b62005-05-20 21:31:17 +00007663 {"setqflist", 1, 2, f_setqflist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007664 {"setreg", 2, 3, f_setreg},
Bram Moolenaar99ebf042006-04-15 20:28:54 +00007665 {"settabwinvar", 4, 4, f_settabwinvar},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007666 {"setwinvar", 3, 3, f_setwinvar},
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007667 {"shellescape", 1, 2, f_shellescape},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007668 {"simplify", 1, 1, f_simplify},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007669#ifdef FEAT_FLOAT
7670 {"sin", 1, 1, f_sin},
7671#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +00007672 {"sort", 1, 2, f_sort},
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00007673 {"soundfold", 1, 1, f_soundfold},
Bram Moolenaar4463f292005-09-25 22:20:24 +00007674 {"spellbadword", 0, 1, f_spellbadword},
Bram Moolenaar69e0ff92005-09-30 21:23:56 +00007675 {"spellsuggest", 1, 3, f_spellsuggest},
Bram Moolenaar67fe1a12005-05-22 22:12:58 +00007676 {"split", 1, 3, f_split},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007677#ifdef FEAT_FLOAT
7678 {"sqrt", 1, 1, f_sqrt},
7679 {"str2float", 1, 1, f_str2float},
7680#endif
Bram Moolenaar2c932302006-03-18 21:42:09 +00007681 {"str2nr", 1, 2, f_str2nr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007682#ifdef HAVE_STRFTIME
7683 {"strftime", 1, 2, f_strftime},
7684#endif
Bram Moolenaar33570922005-01-25 22:26:29 +00007685 {"stridx", 2, 3, f_stridx},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007686 {"string", 1, 1, f_string},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007687 {"strlen", 1, 1, f_strlen},
7688 {"strpart", 2, 3, f_strpart},
Bram Moolenaar532c7802005-01-27 14:44:31 +00007689 {"strridx", 2, 3, f_strridx},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007690 {"strtrans", 1, 1, f_strtrans},
7691 {"submatch", 1, 1, f_submatch},
7692 {"substitute", 4, 4, f_substitute},
7693 {"synID", 3, 3, f_synID},
7694 {"synIDattr", 2, 3, f_synIDattr},
7695 {"synIDtrans", 1, 1, f_synIDtrans},
Bram Moolenaar9d188ab2008-01-10 21:24:39 +00007696 {"synstack", 2, 2, f_synstack},
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007697 {"system", 1, 2, f_system},
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007698 {"tabpagebuflist", 0, 1, f_tabpagebuflist},
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007699 {"tabpagenr", 0, 1, f_tabpagenr},
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007700 {"tabpagewinnr", 1, 2, f_tabpagewinnr},
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00007701 {"tagfiles", 0, 0, f_tagfiles},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00007702 {"taglist", 1, 1, f_taglist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007703 {"tempname", 0, 0, f_tempname},
Bram Moolenaard52d9742005-08-21 22:20:28 +00007704 {"test", 1, 1, f_test},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007705 {"tolower", 1, 1, f_tolower},
7706 {"toupper", 1, 1, f_toupper},
Bram Moolenaar8299df92004-07-10 09:47:34 +00007707 {"tr", 3, 3, f_tr},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007708#ifdef FEAT_FLOAT
7709 {"trunc", 1, 1, f_trunc},
7710#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007711 {"type", 1, 1, f_type},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007712 {"values", 1, 1, f_values},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007713 {"virtcol", 1, 1, f_virtcol},
7714 {"visualmode", 0, 1, f_visualmode},
7715 {"winbufnr", 1, 1, f_winbufnr},
7716 {"wincol", 0, 0, f_wincol},
7717 {"winheight", 1, 1, f_winheight},
7718 {"winline", 0, 0, f_winline},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007719 {"winnr", 0, 1, f_winnr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007720 {"winrestcmd", 0, 0, f_winrestcmd},
Bram Moolenaar768b8c42006-03-04 21:58:33 +00007721 {"winrestview", 1, 1, f_winrestview},
7722 {"winsaveview", 0, 0, f_winsaveview},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007723 {"winwidth", 1, 1, f_winwidth},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00007724 {"writefile", 2, 3, f_writefile},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007725};
7726
7727#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
7728
7729/*
7730 * Function given to ExpandGeneric() to obtain the list of internal
7731 * or user defined function names.
7732 */
7733 char_u *
7734get_function_name(xp, idx)
7735 expand_T *xp;
7736 int idx;
7737{
7738 static int intidx = -1;
7739 char_u *name;
7740
7741 if (idx == 0)
7742 intidx = -1;
7743 if (intidx < 0)
7744 {
7745 name = get_user_func_name(xp, idx);
7746 if (name != NULL)
7747 return name;
7748 }
7749 if (++intidx < (int)(sizeof(functions) / sizeof(struct fst)))
7750 {
7751 STRCPY(IObuff, functions[intidx].f_name);
7752 STRCAT(IObuff, "(");
7753 if (functions[intidx].f_max_argc == 0)
7754 STRCAT(IObuff, ")");
7755 return IObuff;
7756 }
7757
7758 return NULL;
7759}
7760
7761/*
7762 * Function given to ExpandGeneric() to obtain the list of internal or
7763 * user defined variable or function names.
7764 */
7765/*ARGSUSED*/
7766 char_u *
7767get_expr_name(xp, idx)
7768 expand_T *xp;
7769 int idx;
7770{
7771 static int intidx = -1;
7772 char_u *name;
7773
7774 if (idx == 0)
7775 intidx = -1;
7776 if (intidx < 0)
7777 {
7778 name = get_function_name(xp, idx);
7779 if (name != NULL)
7780 return name;
7781 }
7782 return get_user_var_name(xp, ++intidx);
7783}
7784
7785#endif /* FEAT_CMDL_COMPL */
7786
7787/*
7788 * Find internal function in table above.
7789 * Return index, or -1 if not found
7790 */
7791 static int
7792find_internal_func(name)
7793 char_u *name; /* name of the function */
7794{
7795 int first = 0;
7796 int last = (int)(sizeof(functions) / sizeof(struct fst)) - 1;
7797 int cmp;
7798 int x;
7799
7800 /*
7801 * Find the function name in the table. Binary search.
7802 */
7803 while (first <= last)
7804 {
7805 x = first + ((unsigned)(last - first) >> 1);
7806 cmp = STRCMP(name, functions[x].f_name);
7807 if (cmp < 0)
7808 last = x - 1;
7809 else if (cmp > 0)
7810 first = x + 1;
7811 else
7812 return x;
7813 }
7814 return -1;
7815}
7816
7817/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007818 * Check if "name" is a variable of type VAR_FUNC. If so, return the function
7819 * name it contains, otherwise return "name".
7820 */
7821 static char_u *
7822deref_func_name(name, lenp)
7823 char_u *name;
7824 int *lenp;
7825{
Bram Moolenaar33570922005-01-25 22:26:29 +00007826 dictitem_T *v;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007827 int cc;
7828
7829 cc = name[*lenp];
7830 name[*lenp] = NUL;
Bram Moolenaara7043832005-01-21 11:56:39 +00007831 v = find_var(name, NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007832 name[*lenp] = cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00007833 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007834 {
Bram Moolenaar33570922005-01-25 22:26:29 +00007835 if (v->di_tv.vval.v_string == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007836 {
7837 *lenp = 0;
7838 return (char_u *)""; /* just in case */
7839 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007840 *lenp = (int)STRLEN(v->di_tv.vval.v_string);
Bram Moolenaar33570922005-01-25 22:26:29 +00007841 return v->di_tv.vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007842 }
7843
7844 return name;
7845}
7846
7847/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007848 * Allocate a variable for the result of a function.
7849 * Return OK or FAIL.
7850 */
7851 static int
Bram Moolenaare9a41262005-01-15 22:18:47 +00007852get_func_tv(name, len, rettv, arg, firstline, lastline, doesrange,
7853 evaluate, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007854 char_u *name; /* name of the function */
7855 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +00007856 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007857 char_u **arg; /* argument, pointing to the '(' */
7858 linenr_T firstline; /* first line of range */
7859 linenr_T lastline; /* last line of range */
7860 int *doesrange; /* return: function handled range */
7861 int evaluate;
Bram Moolenaar33570922005-01-25 22:26:29 +00007862 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007863{
7864 char_u *argp;
7865 int ret = OK;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007866 typval_T argvars[MAX_FUNC_ARGS + 1]; /* vars for arguments */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007867 int argcount = 0; /* number of arguments found */
7868
7869 /*
7870 * Get the arguments.
7871 */
7872 argp = *arg;
7873 while (argcount < MAX_FUNC_ARGS)
7874 {
7875 argp = skipwhite(argp + 1); /* skip the '(' or ',' */
7876 if (*argp == ')' || *argp == ',' || *argp == NUL)
7877 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007878 if (eval1(&argp, &argvars[argcount], evaluate) == FAIL)
7879 {
7880 ret = FAIL;
7881 break;
7882 }
7883 ++argcount;
7884 if (*argp != ',')
7885 break;
7886 }
7887 if (*argp == ')')
7888 ++argp;
7889 else
7890 ret = FAIL;
7891
7892 if (ret == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007893 ret = call_func(name, len, rettv, argcount, argvars,
Bram Moolenaare9a41262005-01-15 22:18:47 +00007894 firstline, lastline, doesrange, evaluate, selfdict);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007895 else if (!aborting())
Bram Moolenaar33570922005-01-25 22:26:29 +00007896 {
7897 if (argcount == MAX_FUNC_ARGS)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007898 emsg_funcname("E740: Too many arguments for function %s", name);
Bram Moolenaar33570922005-01-25 22:26:29 +00007899 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007900 emsg_funcname("E116: Invalid arguments for function %s", name);
Bram Moolenaar33570922005-01-25 22:26:29 +00007901 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007902
7903 while (--argcount >= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007904 clear_tv(&argvars[argcount]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007905
7906 *arg = skipwhite(argp);
7907 return ret;
7908}
7909
7910
7911/*
7912 * Call a function with its resolved parameters
Bram Moolenaar280f1262006-01-30 00:14:18 +00007913 * Return OK when the function can't be called, FAIL otherwise.
7914 * Also returns OK when an error was encountered while executing the function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007915 */
7916 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007917call_func(name, len, rettv, argcount, argvars, firstline, lastline,
Bram Moolenaare9a41262005-01-15 22:18:47 +00007918 doesrange, evaluate, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007919 char_u *name; /* name of the function */
7920 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +00007921 typval_T *rettv; /* return value goes here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007922 int argcount; /* number of "argvars" */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007923 typval_T *argvars; /* vars for arguments, must have "argcount"
7924 PLUS ONE elements! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007925 linenr_T firstline; /* first line of range */
7926 linenr_T lastline; /* last line of range */
7927 int *doesrange; /* return: function handled range */
7928 int evaluate;
Bram Moolenaar33570922005-01-25 22:26:29 +00007929 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007930{
7931 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007932#define ERROR_UNKNOWN 0
7933#define ERROR_TOOMANY 1
7934#define ERROR_TOOFEW 2
7935#define ERROR_SCRIPT 3
Bram Moolenaare9a41262005-01-15 22:18:47 +00007936#define ERROR_DICT 4
7937#define ERROR_NONE 5
7938#define ERROR_OTHER 6
Bram Moolenaar071d4272004-06-13 20:20:40 +00007939 int error = ERROR_NONE;
7940 int i;
7941 int llen;
7942 ufunc_T *fp;
7943 int cc;
7944#define FLEN_FIXED 40
7945 char_u fname_buf[FLEN_FIXED + 1];
7946 char_u *fname;
7947
7948 /*
7949 * In a script change <SID>name() and s:name() to K_SNR 123_name().
7950 * Change <SNR>123_name() to K_SNR 123_name().
7951 * Use fname_buf[] when it fits, otherwise allocate memory (slow).
7952 */
7953 cc = name[len];
7954 name[len] = NUL;
7955 llen = eval_fname_script(name);
7956 if (llen > 0)
7957 {
7958 fname_buf[0] = K_SPECIAL;
7959 fname_buf[1] = KS_EXTRA;
7960 fname_buf[2] = (int)KE_SNR;
7961 i = 3;
7962 if (eval_fname_sid(name)) /* "<SID>" or "s:" */
7963 {
7964 if (current_SID <= 0)
7965 error = ERROR_SCRIPT;
7966 else
7967 {
7968 sprintf((char *)fname_buf + 3, "%ld_", (long)current_SID);
7969 i = (int)STRLEN(fname_buf);
7970 }
7971 }
7972 if (i + STRLEN(name + llen) < FLEN_FIXED)
7973 {
7974 STRCPY(fname_buf + i, name + llen);
7975 fname = fname_buf;
7976 }
7977 else
7978 {
7979 fname = alloc((unsigned)(i + STRLEN(name + llen) + 1));
7980 if (fname == NULL)
7981 error = ERROR_OTHER;
7982 else
7983 {
7984 mch_memmove(fname, fname_buf, (size_t)i);
7985 STRCPY(fname + i, name + llen);
7986 }
7987 }
7988 }
7989 else
7990 fname = name;
7991
7992 *doesrange = FALSE;
7993
7994
7995 /* execute the function if no errors detected and executing */
7996 if (evaluate && error == ERROR_NONE)
7997 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007998 rettv->v_type = VAR_NUMBER; /* default is number rettv */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007999 error = ERROR_UNKNOWN;
8000
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008001 if (!builtin_function(fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008002 {
8003 /*
8004 * User defined function.
8005 */
8006 fp = find_func(fname);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008007
Bram Moolenaar071d4272004-06-13 20:20:40 +00008008#ifdef FEAT_AUTOCMD
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008009 /* Trigger FuncUndefined event, may load the function. */
8010 if (fp == NULL
8011 && apply_autocmds(EVENT_FUNCUNDEFINED,
8012 fname, fname, TRUE, NULL)
8013 && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00008014 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008015 /* executed an autocommand, search for the function again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008016 fp = find_func(fname);
8017 }
8018#endif
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008019 /* Try loading a package. */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00008020 if (fp == NULL && script_autoload(fname, TRUE) && !aborting())
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008021 {
8022 /* loaded a package, search for the function again */
8023 fp = find_func(fname);
8024 }
8025
Bram Moolenaar071d4272004-06-13 20:20:40 +00008026 if (fp != NULL)
8027 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008028 if (fp->uf_flags & FC_RANGE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008029 *doesrange = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008030 if (argcount < fp->uf_args.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008031 error = ERROR_TOOFEW;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008032 else if (!fp->uf_varargs && argcount > fp->uf_args.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008033 error = ERROR_TOOMANY;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008034 else if ((fp->uf_flags & FC_DICT) && selfdict == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00008035 error = ERROR_DICT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008036 else
8037 {
8038 /*
8039 * Call the user function.
8040 * Save and restore search patterns, script variables and
8041 * redo buffer.
8042 */
8043 save_search_patterns();
8044 saveRedobuff();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008045 ++fp->uf_calls;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008046 call_user_func(fp, argcount, argvars, rettv,
Bram Moolenaare9a41262005-01-15 22:18:47 +00008047 firstline, lastline,
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008048 (fp->uf_flags & FC_DICT) ? selfdict : NULL);
8049 if (--fp->uf_calls <= 0 && isdigit(*fp->uf_name)
8050 && fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00008051 /* Function was unreferenced while being used, free it
8052 * now. */
8053 func_free(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008054 restoreRedobuff();
8055 restore_search_patterns();
8056 error = ERROR_NONE;
8057 }
8058 }
8059 }
8060 else
8061 {
8062 /*
8063 * Find the function name in the table, call its implementation.
8064 */
8065 i = find_internal_func(fname);
8066 if (i >= 0)
8067 {
8068 if (argcount < functions[i].f_min_argc)
8069 error = ERROR_TOOFEW;
8070 else if (argcount > functions[i].f_max_argc)
8071 error = ERROR_TOOMANY;
8072 else
8073 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008074 argvars[argcount].v_type = VAR_UNKNOWN;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008075 functions[i].f_func(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008076 error = ERROR_NONE;
8077 }
8078 }
8079 }
8080 /*
8081 * The function call (or "FuncUndefined" autocommand sequence) might
8082 * have been aborted by an error, an interrupt, or an explicitly thrown
8083 * exception that has not been caught so far. This situation can be
8084 * tested for by calling aborting(). For an error in an internal
8085 * function or for the "E132" error in call_user_func(), however, the
8086 * throw point at which the "force_abort" flag (temporarily reset by
8087 * emsg()) is normally updated has not been reached yet. We need to
8088 * update that flag first to make aborting() reliable.
8089 */
8090 update_force_abort();
8091 }
8092 if (error == ERROR_NONE)
8093 ret = OK;
8094
8095 /*
8096 * Report an error unless the argument evaluation or function call has been
8097 * cancelled due to an aborting error, an interrupt, or an exception.
8098 */
Bram Moolenaar8c711452005-01-14 21:53:12 +00008099 if (!aborting())
8100 {
8101 switch (error)
8102 {
8103 case ERROR_UNKNOWN:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008104 emsg_funcname(N_("E117: Unknown function: %s"), name);
Bram Moolenaar8c711452005-01-14 21:53:12 +00008105 break;
8106 case ERROR_TOOMANY:
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008107 emsg_funcname(e_toomanyarg, name);
Bram Moolenaar8c711452005-01-14 21:53:12 +00008108 break;
8109 case ERROR_TOOFEW:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008110 emsg_funcname(N_("E119: Not enough arguments for function: %s"),
Bram Moolenaar8c711452005-01-14 21:53:12 +00008111 name);
8112 break;
8113 case ERROR_SCRIPT:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008114 emsg_funcname(N_("E120: Using <SID> not in a script context: %s"),
Bram Moolenaar8c711452005-01-14 21:53:12 +00008115 name);
8116 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00008117 case ERROR_DICT:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008118 emsg_funcname(N_("E725: Calling dict function without Dictionary: %s"),
Bram Moolenaare9a41262005-01-15 22:18:47 +00008119 name);
8120 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00008121 }
8122 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008123
8124 name[len] = cc;
8125 if (fname != name && fname != fname_buf)
8126 vim_free(fname);
8127
8128 return ret;
8129}
8130
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008131/*
8132 * Give an error message with a function name. Handle <SNR> things.
8133 */
8134 static void
Bram Moolenaar89d40322006-08-29 15:30:07 +00008135emsg_funcname(ermsg, name)
8136 char *ermsg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008137 char_u *name;
8138{
8139 char_u *p;
8140
8141 if (*name == K_SPECIAL)
8142 p = concat_str((char_u *)"<SNR>", name + 3);
8143 else
8144 p = name;
Bram Moolenaar89d40322006-08-29 15:30:07 +00008145 EMSG2(_(ermsg), p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008146 if (p != name)
8147 vim_free(p);
8148}
8149
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008150/*
8151 * Return TRUE for a non-zero Number and a non-empty String.
8152 */
8153 static int
8154non_zero_arg(argvars)
8155 typval_T *argvars;
8156{
8157 return ((argvars[0].v_type == VAR_NUMBER
8158 && argvars[0].vval.v_number != 0)
8159 || (argvars[0].v_type == VAR_STRING
8160 && argvars[0].vval.v_string != NULL
8161 && *argvars[0].vval.v_string != NUL));
8162}
8163
Bram Moolenaar071d4272004-06-13 20:20:40 +00008164/*********************************************
8165 * Implementation of the built-in functions
8166 */
8167
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008168#ifdef FEAT_FLOAT
8169/*
8170 * "abs(expr)" function
8171 */
8172 static void
8173f_abs(argvars, rettv)
8174 typval_T *argvars;
8175 typval_T *rettv;
8176{
8177 if (argvars[0].v_type == VAR_FLOAT)
8178 {
8179 rettv->v_type = VAR_FLOAT;
8180 rettv->vval.v_float = fabs(argvars[0].vval.v_float);
8181 }
8182 else
8183 {
8184 varnumber_T n;
8185 int error = FALSE;
8186
8187 n = get_tv_number_chk(&argvars[0], &error);
8188 if (error)
8189 rettv->vval.v_number = -1;
8190 else if (n > 0)
8191 rettv->vval.v_number = n;
8192 else
8193 rettv->vval.v_number = -n;
8194 }
8195}
8196#endif
8197
Bram Moolenaar071d4272004-06-13 20:20:40 +00008198/*
Bram Moolenaar0d660222005-01-07 21:51:51 +00008199 * "add(list, item)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +00008200 */
8201 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +00008202f_add(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008203 typval_T *argvars;
8204 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008205{
Bram Moolenaar33570922005-01-25 22:26:29 +00008206 list_T *l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008207
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008208 rettv->vval.v_number = 1; /* Default: Failed */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008209 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008210 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00008211 if ((l = argvars[0].vval.v_list) != NULL
8212 && !tv_check_lock(l->lv_lock, (char_u *)"add()")
8213 && list_append_tv(l, &argvars[1]) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008214 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008215 }
8216 else
Bram Moolenaar0d660222005-01-07 21:51:51 +00008217 EMSG(_(e_listreq));
8218}
8219
8220/*
8221 * "append(lnum, string/list)" function
8222 */
8223 static void
8224f_append(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008225 typval_T *argvars;
8226 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00008227{
8228 long lnum;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008229 char_u *line;
Bram Moolenaar33570922005-01-25 22:26:29 +00008230 list_T *l = NULL;
8231 listitem_T *li = NULL;
8232 typval_T *tv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00008233 long added = 0;
8234
Bram Moolenaar0d660222005-01-07 21:51:51 +00008235 lnum = get_tv_lnum(argvars);
8236 if (lnum >= 0
8237 && lnum <= curbuf->b_ml.ml_line_count
8238 && u_save(lnum, lnum + 1) == OK)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008239 {
Bram Moolenaar0d660222005-01-07 21:51:51 +00008240 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008241 {
Bram Moolenaar0d660222005-01-07 21:51:51 +00008242 l = argvars[1].vval.v_list;
8243 if (l == NULL)
8244 return;
8245 li = l->lv_first;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008246 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008247 rettv->vval.v_number = 0; /* Default: Success */
Bram Moolenaar0d660222005-01-07 21:51:51 +00008248 for (;;)
8249 {
8250 if (l == NULL)
8251 tv = &argvars[1]; /* append a string */
8252 else if (li == NULL)
8253 break; /* end of list */
8254 else
8255 tv = &li->li_tv; /* append item from list */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008256 line = get_tv_string_chk(tv);
8257 if (line == NULL) /* type error */
8258 {
8259 rettv->vval.v_number = 1; /* Failed */
8260 break;
8261 }
8262 ml_append(lnum + added, line, (colnr_T)0, FALSE);
Bram Moolenaar0d660222005-01-07 21:51:51 +00008263 ++added;
8264 if (l == NULL)
8265 break;
8266 li = li->li_next;
8267 }
8268
8269 appended_lines_mark(lnum, added);
8270 if (curwin->w_cursor.lnum > lnum)
8271 curwin->w_cursor.lnum += added;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008272 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008273 else
8274 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008275}
8276
8277/*
8278 * "argc()" function
8279 */
8280/* ARGSUSED */
8281 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008282f_argc(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008283 typval_T *argvars;
8284 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008285{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008286 rettv->vval.v_number = ARGCOUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008287}
8288
8289/*
8290 * "argidx()" function
8291 */
8292/* ARGSUSED */
8293 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008294f_argidx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008295 typval_T *argvars;
8296 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008297{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008298 rettv->vval.v_number = curwin->w_arg_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008299}
8300
8301/*
8302 * "argv(nr)" function
8303 */
8304 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008305f_argv(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008306 typval_T *argvars;
8307 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008308{
8309 int idx;
8310
Bram Moolenaare2f98b92006-03-29 21:18:24 +00008311 if (argvars[0].v_type != VAR_UNKNOWN)
8312 {
8313 idx = get_tv_number_chk(&argvars[0], NULL);
8314 if (idx >= 0 && idx < ARGCOUNT)
8315 rettv->vval.v_string = vim_strsave(alist_name(&ARGLIST[idx]));
8316 else
8317 rettv->vval.v_string = NULL;
8318 rettv->v_type = VAR_STRING;
8319 }
8320 else if (rettv_list_alloc(rettv) == OK)
8321 for (idx = 0; idx < ARGCOUNT; ++idx)
8322 list_append_string(rettv->vval.v_list,
8323 alist_name(&ARGLIST[idx]), -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008324}
8325
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008326#ifdef FEAT_FLOAT
8327static int get_float_arg __ARGS((typval_T *argvars, float_T *f));
8328
8329/*
8330 * Get the float value of "argvars[0]" into "f".
8331 * Returns FAIL when the argument is not a Number or Float.
8332 */
8333 static int
8334get_float_arg(argvars, f)
8335 typval_T *argvars;
8336 float_T *f;
8337{
8338 if (argvars[0].v_type == VAR_FLOAT)
8339 {
8340 *f = argvars[0].vval.v_float;
8341 return OK;
8342 }
8343 if (argvars[0].v_type == VAR_NUMBER)
8344 {
8345 *f = (float_T)argvars[0].vval.v_number;
8346 return OK;
8347 }
8348 EMSG(_("E808: Number or Float required"));
8349 return FAIL;
8350}
8351
8352/*
8353 * "atan()" function
8354 */
8355 static void
8356f_atan(argvars, rettv)
8357 typval_T *argvars;
8358 typval_T *rettv;
8359{
8360 float_T f;
8361
8362 rettv->v_type = VAR_FLOAT;
8363 if (get_float_arg(argvars, &f) == OK)
8364 rettv->vval.v_float = atan(f);
8365 else
8366 rettv->vval.v_float = 0.0;
8367}
8368#endif
8369
Bram Moolenaar071d4272004-06-13 20:20:40 +00008370/*
8371 * "browse(save, title, initdir, default)" function
8372 */
8373/* ARGSUSED */
8374 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008375f_browse(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008376 typval_T *argvars;
8377 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008378{
8379#ifdef FEAT_BROWSE
8380 int save;
8381 char_u *title;
8382 char_u *initdir;
8383 char_u *defname;
8384 char_u buf[NUMBUFLEN];
8385 char_u buf2[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008386 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008387
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008388 save = get_tv_number_chk(&argvars[0], &error);
8389 title = get_tv_string_chk(&argvars[1]);
8390 initdir = get_tv_string_buf_chk(&argvars[2], buf);
8391 defname = get_tv_string_buf_chk(&argvars[3], buf2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008392
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008393 if (error || title == NULL || initdir == NULL || defname == NULL)
8394 rettv->vval.v_string = NULL;
8395 else
8396 rettv->vval.v_string =
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008397 do_browse(save ? BROWSE_SAVE : 0,
8398 title, defname, NULL, initdir, NULL, curbuf);
8399#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008400 rettv->vval.v_string = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008401#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008402 rettv->v_type = VAR_STRING;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008403}
8404
8405/*
8406 * "browsedir(title, initdir)" function
8407 */
8408/* ARGSUSED */
8409 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008410f_browsedir(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008411 typval_T *argvars;
8412 typval_T *rettv;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008413{
8414#ifdef FEAT_BROWSE
8415 char_u *title;
8416 char_u *initdir;
8417 char_u buf[NUMBUFLEN];
8418
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008419 title = get_tv_string_chk(&argvars[0]);
8420 initdir = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008421
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008422 if (title == NULL || initdir == NULL)
8423 rettv->vval.v_string = NULL;
8424 else
8425 rettv->vval.v_string = do_browse(BROWSE_DIR,
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008426 title, NULL, NULL, initdir, NULL, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008427#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008428 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008429#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008430 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008431}
8432
Bram Moolenaar33570922005-01-25 22:26:29 +00008433static buf_T *find_buffer __ARGS((typval_T *avar));
Bram Moolenaar0d660222005-01-07 21:51:51 +00008434
Bram Moolenaar071d4272004-06-13 20:20:40 +00008435/*
8436 * Find a buffer by number or exact name.
8437 */
8438 static buf_T *
8439find_buffer(avar)
Bram Moolenaar33570922005-01-25 22:26:29 +00008440 typval_T *avar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008441{
8442 buf_T *buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008443
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008444 if (avar->v_type == VAR_NUMBER)
8445 buf = buflist_findnr((int)avar->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +00008446 else if (avar->v_type == VAR_STRING && avar->vval.v_string != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008447 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008448 buf = buflist_findname_exp(avar->vval.v_string);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00008449 if (buf == NULL)
8450 {
8451 /* No full path name match, try a match with a URL or a "nofile"
8452 * buffer, these don't use the full path. */
8453 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
8454 if (buf->b_fname != NULL
8455 && (path_with_url(buf->b_fname)
8456#ifdef FEAT_QUICKFIX
8457 || bt_nofile(buf)
8458#endif
8459 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008460 && STRCMP(buf->b_fname, avar->vval.v_string) == 0)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00008461 break;
8462 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008463 }
8464 return buf;
8465}
8466
8467/*
8468 * "bufexists(expr)" function
8469 */
8470 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008471f_bufexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008472 typval_T *argvars;
8473 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008474{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008475 rettv->vval.v_number = (find_buffer(&argvars[0]) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008476}
8477
8478/*
8479 * "buflisted(expr)" function
8480 */
8481 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008482f_buflisted(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008483 typval_T *argvars;
8484 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008485{
8486 buf_T *buf;
8487
8488 buf = find_buffer(&argvars[0]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008489 rettv->vval.v_number = (buf != NULL && buf->b_p_bl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008490}
8491
8492/*
8493 * "bufloaded(expr)" function
8494 */
8495 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008496f_bufloaded(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008497 typval_T *argvars;
8498 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008499{
8500 buf_T *buf;
8501
8502 buf = find_buffer(&argvars[0]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008503 rettv->vval.v_number = (buf != NULL && buf->b_ml.ml_mfp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008504}
8505
Bram Moolenaar33570922005-01-25 22:26:29 +00008506static buf_T *get_buf_tv __ARGS((typval_T *tv));
Bram Moolenaar0d660222005-01-07 21:51:51 +00008507
Bram Moolenaar071d4272004-06-13 20:20:40 +00008508/*
8509 * Get buffer by number or pattern.
8510 */
8511 static buf_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008512get_buf_tv(tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008513 typval_T *tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008514{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008515 char_u *name = tv->vval.v_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008516 int save_magic;
8517 char_u *save_cpo;
8518 buf_T *buf;
8519
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008520 if (tv->v_type == VAR_NUMBER)
8521 return buflist_findnr((int)tv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +00008522 if (tv->v_type != VAR_STRING)
8523 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008524 if (name == NULL || *name == NUL)
8525 return curbuf;
8526 if (name[0] == '$' && name[1] == NUL)
8527 return lastbuf;
8528
8529 /* Ignore 'magic' and 'cpoptions' here to make scripts portable */
8530 save_magic = p_magic;
8531 p_magic = TRUE;
8532 save_cpo = p_cpo;
8533 p_cpo = (char_u *)"";
8534
8535 buf = buflist_findnr(buflist_findpat(name, name + STRLEN(name),
8536 TRUE, FALSE));
8537
8538 p_magic = save_magic;
8539 p_cpo = save_cpo;
8540
8541 /* If not found, try expanding the name, like done for bufexists(). */
8542 if (buf == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008543 buf = find_buffer(tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008544
8545 return buf;
8546}
8547
8548/*
8549 * "bufname(expr)" function
8550 */
8551 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008552f_bufname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008553 typval_T *argvars;
8554 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008555{
8556 buf_T *buf;
8557
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008558 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008559 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008560 buf = get_buf_tv(&argvars[0]);
8561 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008562 if (buf != NULL && buf->b_fname != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008563 rettv->vval.v_string = vim_strsave(buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008564 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008565 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008566 --emsg_off;
8567}
8568
8569/*
8570 * "bufnr(expr)" function
8571 */
8572 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008573f_bufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008574 typval_T *argvars;
8575 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008576{
8577 buf_T *buf;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008578 int error = FALSE;
8579 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008580
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008581 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008582 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008583 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008584 --emsg_off;
8585
8586 /* If the buffer isn't found and the second argument is not zero create a
8587 * new buffer. */
8588 if (buf == NULL
8589 && argvars[1].v_type != VAR_UNKNOWN
8590 && get_tv_number_chk(&argvars[1], &error) != 0
8591 && !error
8592 && (name = get_tv_string_chk(&argvars[0])) != NULL
8593 && !error)
8594 buf = buflist_new(name, NULL, (linenr_T)1, 0);
8595
Bram Moolenaar071d4272004-06-13 20:20:40 +00008596 if (buf != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008597 rettv->vval.v_number = buf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008598 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008599 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008600}
8601
8602/*
8603 * "bufwinnr(nr)" function
8604 */
8605 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008606f_bufwinnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008607 typval_T *argvars;
8608 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008609{
8610#ifdef FEAT_WINDOWS
8611 win_T *wp;
8612 int winnr = 0;
8613#endif
8614 buf_T *buf;
8615
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008616 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008617 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008618 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008619#ifdef FEAT_WINDOWS
8620 for (wp = firstwin; wp; wp = wp->w_next)
8621 {
8622 ++winnr;
8623 if (wp->w_buffer == buf)
8624 break;
8625 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008626 rettv->vval.v_number = (wp != NULL ? winnr : -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008627#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008628 rettv->vval.v_number = (curwin->w_buffer == buf ? 1 : -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008629#endif
8630 --emsg_off;
8631}
8632
8633/*
8634 * "byte2line(byte)" function
8635 */
8636/*ARGSUSED*/
8637 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008638f_byte2line(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008639 typval_T *argvars;
8640 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008641{
8642#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008643 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008644#else
8645 long boff = 0;
8646
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008647 boff = get_tv_number(&argvars[0]) - 1; /* boff gets -1 on type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008648 if (boff < 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008649 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008650 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008651 rettv->vval.v_number = ml_find_line_or_offset(curbuf,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008652 (linenr_T)0, &boff);
8653#endif
8654}
8655
8656/*
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008657 * "byteidx()" function
8658 */
8659/*ARGSUSED*/
8660 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008661f_byteidx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008662 typval_T *argvars;
8663 typval_T *rettv;
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008664{
8665#ifdef FEAT_MBYTE
8666 char_u *t;
8667#endif
8668 char_u *str;
8669 long idx;
8670
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008671 str = get_tv_string_chk(&argvars[0]);
8672 idx = get_tv_number_chk(&argvars[1], NULL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008673 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008674 if (str == NULL || idx < 0)
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008675 return;
8676
8677#ifdef FEAT_MBYTE
8678 t = str;
8679 for ( ; idx > 0; idx--)
8680 {
8681 if (*t == NUL) /* EOL reached */
8682 return;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008683 t += (*mb_ptr2len)(t);
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008684 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008685 rettv->vval.v_number = (varnumber_T)(t - str);
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008686#else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008687 if ((size_t)idx <= STRLEN(str))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008688 rettv->vval.v_number = idx;
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008689#endif
8690}
8691
8692/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008693 * "call(func, arglist)" function
8694 */
8695 static void
8696f_call(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008697 typval_T *argvars;
8698 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008699{
8700 char_u *func;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00008701 typval_T argv[MAX_FUNC_ARGS + 1];
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008702 int argc = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +00008703 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008704 int dummy;
Bram Moolenaar33570922005-01-25 22:26:29 +00008705 dict_T *selfdict = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008706
8707 rettv->vval.v_number = 0;
8708 if (argvars[1].v_type != VAR_LIST)
8709 {
8710 EMSG(_(e_listreq));
8711 return;
8712 }
8713 if (argvars[1].vval.v_list == NULL)
8714 return;
8715
8716 if (argvars[0].v_type == VAR_FUNC)
8717 func = argvars[0].vval.v_string;
8718 else
8719 func = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008720 if (*func == NUL)
8721 return; /* type error or empty name */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008722
Bram Moolenaare9a41262005-01-15 22:18:47 +00008723 if (argvars[2].v_type != VAR_UNKNOWN)
8724 {
8725 if (argvars[2].v_type != VAR_DICT)
8726 {
8727 EMSG(_(e_dictreq));
8728 return;
8729 }
8730 selfdict = argvars[2].vval.v_dict;
8731 }
8732
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008733 for (item = argvars[1].vval.v_list->lv_first; item != NULL;
8734 item = item->li_next)
8735 {
8736 if (argc == MAX_FUNC_ARGS)
8737 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00008738 EMSG(_("E699: Too many arguments"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008739 break;
8740 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00008741 /* Make a copy of each argument. This is needed to be able to set
8742 * v_lock to VAR_FIXED in the copy without changing the original list.
8743 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008744 copy_tv(&item->li_tv, &argv[argc++]);
8745 }
8746
8747 if (item == NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008748 (void)call_func(func, (int)STRLEN(func), rettv, argc, argv,
Bram Moolenaare9a41262005-01-15 22:18:47 +00008749 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
8750 &dummy, TRUE, selfdict);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008751
8752 /* Free the arguments. */
8753 while (argc > 0)
8754 clear_tv(&argv[--argc]);
8755}
8756
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008757#ifdef FEAT_FLOAT
8758/*
8759 * "ceil({float})" function
8760 */
8761 static void
8762f_ceil(argvars, rettv)
8763 typval_T *argvars;
8764 typval_T *rettv;
8765{
8766 float_T f;
8767
8768 rettv->v_type = VAR_FLOAT;
8769 if (get_float_arg(argvars, &f) == OK)
8770 rettv->vval.v_float = ceil(f);
8771 else
8772 rettv->vval.v_float = 0.0;
8773}
8774#endif
8775
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008776/*
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00008777 * "changenr()" function
8778 */
8779/*ARGSUSED*/
8780 static void
8781f_changenr(argvars, rettv)
8782 typval_T *argvars;
8783 typval_T *rettv;
8784{
8785 rettv->vval.v_number = curbuf->b_u_seq_cur;
8786}
8787
8788/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008789 * "char2nr(string)" function
8790 */
8791 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008792f_char2nr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008793 typval_T *argvars;
8794 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008795{
8796#ifdef FEAT_MBYTE
8797 if (has_mbyte)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008798 rettv->vval.v_number = (*mb_ptr2char)(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008799 else
8800#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008801 rettv->vval.v_number = get_tv_string(&argvars[0])[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00008802}
8803
8804/*
8805 * "cindent(lnum)" function
8806 */
8807 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008808f_cindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008809 typval_T *argvars;
8810 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008811{
8812#ifdef FEAT_CINDENT
8813 pos_T pos;
8814 linenr_T lnum;
8815
8816 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008817 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008818 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
8819 {
8820 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008821 rettv->vval.v_number = get_c_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008822 curwin->w_cursor = pos;
8823 }
8824 else
8825#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008826 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008827}
8828
8829/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +00008830 * "clearmatches()" function
8831 */
8832/*ARGSUSED*/
8833 static void
8834f_clearmatches(argvars, rettv)
8835 typval_T *argvars;
8836 typval_T *rettv;
8837{
8838#ifdef FEAT_SEARCH_EXTRA
8839 clear_matches(curwin);
8840#endif
8841}
8842
8843/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008844 * "col(string)" function
8845 */
8846 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008847f_col(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008848 typval_T *argvars;
8849 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008850{
8851 colnr_T col = 0;
8852 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008853 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008854
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008855 fp = var2fpos(&argvars[0], FALSE, &fnum);
8856 if (fp != NULL && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008857 {
8858 if (fp->col == MAXCOL)
8859 {
8860 /* '> can be MAXCOL, get the length of the line then */
8861 if (fp->lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008862 col = (colnr_T)STRLEN(ml_get(fp->lnum)) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008863 else
8864 col = MAXCOL;
8865 }
8866 else
8867 {
8868 col = fp->col + 1;
8869#ifdef FEAT_VIRTUALEDIT
8870 /* col(".") when the cursor is on the NUL at the end of the line
8871 * because of "coladd" can be seen as an extra column. */
8872 if (virtual_active() && fp == &curwin->w_cursor)
8873 {
8874 char_u *p = ml_get_cursor();
8875
8876 if (curwin->w_cursor.coladd >= (colnr_T)chartabsize(p,
8877 curwin->w_virtcol - curwin->w_cursor.coladd))
8878 {
8879# ifdef FEAT_MBYTE
8880 int l;
8881
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008882 if (*p != NUL && p[(l = (*mb_ptr2len)(p))] == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008883 col += l;
8884# else
8885 if (*p != NUL && p[1] == NUL)
8886 ++col;
8887# endif
8888 }
8889 }
8890#endif
8891 }
8892 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008893 rettv->vval.v_number = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008894}
8895
Bram Moolenaar572cb562005-08-05 21:35:02 +00008896#if defined(FEAT_INS_EXPAND)
8897/*
Bram Moolenaarade00832006-03-10 21:46:58 +00008898 * "complete()" function
8899 */
8900/*ARGSUSED*/
8901 static void
8902f_complete(argvars, rettv)
8903 typval_T *argvars;
8904 typval_T *rettv;
8905{
8906 int startcol;
8907
8908 if ((State & INSERT) == 0)
8909 {
8910 EMSG(_("E785: complete() can only be used in Insert mode"));
8911 return;
8912 }
Bram Moolenaarce6ef252006-07-12 19:49:41 +00008913
8914 /* Check for undo allowed here, because if something was already inserted
8915 * the line was already saved for undo and this check isn't done. */
8916 if (!undo_allowed())
8917 return;
8918
Bram Moolenaarade00832006-03-10 21:46:58 +00008919 if (argvars[1].v_type != VAR_LIST || argvars[1].vval.v_list == NULL)
8920 {
8921 EMSG(_(e_invarg));
8922 return;
8923 }
8924
8925 startcol = get_tv_number_chk(&argvars[0], NULL);
8926 if (startcol <= 0)
8927 return;
8928
8929 set_completion(startcol - 1, argvars[1].vval.v_list);
8930}
8931
8932/*
Bram Moolenaar572cb562005-08-05 21:35:02 +00008933 * "complete_add()" function
8934 */
8935/*ARGSUSED*/
8936 static void
8937f_complete_add(argvars, rettv)
8938 typval_T *argvars;
8939 typval_T *rettv;
8940{
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00008941 rettv->vval.v_number = ins_compl_add_tv(&argvars[0], 0);
Bram Moolenaar572cb562005-08-05 21:35:02 +00008942}
8943
8944/*
8945 * "complete_check()" function
8946 */
8947/*ARGSUSED*/
8948 static void
8949f_complete_check(argvars, rettv)
8950 typval_T *argvars;
8951 typval_T *rettv;
8952{
8953 int saved = RedrawingDisabled;
8954
8955 RedrawingDisabled = 0;
8956 ins_compl_check_keys(0);
8957 rettv->vval.v_number = compl_interrupted;
8958 RedrawingDisabled = saved;
8959}
8960#endif
8961
Bram Moolenaar071d4272004-06-13 20:20:40 +00008962/*
8963 * "confirm(message, buttons[, default [, type]])" function
8964 */
8965/*ARGSUSED*/
8966 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008967f_confirm(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008968 typval_T *argvars;
8969 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008970{
8971#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
8972 char_u *message;
8973 char_u *buttons = NULL;
8974 char_u buf[NUMBUFLEN];
8975 char_u buf2[NUMBUFLEN];
8976 int def = 1;
8977 int type = VIM_GENERIC;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008978 char_u *typestr;
8979 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008980
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008981 message = get_tv_string_chk(&argvars[0]);
8982 if (message == NULL)
8983 error = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008984 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008985 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008986 buttons = get_tv_string_buf_chk(&argvars[1], buf);
8987 if (buttons == NULL)
8988 error = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008989 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008990 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008991 def = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008992 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008993 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008994 typestr = get_tv_string_buf_chk(&argvars[3], buf2);
8995 if (typestr == NULL)
8996 error = TRUE;
8997 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008998 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008999 switch (TOUPPER_ASC(*typestr))
9000 {
9001 case 'E': type = VIM_ERROR; break;
9002 case 'Q': type = VIM_QUESTION; break;
9003 case 'I': type = VIM_INFO; break;
9004 case 'W': type = VIM_WARNING; break;
9005 case 'G': type = VIM_GENERIC; break;
9006 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009007 }
9008 }
9009 }
9010 }
9011
9012 if (buttons == NULL || *buttons == NUL)
9013 buttons = (char_u *)_("&Ok");
9014
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009015 if (error)
9016 rettv->vval.v_number = 0;
9017 else
9018 rettv->vval.v_number = do_dialog(type, NULL, message, buttons,
Bram Moolenaar071d4272004-06-13 20:20:40 +00009019 def, NULL);
9020#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009021 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009022#endif
9023}
9024
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009025/*
9026 * "copy()" function
9027 */
9028 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009029f_copy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009030 typval_T *argvars;
9031 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009032{
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009033 item_copy(&argvars[0], rettv, FALSE, 0);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009034}
Bram Moolenaar071d4272004-06-13 20:20:40 +00009035
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009036#ifdef FEAT_FLOAT
9037/*
9038 * "cos()" function
9039 */
9040 static void
9041f_cos(argvars, rettv)
9042 typval_T *argvars;
9043 typval_T *rettv;
9044{
9045 float_T f;
9046
9047 rettv->v_type = VAR_FLOAT;
9048 if (get_float_arg(argvars, &f) == OK)
9049 rettv->vval.v_float = cos(f);
9050 else
9051 rettv->vval.v_float = 0.0;
9052}
9053#endif
9054
Bram Moolenaar071d4272004-06-13 20:20:40 +00009055/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009056 * "count()" function
9057 */
9058 static void
9059f_count(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009060 typval_T *argvars;
9061 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009062{
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009063 long n = 0;
9064 int ic = FALSE;
9065
Bram Moolenaare9a41262005-01-15 22:18:47 +00009066 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009067 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009068 listitem_T *li;
9069 list_T *l;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009070 long idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009071
Bram Moolenaare9a41262005-01-15 22:18:47 +00009072 if ((l = argvars[0].vval.v_list) != NULL)
9073 {
9074 li = l->lv_first;
9075 if (argvars[2].v_type != VAR_UNKNOWN)
9076 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009077 int error = FALSE;
9078
9079 ic = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009080 if (argvars[3].v_type != VAR_UNKNOWN)
9081 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009082 idx = get_tv_number_chk(&argvars[3], &error);
9083 if (!error)
9084 {
9085 li = list_find(l, idx);
9086 if (li == NULL)
9087 EMSGN(_(e_listidx), idx);
9088 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009089 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009090 if (error)
9091 li = NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009092 }
9093
9094 for ( ; li != NULL; li = li->li_next)
9095 if (tv_equal(&li->li_tv, &argvars[1], ic))
9096 ++n;
9097 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009098 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009099 else if (argvars[0].v_type == VAR_DICT)
9100 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009101 int todo;
9102 dict_T *d;
9103 hashitem_T *hi;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009104
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009105 if ((d = argvars[0].vval.v_dict) != NULL)
9106 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009107 int error = FALSE;
9108
Bram Moolenaare9a41262005-01-15 22:18:47 +00009109 if (argvars[2].v_type != VAR_UNKNOWN)
9110 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009111 ic = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009112 if (argvars[3].v_type != VAR_UNKNOWN)
9113 EMSG(_(e_invarg));
9114 }
9115
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009116 todo = error ? 0 : (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00009117 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009118 {
9119 if (!HASHITEM_EMPTY(hi))
9120 {
9121 --todo;
9122 if (tv_equal(&HI2DI(hi)->di_tv, &argvars[1], ic))
9123 ++n;
9124 }
9125 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009126 }
9127 }
9128 else
9129 EMSG2(_(e_listdictarg), "count()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009130 rettv->vval.v_number = n;
9131}
9132
9133/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009134 * "cscope_connection([{num} , {dbpath} [, {prepend}]])" function
9135 *
9136 * Checks the existence of a cscope connection.
9137 */
9138/*ARGSUSED*/
9139 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009140f_cscope_connection(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009141 typval_T *argvars;
9142 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009143{
9144#ifdef FEAT_CSCOPE
9145 int num = 0;
9146 char_u *dbpath = NULL;
9147 char_u *prepend = NULL;
9148 char_u buf[NUMBUFLEN];
9149
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009150 if (argvars[0].v_type != VAR_UNKNOWN
9151 && argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009152 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009153 num = (int)get_tv_number(&argvars[0]);
9154 dbpath = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009155 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009156 prepend = get_tv_string_buf(&argvars[2], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009157 }
9158
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009159 rettv->vval.v_number = cs_connection(num, dbpath, prepend);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009160#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009161 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009162#endif
9163}
9164
9165/*
9166 * "cursor(lnum, col)" function
9167 *
9168 * Moves the cursor to the specified line and column
9169 */
9170/*ARGSUSED*/
9171 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009172f_cursor(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009173 typval_T *argvars;
9174 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009175{
9176 long line, col;
Bram Moolenaara5525202006-03-02 22:52:09 +00009177#ifdef FEAT_VIRTUALEDIT
9178 long coladd = 0;
9179#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009180
Bram Moolenaara5525202006-03-02 22:52:09 +00009181 if (argvars[1].v_type == VAR_UNKNOWN)
9182 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009183 pos_T pos;
Bram Moolenaara5525202006-03-02 22:52:09 +00009184
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009185 if (list2fpos(argvars, &pos, NULL) == FAIL)
Bram Moolenaara5525202006-03-02 22:52:09 +00009186 return;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009187 line = pos.lnum;
9188 col = pos.col;
Bram Moolenaara5525202006-03-02 22:52:09 +00009189#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009190 coladd = pos.coladd;
Bram Moolenaara5525202006-03-02 22:52:09 +00009191#endif
9192 }
9193 else
9194 {
9195 line = get_tv_lnum(argvars);
9196 col = get_tv_number_chk(&argvars[1], NULL);
9197#ifdef FEAT_VIRTUALEDIT
9198 if (argvars[2].v_type != VAR_UNKNOWN)
9199 coladd = get_tv_number_chk(&argvars[2], NULL);
9200#endif
9201 }
9202 if (line < 0 || col < 0
9203#ifdef FEAT_VIRTUALEDIT
9204 || coladd < 0
9205#endif
9206 )
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009207 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009208 if (line > 0)
9209 curwin->w_cursor.lnum = line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009210 if (col > 0)
9211 curwin->w_cursor.col = col - 1;
9212#ifdef FEAT_VIRTUALEDIT
Bram Moolenaara5525202006-03-02 22:52:09 +00009213 curwin->w_cursor.coladd = coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009214#endif
9215
9216 /* Make sure the cursor is in a valid position. */
9217 check_cursor();
9218#ifdef FEAT_MBYTE
9219 /* Correct cursor for multi-byte character. */
9220 if (has_mbyte)
9221 mb_adjust_cursor();
9222#endif
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00009223
9224 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009225}
9226
9227/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009228 * "deepcopy()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +00009229 */
9230 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009231f_deepcopy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009232 typval_T *argvars;
9233 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009234{
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009235 int noref = 0;
9236
9237 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009238 noref = get_tv_number_chk(&argvars[1], NULL);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009239 if (noref < 0 || noref > 1)
9240 EMSG(_(e_invarg));
9241 else
Bram Moolenaard9fba312005-06-26 22:34:35 +00009242 item_copy(&argvars[0], rettv, TRUE, noref == 0 ? ++current_copyID : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009243}
9244
9245/*
9246 * "delete()" function
9247 */
9248 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009249f_delete(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009250 typval_T *argvars;
9251 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009252{
9253 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009254 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009255 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009256 rettv->vval.v_number = mch_remove(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009257}
9258
9259/*
9260 * "did_filetype()" function
9261 */
9262/*ARGSUSED*/
9263 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009264f_did_filetype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009265 typval_T *argvars;
9266 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009267{
9268#ifdef FEAT_AUTOCMD
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009269 rettv->vval.v_number = did_filetype;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009270#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009271 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009272#endif
9273}
9274
9275/*
Bram Moolenaar47136d72004-10-12 20:02:24 +00009276 * "diff_filler()" function
9277 */
9278/*ARGSUSED*/
9279 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009280f_diff_filler(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009281 typval_T *argvars;
9282 typval_T *rettv;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009283{
9284#ifdef FEAT_DIFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009285 rettv->vval.v_number = diff_check_fill(curwin, get_tv_lnum(argvars));
Bram Moolenaar47136d72004-10-12 20:02:24 +00009286#endif
9287}
9288
9289/*
9290 * "diff_hlID()" function
9291 */
9292/*ARGSUSED*/
9293 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009294f_diff_hlID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009295 typval_T *argvars;
9296 typval_T *rettv;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009297{
9298#ifdef FEAT_DIFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009299 linenr_T lnum = get_tv_lnum(argvars);
Bram Moolenaar47136d72004-10-12 20:02:24 +00009300 static linenr_T prev_lnum = 0;
9301 static int changedtick = 0;
9302 static int fnum = 0;
9303 static int change_start = 0;
9304 static int change_end = 0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00009305 static hlf_T hlID = (hlf_T)0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009306 int filler_lines;
9307 int col;
9308
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009309 if (lnum < 0) /* ignore type error in {lnum} arg */
9310 lnum = 0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009311 if (lnum != prev_lnum
9312 || changedtick != curbuf->b_changedtick
9313 || fnum != curbuf->b_fnum)
9314 {
9315 /* New line, buffer, change: need to get the values. */
9316 filler_lines = diff_check(curwin, lnum);
9317 if (filler_lines < 0)
9318 {
9319 if (filler_lines == -1)
9320 {
9321 change_start = MAXCOL;
9322 change_end = -1;
9323 if (diff_find_change(curwin, lnum, &change_start, &change_end))
9324 hlID = HLF_ADD; /* added line */
9325 else
9326 hlID = HLF_CHD; /* changed line */
9327 }
9328 else
9329 hlID = HLF_ADD; /* added line */
9330 }
9331 else
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009332 hlID = (hlf_T)0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009333 prev_lnum = lnum;
9334 changedtick = curbuf->b_changedtick;
9335 fnum = curbuf->b_fnum;
9336 }
9337
9338 if (hlID == HLF_CHD || hlID == HLF_TXD)
9339 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009340 col = get_tv_number(&argvars[1]) - 1; /* ignore type error in {col} */
Bram Moolenaar47136d72004-10-12 20:02:24 +00009341 if (col >= change_start && col <= change_end)
9342 hlID = HLF_TXD; /* changed text */
9343 else
9344 hlID = HLF_CHD; /* changed line */
9345 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009346 rettv->vval.v_number = hlID == (hlf_T)0 ? 0 : (int)hlID;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009347#endif
9348}
9349
9350/*
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009351 * "empty({expr})" function
9352 */
9353 static void
9354f_empty(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009355 typval_T *argvars;
9356 typval_T *rettv;
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009357{
9358 int n;
9359
9360 switch (argvars[0].v_type)
9361 {
9362 case VAR_STRING:
9363 case VAR_FUNC:
9364 n = argvars[0].vval.v_string == NULL
9365 || *argvars[0].vval.v_string == NUL;
9366 break;
9367 case VAR_NUMBER:
9368 n = argvars[0].vval.v_number == 0;
9369 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009370#ifdef FEAT_FLOAT
9371 case VAR_FLOAT:
9372 n = argvars[0].vval.v_float == 0.0;
9373 break;
9374#endif
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009375 case VAR_LIST:
9376 n = argvars[0].vval.v_list == NULL
9377 || argvars[0].vval.v_list->lv_first == NULL;
9378 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009379 case VAR_DICT:
9380 n = argvars[0].vval.v_dict == NULL
Bram Moolenaar33570922005-01-25 22:26:29 +00009381 || argvars[0].vval.v_dict->dv_hashtab.ht_used == 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009382 break;
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009383 default:
9384 EMSG2(_(e_intern2), "f_empty()");
9385 n = 0;
9386 }
9387
9388 rettv->vval.v_number = n;
9389}
9390
9391/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009392 * "escape({string}, {chars})" function
9393 */
9394 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009395f_escape(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009396 typval_T *argvars;
9397 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009398{
9399 char_u buf[NUMBUFLEN];
9400
Bram Moolenaar758711c2005-02-02 23:11:38 +00009401 rettv->vval.v_string = vim_strsave_escaped(get_tv_string(&argvars[0]),
9402 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009403 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009404}
9405
9406/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009407 * "eval()" function
9408 */
9409/*ARGSUSED*/
9410 static void
9411f_eval(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009412 typval_T *argvars;
9413 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009414{
9415 char_u *s;
9416
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009417 s = get_tv_string_chk(&argvars[0]);
9418 if (s != NULL)
9419 s = skipwhite(s);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009420
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009421 if (s == NULL || eval1(&s, rettv, TRUE) == FAIL)
9422 {
9423 rettv->v_type = VAR_NUMBER;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009424 rettv->vval.v_number = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009425 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009426 else if (*s != NUL)
9427 EMSG(_(e_trailing));
9428}
9429
9430/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009431 * "eventhandler()" function
9432 */
9433/*ARGSUSED*/
9434 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009435f_eventhandler(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009436 typval_T *argvars;
9437 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009438{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009439 rettv->vval.v_number = vgetc_busy;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009440}
9441
9442/*
9443 * "executable()" function
9444 */
9445 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009446f_executable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009447 typval_T *argvars;
9448 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009449{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009450 rettv->vval.v_number = mch_can_exe(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009451}
9452
9453/*
9454 * "exists()" function
9455 */
9456 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009457f_exists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009458 typval_T *argvars;
9459 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009460{
9461 char_u *p;
9462 char_u *name;
9463 int n = FALSE;
9464 int len = 0;
9465
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009466 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009467 if (*p == '$') /* environment variable */
9468 {
9469 /* first try "normal" environment variables (fast) */
9470 if (mch_getenv(p + 1) != NULL)
9471 n = TRUE;
9472 else
9473 {
9474 /* try expanding things like $VIM and ${HOME} */
9475 p = expand_env_save(p);
9476 if (p != NULL && *p != '$')
9477 n = TRUE;
9478 vim_free(p);
9479 }
9480 }
9481 else if (*p == '&' || *p == '+') /* option */
Bram Moolenaar79783442006-05-05 21:18:03 +00009482 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009483 n = (get_option_tv(&p, NULL, TRUE) == OK);
Bram Moolenaar79783442006-05-05 21:18:03 +00009484 if (*skipwhite(p) != NUL)
9485 n = FALSE; /* trailing garbage */
9486 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009487 else if (*p == '*') /* internal or user defined function */
9488 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009489 n = function_exists(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009490 }
9491 else if (*p == ':')
9492 {
9493 n = cmd_exists(p + 1);
9494 }
9495 else if (*p == '#')
9496 {
9497#ifdef FEAT_AUTOCMD
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00009498 if (p[1] == '#')
9499 n = autocmd_supported(p + 2);
9500 else
9501 n = au_exists(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009502#endif
9503 }
9504 else /* internal variable */
9505 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009506 char_u *tofree;
9507 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009508
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009509 /* get_name_len() takes care of expanding curly braces */
9510 name = p;
9511 len = get_name_len(&p, &tofree, TRUE, FALSE);
9512 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009513 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009514 if (tofree != NULL)
9515 name = tofree;
9516 n = (get_var_tv(name, len, &tv, FALSE) == OK);
9517 if (n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009518 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009519 /* handle d.key, l[idx], f(expr) */
9520 n = (handle_subscript(&p, &tv, TRUE, FALSE) == OK);
9521 if (n)
9522 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009523 }
9524 }
Bram Moolenaar79783442006-05-05 21:18:03 +00009525 if (*p != NUL)
9526 n = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009527
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009528 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009529 }
9530
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009531 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009532}
9533
9534/*
9535 * "expand()" function
9536 */
9537 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009538f_expand(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009539 typval_T *argvars;
9540 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009541{
9542 char_u *s;
9543 int len;
9544 char_u *errormsg;
9545 int flags = WILD_SILENT|WILD_USE_NL|WILD_LIST_NOTFOUND;
9546 expand_T xpc;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009547 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009548
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009549 rettv->v_type = VAR_STRING;
9550 s = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009551 if (*s == '%' || *s == '#' || *s == '<')
9552 {
9553 ++emsg_off;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009554 rettv->vval.v_string = eval_vars(s, s, &len, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009555 --emsg_off;
9556 }
9557 else
9558 {
9559 /* When the optional second argument is non-zero, don't remove matches
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00009560 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009561 if (argvars[1].v_type != VAR_UNKNOWN
9562 && get_tv_number_chk(&argvars[1], &error))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009563 flags |= WILD_KEEP_ALL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009564 if (!error)
9565 {
9566 ExpandInit(&xpc);
9567 xpc.xp_context = EXPAND_FILES;
9568 rettv->vval.v_string = ExpandOne(&xpc, s, NULL, flags, WILD_ALL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009569 }
9570 else
9571 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009572 }
9573}
9574
9575/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009576 * "extend(list, list [, idx])" function
Bram Moolenaare9a41262005-01-15 22:18:47 +00009577 * "extend(dict, dict [, action])" function
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009578 */
9579 static void
9580f_extend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009581 typval_T *argvars;
9582 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009583{
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009584 rettv->vval.v_number = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009585 if (argvars[0].v_type == VAR_LIST && argvars[1].v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009586 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009587 list_T *l1, *l2;
9588 listitem_T *item;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009589 long before;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009590 int error = FALSE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009591
Bram Moolenaare9a41262005-01-15 22:18:47 +00009592 l1 = argvars[0].vval.v_list;
9593 l2 = argvars[1].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009594 if (l1 != NULL && !tv_check_lock(l1->lv_lock, (char_u *)"extend()")
9595 && l2 != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009596 {
9597 if (argvars[2].v_type != VAR_UNKNOWN)
9598 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009599 before = get_tv_number_chk(&argvars[2], &error);
9600 if (error)
9601 return; /* type error; errmsg already given */
9602
Bram Moolenaar758711c2005-02-02 23:11:38 +00009603 if (before == l1->lv_len)
9604 item = NULL;
9605 else
Bram Moolenaare9a41262005-01-15 22:18:47 +00009606 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00009607 item = list_find(l1, before);
9608 if (item == NULL)
9609 {
9610 EMSGN(_(e_listidx), before);
9611 return;
9612 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009613 }
9614 }
9615 else
9616 item = NULL;
9617 list_extend(l1, l2, item);
9618
Bram Moolenaare9a41262005-01-15 22:18:47 +00009619 copy_tv(&argvars[0], rettv);
9620 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009621 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009622 else if (argvars[0].v_type == VAR_DICT && argvars[1].v_type == VAR_DICT)
9623 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009624 dict_T *d1, *d2;
9625 dictitem_T *di1;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009626 char_u *action;
9627 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +00009628 hashitem_T *hi2;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009629 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009630
9631 d1 = argvars[0].vval.v_dict;
9632 d2 = argvars[1].vval.v_dict;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009633 if (d1 != NULL && !tv_check_lock(d1->dv_lock, (char_u *)"extend()")
9634 && d2 != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009635 {
9636 /* Check the third argument. */
9637 if (argvars[2].v_type != VAR_UNKNOWN)
9638 {
9639 static char *(av[]) = {"keep", "force", "error"};
9640
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009641 action = get_tv_string_chk(&argvars[2]);
9642 if (action == NULL)
9643 return; /* type error; errmsg already given */
Bram Moolenaare9a41262005-01-15 22:18:47 +00009644 for (i = 0; i < 3; ++i)
9645 if (STRCMP(action, av[i]) == 0)
9646 break;
9647 if (i == 3)
9648 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009649 EMSG2(_(e_invarg2), action);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009650 return;
9651 }
9652 }
9653 else
9654 action = (char_u *)"force";
9655
9656 /* Go over all entries in the second dict and add them to the
9657 * first dict. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009658 todo = (int)d2->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00009659 for (hi2 = d2->dv_hashtab.ht_array; todo > 0; ++hi2)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009660 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009661 if (!HASHITEM_EMPTY(hi2))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009662 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009663 --todo;
9664 di1 = dict_find(d1, hi2->hi_key, -1);
9665 if (di1 == NULL)
9666 {
9667 di1 = dictitem_copy(HI2DI(hi2));
9668 if (di1 != NULL && dict_add(d1, di1) == FAIL)
9669 dictitem_free(di1);
9670 }
9671 else if (*action == 'e')
9672 {
9673 EMSG2(_("E737: Key already exists: %s"), hi2->hi_key);
9674 break;
9675 }
9676 else if (*action == 'f')
9677 {
9678 clear_tv(&di1->di_tv);
9679 copy_tv(&HI2DI(hi2)->di_tv, &di1->di_tv);
9680 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009681 }
9682 }
9683
Bram Moolenaare9a41262005-01-15 22:18:47 +00009684 copy_tv(&argvars[0], rettv);
9685 }
9686 }
9687 else
9688 EMSG2(_(e_listdictarg), "extend()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009689}
9690
9691/*
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009692 * "feedkeys()" function
9693 */
9694/*ARGSUSED*/
9695 static void
9696f_feedkeys(argvars, rettv)
9697 typval_T *argvars;
9698 typval_T *rettv;
9699{
9700 int remap = TRUE;
9701 char_u *keys, *flags;
9702 char_u nbuf[NUMBUFLEN];
9703 int typed = FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009704 char_u *keys_esc;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009705
Bram Moolenaar3d43a662007-04-27 20:15:55 +00009706 /* This is not allowed in the sandbox. If the commands would still be
9707 * executed in the sandbox it would be OK, but it probably happens later,
9708 * when "sandbox" is no longer set. */
9709 if (check_secure())
9710 return;
9711
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009712 rettv->vval.v_number = 0;
9713 keys = get_tv_string(&argvars[0]);
9714 if (*keys != NUL)
9715 {
9716 if (argvars[1].v_type != VAR_UNKNOWN)
9717 {
9718 flags = get_tv_string_buf(&argvars[1], nbuf);
9719 for ( ; *flags != NUL; ++flags)
9720 {
9721 switch (*flags)
9722 {
9723 case 'n': remap = FALSE; break;
9724 case 'm': remap = TRUE; break;
9725 case 't': typed = TRUE; break;
9726 }
9727 }
9728 }
9729
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009730 /* Need to escape K_SPECIAL and CSI before putting the string in the
9731 * typeahead buffer. */
9732 keys_esc = vim_strsave_escape_csi(keys);
9733 if (keys_esc != NULL)
9734 {
9735 ins_typebuf(keys_esc, (remap ? REMAP_YES : REMAP_NONE),
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009736 typebuf.tb_len, !typed, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009737 vim_free(keys_esc);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00009738 if (vgetc_busy)
9739 typebuf_was_filled = TRUE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009740 }
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009741 }
9742}
9743
9744/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009745 * "filereadable()" function
9746 */
9747 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009748f_filereadable(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 Moolenaarc236c162008-07-13 17:41:49 +00009752 int fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009753 char_u *p;
9754 int n;
9755
Bram Moolenaarc236c162008-07-13 17:41:49 +00009756#ifndef O_NONBLOCK
9757# define O_NONBLOCK 0
9758#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009759 p = get_tv_string(&argvars[0]);
Bram Moolenaarc236c162008-07-13 17:41:49 +00009760 if (*p && !mch_isdir(p) && (fd = mch_open((char *)p,
9761 O_RDONLY | O_NONBLOCK, 0)) >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009762 {
9763 n = TRUE;
Bram Moolenaarc236c162008-07-13 17:41:49 +00009764 close(fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009765 }
9766 else
9767 n = FALSE;
9768
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009769 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009770}
9771
9772/*
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00009773 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
Bram Moolenaar071d4272004-06-13 20:20:40 +00009774 * rights to write into.
9775 */
9776 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009777f_filewritable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009778 typval_T *argvars;
9779 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009780{
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00009781 rettv->vval.v_number = filewritable(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009782}
9783
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009784static void findfilendir __ARGS((typval_T *argvars, typval_T *rettv, int find_what));
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009785
9786 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009787findfilendir(argvars, rettv, find_what)
Bram Moolenaar33570922005-01-25 22:26:29 +00009788 typval_T *argvars;
9789 typval_T *rettv;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009790 int find_what;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009791{
9792#ifdef FEAT_SEARCHPATH
9793 char_u *fname;
9794 char_u *fresult = NULL;
9795 char_u *path = *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path;
9796 char_u *p;
9797 char_u pathbuf[NUMBUFLEN];
9798 int count = 1;
9799 int first = TRUE;
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009800 int error = FALSE;
9801#endif
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009802
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009803 rettv->vval.v_string = NULL;
9804 rettv->v_type = VAR_STRING;
9805
9806#ifdef FEAT_SEARCHPATH
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009807 fname = get_tv_string(&argvars[0]);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009808
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009809 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009810 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009811 p = get_tv_string_buf_chk(&argvars[1], pathbuf);
9812 if (p == NULL)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009813 error = TRUE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009814 else
9815 {
9816 if (*p != NUL)
9817 path = p;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009818
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009819 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009820 count = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009821 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009822 }
9823
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009824 if (count < 0 && rettv_list_alloc(rettv) == FAIL)
9825 error = TRUE;
9826
9827 if (*fname != NUL && !error)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009828 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009829 do
9830 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009831 if (rettv->v_type == VAR_STRING)
9832 vim_free(fresult);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009833 fresult = find_file_in_path_option(first ? fname : NULL,
9834 first ? (int)STRLEN(fname) : 0,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009835 0, first, path,
9836 find_what,
9837 curbuf->b_ffname,
9838 find_what == FINDFILE_DIR
9839 ? (char_u *)"" : curbuf->b_p_sua);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009840 first = FALSE;
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009841
9842 if (fresult != NULL && rettv->v_type == VAR_LIST)
9843 list_append_string(rettv->vval.v_list, fresult, -1);
9844
9845 } while ((rettv->v_type == VAR_LIST || --count > 0) && fresult != NULL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009846 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009847
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009848 if (rettv->v_type == VAR_STRING)
9849 rettv->vval.v_string = fresult;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009850#endif
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009851}
9852
Bram Moolenaar33570922005-01-25 22:26:29 +00009853static void filter_map __ARGS((typval_T *argvars, typval_T *rettv, int map));
9854static int filter_map_one __ARGS((typval_T *tv, char_u *expr, int map, int *remp));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009855
9856/*
9857 * Implementation of map() and filter().
9858 */
9859 static void
9860filter_map(argvars, rettv, map)
Bram Moolenaar33570922005-01-25 22:26:29 +00009861 typval_T *argvars;
9862 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009863 int map;
9864{
9865 char_u buf[NUMBUFLEN];
Bram Moolenaare9a41262005-01-15 22:18:47 +00009866 char_u *expr;
Bram Moolenaar33570922005-01-25 22:26:29 +00009867 listitem_T *li, *nli;
9868 list_T *l = NULL;
9869 dictitem_T *di;
9870 hashtab_T *ht;
9871 hashitem_T *hi;
9872 dict_T *d = NULL;
9873 typval_T save_val;
9874 typval_T save_key;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009875 int rem;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009876 int todo;
Bram Moolenaar89d40322006-08-29 15:30:07 +00009877 char_u *ermsg = map ? (char_u *)"map()" : (char_u *)"filter()";
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009878 int save_did_emsg;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009879
9880 rettv->vval.v_number = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009881 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009882 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009883 if ((l = argvars[0].vval.v_list) == NULL
Bram Moolenaar89d40322006-08-29 15:30:07 +00009884 || (map && tv_check_lock(l->lv_lock, ermsg)))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009885 return;
9886 }
9887 else if (argvars[0].v_type == VAR_DICT)
9888 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009889 if ((d = argvars[0].vval.v_dict) == NULL
Bram Moolenaar89d40322006-08-29 15:30:07 +00009890 || (map && tv_check_lock(d->dv_lock, ermsg)))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009891 return;
9892 }
9893 else
9894 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00009895 EMSG2(_(e_listdictarg), ermsg);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009896 return;
9897 }
9898
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009899 expr = get_tv_string_buf_chk(&argvars[1], buf);
9900 /* On type errors, the preceding call has already displayed an error
9901 * message. Avoid a misleading error message for an empty string that
9902 * was not passed as argument. */
9903 if (expr != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009904 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009905 prepare_vimvar(VV_VAL, &save_val);
9906 expr = skipwhite(expr);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009907
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009908 /* We reset "did_emsg" to be able to detect whether an error
9909 * occurred during evaluation of the expression. */
9910 save_did_emsg = did_emsg;
9911 did_emsg = FALSE;
Bram Moolenaar280f1262006-01-30 00:14:18 +00009912
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009913 if (argvars[0].v_type == VAR_DICT)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009914 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009915 prepare_vimvar(VV_KEY, &save_key);
9916 vimvars[VV_KEY].vv_type = VAR_STRING;
9917
9918 ht = &d->dv_hashtab;
9919 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009920 todo = (int)ht->ht_used;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009921 for (hi = ht->ht_array; todo > 0; ++hi)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009922 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009923 if (!HASHITEM_EMPTY(hi))
9924 {
9925 --todo;
9926 di = HI2DI(hi);
Bram Moolenaar89d40322006-08-29 15:30:07 +00009927 if (tv_check_lock(di->di_tv.v_lock, ermsg))
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009928 break;
9929 vimvars[VV_KEY].vv_str = vim_strsave(di->di_key);
Bram Moolenaar280f1262006-01-30 00:14:18 +00009930 if (filter_map_one(&di->di_tv, expr, map, &rem) == FAIL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009931 || did_emsg)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009932 break;
9933 if (!map && rem)
9934 dictitem_remove(d, di);
9935 clear_tv(&vimvars[VV_KEY].vv_tv);
9936 }
9937 }
9938 hash_unlock(ht);
9939
9940 restore_vimvar(VV_KEY, &save_key);
9941 }
9942 else
9943 {
9944 for (li = l->lv_first; li != NULL; li = nli)
9945 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00009946 if (tv_check_lock(li->li_tv.v_lock, ermsg))
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009947 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009948 nli = li->li_next;
Bram Moolenaar280f1262006-01-30 00:14:18 +00009949 if (filter_map_one(&li->li_tv, expr, map, &rem) == FAIL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009950 || did_emsg)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009951 break;
9952 if (!map && rem)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009953 listitem_remove(l, li);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009954 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009955 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009956
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009957 restore_vimvar(VV_VAL, &save_val);
Bram Moolenaar280f1262006-01-30 00:14:18 +00009958
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009959 did_emsg |= save_did_emsg;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009960 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009961
9962 copy_tv(&argvars[0], rettv);
9963}
9964
9965 static int
9966filter_map_one(tv, expr, map, remp)
Bram Moolenaar33570922005-01-25 22:26:29 +00009967 typval_T *tv;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009968 char_u *expr;
9969 int map;
9970 int *remp;
9971{
Bram Moolenaar33570922005-01-25 22:26:29 +00009972 typval_T rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009973 char_u *s;
Bram Moolenaarb4066a12007-09-17 19:38:08 +00009974 int retval = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009975
Bram Moolenaar33570922005-01-25 22:26:29 +00009976 copy_tv(tv, &vimvars[VV_VAL].vv_tv);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009977 s = expr;
9978 if (eval1(&s, &rettv, TRUE) == FAIL)
Bram Moolenaarb4066a12007-09-17 19:38:08 +00009979 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009980 if (*s != NUL) /* check for trailing chars after expr */
9981 {
9982 EMSG2(_(e_invexpr2), s);
Bram Moolenaarb4066a12007-09-17 19:38:08 +00009983 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009984 }
9985 if (map)
9986 {
9987 /* map(): replace the list item value */
9988 clear_tv(tv);
Bram Moolenaar4463f292005-09-25 22:20:24 +00009989 rettv.v_lock = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009990 *tv = rettv;
9991 }
9992 else
9993 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009994 int error = FALSE;
9995
Bram Moolenaare9a41262005-01-15 22:18:47 +00009996 /* filter(): when expr is zero remove the item */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009997 *remp = (get_tv_number_chk(&rettv, &error) == 0);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009998 clear_tv(&rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009999 /* On type error, nothing has been removed; return FAIL to stop the
10000 * loop. The error message was given by get_tv_number_chk(). */
10001 if (error)
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010002 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010003 }
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010004 retval = OK;
10005theend:
Bram Moolenaar33570922005-01-25 22:26:29 +000010006 clear_tv(&vimvars[VV_VAL].vv_tv);
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010007 return retval;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010008}
10009
10010/*
10011 * "filter()" function
10012 */
10013 static void
10014f_filter(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010015 typval_T *argvars;
10016 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010017{
10018 filter_map(argvars, rettv, FALSE);
10019}
10020
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000010021/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010022 * "finddir({fname}[, {path}[, {count}]])" function
10023 */
10024 static void
10025f_finddir(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010026 typval_T *argvars;
10027 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010028{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +000010029 findfilendir(argvars, rettv, FINDFILE_DIR);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010030}
10031
10032/*
10033 * "findfile({fname}[, {path}[, {count}]])" function
10034 */
10035 static void
10036f_findfile(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010037 typval_T *argvars;
10038 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010039{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +000010040 findfilendir(argvars, rettv, FINDFILE_FILE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010041}
10042
Bram Moolenaar8c8de832008-06-24 22:58:06 +000010043#ifdef FEAT_FLOAT
10044/*
10045 * "float2nr({float})" function
10046 */
10047 static void
10048f_float2nr(argvars, rettv)
10049 typval_T *argvars;
10050 typval_T *rettv;
10051{
10052 float_T f;
10053
10054 if (get_float_arg(argvars, &f) == OK)
10055 {
10056 if (f < -0x7fffffff)
10057 rettv->vval.v_number = -0x7fffffff;
10058 else if (f > 0x7fffffff)
10059 rettv->vval.v_number = 0x7fffffff;
10060 else
10061 rettv->vval.v_number = (varnumber_T)f;
10062 }
10063 else
10064 rettv->vval.v_number = 0;
10065}
10066
10067/*
10068 * "floor({float})" function
10069 */
10070 static void
10071f_floor(argvars, rettv)
10072 typval_T *argvars;
10073 typval_T *rettv;
10074{
10075 float_T f;
10076
10077 rettv->v_type = VAR_FLOAT;
10078 if (get_float_arg(argvars, &f) == OK)
10079 rettv->vval.v_float = floor(f);
10080 else
10081 rettv->vval.v_float = 0.0;
10082}
10083#endif
10084
Bram Moolenaar0d660222005-01-07 21:51:51 +000010085/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +000010086 * "fnameescape({string})" function
10087 */
10088 static void
10089f_fnameescape(argvars, rettv)
10090 typval_T *argvars;
10091 typval_T *rettv;
10092{
10093 rettv->vval.v_string = vim_strsave_fnameescape(
10094 get_tv_string(&argvars[0]), FALSE);
10095 rettv->v_type = VAR_STRING;
10096}
10097
10098/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010099 * "fnamemodify({fname}, {mods})" function
10100 */
10101 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010102f_fnamemodify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010103 typval_T *argvars;
10104 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010105{
10106 char_u *fname;
10107 char_u *mods;
10108 int usedlen = 0;
10109 int len;
10110 char_u *fbuf = NULL;
10111 char_u buf[NUMBUFLEN];
10112
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010113 fname = get_tv_string_chk(&argvars[0]);
10114 mods = get_tv_string_buf_chk(&argvars[1], buf);
10115 if (fname == NULL || mods == NULL)
10116 fname = NULL;
10117 else
10118 {
10119 len = (int)STRLEN(fname);
10120 (void)modify_fname(mods, &usedlen, &fname, &fbuf, &len);
10121 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010122
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010123 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010124 if (fname == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010125 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010126 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010127 rettv->vval.v_string = vim_strnsave(fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010128 vim_free(fbuf);
10129}
10130
Bram Moolenaar33570922005-01-25 22:26:29 +000010131static void foldclosed_both __ARGS((typval_T *argvars, typval_T *rettv, int end));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010132
10133/*
10134 * "foldclosed()" function
10135 */
10136 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010137foldclosed_both(argvars, rettv, end)
Bram Moolenaar33570922005-01-25 22:26:29 +000010138 typval_T *argvars;
10139 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010140 int end;
10141{
10142#ifdef FEAT_FOLDING
10143 linenr_T lnum;
10144 linenr_T first, last;
10145
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010146 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010147 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
10148 {
10149 if (hasFoldingWin(curwin, lnum, &first, &last, FALSE, NULL))
10150 {
10151 if (end)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010152 rettv->vval.v_number = (varnumber_T)last;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010153 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010154 rettv->vval.v_number = (varnumber_T)first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010155 return;
10156 }
10157 }
10158#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010159 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010160}
10161
10162/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010163 * "foldclosed()" function
10164 */
10165 static void
10166f_foldclosed(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010167 typval_T *argvars;
10168 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010169{
10170 foldclosed_both(argvars, rettv, FALSE);
10171}
10172
10173/*
10174 * "foldclosedend()" function
10175 */
10176 static void
10177f_foldclosedend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010178 typval_T *argvars;
10179 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010180{
10181 foldclosed_both(argvars, rettv, TRUE);
10182}
10183
10184/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010185 * "foldlevel()" function
10186 */
10187 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010188f_foldlevel(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010189 typval_T *argvars;
10190 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010191{
10192#ifdef FEAT_FOLDING
10193 linenr_T lnum;
10194
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010195 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010196 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010197 rettv->vval.v_number = foldLevel(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010198 else
10199#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010200 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010201}
10202
10203/*
10204 * "foldtext()" function
10205 */
10206/*ARGSUSED*/
10207 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010208f_foldtext(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010209 typval_T *argvars;
10210 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010211{
10212#ifdef FEAT_FOLDING
10213 linenr_T lnum;
10214 char_u *s;
10215 char_u *r;
10216 int len;
10217 char *txt;
10218#endif
10219
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010220 rettv->v_type = VAR_STRING;
10221 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010222#ifdef FEAT_FOLDING
Bram Moolenaare9a41262005-01-15 22:18:47 +000010223 if ((linenr_T)vimvars[VV_FOLDSTART].vv_nr > 0
10224 && (linenr_T)vimvars[VV_FOLDEND].vv_nr
10225 <= curbuf->b_ml.ml_line_count
10226 && vimvars[VV_FOLDDASHES].vv_str != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010227 {
10228 /* Find first non-empty line in the fold. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000010229 lnum = (linenr_T)vimvars[VV_FOLDSTART].vv_nr;
10230 while (lnum < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010231 {
10232 if (!linewhite(lnum))
10233 break;
10234 ++lnum;
10235 }
10236
10237 /* Find interesting text in this line. */
10238 s = skipwhite(ml_get(lnum));
10239 /* skip C comment-start */
10240 if (s[0] == '/' && (s[1] == '*' || s[1] == '/'))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010241 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000010242 s = skipwhite(s + 2);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010243 if (*skipwhite(s) == NUL
Bram Moolenaare9a41262005-01-15 22:18:47 +000010244 && lnum + 1 < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010245 {
10246 s = skipwhite(ml_get(lnum + 1));
10247 if (*s == '*')
10248 s = skipwhite(s + 1);
10249 }
10250 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010251 txt = _("+-%s%3ld lines: ");
10252 r = alloc((unsigned)(STRLEN(txt)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010253 + STRLEN(vimvars[VV_FOLDDASHES].vv_str) /* for %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010254 + 20 /* for %3ld */
10255 + STRLEN(s))); /* concatenated */
10256 if (r != NULL)
10257 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000010258 sprintf((char *)r, txt, vimvars[VV_FOLDDASHES].vv_str,
10259 (long)((linenr_T)vimvars[VV_FOLDEND].vv_nr
10260 - (linenr_T)vimvars[VV_FOLDSTART].vv_nr + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010261 len = (int)STRLEN(r);
10262 STRCAT(r, s);
10263 /* remove 'foldmarker' and 'commentstring' */
10264 foldtext_cleanup(r + len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010265 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010266 }
10267 }
10268#endif
10269}
10270
10271/*
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010272 * "foldtextresult(lnum)" function
10273 */
10274/*ARGSUSED*/
10275 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010276f_foldtextresult(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010277 typval_T *argvars;
10278 typval_T *rettv;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010279{
10280#ifdef FEAT_FOLDING
10281 linenr_T lnum;
10282 char_u *text;
10283 char_u buf[51];
10284 foldinfo_T foldinfo;
10285 int fold_count;
10286#endif
10287
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010288 rettv->v_type = VAR_STRING;
10289 rettv->vval.v_string = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010290#ifdef FEAT_FOLDING
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010291 lnum = get_tv_lnum(argvars);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010292 /* treat illegal types and illegal string values for {lnum} the same */
10293 if (lnum < 0)
10294 lnum = 0;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010295 fold_count = foldedCount(curwin, lnum, &foldinfo);
10296 if (fold_count > 0)
10297 {
10298 text = get_foldtext(curwin, lnum, lnum + fold_count - 1,
10299 &foldinfo, buf);
10300 if (text == buf)
10301 text = vim_strsave(text);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010302 rettv->vval.v_string = text;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010303 }
10304#endif
10305}
10306
10307/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010308 * "foreground()" function
10309 */
10310/*ARGSUSED*/
10311 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010312f_foreground(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010313 typval_T *argvars;
10314 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010315{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010316 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010317#ifdef FEAT_GUI
10318 if (gui.in_use)
10319 gui_mch_set_foreground();
10320#else
10321# ifdef WIN32
10322 win32_set_foreground();
10323# endif
10324#endif
10325}
10326
10327/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010328 * "function()" function
10329 */
10330/*ARGSUSED*/
10331 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010332f_function(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010333 typval_T *argvars;
10334 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010335{
10336 char_u *s;
10337
Bram Moolenaara7043832005-01-21 11:56:39 +000010338 rettv->vval.v_number = 0;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010339 s = get_tv_string(&argvars[0]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010340 if (s == NULL || *s == NUL || VIM_ISDIGIT(*s))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010341 EMSG2(_(e_invarg2), s);
10342 else if (!function_exists(s))
Bram Moolenaare49b69a2005-01-08 16:11:57 +000010343 EMSG2(_("E700: Unknown function: %s"), s);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010344 else
10345 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010346 rettv->vval.v_string = vim_strsave(s);
10347 rettv->v_type = VAR_FUNC;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010348 }
10349}
10350
10351/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010352 * "garbagecollect()" function
10353 */
10354/*ARGSUSED*/
10355 static void
10356f_garbagecollect(argvars, rettv)
10357 typval_T *argvars;
10358 typval_T *rettv;
10359{
Bram Moolenaar9fecb462006-09-05 10:59:47 +000010360 /* This is postponed until we are back at the toplevel, because we may be
10361 * using Lists and Dicts internally. E.g.: ":echo [garbagecollect()]". */
10362 want_garbage_collect = TRUE;
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +000010363
10364 if (argvars[0].v_type != VAR_UNKNOWN && get_tv_number(&argvars[0]) == 1)
10365 garbage_collect_at_exit = TRUE;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010366}
10367
10368/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010369 * "get()" function
10370 */
10371 static void
10372f_get(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010373 typval_T *argvars;
10374 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010375{
Bram Moolenaar33570922005-01-25 22:26:29 +000010376 listitem_T *li;
10377 list_T *l;
10378 dictitem_T *di;
10379 dict_T *d;
10380 typval_T *tv = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010381
Bram Moolenaare9a41262005-01-15 22:18:47 +000010382 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000010383 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000010384 if ((l = argvars[0].vval.v_list) != NULL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000010385 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010386 int error = FALSE;
10387
10388 li = list_find(l, get_tv_number_chk(&argvars[1], &error));
10389 if (!error && li != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010390 tv = &li->li_tv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010391 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000010392 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000010393 else if (argvars[0].v_type == VAR_DICT)
10394 {
10395 if ((d = argvars[0].vval.v_dict) != NULL)
10396 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010397 di = dict_find(d, get_tv_string(&argvars[1]), -1);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010398 if (di != NULL)
10399 tv = &di->di_tv;
10400 }
10401 }
10402 else
10403 EMSG2(_(e_listdictarg), "get()");
10404
10405 if (tv == NULL)
10406 {
10407 if (argvars[2].v_type == VAR_UNKNOWN)
10408 rettv->vval.v_number = 0;
10409 else
10410 copy_tv(&argvars[2], rettv);
10411 }
10412 else
10413 copy_tv(tv, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010414}
10415
Bram Moolenaar342337a2005-07-21 21:11:17 +000010416static 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 +000010417
10418/*
10419 * Get line or list of lines from buffer "buf" into "rettv".
Bram Moolenaar342337a2005-07-21 21:11:17 +000010420 * Return a range (from start to end) of lines in rettv from the specified
10421 * buffer.
10422 * If 'retlist' is TRUE, then the lines are returned as a Vim List.
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010423 */
10424 static void
Bram Moolenaar342337a2005-07-21 21:11:17 +000010425get_buffer_lines(buf, start, end, retlist, rettv)
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010426 buf_T *buf;
10427 linenr_T start;
10428 linenr_T end;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010429 int retlist;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010430 typval_T *rettv;
10431{
10432 char_u *p;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010433
Bram Moolenaar342337a2005-07-21 21:11:17 +000010434 if (retlist)
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010435 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000010436 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010437 return;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010438 }
10439 else
10440 rettv->vval.v_number = 0;
10441
10442 if (buf == NULL || buf->b_ml.ml_mfp == NULL || start < 0)
10443 return;
10444
10445 if (!retlist)
10446 {
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010447 if (start >= 1 && start <= buf->b_ml.ml_line_count)
10448 p = ml_get_buf(buf, start, FALSE);
10449 else
10450 p = (char_u *)"";
10451
10452 rettv->v_type = VAR_STRING;
10453 rettv->vval.v_string = vim_strsave(p);
10454 }
10455 else
10456 {
10457 if (end < start)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010458 return;
10459
10460 if (start < 1)
10461 start = 1;
10462 if (end > buf->b_ml.ml_line_count)
10463 end = buf->b_ml.ml_line_count;
10464 while (start <= end)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000010465 if (list_append_string(rettv->vval.v_list,
10466 ml_get_buf(buf, start++, FALSE), -1) == FAIL)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010467 break;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010468 }
10469}
10470
10471/*
10472 * "getbufline()" function
10473 */
10474 static void
10475f_getbufline(argvars, rettv)
10476 typval_T *argvars;
10477 typval_T *rettv;
10478{
10479 linenr_T lnum;
10480 linenr_T end;
10481 buf_T *buf;
10482
10483 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10484 ++emsg_off;
10485 buf = get_buf_tv(&argvars[0]);
10486 --emsg_off;
10487
Bram Moolenaar661b1822005-07-28 22:36:45 +000010488 lnum = get_tv_lnum_buf(&argvars[1], buf);
Bram Moolenaar342337a2005-07-21 21:11:17 +000010489 if (argvars[2].v_type == VAR_UNKNOWN)
10490 end = lnum;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010491 else
Bram Moolenaar661b1822005-07-28 22:36:45 +000010492 end = get_tv_lnum_buf(&argvars[2], buf);
10493
Bram Moolenaar342337a2005-07-21 21:11:17 +000010494 get_buffer_lines(buf, lnum, end, TRUE, rettv);
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010495}
10496
Bram Moolenaar0d660222005-01-07 21:51:51 +000010497/*
10498 * "getbufvar()" function
10499 */
10500 static void
10501f_getbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010502 typval_T *argvars;
10503 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010504{
10505 buf_T *buf;
10506 buf_T *save_curbuf;
10507 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000010508 dictitem_T *v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010509
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010510 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10511 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010512 ++emsg_off;
10513 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010514
10515 rettv->v_type = VAR_STRING;
10516 rettv->vval.v_string = NULL;
10517
10518 if (buf != NULL && varname != NULL)
10519 {
Bram Moolenaar632deed2008-06-27 18:26:11 +000010520 /* set curbuf to be our buf, temporarily */
10521 save_curbuf = curbuf;
10522 curbuf = buf;
10523
Bram Moolenaar0d660222005-01-07 21:51:51 +000010524 if (*varname == '&') /* buffer-local-option */
Bram Moolenaar0d660222005-01-07 21:51:51 +000010525 get_option_tv(&varname, rettv, TRUE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010526 else
10527 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010528 if (*varname == NUL)
10529 /* let getbufvar({nr}, "") return the "b:" dictionary. The
10530 * scope prefix before the NUL byte is required by
10531 * find_var_in_ht(). */
10532 varname = (char_u *)"b:" + 2;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010533 /* look up the variable */
Bram Moolenaar632deed2008-06-27 18:26:11 +000010534 v = find_var_in_ht(&curbuf->b_vars.dv_hashtab, varname, FALSE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010535 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000010536 copy_tv(&v->di_tv, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010537 }
Bram Moolenaar632deed2008-06-27 18:26:11 +000010538
10539 /* restore previous notion of curbuf */
10540 curbuf = save_curbuf;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010541 }
10542
10543 --emsg_off;
10544}
10545
10546/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010547 * "getchar()" function
10548 */
10549 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010550f_getchar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010551 typval_T *argvars;
10552 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010553{
10554 varnumber_T n;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010555 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010556
Bram Moolenaar4015b2c2006-06-22 19:01:34 +000010557 /* Position the cursor. Needed after a message that ends in a space. */
10558 windgoto(msg_row, msg_col);
10559
Bram Moolenaar071d4272004-06-13 20:20:40 +000010560 ++no_mapping;
10561 ++allow_keys;
Bram Moolenaar9c8791f2007-09-05 19:47:23 +000010562 for (;;)
10563 {
10564 if (argvars[0].v_type == VAR_UNKNOWN)
10565 /* getchar(): blocking wait. */
10566 n = safe_vgetc();
10567 else if (get_tv_number_chk(&argvars[0], &error) == 1)
10568 /* getchar(1): only check if char avail */
10569 n = vpeekc();
10570 else if (error || vpeekc() == NUL)
10571 /* illegal argument or getchar(0) and no char avail: return zero */
10572 n = 0;
10573 else
10574 /* getchar(0) and char avail: return char */
10575 n = safe_vgetc();
10576 if (n == K_IGNORE)
10577 continue;
10578 break;
10579 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010580 --no_mapping;
10581 --allow_keys;
10582
Bram Moolenaar219b8702006-11-01 14:32:36 +000010583 vimvars[VV_MOUSE_WIN].vv_nr = 0;
10584 vimvars[VV_MOUSE_LNUM].vv_nr = 0;
10585 vimvars[VV_MOUSE_COL].vv_nr = 0;
10586
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010587 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010588 if (IS_SPECIAL(n) || mod_mask != 0)
10589 {
10590 char_u temp[10]; /* modifier: 3, mbyte-char: 6, NUL: 1 */
10591 int i = 0;
10592
10593 /* Turn a special key into three bytes, plus modifier. */
10594 if (mod_mask != 0)
10595 {
10596 temp[i++] = K_SPECIAL;
10597 temp[i++] = KS_MODIFIER;
10598 temp[i++] = mod_mask;
10599 }
10600 if (IS_SPECIAL(n))
10601 {
10602 temp[i++] = K_SPECIAL;
10603 temp[i++] = K_SECOND(n);
10604 temp[i++] = K_THIRD(n);
10605 }
10606#ifdef FEAT_MBYTE
10607 else if (has_mbyte)
10608 i += (*mb_char2bytes)(n, temp + i);
10609#endif
10610 else
10611 temp[i++] = n;
10612 temp[i++] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010613 rettv->v_type = VAR_STRING;
10614 rettv->vval.v_string = vim_strsave(temp);
Bram Moolenaar219b8702006-11-01 14:32:36 +000010615
10616#ifdef FEAT_MOUSE
10617 if (n == K_LEFTMOUSE
10618 || n == K_LEFTMOUSE_NM
10619 || n == K_LEFTDRAG
10620 || n == K_LEFTRELEASE
10621 || n == K_LEFTRELEASE_NM
10622 || n == K_MIDDLEMOUSE
10623 || n == K_MIDDLEDRAG
10624 || n == K_MIDDLERELEASE
10625 || n == K_RIGHTMOUSE
10626 || n == K_RIGHTDRAG
10627 || n == K_RIGHTRELEASE
10628 || n == K_X1MOUSE
10629 || n == K_X1DRAG
10630 || n == K_X1RELEASE
10631 || n == K_X2MOUSE
10632 || n == K_X2DRAG
10633 || n == K_X2RELEASE
10634 || n == K_MOUSEDOWN
10635 || n == K_MOUSEUP)
10636 {
10637 int row = mouse_row;
10638 int col = mouse_col;
10639 win_T *win;
10640 linenr_T lnum;
10641# ifdef FEAT_WINDOWS
10642 win_T *wp;
10643# endif
10644 int n = 1;
10645
10646 if (row >= 0 && col >= 0)
10647 {
10648 /* Find the window at the mouse coordinates and compute the
10649 * text position. */
10650 win = mouse_find_win(&row, &col);
10651 (void)mouse_comp_pos(win, &row, &col, &lnum);
10652# ifdef FEAT_WINDOWS
10653 for (wp = firstwin; wp != win; wp = wp->w_next)
10654 ++n;
10655# endif
10656 vimvars[VV_MOUSE_WIN].vv_nr = n;
10657 vimvars[VV_MOUSE_LNUM].vv_nr = lnum;
10658 vimvars[VV_MOUSE_COL].vv_nr = col + 1;
10659 }
10660 }
10661#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010662 }
10663}
10664
10665/*
10666 * "getcharmod()" function
10667 */
10668/*ARGSUSED*/
10669 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010670f_getcharmod(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010671 typval_T *argvars;
10672 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010673{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010674 rettv->vval.v_number = mod_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010675}
10676
10677/*
10678 * "getcmdline()" function
10679 */
10680/*ARGSUSED*/
10681 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010682f_getcmdline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010683 typval_T *argvars;
10684 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010685{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010686 rettv->v_type = VAR_STRING;
10687 rettv->vval.v_string = get_cmdline_str();
Bram Moolenaar071d4272004-06-13 20:20:40 +000010688}
10689
10690/*
10691 * "getcmdpos()" function
10692 */
10693/*ARGSUSED*/
10694 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010695f_getcmdpos(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010696 typval_T *argvars;
10697 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010698{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010699 rettv->vval.v_number = get_cmdline_pos() + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010700}
10701
10702/*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010703 * "getcmdtype()" function
10704 */
10705/*ARGSUSED*/
10706 static void
10707f_getcmdtype(argvars, rettv)
10708 typval_T *argvars;
10709 typval_T *rettv;
10710{
10711 rettv->v_type = VAR_STRING;
10712 rettv->vval.v_string = alloc(2);
10713 if (rettv->vval.v_string != NULL)
10714 {
10715 rettv->vval.v_string[0] = get_cmdline_type();
10716 rettv->vval.v_string[1] = NUL;
10717 }
10718}
10719
10720/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010721 * "getcwd()" function
10722 */
10723/*ARGSUSED*/
10724 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010725f_getcwd(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010726 typval_T *argvars;
10727 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010728{
10729 char_u cwd[MAXPATHL];
10730
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010731 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010732 if (mch_dirname(cwd, MAXPATHL) == FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010733 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010734 else
10735 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010736 rettv->vval.v_string = vim_strsave(cwd);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010737#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar342337a2005-07-21 21:11:17 +000010738 if (rettv->vval.v_string != NULL)
10739 slash_adjust(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010740#endif
10741 }
10742}
10743
10744/*
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010745 * "getfontname()" function
10746 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000010747/*ARGSUSED*/
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010748 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010749f_getfontname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010750 typval_T *argvars;
10751 typval_T *rettv;
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010752{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010753 rettv->v_type = VAR_STRING;
10754 rettv->vval.v_string = NULL;
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010755#ifdef FEAT_GUI
10756 if (gui.in_use)
10757 {
10758 GuiFont font;
10759 char_u *name = NULL;
10760
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010761 if (argvars[0].v_type == VAR_UNKNOWN)
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010762 {
10763 /* Get the "Normal" font. Either the name saved by
10764 * hl_set_font_name() or from the font ID. */
10765 font = gui.norm_font;
10766 name = hl_get_font_name();
10767 }
10768 else
10769 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010770 name = get_tv_string(&argvars[0]);
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010771 if (STRCMP(name, "*") == 0) /* don't use font dialog */
10772 return;
10773 font = gui_mch_get_font(name, FALSE);
10774 if (font == NOFONT)
10775 return; /* Invalid font name, return empty string. */
10776 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010777 rettv->vval.v_string = gui_mch_get_fontname(font, name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010778 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010779 gui_mch_free_font(font);
10780 }
10781#endif
10782}
10783
10784/*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010785 * "getfperm({fname})" function
10786 */
10787 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010788f_getfperm(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010789 typval_T *argvars;
10790 typval_T *rettv;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010791{
10792 char_u *fname;
10793 struct stat st;
10794 char_u *perm = NULL;
10795 char_u flags[] = "rwx";
10796 int i;
10797
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010798 fname = get_tv_string(&argvars[0]);
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010799
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010800 rettv->v_type = VAR_STRING;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010801 if (mch_stat((char *)fname, &st) >= 0)
10802 {
10803 perm = vim_strsave((char_u *)"---------");
10804 if (perm != NULL)
10805 {
10806 for (i = 0; i < 9; i++)
10807 {
10808 if (st.st_mode & (1 << (8 - i)))
10809 perm[i] = flags[i % 3];
10810 }
10811 }
10812 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010813 rettv->vval.v_string = perm;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010814}
10815
10816/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010817 * "getfsize({fname})" function
10818 */
10819 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010820f_getfsize(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010821 typval_T *argvars;
10822 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010823{
10824 char_u *fname;
10825 struct stat st;
10826
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010827 fname = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010828
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010829 rettv->v_type = VAR_NUMBER;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010830
10831 if (mch_stat((char *)fname, &st) >= 0)
10832 {
10833 if (mch_isdir(fname))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010834 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010835 else
Bram Moolenaard827ada2007-06-19 15:19:55 +000010836 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010837 rettv->vval.v_number = (varnumber_T)st.st_size;
Bram Moolenaard827ada2007-06-19 15:19:55 +000010838
10839 /* non-perfect check for overflow */
10840 if ((off_t)rettv->vval.v_number != (off_t)st.st_size)
10841 rettv->vval.v_number = -2;
10842 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010843 }
10844 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010845 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010846}
10847
10848/*
10849 * "getftime({fname})" function
10850 */
10851 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010852f_getftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010853 typval_T *argvars;
10854 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010855{
10856 char_u *fname;
10857 struct stat st;
10858
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010859 fname = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010860
10861 if (mch_stat((char *)fname, &st) >= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010862 rettv->vval.v_number = (varnumber_T)st.st_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010863 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010864 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010865}
10866
10867/*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010868 * "getftype({fname})" function
10869 */
10870 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010871f_getftype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010872 typval_T *argvars;
10873 typval_T *rettv;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010874{
10875 char_u *fname;
10876 struct stat st;
10877 char_u *type = NULL;
10878 char *t;
10879
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010880 fname = get_tv_string(&argvars[0]);
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010881
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010882 rettv->v_type = VAR_STRING;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010883 if (mch_lstat((char *)fname, &st) >= 0)
10884 {
10885#ifdef S_ISREG
10886 if (S_ISREG(st.st_mode))
10887 t = "file";
10888 else if (S_ISDIR(st.st_mode))
10889 t = "dir";
10890# ifdef S_ISLNK
10891 else if (S_ISLNK(st.st_mode))
10892 t = "link";
10893# endif
10894# ifdef S_ISBLK
10895 else if (S_ISBLK(st.st_mode))
10896 t = "bdev";
10897# endif
10898# ifdef S_ISCHR
10899 else if (S_ISCHR(st.st_mode))
10900 t = "cdev";
10901# endif
10902# ifdef S_ISFIFO
10903 else if (S_ISFIFO(st.st_mode))
10904 t = "fifo";
10905# endif
10906# ifdef S_ISSOCK
10907 else if (S_ISSOCK(st.st_mode))
10908 t = "fifo";
10909# endif
10910 else
10911 t = "other";
10912#else
10913# ifdef S_IFMT
10914 switch (st.st_mode & S_IFMT)
10915 {
10916 case S_IFREG: t = "file"; break;
10917 case S_IFDIR: t = "dir"; break;
10918# ifdef S_IFLNK
10919 case S_IFLNK: t = "link"; break;
10920# endif
10921# ifdef S_IFBLK
10922 case S_IFBLK: t = "bdev"; break;
10923# endif
10924# ifdef S_IFCHR
10925 case S_IFCHR: t = "cdev"; break;
10926# endif
10927# ifdef S_IFIFO
10928 case S_IFIFO: t = "fifo"; break;
10929# endif
10930# ifdef S_IFSOCK
10931 case S_IFSOCK: t = "socket"; break;
10932# endif
10933 default: t = "other";
10934 }
10935# else
10936 if (mch_isdir(fname))
10937 t = "dir";
10938 else
10939 t = "file";
10940# endif
10941#endif
10942 type = vim_strsave((char_u *)t);
10943 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010944 rettv->vval.v_string = type;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010945}
10946
10947/*
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010948 * "getline(lnum, [end])" function
Bram Moolenaar0d660222005-01-07 21:51:51 +000010949 */
10950 static void
10951f_getline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010952 typval_T *argvars;
10953 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010954{
10955 linenr_T lnum;
10956 linenr_T end;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010957 int retlist;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010958
10959 lnum = get_tv_lnum(argvars);
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010960 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010961 {
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010962 end = 0;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010963 retlist = FALSE;
10964 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000010965 else
Bram Moolenaar342337a2005-07-21 21:11:17 +000010966 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000010967 end = get_tv_lnum(&argvars[1]);
Bram Moolenaar342337a2005-07-21 21:11:17 +000010968 retlist = TRUE;
10969 }
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010970
Bram Moolenaar342337a2005-07-21 21:11:17 +000010971 get_buffer_lines(curbuf, lnum, end, retlist, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010972}
10973
10974/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010975 * "getmatches()" function
10976 */
10977/*ARGSUSED*/
10978 static void
10979f_getmatches(argvars, rettv)
10980 typval_T *argvars;
10981 typval_T *rettv;
10982{
10983#ifdef FEAT_SEARCH_EXTRA
10984 dict_T *dict;
10985 matchitem_T *cur = curwin->w_match_head;
10986
10987 rettv->vval.v_number = 0;
10988
10989 if (rettv_list_alloc(rettv) == OK)
10990 {
10991 while (cur != NULL)
10992 {
10993 dict = dict_alloc();
10994 if (dict == NULL)
10995 return;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010996 dict_add_nr_str(dict, "group", 0L, syn_id2name(cur->hlg_id));
10997 dict_add_nr_str(dict, "pattern", 0L, cur->pattern);
10998 dict_add_nr_str(dict, "priority", (long)cur->priority, NULL);
10999 dict_add_nr_str(dict, "id", (long)cur->id, NULL);
11000 list_append_dict(rettv->vval.v_list, dict);
11001 cur = cur->next;
11002 }
11003 }
11004#endif
11005}
11006
11007/*
Bram Moolenaar18081e32008-02-20 19:11:07 +000011008 * "getpid()" function
11009 */
11010/*ARGSUSED*/
11011 static void
11012f_getpid(argvars, rettv)
11013 typval_T *argvars;
11014 typval_T *rettv;
11015{
11016 rettv->vval.v_number = mch_get_pid();
11017}
11018
11019/*
Bram Moolenaara5525202006-03-02 22:52:09 +000011020 * "getpos(string)" function
11021 */
11022 static void
11023f_getpos(argvars, rettv)
11024 typval_T *argvars;
11025 typval_T *rettv;
11026{
11027 pos_T *fp;
11028 list_T *l;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000011029 int fnum = -1;
Bram Moolenaara5525202006-03-02 22:52:09 +000011030
11031 if (rettv_list_alloc(rettv) == OK)
11032 {
11033 l = rettv->vval.v_list;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000011034 fp = var2fpos(&argvars[0], TRUE, &fnum);
11035 if (fnum != -1)
11036 list_append_number(l, (varnumber_T)fnum);
11037 else
11038 list_append_number(l, (varnumber_T)0);
Bram Moolenaara5525202006-03-02 22:52:09 +000011039 list_append_number(l, (fp != NULL) ? (varnumber_T)fp->lnum
11040 : (varnumber_T)0);
Bram Moolenaare65f7322007-10-02 20:08:54 +000011041 list_append_number(l, (fp != NULL)
11042 ? (varnumber_T)(fp->col == MAXCOL ? MAXCOL : fp->col + 1)
Bram Moolenaara5525202006-03-02 22:52:09 +000011043 : (varnumber_T)0);
11044 list_append_number(l,
11045#ifdef FEAT_VIRTUALEDIT
11046 (fp != NULL) ? (varnumber_T)fp->coladd :
11047#endif
11048 (varnumber_T)0);
11049 }
11050 else
11051 rettv->vval.v_number = FALSE;
11052}
11053
11054/*
Bram Moolenaar280f1262006-01-30 00:14:18 +000011055 * "getqflist()" and "getloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000011056 */
Bram Moolenaar280f1262006-01-30 00:14:18 +000011057/*ARGSUSED*/
Bram Moolenaar2641f772005-03-25 21:58:17 +000011058 static void
Bram Moolenaar280f1262006-01-30 00:14:18 +000011059f_getqflist(argvars, rettv)
11060 typval_T *argvars;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011061 typval_T *rettv;
11062{
11063#ifdef FEAT_QUICKFIX
Bram Moolenaar280f1262006-01-30 00:14:18 +000011064 win_T *wp;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011065#endif
11066
Bram Moolenaar77f66d62007-02-20 02:16:18 +000011067 rettv->vval.v_number = 0;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011068#ifdef FEAT_QUICKFIX
Bram Moolenaareddf53b2006-02-27 00:11:10 +000011069 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000011070 {
Bram Moolenaar280f1262006-01-30 00:14:18 +000011071 wp = NULL;
11072 if (argvars[0].v_type != VAR_UNKNOWN) /* getloclist() */
11073 {
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011074 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar280f1262006-01-30 00:14:18 +000011075 if (wp == NULL)
11076 return;
11077 }
11078
Bram Moolenaareddf53b2006-02-27 00:11:10 +000011079 (void)get_errorlist(wp, rettv->vval.v_list);
Bram Moolenaar2641f772005-03-25 21:58:17 +000011080 }
11081#endif
11082}
11083
11084/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011085 * "getreg()" function
11086 */
11087 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011088f_getreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011089 typval_T *argvars;
11090 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011091{
11092 char_u *strregname;
11093 int regname;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011094 int arg2 = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011095 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011096
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011097 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011098 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011099 strregname = get_tv_string_chk(&argvars[0]);
11100 error = strregname == NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011101 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011102 arg2 = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011103 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011104 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000011105 strregname = vimvars[VV_REG].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011106 regname = (strregname == NULL ? '"' : *strregname);
11107 if (regname == 0)
11108 regname = '"';
11109
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011110 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011111 rettv->vval.v_string = error ? NULL :
11112 get_reg_contents(regname, TRUE, arg2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011113}
11114
11115/*
11116 * "getregtype()" function
11117 */
11118 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011119f_getregtype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011120 typval_T *argvars;
11121 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011122{
11123 char_u *strregname;
11124 int regname;
11125 char_u buf[NUMBUFLEN + 2];
11126 long reglen = 0;
11127
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011128 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011129 {
11130 strregname = get_tv_string_chk(&argvars[0]);
11131 if (strregname == NULL) /* type error; errmsg already given */
11132 {
11133 rettv->v_type = VAR_STRING;
11134 rettv->vval.v_string = NULL;
11135 return;
11136 }
11137 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011138 else
11139 /* Default to v:register */
Bram Moolenaare9a41262005-01-15 22:18:47 +000011140 strregname = vimvars[VV_REG].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011141
11142 regname = (strregname == NULL ? '"' : *strregname);
11143 if (regname == 0)
11144 regname = '"';
11145
11146 buf[0] = NUL;
11147 buf[1] = NUL;
11148 switch (get_reg_type(regname, &reglen))
11149 {
11150 case MLINE: buf[0] = 'V'; break;
11151 case MCHAR: buf[0] = 'v'; break;
11152#ifdef FEAT_VISUAL
11153 case MBLOCK:
11154 buf[0] = Ctrl_V;
11155 sprintf((char *)buf + 1, "%ld", reglen + 1);
11156 break;
11157#endif
11158 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011159 rettv->v_type = VAR_STRING;
11160 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011161}
11162
11163/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011164 * "gettabwinvar()" function
11165 */
11166 static void
11167f_gettabwinvar(argvars, rettv)
11168 typval_T *argvars;
11169 typval_T *rettv;
11170{
11171 getwinvar(argvars, rettv, 1);
11172}
11173
11174/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011175 * "getwinposx()" function
11176 */
11177/*ARGSUSED*/
11178 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011179f_getwinposx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011180 typval_T *argvars;
11181 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011182{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011183 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011184#ifdef FEAT_GUI
11185 if (gui.in_use)
11186 {
11187 int x, y;
11188
11189 if (gui_mch_get_winpos(&x, &y) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011190 rettv->vval.v_number = x;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011191 }
11192#endif
11193}
11194
11195/*
11196 * "getwinposy()" function
11197 */
11198/*ARGSUSED*/
11199 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011200f_getwinposy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011201 typval_T *argvars;
11202 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011203{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011204 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011205#ifdef FEAT_GUI
11206 if (gui.in_use)
11207 {
11208 int x, y;
11209
11210 if (gui_mch_get_winpos(&x, &y) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011211 rettv->vval.v_number = y;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011212 }
11213#endif
11214}
11215
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011216/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011217 * Find window specified by "vp" in tabpage "tp".
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011218 */
Bram Moolenaara40058a2005-07-11 22:42:07 +000011219 static win_T *
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011220find_win_by_nr(vp, tp)
Bram Moolenaara40058a2005-07-11 22:42:07 +000011221 typval_T *vp;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011222 tabpage_T *tp; /* NULL for current tab page */
Bram Moolenaara40058a2005-07-11 22:42:07 +000011223{
11224#ifdef FEAT_WINDOWS
11225 win_T *wp;
11226#endif
11227 int nr;
11228
11229 nr = get_tv_number_chk(vp, NULL);
11230
11231#ifdef FEAT_WINDOWS
11232 if (nr < 0)
11233 return NULL;
11234 if (nr == 0)
11235 return curwin;
11236
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011237 for (wp = (tp == NULL || tp == curtab) ? firstwin : tp->tp_firstwin;
11238 wp != NULL; wp = wp->w_next)
Bram Moolenaara40058a2005-07-11 22:42:07 +000011239 if (--nr <= 0)
11240 break;
11241 return wp;
11242#else
11243 if (nr == 0 || nr == 1)
11244 return curwin;
11245 return NULL;
11246#endif
11247}
11248
Bram Moolenaar071d4272004-06-13 20:20:40 +000011249/*
11250 * "getwinvar()" function
11251 */
11252 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011253f_getwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011254 typval_T *argvars;
11255 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011256{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011257 getwinvar(argvars, rettv, 0);
11258}
11259
11260/*
11261 * getwinvar() and gettabwinvar()
11262 */
11263 static void
11264getwinvar(argvars, rettv, off)
11265 typval_T *argvars;
11266 typval_T *rettv;
11267 int off; /* 1 for gettabwinvar() */
11268{
Bram Moolenaar071d4272004-06-13 20:20:40 +000011269 win_T *win, *oldcurwin;
11270 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000011271 dictitem_T *v;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011272 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011273
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011274#ifdef FEAT_WINDOWS
11275 if (off == 1)
11276 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
11277 else
11278 tp = curtab;
11279#endif
11280 win = find_win_by_nr(&argvars[off], tp);
11281 varname = get_tv_string_chk(&argvars[off + 1]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011282 ++emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011283
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011284 rettv->v_type = VAR_STRING;
11285 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011286
11287 if (win != NULL && varname != NULL)
11288 {
Bram Moolenaar69a7e432006-10-10 10:55:47 +000011289 /* Set curwin to be our win, temporarily. Also set curbuf, so
11290 * that we can get buffer-local options. */
11291 oldcurwin = curwin;
11292 curwin = win;
11293 curbuf = win->w_buffer;
11294
Bram Moolenaar071d4272004-06-13 20:20:40 +000011295 if (*varname == '&') /* window-local-option */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011296 get_option_tv(&varname, rettv, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011297 else
11298 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011299 if (*varname == NUL)
11300 /* let getwinvar({nr}, "") return the "w:" dictionary. The
11301 * scope prefix before the NUL byte is required by
11302 * find_var_in_ht(). */
11303 varname = (char_u *)"w:" + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011304 /* look up the variable */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011305 v = find_var_in_ht(&win->w_vars.dv_hashtab, varname, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011306 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000011307 copy_tv(&v->di_tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011308 }
Bram Moolenaar69a7e432006-10-10 10:55:47 +000011309
11310 /* restore previous notion of curwin */
11311 curwin = oldcurwin;
11312 curbuf = curwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011313 }
11314
11315 --emsg_off;
11316}
11317
11318/*
11319 * "glob()" function
11320 */
11321 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011322f_glob(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011323 typval_T *argvars;
11324 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011325{
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011326 int flags = WILD_SILENT|WILD_USE_NL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011327 expand_T xpc;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011328 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011329
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011330 /* When the optional second argument is non-zero, don't remove matches
11331 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
11332 if (argvars[1].v_type != VAR_UNKNOWN
11333 && get_tv_number_chk(&argvars[1], &error))
11334 flags |= WILD_KEEP_ALL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011335 rettv->v_type = VAR_STRING;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011336 if (!error)
11337 {
11338 ExpandInit(&xpc);
11339 xpc.xp_context = EXPAND_FILES;
11340 rettv->vval.v_string = ExpandOne(&xpc, get_tv_string(&argvars[0]),
11341 NULL, flags, WILD_ALL);
11342 }
11343 else
11344 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011345}
11346
11347/*
11348 * "globpath()" function
11349 */
11350 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011351f_globpath(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011352 typval_T *argvars;
11353 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011354{
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011355 int flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011356 char_u buf1[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011357 char_u *file = get_tv_string_buf_chk(&argvars[1], buf1);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011358 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011359
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011360 /* When the optional second argument is non-zero, don't remove matches
11361 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
11362 if (argvars[2].v_type != VAR_UNKNOWN
11363 && get_tv_number_chk(&argvars[2], &error))
11364 flags |= WILD_KEEP_ALL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011365 rettv->v_type = VAR_STRING;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011366 if (file == NULL || error)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011367 rettv->vval.v_string = NULL;
11368 else
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011369 rettv->vval.v_string = globpath(get_tv_string(&argvars[0]), file,
11370 flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011371}
11372
11373/*
11374 * "has()" function
11375 */
11376 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011377f_has(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011378 typval_T *argvars;
11379 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011380{
11381 int i;
11382 char_u *name;
11383 int n = FALSE;
11384 static char *(has_list[]) =
11385 {
11386#ifdef AMIGA
11387 "amiga",
11388# ifdef FEAT_ARP
11389 "arp",
11390# endif
11391#endif
11392#ifdef __BEOS__
11393 "beos",
11394#endif
11395#ifdef MSDOS
11396# ifdef DJGPP
11397 "dos32",
11398# else
11399 "dos16",
11400# endif
11401#endif
Bram Moolenaar241a8aa2005-12-06 20:04:44 +000011402#ifdef MACOS
Bram Moolenaar071d4272004-06-13 20:20:40 +000011403 "mac",
11404#endif
11405#if defined(MACOS_X_UNIX)
11406 "macunix",
11407#endif
11408#ifdef OS2
11409 "os2",
11410#endif
11411#ifdef __QNX__
11412 "qnx",
11413#endif
11414#ifdef RISCOS
11415 "riscos",
11416#endif
11417#ifdef UNIX
11418 "unix",
11419#endif
11420#ifdef VMS
11421 "vms",
11422#endif
11423#ifdef WIN16
11424 "win16",
11425#endif
11426#ifdef WIN32
11427 "win32",
11428#endif
11429#if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
11430 "win32unix",
11431#endif
11432#ifdef WIN64
11433 "win64",
11434#endif
11435#ifdef EBCDIC
11436 "ebcdic",
11437#endif
11438#ifndef CASE_INSENSITIVE_FILENAME
11439 "fname_case",
11440#endif
11441#ifdef FEAT_ARABIC
11442 "arabic",
11443#endif
11444#ifdef FEAT_AUTOCMD
11445 "autocmd",
11446#endif
11447#ifdef FEAT_BEVAL
11448 "balloon_eval",
Bram Moolenaar342337a2005-07-21 21:11:17 +000011449# ifndef FEAT_GUI_W32 /* other GUIs always have multiline balloons */
11450 "balloon_multiline",
11451# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011452#endif
11453#if defined(SOME_BUILTIN_TCAPS) || defined(ALL_BUILTIN_TCAPS)
11454 "builtin_terms",
11455# ifdef ALL_BUILTIN_TCAPS
11456 "all_builtin_terms",
11457# endif
11458#endif
11459#ifdef FEAT_BYTEOFF
11460 "byte_offset",
11461#endif
11462#ifdef FEAT_CINDENT
11463 "cindent",
11464#endif
11465#ifdef FEAT_CLIENTSERVER
11466 "clientserver",
11467#endif
11468#ifdef FEAT_CLIPBOARD
11469 "clipboard",
11470#endif
11471#ifdef FEAT_CMDL_COMPL
11472 "cmdline_compl",
11473#endif
11474#ifdef FEAT_CMDHIST
11475 "cmdline_hist",
11476#endif
11477#ifdef FEAT_COMMENTS
11478 "comments",
11479#endif
11480#ifdef FEAT_CRYPT
11481 "cryptv",
11482#endif
11483#ifdef FEAT_CSCOPE
11484 "cscope",
11485#endif
Bram Moolenaarac6e65f2005-08-29 22:25:38 +000011486#ifdef CURSOR_SHAPE
11487 "cursorshape",
11488#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011489#ifdef DEBUG
11490 "debug",
11491#endif
11492#ifdef FEAT_CON_DIALOG
11493 "dialog_con",
11494#endif
11495#ifdef FEAT_GUI_DIALOG
11496 "dialog_gui",
11497#endif
11498#ifdef FEAT_DIFF
11499 "diff",
11500#endif
11501#ifdef FEAT_DIGRAPHS
11502 "digraphs",
11503#endif
11504#ifdef FEAT_DND
11505 "dnd",
11506#endif
11507#ifdef FEAT_EMACS_TAGS
11508 "emacs_tags",
11509#endif
11510 "eval", /* always present, of course! */
11511#ifdef FEAT_EX_EXTRA
11512 "ex_extra",
11513#endif
11514#ifdef FEAT_SEARCH_EXTRA
11515 "extra_search",
11516#endif
11517#ifdef FEAT_FKMAP
11518 "farsi",
11519#endif
11520#ifdef FEAT_SEARCHPATH
11521 "file_in_path",
11522#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011523#if defined(UNIX) && !defined(USE_SYSTEM)
11524 "filterpipe",
11525#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011526#ifdef FEAT_FIND_ID
11527 "find_in_path",
11528#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011529#ifdef FEAT_FLOAT
11530 "float",
11531#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011532#ifdef FEAT_FOLDING
11533 "folding",
11534#endif
11535#ifdef FEAT_FOOTER
11536 "footer",
11537#endif
11538#if !defined(USE_SYSTEM) && defined(UNIX)
11539 "fork",
11540#endif
11541#ifdef FEAT_GETTEXT
11542 "gettext",
11543#endif
11544#ifdef FEAT_GUI
11545 "gui",
11546#endif
11547#ifdef FEAT_GUI_ATHENA
11548# ifdef FEAT_GUI_NEXTAW
11549 "gui_neXtaw",
11550# else
11551 "gui_athena",
11552# endif
11553#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011554#ifdef FEAT_GUI_GTK
11555 "gui_gtk",
11556# ifdef HAVE_GTK2
11557 "gui_gtk2",
11558# endif
11559#endif
Bram Moolenaar7b188622007-09-25 10:51:12 +000011560#ifdef FEAT_GUI_GNOME
11561 "gui_gnome",
11562#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011563#ifdef FEAT_GUI_MAC
11564 "gui_mac",
11565#endif
11566#ifdef FEAT_GUI_MOTIF
11567 "gui_motif",
11568#endif
11569#ifdef FEAT_GUI_PHOTON
11570 "gui_photon",
11571#endif
11572#ifdef FEAT_GUI_W16
11573 "gui_win16",
11574#endif
11575#ifdef FEAT_GUI_W32
11576 "gui_win32",
11577#endif
11578#ifdef FEAT_HANGULIN
11579 "hangul_input",
11580#endif
11581#if defined(HAVE_ICONV_H) && defined(USE_ICONV)
11582 "iconv",
11583#endif
11584#ifdef FEAT_INS_EXPAND
11585 "insert_expand",
11586#endif
11587#ifdef FEAT_JUMPLIST
11588 "jumplist",
11589#endif
11590#ifdef FEAT_KEYMAP
11591 "keymap",
11592#endif
11593#ifdef FEAT_LANGMAP
11594 "langmap",
11595#endif
11596#ifdef FEAT_LIBCALL
11597 "libcall",
11598#endif
11599#ifdef FEAT_LINEBREAK
11600 "linebreak",
11601#endif
11602#ifdef FEAT_LISP
11603 "lispindent",
11604#endif
11605#ifdef FEAT_LISTCMDS
11606 "listcmds",
11607#endif
11608#ifdef FEAT_LOCALMAP
11609 "localmap",
11610#endif
11611#ifdef FEAT_MENU
11612 "menu",
11613#endif
11614#ifdef FEAT_SESSION
11615 "mksession",
11616#endif
11617#ifdef FEAT_MODIFY_FNAME
11618 "modify_fname",
11619#endif
11620#ifdef FEAT_MOUSE
11621 "mouse",
11622#endif
11623#ifdef FEAT_MOUSESHAPE
11624 "mouseshape",
11625#endif
11626#if defined(UNIX) || defined(VMS)
11627# ifdef FEAT_MOUSE_DEC
11628 "mouse_dec",
11629# endif
11630# ifdef FEAT_MOUSE_GPM
11631 "mouse_gpm",
11632# endif
11633# ifdef FEAT_MOUSE_JSB
11634 "mouse_jsbterm",
11635# endif
11636# ifdef FEAT_MOUSE_NET
11637 "mouse_netterm",
11638# endif
11639# ifdef FEAT_MOUSE_PTERM
11640 "mouse_pterm",
11641# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011642# ifdef FEAT_SYSMOUSE
11643 "mouse_sysmouse",
11644# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011645# ifdef FEAT_MOUSE_XTERM
11646 "mouse_xterm",
11647# endif
11648#endif
11649#ifdef FEAT_MBYTE
11650 "multi_byte",
11651#endif
11652#ifdef FEAT_MBYTE_IME
11653 "multi_byte_ime",
11654#endif
11655#ifdef FEAT_MULTI_LANG
11656 "multi_lang",
11657#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011658#ifdef FEAT_MZSCHEME
Bram Moolenaar33570922005-01-25 22:26:29 +000011659#ifndef DYNAMIC_MZSCHEME
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011660 "mzscheme",
11661#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011662#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011663#ifdef FEAT_OLE
11664 "ole",
11665#endif
11666#ifdef FEAT_OSFILETYPE
11667 "osfiletype",
11668#endif
11669#ifdef FEAT_PATH_EXTRA
11670 "path_extra",
11671#endif
11672#ifdef FEAT_PERL
11673#ifndef DYNAMIC_PERL
11674 "perl",
11675#endif
11676#endif
11677#ifdef FEAT_PYTHON
11678#ifndef DYNAMIC_PYTHON
11679 "python",
11680#endif
11681#endif
11682#ifdef FEAT_POSTSCRIPT
11683 "postscript",
11684#endif
11685#ifdef FEAT_PRINTER
11686 "printer",
11687#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +000011688#ifdef FEAT_PROFILE
11689 "profile",
11690#endif
Bram Moolenaare580b0c2006-03-21 21:33:03 +000011691#ifdef FEAT_RELTIME
11692 "reltime",
11693#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011694#ifdef FEAT_QUICKFIX
11695 "quickfix",
11696#endif
11697#ifdef FEAT_RIGHTLEFT
11698 "rightleft",
11699#endif
11700#if defined(FEAT_RUBY) && !defined(DYNAMIC_RUBY)
11701 "ruby",
11702#endif
11703#ifdef FEAT_SCROLLBIND
11704 "scrollbind",
11705#endif
11706#ifdef FEAT_CMDL_INFO
11707 "showcmd",
11708 "cmdline_info",
11709#endif
11710#ifdef FEAT_SIGNS
11711 "signs",
11712#endif
11713#ifdef FEAT_SMARTINDENT
11714 "smartindent",
11715#endif
11716#ifdef FEAT_SNIFF
11717 "sniff",
11718#endif
11719#ifdef FEAT_STL_OPT
11720 "statusline",
11721#endif
11722#ifdef FEAT_SUN_WORKSHOP
11723 "sun_workshop",
11724#endif
11725#ifdef FEAT_NETBEANS_INTG
11726 "netbeans_intg",
11727#endif
Bram Moolenaar3c56a962006-03-12 22:19:04 +000011728#ifdef FEAT_SPELL
Bram Moolenaar0e4d8772005-06-07 21:12:49 +000011729 "spell",
11730#endif
11731#ifdef FEAT_SYN_HL
Bram Moolenaar071d4272004-06-13 20:20:40 +000011732 "syntax",
11733#endif
11734#if defined(USE_SYSTEM) || !defined(UNIX)
11735 "system",
11736#endif
11737#ifdef FEAT_TAG_BINS
11738 "tag_binary",
11739#endif
11740#ifdef FEAT_TAG_OLDSTATIC
11741 "tag_old_static",
11742#endif
11743#ifdef FEAT_TAG_ANYWHITE
11744 "tag_any_white",
11745#endif
11746#ifdef FEAT_TCL
11747# ifndef DYNAMIC_TCL
11748 "tcl",
11749# endif
11750#endif
11751#ifdef TERMINFO
11752 "terminfo",
11753#endif
11754#ifdef FEAT_TERMRESPONSE
11755 "termresponse",
11756#endif
11757#ifdef FEAT_TEXTOBJ
11758 "textobjects",
11759#endif
11760#ifdef HAVE_TGETENT
11761 "tgetent",
11762#endif
11763#ifdef FEAT_TITLE
11764 "title",
11765#endif
11766#ifdef FEAT_TOOLBAR
11767 "toolbar",
11768#endif
11769#ifdef FEAT_USR_CMDS
11770 "user-commands", /* was accidentally included in 5.4 */
11771 "user_commands",
11772#endif
11773#ifdef FEAT_VIMINFO
11774 "viminfo",
11775#endif
11776#ifdef FEAT_VERTSPLIT
11777 "vertsplit",
11778#endif
11779#ifdef FEAT_VIRTUALEDIT
11780 "virtualedit",
11781#endif
11782#ifdef FEAT_VISUAL
11783 "visual",
11784#endif
11785#ifdef FEAT_VISUALEXTRA
11786 "visualextra",
11787#endif
11788#ifdef FEAT_VREPLACE
11789 "vreplace",
11790#endif
11791#ifdef FEAT_WILDIGN
11792 "wildignore",
11793#endif
11794#ifdef FEAT_WILDMENU
11795 "wildmenu",
11796#endif
11797#ifdef FEAT_WINDOWS
11798 "windows",
11799#endif
11800#ifdef FEAT_WAK
11801 "winaltkeys",
11802#endif
11803#ifdef FEAT_WRITEBACKUP
11804 "writebackup",
11805#endif
11806#ifdef FEAT_XIM
11807 "xim",
11808#endif
11809#ifdef FEAT_XFONTSET
11810 "xfontset",
11811#endif
11812#ifdef USE_XSMP
11813 "xsmp",
11814#endif
11815#ifdef USE_XSMP_INTERACT
11816 "xsmp_interact",
11817#endif
11818#ifdef FEAT_XCLIPBOARD
11819 "xterm_clipboard",
11820#endif
11821#ifdef FEAT_XTERM_SAVE
11822 "xterm_save",
11823#endif
11824#if defined(UNIX) && defined(FEAT_X11)
11825 "X11",
11826#endif
11827 NULL
11828 };
11829
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011830 name = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011831 for (i = 0; has_list[i] != NULL; ++i)
11832 if (STRICMP(name, has_list[i]) == 0)
11833 {
11834 n = TRUE;
11835 break;
11836 }
11837
11838 if (n == FALSE)
11839 {
11840 if (STRNICMP(name, "patch", 5) == 0)
11841 n = has_patch(atoi((char *)name + 5));
11842 else if (STRICMP(name, "vim_starting") == 0)
11843 n = (starting != 0);
Bram Moolenaar342337a2005-07-21 21:11:17 +000011844#if defined(FEAT_BEVAL) && defined(FEAT_GUI_W32)
11845 else if (STRICMP(name, "balloon_multiline") == 0)
11846 n = multiline_balloon_available();
11847#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011848#ifdef DYNAMIC_TCL
11849 else if (STRICMP(name, "tcl") == 0)
11850 n = tcl_enabled(FALSE);
11851#endif
11852#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
11853 else if (STRICMP(name, "iconv") == 0)
11854 n = iconv_enabled(FALSE);
11855#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011856#ifdef DYNAMIC_MZSCHEME
11857 else if (STRICMP(name, "mzscheme") == 0)
11858 n = mzscheme_enabled(FALSE);
11859#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011860#ifdef DYNAMIC_RUBY
11861 else if (STRICMP(name, "ruby") == 0)
11862 n = ruby_enabled(FALSE);
11863#endif
11864#ifdef DYNAMIC_PYTHON
11865 else if (STRICMP(name, "python") == 0)
11866 n = python_enabled(FALSE);
11867#endif
11868#ifdef DYNAMIC_PERL
11869 else if (STRICMP(name, "perl") == 0)
11870 n = perl_enabled(FALSE);
11871#endif
11872#ifdef FEAT_GUI
11873 else if (STRICMP(name, "gui_running") == 0)
11874 n = (gui.in_use || gui.starting);
11875# ifdef FEAT_GUI_W32
11876 else if (STRICMP(name, "gui_win32s") == 0)
11877 n = gui_is_win32s();
11878# endif
11879# ifdef FEAT_BROWSE
11880 else if (STRICMP(name, "browse") == 0)
11881 n = gui.in_use; /* gui_mch_browse() works when GUI is running */
11882# endif
11883#endif
11884#ifdef FEAT_SYN_HL
11885 else if (STRICMP(name, "syntax_items") == 0)
11886 n = syntax_present(curbuf);
11887#endif
11888#if defined(WIN3264)
11889 else if (STRICMP(name, "win95") == 0)
11890 n = mch_windows95();
11891#endif
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +000011892#ifdef FEAT_NETBEANS_INTG
11893 else if (STRICMP(name, "netbeans_enabled") == 0)
11894 n = usingNetbeans;
11895#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011896 }
11897
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011898 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011899}
11900
11901/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000011902 * "has_key()" function
11903 */
11904 static void
11905f_has_key(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011906 typval_T *argvars;
11907 typval_T *rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011908{
11909 rettv->vval.v_number = 0;
11910 if (argvars[0].v_type != VAR_DICT)
11911 {
11912 EMSG(_(e_dictreq));
11913 return;
11914 }
11915 if (argvars[0].vval.v_dict == NULL)
11916 return;
11917
11918 rettv->vval.v_number = dict_find(argvars[0].vval.v_dict,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000011919 get_tv_string(&argvars[1]), -1) != NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011920}
11921
11922/*
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011923 * "haslocaldir()" function
11924 */
11925/*ARGSUSED*/
11926 static void
11927f_haslocaldir(argvars, rettv)
11928 typval_T *argvars;
11929 typval_T *rettv;
11930{
11931 rettv->vval.v_number = (curwin->w_localdir != NULL);
11932}
11933
11934/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011935 * "hasmapto()" function
11936 */
11937 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011938f_hasmapto(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011939 typval_T *argvars;
11940 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011941{
11942 char_u *name;
11943 char_u *mode;
11944 char_u buf[NUMBUFLEN];
Bram Moolenaar2c932302006-03-18 21:42:09 +000011945 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011946
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011947 name = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011948 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011949 mode = (char_u *)"nvo";
11950 else
Bram Moolenaar2c932302006-03-18 21:42:09 +000011951 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011952 mode = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000011953 if (argvars[2].v_type != VAR_UNKNOWN)
11954 abbr = get_tv_number(&argvars[2]);
11955 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011956
Bram Moolenaar2c932302006-03-18 21:42:09 +000011957 if (map_to_exists(name, mode, abbr))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011958 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011959 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011960 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011961}
11962
11963/*
11964 * "histadd()" function
11965 */
11966/*ARGSUSED*/
11967 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011968f_histadd(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011969 typval_T *argvars;
11970 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011971{
11972#ifdef FEAT_CMDHIST
11973 int histype;
11974 char_u *str;
11975 char_u buf[NUMBUFLEN];
11976#endif
11977
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011978 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011979 if (check_restricted() || check_secure())
11980 return;
11981#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011982 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
11983 histype = str != NULL ? get_histtype(str) : -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011984 if (histype >= 0)
11985 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011986 str = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011987 if (*str != NUL)
11988 {
11989 add_to_history(histype, str, FALSE, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011990 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011991 return;
11992 }
11993 }
11994#endif
11995}
11996
11997/*
11998 * "histdel()" function
11999 */
12000/*ARGSUSED*/
12001 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012002f_histdel(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012003 typval_T *argvars;
12004 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012005{
12006#ifdef FEAT_CMDHIST
12007 int n;
12008 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012009 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012010
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012011 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12012 if (str == NULL)
12013 n = 0;
12014 else if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000012015 /* only one argument: clear entire history */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012016 n = clr_history(get_histtype(str));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012017 else if (argvars[1].v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +000012018 /* index given: remove that entry */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012019 n = del_history_idx(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012020 (int)get_tv_number(&argvars[1]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012021 else
12022 /* string given: remove all matching entries */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012023 n = del_history_entry(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012024 get_tv_string_buf(&argvars[1], buf));
12025 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012026#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012027 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012028#endif
12029}
12030
12031/*
12032 * "histget()" function
12033 */
12034/*ARGSUSED*/
12035 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012036f_histget(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012037 typval_T *argvars;
12038 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012039{
12040#ifdef FEAT_CMDHIST
12041 int type;
12042 int idx;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012043 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012044
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012045 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12046 if (str == NULL)
12047 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012048 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012049 {
12050 type = get_histtype(str);
12051 if (argvars[1].v_type == VAR_UNKNOWN)
12052 idx = get_history_idx(type);
12053 else
12054 idx = (int)get_tv_number_chk(&argvars[1], NULL);
12055 /* -1 on type error */
12056 rettv->vval.v_string = vim_strsave(get_history_entry(type, idx));
12057 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012058#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012059 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012060#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012061 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012062}
12063
12064/*
12065 * "histnr()" function
12066 */
12067/*ARGSUSED*/
12068 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012069f_histnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012070 typval_T *argvars;
12071 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012072{
12073 int i;
12074
12075#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012076 char_u *history = get_tv_string_chk(&argvars[0]);
12077
12078 i = history == NULL ? HIST_CMD - 1 : get_histtype(history);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012079 if (i >= HIST_CMD && i < HIST_COUNT)
12080 i = get_history_idx(i);
12081 else
12082#endif
12083 i = -1;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012084 rettv->vval.v_number = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012085}
12086
12087/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012088 * "highlightID(name)" function
12089 */
12090 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012091f_hlID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012092 typval_T *argvars;
12093 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012094{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012095 rettv->vval.v_number = syn_name2id(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012096}
12097
12098/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012099 * "highlight_exists()" function
12100 */
12101 static void
12102f_hlexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012103 typval_T *argvars;
12104 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012105{
12106 rettv->vval.v_number = highlight_exists(get_tv_string(&argvars[0]));
12107}
12108
12109/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012110 * "hostname()" function
12111 */
12112/*ARGSUSED*/
12113 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012114f_hostname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012115 typval_T *argvars;
12116 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012117{
12118 char_u hostname[256];
12119
12120 mch_get_host_name(hostname, 256);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012121 rettv->v_type = VAR_STRING;
12122 rettv->vval.v_string = vim_strsave(hostname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012123}
12124
12125/*
12126 * iconv() function
12127 */
12128/*ARGSUSED*/
12129 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012130f_iconv(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012131 typval_T *argvars;
12132 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012133{
12134#ifdef FEAT_MBYTE
12135 char_u buf1[NUMBUFLEN];
12136 char_u buf2[NUMBUFLEN];
12137 char_u *from, *to, *str;
12138 vimconv_T vimconv;
12139#endif
12140
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012141 rettv->v_type = VAR_STRING;
12142 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012143
12144#ifdef FEAT_MBYTE
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012145 str = get_tv_string(&argvars[0]);
12146 from = enc_canonize(enc_skip(get_tv_string_buf(&argvars[1], buf1)));
12147 to = enc_canonize(enc_skip(get_tv_string_buf(&argvars[2], buf2)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012148 vimconv.vc_type = CONV_NONE;
12149 convert_setup(&vimconv, from, to);
12150
12151 /* If the encodings are equal, no conversion needed. */
12152 if (vimconv.vc_type == CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012153 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012154 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012155 rettv->vval.v_string = string_convert(&vimconv, str, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012156
12157 convert_setup(&vimconv, NULL, NULL);
12158 vim_free(from);
12159 vim_free(to);
12160#endif
12161}
12162
12163/*
12164 * "indent()" function
12165 */
12166 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012167f_indent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012168 typval_T *argvars;
12169 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012170{
12171 linenr_T lnum;
12172
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012173 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012174 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012175 rettv->vval.v_number = get_indent_lnum(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012176 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012177 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012178}
12179
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012180/*
12181 * "index()" function
12182 */
12183 static void
12184f_index(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012185 typval_T *argvars;
12186 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012187{
Bram Moolenaar33570922005-01-25 22:26:29 +000012188 list_T *l;
12189 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012190 long idx = 0;
12191 int ic = FALSE;
12192
12193 rettv->vval.v_number = -1;
12194 if (argvars[0].v_type != VAR_LIST)
12195 {
12196 EMSG(_(e_listreq));
12197 return;
12198 }
12199 l = argvars[0].vval.v_list;
12200 if (l != NULL)
12201 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012202 item = l->lv_first;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012203 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012204 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012205 int error = FALSE;
12206
Bram Moolenaar758711c2005-02-02 23:11:38 +000012207 /* Start at specified item. Use the cached index that list_find()
12208 * sets, so that a negative number also works. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012209 item = list_find(l, get_tv_number_chk(&argvars[2], &error));
Bram Moolenaar758711c2005-02-02 23:11:38 +000012210 idx = l->lv_idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012211 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012212 ic = get_tv_number_chk(&argvars[3], &error);
12213 if (error)
12214 item = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012215 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012216
Bram Moolenaar758711c2005-02-02 23:11:38 +000012217 for ( ; item != NULL; item = item->li_next, ++idx)
12218 if (tv_equal(&item->li_tv, &argvars[1], ic))
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012219 {
12220 rettv->vval.v_number = idx;
12221 break;
12222 }
12223 }
12224}
12225
Bram Moolenaar071d4272004-06-13 20:20:40 +000012226static int inputsecret_flag = 0;
12227
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012228static void get_user_input __ARGS((typval_T *argvars, typval_T *rettv, int inputdialog));
12229
Bram Moolenaar071d4272004-06-13 20:20:40 +000012230/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012231 * This function is used by f_input() and f_inputdialog() functions. The third
12232 * argument to f_input() specifies the type of completion to use at the
12233 * prompt. The third argument to f_inputdialog() specifies the value to return
12234 * when the user cancels the prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +000012235 */
12236 static void
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012237get_user_input(argvars, rettv, inputdialog)
Bram Moolenaar33570922005-01-25 22:26:29 +000012238 typval_T *argvars;
12239 typval_T *rettv;
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012240 int inputdialog;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012241{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012242 char_u *prompt = get_tv_string_chk(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012243 char_u *p = NULL;
12244 int c;
12245 char_u buf[NUMBUFLEN];
12246 int cmd_silent_save = cmd_silent;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012247 char_u *defstr = (char_u *)"";
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012248 int xp_type = EXPAND_NOTHING;
12249 char_u *xp_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012250
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012251 rettv->v_type = VAR_STRING;
Bram Moolenaarce85c562007-09-16 12:21:16 +000012252 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012253
12254#ifdef NO_CONSOLE_INPUT
12255 /* While starting up, there is no place to enter text. */
12256 if (no_console_input())
Bram Moolenaar071d4272004-06-13 20:20:40 +000012257 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012258#endif
12259
12260 cmd_silent = FALSE; /* Want to see the prompt. */
12261 if (prompt != NULL)
12262 {
12263 /* Only the part of the message after the last NL is considered as
12264 * prompt for the command line */
12265 p = vim_strrchr(prompt, '\n');
12266 if (p == NULL)
12267 p = prompt;
12268 else
12269 {
12270 ++p;
12271 c = *p;
12272 *p = NUL;
12273 msg_start();
12274 msg_clr_eos();
12275 msg_puts_attr(prompt, echo_attr);
12276 msg_didout = FALSE;
12277 msg_starthere();
12278 *p = c;
12279 }
12280 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012281
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012282 if (argvars[1].v_type != VAR_UNKNOWN)
12283 {
12284 defstr = get_tv_string_buf_chk(&argvars[1], buf);
12285 if (defstr != NULL)
12286 stuffReadbuffSpec(defstr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012287
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012288 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar4463f292005-09-25 22:20:24 +000012289 {
12290 char_u *xp_name;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000012291 int xp_namelen;
Bram Moolenaar4463f292005-09-25 22:20:24 +000012292 long argt;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012293
Bram Moolenaar4463f292005-09-25 22:20:24 +000012294 rettv->vval.v_string = NULL;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012295
Bram Moolenaar4463f292005-09-25 22:20:24 +000012296 xp_name = get_tv_string_buf_chk(&argvars[2], buf);
12297 if (xp_name == NULL)
12298 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012299
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012300 xp_namelen = (int)STRLEN(xp_name);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012301
Bram Moolenaar4463f292005-09-25 22:20:24 +000012302 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt,
12303 &xp_arg) == FAIL)
12304 return;
12305 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012306 }
12307
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012308 if (defstr != NULL)
12309 rettv->vval.v_string =
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012310 getcmdline_prompt(inputsecret_flag ? NUL : '@', p, echo_attr,
12311 xp_type, xp_arg);
12312
12313 vim_free(xp_arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012314
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012315 /* since the user typed this, no need to wait for return */
12316 need_wait_return = FALSE;
12317 msg_didout = FALSE;
12318 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012319 cmd_silent = cmd_silent_save;
12320}
12321
12322/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012323 * "input()" function
12324 * Also handles inputsecret() when inputsecret is set.
12325 */
12326 static void
12327f_input(argvars, rettv)
12328 typval_T *argvars;
12329 typval_T *rettv;
12330{
12331 get_user_input(argvars, rettv, FALSE);
12332}
12333
12334/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012335 * "inputdialog()" function
12336 */
12337 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012338f_inputdialog(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012339 typval_T *argvars;
12340 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012341{
12342#if defined(FEAT_GUI_TEXTDIALOG)
12343 /* Use a GUI dialog if the GUI is running and 'c' is not in 'guioptions' */
12344 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
12345 {
12346 char_u *message;
12347 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012348 char_u *defstr = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +000012349
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012350 message = get_tv_string_chk(&argvars[0]);
12351 if (argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaarc05f93f2006-05-02 22:09:31 +000012352 && (defstr = get_tv_string_buf_chk(&argvars[1], buf)) != NULL)
Bram Moolenaarce0842a2005-07-18 21:58:11 +000012353 vim_strncpy(IObuff, defstr, IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012354 else
12355 IObuff[0] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012356 if (message != NULL && defstr != NULL
12357 && do_dialog(VIM_QUESTION, NULL, message,
12358 (char_u *)_("&OK\n&Cancel"), 1, IObuff) == 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012359 rettv->vval.v_string = vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012360 else
12361 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012362 if (message != NULL && defstr != NULL
12363 && argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012364 && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012365 rettv->vval.v_string = vim_strsave(
12366 get_tv_string_buf(&argvars[2], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012367 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012368 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012369 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012370 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012371 }
12372 else
12373#endif
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012374 get_user_input(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012375}
12376
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012377/*
12378 * "inputlist()" function
12379 */
12380 static void
12381f_inputlist(argvars, rettv)
12382 typval_T *argvars;
12383 typval_T *rettv;
12384{
12385 listitem_T *li;
12386 int selected;
12387 int mouse_used;
12388
12389 rettv->vval.v_number = 0;
12390#ifdef NO_CONSOLE_INPUT
12391 /* While starting up, there is no place to enter text. */
12392 if (no_console_input())
12393 return;
12394#endif
12395 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
12396 {
12397 EMSG2(_(e_listarg), "inputlist()");
12398 return;
12399 }
12400
12401 msg_start();
Bram Moolenaar412f7442006-07-23 19:51:57 +000012402 msg_row = Rows - 1; /* for when 'cmdheight' > 1 */
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012403 lines_left = Rows; /* avoid more prompt */
12404 msg_scroll = TRUE;
12405 msg_clr_eos();
12406
12407 for (li = argvars[0].vval.v_list->lv_first; li != NULL; li = li->li_next)
12408 {
12409 msg_puts(get_tv_string(&li->li_tv));
12410 msg_putchar('\n');
12411 }
12412
12413 /* Ask for choice. */
12414 selected = prompt_for_number(&mouse_used);
12415 if (mouse_used)
12416 selected -= lines_left;
12417
12418 rettv->vval.v_number = selected;
12419}
12420
12421
Bram Moolenaar071d4272004-06-13 20:20:40 +000012422static garray_T ga_userinput = {0, 0, sizeof(tasave_T), 4, NULL};
12423
12424/*
12425 * "inputrestore()" function
12426 */
12427/*ARGSUSED*/
12428 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012429f_inputrestore(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012430 typval_T *argvars;
12431 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012432{
12433 if (ga_userinput.ga_len > 0)
12434 {
12435 --ga_userinput.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012436 restore_typeahead((tasave_T *)(ga_userinput.ga_data)
12437 + ga_userinput.ga_len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012438 rettv->vval.v_number = 0; /* OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012439 }
12440 else if (p_verbose > 1)
12441 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +000012442 verb_msg((char_u *)_("called inputrestore() more often than inputsave()"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012443 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012444 }
12445}
12446
12447/*
12448 * "inputsave()" function
12449 */
12450/*ARGSUSED*/
12451 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012452f_inputsave(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012453 typval_T *argvars;
12454 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012455{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012456 /* Add an entry to the stack of typeahead storage. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012457 if (ga_grow(&ga_userinput, 1) == OK)
12458 {
12459 save_typeahead((tasave_T *)(ga_userinput.ga_data)
12460 + ga_userinput.ga_len);
12461 ++ga_userinput.ga_len;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012462 rettv->vval.v_number = 0; /* OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012463 }
12464 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012465 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012466}
12467
12468/*
12469 * "inputsecret()" function
12470 */
12471 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012472f_inputsecret(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012473 typval_T *argvars;
12474 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012475{
12476 ++cmdline_star;
12477 ++inputsecret_flag;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012478 f_input(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012479 --cmdline_star;
12480 --inputsecret_flag;
12481}
12482
12483/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012484 * "insert()" function
12485 */
12486 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012487f_insert(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012488 typval_T *argvars;
12489 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012490{
12491 long before = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000012492 listitem_T *item;
12493 list_T *l;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012494 int error = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012495
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012496 rettv->vval.v_number = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012497 if (argvars[0].v_type != VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000012498 EMSG2(_(e_listarg), "insert()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012499 else if ((l = argvars[0].vval.v_list) != NULL
12500 && !tv_check_lock(l->lv_lock, (char_u *)"insert()"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012501 {
12502 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012503 before = get_tv_number_chk(&argvars[2], &error);
12504 if (error)
12505 return; /* type error; errmsg already given */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012506
Bram Moolenaar758711c2005-02-02 23:11:38 +000012507 if (before == l->lv_len)
12508 item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012509 else
12510 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012511 item = list_find(l, before);
12512 if (item == NULL)
12513 {
12514 EMSGN(_(e_listidx), before);
12515 l = NULL;
12516 }
12517 }
12518 if (l != NULL)
12519 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012520 list_insert_tv(l, &argvars[1], item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012521 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012522 }
12523 }
12524}
12525
12526/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012527 * "isdirectory()" function
12528 */
12529 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012530f_isdirectory(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012531 typval_T *argvars;
12532 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012533{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012534 rettv->vval.v_number = mch_isdir(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012535}
12536
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012537/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012538 * "islocked()" function
12539 */
12540 static void
12541f_islocked(argvars, rettv)
12542 typval_T *argvars;
12543 typval_T *rettv;
12544{
12545 lval_T lv;
12546 char_u *end;
12547 dictitem_T *di;
12548
12549 rettv->vval.v_number = -1;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000012550 end = get_lval(get_tv_string(&argvars[0]), NULL, &lv, FALSE, FALSE, FALSE,
12551 FNE_CHECK_START);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012552 if (end != NULL && lv.ll_name != NULL)
12553 {
12554 if (*end != NUL)
12555 EMSG(_(e_trailing));
12556 else
12557 {
12558 if (lv.ll_tv == NULL)
12559 {
12560 if (check_changedtick(lv.ll_name))
12561 rettv->vval.v_number = 1; /* always locked */
12562 else
12563 {
12564 di = find_var(lv.ll_name, NULL);
12565 if (di != NULL)
12566 {
12567 /* Consider a variable locked when:
12568 * 1. the variable itself is locked
12569 * 2. the value of the variable is locked.
12570 * 3. the List or Dict value is locked.
12571 */
12572 rettv->vval.v_number = ((di->di_flags & DI_FLAGS_LOCK)
12573 || tv_islocked(&di->di_tv));
12574 }
12575 }
12576 }
12577 else if (lv.ll_range)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000012578 EMSG(_("E786: Range not allowed"));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012579 else if (lv.ll_newkey != NULL)
12580 EMSG2(_(e_dictkey), lv.ll_newkey);
12581 else if (lv.ll_list != NULL)
12582 /* List item. */
12583 rettv->vval.v_number = tv_islocked(&lv.ll_li->li_tv);
12584 else
12585 /* Dictionary item. */
12586 rettv->vval.v_number = tv_islocked(&lv.ll_di->di_tv);
12587 }
12588 }
12589
12590 clear_lval(&lv);
12591}
12592
Bram Moolenaar33570922005-01-25 22:26:29 +000012593static void dict_list __ARGS((typval_T *argvars, typval_T *rettv, int what));
Bram Moolenaar8c711452005-01-14 21:53:12 +000012594
12595/*
12596 * Turn a dict into a list:
12597 * "what" == 0: list of keys
12598 * "what" == 1: list of values
12599 * "what" == 2: list of items
12600 */
12601 static void
12602dict_list(argvars, rettv, what)
Bram Moolenaar33570922005-01-25 22:26:29 +000012603 typval_T *argvars;
12604 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012605 int what;
12606{
Bram Moolenaar33570922005-01-25 22:26:29 +000012607 list_T *l2;
12608 dictitem_T *di;
12609 hashitem_T *hi;
12610 listitem_T *li;
12611 listitem_T *li2;
12612 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012613 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012614
12615 rettv->vval.v_number = 0;
12616 if (argvars[0].v_type != VAR_DICT)
12617 {
12618 EMSG(_(e_dictreq));
12619 return;
12620 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012621 if ((d = argvars[0].vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012622 return;
12623
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012624 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012625 return;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012626
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012627 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000012628 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012629 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012630 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +000012631 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012632 --todo;
12633 di = HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012634
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012635 li = listitem_alloc();
12636 if (li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012637 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012638 list_append(rettv->vval.v_list, li);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012639
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012640 if (what == 0)
12641 {
12642 /* keys() */
12643 li->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012644 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012645 li->li_tv.vval.v_string = vim_strsave(di->di_key);
12646 }
12647 else if (what == 1)
12648 {
12649 /* values() */
12650 copy_tv(&di->di_tv, &li->li_tv);
12651 }
12652 else
12653 {
12654 /* items() */
12655 l2 = list_alloc();
12656 li->li_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012657 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012658 li->li_tv.vval.v_list = l2;
12659 if (l2 == NULL)
12660 break;
12661 ++l2->lv_refcount;
12662
12663 li2 = listitem_alloc();
12664 if (li2 == NULL)
12665 break;
12666 list_append(l2, li2);
12667 li2->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012668 li2->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012669 li2->li_tv.vval.v_string = vim_strsave(di->di_key);
12670
12671 li2 = listitem_alloc();
12672 if (li2 == NULL)
12673 break;
12674 list_append(l2, li2);
12675 copy_tv(&di->di_tv, &li2->li_tv);
12676 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000012677 }
12678 }
12679}
12680
12681/*
12682 * "items(dict)" function
12683 */
12684 static void
12685f_items(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012686 typval_T *argvars;
12687 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012688{
12689 dict_list(argvars, rettv, 2);
12690}
12691
Bram Moolenaar071d4272004-06-13 20:20:40 +000012692/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012693 * "join()" function
12694 */
12695 static void
12696f_join(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012697 typval_T *argvars;
12698 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012699{
12700 garray_T ga;
12701 char_u *sep;
12702
12703 rettv->vval.v_number = 0;
12704 if (argvars[0].v_type != VAR_LIST)
12705 {
12706 EMSG(_(e_listreq));
12707 return;
12708 }
12709 if (argvars[0].vval.v_list == NULL)
12710 return;
12711 if (argvars[1].v_type == VAR_UNKNOWN)
12712 sep = (char_u *)" ";
12713 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012714 sep = get_tv_string_chk(&argvars[1]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012715
12716 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012717
12718 if (sep != NULL)
12719 {
12720 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000012721 list_join(&ga, argvars[0].vval.v_list, sep, TRUE, 0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012722 ga_append(&ga, NUL);
12723 rettv->vval.v_string = (char_u *)ga.ga_data;
12724 }
12725 else
12726 rettv->vval.v_string = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012727}
12728
12729/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000012730 * "keys()" function
12731 */
12732 static void
12733f_keys(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012734 typval_T *argvars;
12735 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012736{
12737 dict_list(argvars, rettv, 0);
12738}
12739
12740/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012741 * "last_buffer_nr()" function.
12742 */
12743/*ARGSUSED*/
12744 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012745f_last_buffer_nr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012746 typval_T *argvars;
12747 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012748{
12749 int n = 0;
12750 buf_T *buf;
12751
12752 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
12753 if (n < buf->b_fnum)
12754 n = buf->b_fnum;
12755
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012756 rettv->vval.v_number = n;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012757}
12758
12759/*
12760 * "len()" function
12761 */
12762 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012763f_len(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012764 typval_T *argvars;
12765 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012766{
12767 switch (argvars[0].v_type)
12768 {
12769 case VAR_STRING:
12770 case VAR_NUMBER:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012771 rettv->vval.v_number = (varnumber_T)STRLEN(
12772 get_tv_string(&argvars[0]));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012773 break;
12774 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012775 rettv->vval.v_number = list_len(argvars[0].vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012776 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +000012777 case VAR_DICT:
12778 rettv->vval.v_number = dict_len(argvars[0].vval.v_dict);
12779 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012780 default:
Bram Moolenaare49b69a2005-01-08 16:11:57 +000012781 EMSG(_("E701: Invalid type for len()"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012782 break;
12783 }
12784}
12785
Bram Moolenaar33570922005-01-25 22:26:29 +000012786static void libcall_common __ARGS((typval_T *argvars, typval_T *rettv, int type));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012787
12788 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012789libcall_common(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000012790 typval_T *argvars;
12791 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012792 int type;
12793{
12794#ifdef FEAT_LIBCALL
12795 char_u *string_in;
12796 char_u **string_result;
12797 int nr_result;
12798#endif
12799
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012800 rettv->v_type = type;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012801 if (type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012802 rettv->vval.v_number = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012803 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012804 rettv->vval.v_string = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012805
12806 if (check_restricted() || check_secure())
12807 return;
12808
12809#ifdef FEAT_LIBCALL
12810 /* The first two args must be strings, otherwise its meaningless */
12811 if (argvars[0].v_type == VAR_STRING && argvars[1].v_type == VAR_STRING)
12812 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012813 string_in = NULL;
12814 if (argvars[2].v_type == VAR_STRING)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012815 string_in = argvars[2].vval.v_string;
12816 if (type == VAR_NUMBER)
12817 string_result = NULL;
12818 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012819 string_result = &rettv->vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012820 if (mch_libcall(argvars[0].vval.v_string,
12821 argvars[1].vval.v_string,
12822 string_in,
12823 argvars[2].vval.v_number,
12824 string_result,
12825 &nr_result) == OK
12826 && type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012827 rettv->vval.v_number = nr_result;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012828 }
12829#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000012830}
12831
12832/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012833 * "libcall()" function
12834 */
12835 static void
12836f_libcall(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012837 typval_T *argvars;
12838 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012839{
12840 libcall_common(argvars, rettv, VAR_STRING);
12841}
12842
12843/*
12844 * "libcallnr()" function
12845 */
12846 static void
12847f_libcallnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012848 typval_T *argvars;
12849 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012850{
12851 libcall_common(argvars, rettv, VAR_NUMBER);
12852}
12853
12854/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012855 * "line(string)" function
12856 */
12857 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012858f_line(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012859 typval_T *argvars;
12860 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012861{
12862 linenr_T lnum = 0;
12863 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012864 int fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012865
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012866 fp = var2fpos(&argvars[0], TRUE, &fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012867 if (fp != NULL)
12868 lnum = fp->lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012869 rettv->vval.v_number = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012870}
12871
12872/*
12873 * "line2byte(lnum)" function
12874 */
12875/*ARGSUSED*/
12876 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012877f_line2byte(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{
12881#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012882 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012883#else
12884 linenr_T lnum;
12885
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012886 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012887 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012888 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012889 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012890 rettv->vval.v_number = ml_find_line_or_offset(curbuf, lnum, NULL);
12891 if (rettv->vval.v_number >= 0)
12892 ++rettv->vval.v_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012893#endif
12894}
12895
12896/*
12897 * "lispindent(lnum)" function
12898 */
12899 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012900f_lispindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012901 typval_T *argvars;
12902 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012903{
12904#ifdef FEAT_LISP
12905 pos_T pos;
12906 linenr_T lnum;
12907
12908 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012909 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012910 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
12911 {
12912 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012913 rettv->vval.v_number = get_lisp_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +000012914 curwin->w_cursor = pos;
12915 }
12916 else
12917#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012918 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012919}
12920
12921/*
12922 * "localtime()" function
12923 */
12924/*ARGSUSED*/
12925 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012926f_localtime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012927 typval_T *argvars;
12928 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012929{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012930 rettv->vval.v_number = (varnumber_T)time(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012931}
12932
Bram Moolenaar33570922005-01-25 22:26:29 +000012933static void get_maparg __ARGS((typval_T *argvars, typval_T *rettv, int exact));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012934
12935 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012936get_maparg(argvars, rettv, exact)
Bram Moolenaar33570922005-01-25 22:26:29 +000012937 typval_T *argvars;
12938 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012939 int exact;
12940{
12941 char_u *keys;
12942 char_u *which;
12943 char_u buf[NUMBUFLEN];
12944 char_u *keys_buf = NULL;
12945 char_u *rhs;
12946 int mode;
12947 garray_T ga;
Bram Moolenaar2c932302006-03-18 21:42:09 +000012948 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012949
12950 /* return empty string for failure */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012951 rettv->v_type = VAR_STRING;
12952 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012953
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012954 keys = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012955 if (*keys == NUL)
12956 return;
12957
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012958 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar2c932302006-03-18 21:42:09 +000012959 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012960 which = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012961 if (argvars[2].v_type != VAR_UNKNOWN)
12962 abbr = get_tv_number(&argvars[2]);
12963 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012964 else
12965 which = (char_u *)"";
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012966 if (which == NULL)
12967 return;
12968
Bram Moolenaar071d4272004-06-13 20:20:40 +000012969 mode = get_map_mode(&which, 0);
12970
Bram Moolenaar3fb9eda2006-05-03 21:29:58 +000012971 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE, FALSE);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012972 rhs = check_map(keys, mode, exact, FALSE, abbr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012973 vim_free(keys_buf);
12974 if (rhs != NULL)
12975 {
12976 ga_init(&ga);
12977 ga.ga_itemsize = 1;
12978 ga.ga_growsize = 40;
12979
12980 while (*rhs != NUL)
12981 ga_concat(&ga, str2special(&rhs, FALSE));
12982
12983 ga_append(&ga, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012984 rettv->vval.v_string = (char_u *)ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012985 }
12986}
12987
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012988#ifdef FEAT_FLOAT
12989/*
12990 * "log10()" function
12991 */
12992 static void
12993f_log10(argvars, rettv)
12994 typval_T *argvars;
12995 typval_T *rettv;
12996{
12997 float_T f;
12998
12999 rettv->v_type = VAR_FLOAT;
13000 if (get_float_arg(argvars, &f) == OK)
13001 rettv->vval.v_float = log10(f);
13002 else
13003 rettv->vval.v_float = 0.0;
13004}
13005#endif
13006
Bram Moolenaar071d4272004-06-13 20:20:40 +000013007/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013008 * "map()" function
13009 */
13010 static void
13011f_map(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013012 typval_T *argvars;
13013 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013014{
13015 filter_map(argvars, rettv, TRUE);
13016}
13017
13018/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013019 * "maparg()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013020 */
13021 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013022f_maparg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013023 typval_T *argvars;
13024 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013025{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013026 get_maparg(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013027}
13028
13029/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013030 * "mapcheck()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013031 */
13032 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013033f_mapcheck(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013034 typval_T *argvars;
13035 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013036{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013037 get_maparg(argvars, rettv, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013038}
13039
Bram Moolenaar33570922005-01-25 22:26:29 +000013040static void find_some_match __ARGS((typval_T *argvars, typval_T *rettv, int start));
Bram Moolenaar071d4272004-06-13 20:20:40 +000013041
13042 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013043find_some_match(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000013044 typval_T *argvars;
13045 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013046 int type;
13047{
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013048 char_u *str = NULL;
13049 char_u *expr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013050 char_u *pat;
13051 regmatch_T regmatch;
13052 char_u patbuf[NUMBUFLEN];
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013053 char_u strbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000013054 char_u *save_cpo;
13055 long start = 0;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013056 long nth = 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013057 colnr_T startcol = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013058 int match = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000013059 list_T *l = NULL;
13060 listitem_T *li = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013061 long idx = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013062 char_u *tofree = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013063
13064 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
13065 save_cpo = p_cpo;
13066 p_cpo = (char_u *)"";
13067
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013068 rettv->vval.v_number = -1;
13069 if (type == 3)
13070 {
13071 /* return empty list when there are no matches */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013072 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013073 goto theend;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013074 }
13075 else if (type == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013076 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013077 rettv->v_type = VAR_STRING;
13078 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013079 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013080
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013081 if (argvars[0].v_type == VAR_LIST)
13082 {
13083 if ((l = argvars[0].vval.v_list) == NULL)
13084 goto theend;
13085 li = l->lv_first;
13086 }
13087 else
13088 expr = str = get_tv_string(&argvars[0]);
13089
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013090 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
13091 if (pat == NULL)
13092 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013093
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013094 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013095 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013096 int error = FALSE;
13097
13098 start = get_tv_number_chk(&argvars[2], &error);
13099 if (error)
13100 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013101 if (l != NULL)
13102 {
13103 li = list_find(l, start);
13104 if (li == NULL)
13105 goto theend;
Bram Moolenaar758711c2005-02-02 23:11:38 +000013106 idx = l->lv_idx; /* use the cached index */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013107 }
13108 else
13109 {
13110 if (start < 0)
13111 start = 0;
13112 if (start > (long)STRLEN(str))
13113 goto theend;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000013114 /* When "count" argument is there ignore matches before "start",
13115 * otherwise skip part of the string. Differs when pattern is "^"
13116 * or "\<". */
13117 if (argvars[3].v_type != VAR_UNKNOWN)
13118 startcol = start;
13119 else
13120 str += start;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013121 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013122
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013123 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013124 nth = get_tv_number_chk(&argvars[3], &error);
13125 if (error)
13126 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013127 }
13128
13129 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
13130 if (regmatch.regprog != NULL)
13131 {
13132 regmatch.rm_ic = p_ic;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013133
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013134 for (;;)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013135 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013136 if (l != NULL)
13137 {
13138 if (li == NULL)
13139 {
13140 match = FALSE;
13141 break;
13142 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013143 vim_free(tofree);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013144 str = echo_string(&li->li_tv, &tofree, strbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013145 if (str == NULL)
13146 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013147 }
13148
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013149 match = vim_regexec_nl(&regmatch, str, (colnr_T)startcol);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013150
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013151 if (match && --nth <= 0)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013152 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013153 if (l == NULL && !match)
13154 break;
13155
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013156 /* Advance to just after the match. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013157 if (l != NULL)
13158 {
13159 li = li->li_next;
13160 ++idx;
13161 }
13162 else
13163 {
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013164#ifdef FEAT_MBYTE
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013165 startcol = (colnr_T)(regmatch.startp[0]
13166 + (*mb_ptr2len)(regmatch.startp[0]) - str);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013167#else
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013168 startcol = regmatch.startp[0] + 1 - str;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013169#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013170 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013171 }
13172
13173 if (match)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013174 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013175 if (type == 3)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013176 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013177 int i;
13178
13179 /* return list with matched string and submatches */
13180 for (i = 0; i < NSUBEXP; ++i)
13181 {
13182 if (regmatch.endp[i] == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000013183 {
13184 if (list_append_string(rettv->vval.v_list,
13185 (char_u *)"", 0) == FAIL)
13186 break;
13187 }
13188 else if (list_append_string(rettv->vval.v_list,
Bram Moolenaar4463f292005-09-25 22:20:24 +000013189 regmatch.startp[i],
13190 (int)(regmatch.endp[i] - regmatch.startp[i]))
13191 == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013192 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013193 }
13194 }
13195 else if (type == 2)
13196 {
13197 /* return matched string */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013198 if (l != NULL)
13199 copy_tv(&li->li_tv, rettv);
13200 else
13201 rettv->vval.v_string = vim_strnsave(regmatch.startp[0],
Bram Moolenaar071d4272004-06-13 20:20:40 +000013202 (int)(regmatch.endp[0] - regmatch.startp[0]));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013203 }
13204 else if (l != NULL)
13205 rettv->vval.v_number = idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013206 else
13207 {
13208 if (type != 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013209 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013210 (varnumber_T)(regmatch.startp[0] - str);
13211 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013212 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013213 (varnumber_T)(regmatch.endp[0] - str);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013214 rettv->vval.v_number += (varnumber_T)(str - expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013215 }
13216 }
13217 vim_free(regmatch.regprog);
13218 }
13219
13220theend:
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013221 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013222 p_cpo = save_cpo;
13223}
13224
13225/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013226 * "match()" function
13227 */
13228 static void
13229f_match(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013230 typval_T *argvars;
13231 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013232{
13233 find_some_match(argvars, rettv, 1);
13234}
13235
13236/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013237 * "matchadd()" function
13238 */
13239 static void
13240f_matchadd(argvars, rettv)
13241 typval_T *argvars;
13242 typval_T *rettv;
13243{
13244#ifdef FEAT_SEARCH_EXTRA
13245 char_u buf[NUMBUFLEN];
13246 char_u *grp = get_tv_string_buf_chk(&argvars[0], buf); /* group */
13247 char_u *pat = get_tv_string_buf_chk(&argvars[1], buf); /* pattern */
13248 int prio = 10; /* default priority */
13249 int id = -1;
13250 int error = FALSE;
13251
13252 rettv->vval.v_number = -1;
13253
13254 if (grp == NULL || pat == NULL)
13255 return;
13256 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013257 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013258 prio = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013259 if (argvars[3].v_type != VAR_UNKNOWN)
13260 id = get_tv_number_chk(&argvars[3], &error);
13261 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013262 if (error == TRUE)
13263 return;
13264 if (id >= 1 && id <= 3)
13265 {
13266 EMSGN("E798: ID is reserved for \":match\": %ld", id);
13267 return;
13268 }
13269
13270 rettv->vval.v_number = match_add(curwin, grp, pat, prio, id);
13271#endif
13272}
13273
13274/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013275 * "matcharg()" function
13276 */
13277 static void
13278f_matcharg(argvars, rettv)
13279 typval_T *argvars;
13280 typval_T *rettv;
13281{
13282 if (rettv_list_alloc(rettv) == OK)
13283 {
13284#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013285 int id = get_tv_number(&argvars[0]);
13286 matchitem_T *m;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013287
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013288 if (id >= 1 && id <= 3)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013289 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013290 if ((m = (matchitem_T *)get_match(curwin, id)) != NULL)
13291 {
13292 list_append_string(rettv->vval.v_list,
13293 syn_id2name(m->hlg_id), -1);
13294 list_append_string(rettv->vval.v_list, m->pattern, -1);
13295 }
13296 else
13297 {
13298 list_append_string(rettv->vval.v_list, NUL, -1);
13299 list_append_string(rettv->vval.v_list, NUL, -1);
13300 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013301 }
13302#endif
13303 }
13304}
13305
13306/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013307 * "matchdelete()" function
13308 */
13309 static void
13310f_matchdelete(argvars, rettv)
13311 typval_T *argvars;
13312 typval_T *rettv;
13313{
13314#ifdef FEAT_SEARCH_EXTRA
13315 rettv->vval.v_number = match_delete(curwin,
13316 (int)get_tv_number(&argvars[0]), TRUE);
13317#endif
13318}
13319
13320/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013321 * "matchend()" function
13322 */
13323 static void
13324f_matchend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013325 typval_T *argvars;
13326 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013327{
13328 find_some_match(argvars, rettv, 0);
13329}
13330
13331/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013332 * "matchlist()" function
13333 */
13334 static void
13335f_matchlist(argvars, rettv)
13336 typval_T *argvars;
13337 typval_T *rettv;
13338{
13339 find_some_match(argvars, rettv, 3);
13340}
13341
13342/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013343 * "matchstr()" function
13344 */
13345 static void
13346f_matchstr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013347 typval_T *argvars;
13348 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013349{
13350 find_some_match(argvars, rettv, 2);
13351}
13352
Bram Moolenaar33570922005-01-25 22:26:29 +000013353static void max_min __ARGS((typval_T *argvars, typval_T *rettv, int domax));
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013354
13355 static void
13356max_min(argvars, rettv, domax)
Bram Moolenaar33570922005-01-25 22:26:29 +000013357 typval_T *argvars;
13358 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013359 int domax;
13360{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013361 long n = 0;
13362 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013363 int error = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013364
13365 if (argvars[0].v_type == VAR_LIST)
13366 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013367 list_T *l;
13368 listitem_T *li;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013369
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013370 l = argvars[0].vval.v_list;
13371 if (l != NULL)
13372 {
13373 li = l->lv_first;
13374 if (li != NULL)
13375 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013376 n = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013377 for (;;)
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013378 {
13379 li = li->li_next;
13380 if (li == NULL)
13381 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013382 i = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013383 if (domax ? i > n : i < n)
13384 n = i;
13385 }
13386 }
13387 }
13388 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000013389 else if (argvars[0].v_type == VAR_DICT)
13390 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013391 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013392 int first = TRUE;
Bram Moolenaar33570922005-01-25 22:26:29 +000013393 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013394 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013395
13396 d = argvars[0].vval.v_dict;
13397 if (d != NULL)
13398 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013399 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000013400 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013401 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013402 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +000013403 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013404 --todo;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013405 i = get_tv_number_chk(&HI2DI(hi)->di_tv, &error);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013406 if (first)
13407 {
13408 n = i;
13409 first = FALSE;
13410 }
13411 else if (domax ? i > n : i < n)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013412 n = i;
13413 }
13414 }
13415 }
13416 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013417 else
Bram Moolenaar758711c2005-02-02 23:11:38 +000013418 EMSG(_(e_listdictarg));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013419 rettv->vval.v_number = error ? 0 : n;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013420}
13421
13422/*
13423 * "max()" function
13424 */
13425 static void
13426f_max(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013427 typval_T *argvars;
13428 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013429{
13430 max_min(argvars, rettv, TRUE);
13431}
13432
13433/*
13434 * "min()" function
13435 */
13436 static void
13437f_min(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013438 typval_T *argvars;
13439 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013440{
13441 max_min(argvars, rettv, FALSE);
13442}
13443
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013444static int mkdir_recurse __ARGS((char_u *dir, int prot));
13445
13446/*
13447 * Create the directory in which "dir" is located, and higher levels when
13448 * needed.
13449 */
13450 static int
13451mkdir_recurse(dir, prot)
13452 char_u *dir;
13453 int prot;
13454{
13455 char_u *p;
13456 char_u *updir;
13457 int r = FAIL;
13458
13459 /* Get end of directory name in "dir".
13460 * We're done when it's "/" or "c:/". */
13461 p = gettail_sep(dir);
13462 if (p <= get_past_head(dir))
13463 return OK;
13464
13465 /* If the directory exists we're done. Otherwise: create it.*/
13466 updir = vim_strnsave(dir, (int)(p - dir));
13467 if (updir == NULL)
13468 return FAIL;
13469 if (mch_isdir(updir))
13470 r = OK;
13471 else if (mkdir_recurse(updir, prot) == OK)
13472 r = vim_mkdir_emsg(updir, prot);
13473 vim_free(updir);
13474 return r;
13475}
13476
13477#ifdef vim_mkdir
13478/*
13479 * "mkdir()" function
13480 */
13481 static void
13482f_mkdir(argvars, rettv)
13483 typval_T *argvars;
13484 typval_T *rettv;
13485{
13486 char_u *dir;
13487 char_u buf[NUMBUFLEN];
13488 int prot = 0755;
13489
13490 rettv->vval.v_number = FAIL;
13491 if (check_restricted() || check_secure())
13492 return;
13493
13494 dir = get_tv_string_buf(&argvars[0], buf);
13495 if (argvars[1].v_type != VAR_UNKNOWN)
13496 {
13497 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013498 prot = get_tv_number_chk(&argvars[2], NULL);
13499 if (prot != -1 && STRCMP(get_tv_string(&argvars[1]), "p") == 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013500 mkdir_recurse(dir, prot);
13501 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013502 rettv->vval.v_number = prot != -1 ? vim_mkdir_emsg(dir, prot) : 0;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013503}
13504#endif
13505
Bram Moolenaar0d660222005-01-07 21:51:51 +000013506/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013507 * "mode()" function
13508 */
13509/*ARGSUSED*/
13510 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013511f_mode(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013512 typval_T *argvars;
13513 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013514{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013515 char_u buf[3];
13516
13517 buf[1] = NUL;
13518 buf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013519
13520#ifdef FEAT_VISUAL
13521 if (VIsual_active)
13522 {
13523 if (VIsual_select)
13524 buf[0] = VIsual_mode + 's' - 'v';
13525 else
13526 buf[0] = VIsual_mode;
13527 }
13528 else
13529#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013530 if (State == HITRETURN || State == ASKMORE || State == SETWSIZE
13531 || State == CONFIRM)
13532 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013533 buf[0] = 'r';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013534 if (State == ASKMORE)
13535 buf[1] = 'm';
13536 else if (State == CONFIRM)
13537 buf[1] = '?';
13538 }
13539 else if (State == EXTERNCMD)
13540 buf[0] = '!';
Bram Moolenaar071d4272004-06-13 20:20:40 +000013541 else if (State & INSERT)
13542 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013543#ifdef FEAT_VREPLACE
13544 if (State & VREPLACE_FLAG)
13545 {
13546 buf[0] = 'R';
13547 buf[1] = 'v';
13548 }
13549 else
13550#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000013551 if (State & REPLACE_FLAG)
13552 buf[0] = 'R';
13553 else
13554 buf[0] = 'i';
13555 }
13556 else if (State & CMDLINE)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013557 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013558 buf[0] = 'c';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013559 if (exmode_active)
13560 buf[1] = 'v';
13561 }
13562 else if (exmode_active)
13563 {
13564 buf[0] = 'c';
13565 buf[1] = 'e';
13566 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013567 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013568 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013569 buf[0] = 'n';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013570 if (finish_op)
13571 buf[1] = 'o';
13572 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013573
Bram Moolenaar05bb9532008-07-04 09:44:11 +000013574 /* Clear out the minor mode when the argument is not a non-zero number or
13575 * non-empty string. */
13576 if (!non_zero_arg(&argvars[0]))
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013577 buf[1] = NUL;
13578
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013579 rettv->vval.v_string = vim_strsave(buf);
13580 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013581}
13582
13583/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013584 * "nextnonblank()" function
13585 */
13586 static void
13587f_nextnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013588 typval_T *argvars;
13589 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013590{
13591 linenr_T lnum;
13592
13593 for (lnum = get_tv_lnum(argvars); ; ++lnum)
13594 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013595 if (lnum < 0 || lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar0d660222005-01-07 21:51:51 +000013596 {
13597 lnum = 0;
13598 break;
13599 }
13600 if (*skipwhite(ml_get(lnum)) != NUL)
13601 break;
13602 }
13603 rettv->vval.v_number = lnum;
13604}
13605
13606/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013607 * "nr2char()" function
13608 */
13609 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013610f_nr2char(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013611 typval_T *argvars;
13612 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013613{
13614 char_u buf[NUMBUFLEN];
13615
13616#ifdef FEAT_MBYTE
13617 if (has_mbyte)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013618 buf[(*mb_char2bytes)((int)get_tv_number(&argvars[0]), buf)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013619 else
13620#endif
13621 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013622 buf[0] = (char_u)get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013623 buf[1] = NUL;
13624 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013625 rettv->v_type = VAR_STRING;
13626 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013627}
13628
13629/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013630 * "pathshorten()" function
13631 */
13632 static void
13633f_pathshorten(argvars, rettv)
13634 typval_T *argvars;
13635 typval_T *rettv;
13636{
13637 char_u *p;
13638
13639 rettv->v_type = VAR_STRING;
13640 p = get_tv_string_chk(&argvars[0]);
13641 if (p == NULL)
13642 rettv->vval.v_string = NULL;
13643 else
13644 {
13645 p = vim_strsave(p);
13646 rettv->vval.v_string = p;
13647 if (p != NULL)
13648 shorten_dir(p);
13649 }
13650}
13651
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013652#ifdef FEAT_FLOAT
13653/*
13654 * "pow()" function
13655 */
13656 static void
13657f_pow(argvars, rettv)
13658 typval_T *argvars;
13659 typval_T *rettv;
13660{
13661 float_T fx, fy;
13662
13663 rettv->v_type = VAR_FLOAT;
13664 if (get_float_arg(argvars, &fx) == OK
13665 && get_float_arg(&argvars[1], &fy) == OK)
13666 rettv->vval.v_float = pow(fx, fy);
13667 else
13668 rettv->vval.v_float = 0.0;
13669}
13670#endif
13671
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013672/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013673 * "prevnonblank()" function
13674 */
13675 static void
13676f_prevnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013677 typval_T *argvars;
13678 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013679{
13680 linenr_T lnum;
13681
13682 lnum = get_tv_lnum(argvars);
13683 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
13684 lnum = 0;
13685 else
13686 while (lnum >= 1 && *skipwhite(ml_get(lnum)) == NUL)
13687 --lnum;
13688 rettv->vval.v_number = lnum;
13689}
13690
Bram Moolenaara6c840d2005-08-22 22:59:46 +000013691#ifdef HAVE_STDARG_H
13692/* This dummy va_list is here because:
13693 * - passing a NULL pointer doesn't work when va_list isn't a pointer
13694 * - locally in the function results in a "used before set" warning
13695 * - using va_start() to initialize it gives "function with fixed args" error */
13696static va_list ap;
13697#endif
13698
Bram Moolenaar8c711452005-01-14 21:53:12 +000013699/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013700 * "printf()" function
13701 */
13702 static void
13703f_printf(argvars, rettv)
13704 typval_T *argvars;
13705 typval_T *rettv;
13706{
13707 rettv->v_type = VAR_STRING;
13708 rettv->vval.v_string = NULL;
Bram Moolenaard52d9742005-08-21 22:20:28 +000013709#ifdef HAVE_STDARG_H /* only very old compilers can't do this */
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013710 {
13711 char_u buf[NUMBUFLEN];
13712 int len;
13713 char_u *s;
13714 int saved_did_emsg = did_emsg;
13715 char *fmt;
13716
13717 /* Get the required length, allocate the buffer and do it for real. */
13718 did_emsg = FALSE;
13719 fmt = (char *)get_tv_string_buf(&argvars[0], buf);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013720 len = vim_vsnprintf(NULL, 0, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013721 if (!did_emsg)
13722 {
13723 s = alloc(len + 1);
13724 if (s != NULL)
13725 {
13726 rettv->vval.v_string = s;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013727 (void)vim_vsnprintf((char *)s, len + 1, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013728 }
13729 }
13730 did_emsg |= saved_did_emsg;
13731 }
13732#endif
13733}
13734
13735/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013736 * "pumvisible()" function
13737 */
13738/*ARGSUSED*/
13739 static void
13740f_pumvisible(argvars, rettv)
13741 typval_T *argvars;
13742 typval_T *rettv;
13743{
13744 rettv->vval.v_number = 0;
13745#ifdef FEAT_INS_EXPAND
13746 if (pum_visible())
13747 rettv->vval.v_number = 1;
13748#endif
13749}
13750
13751/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000013752 * "range()" function
13753 */
13754 static void
13755f_range(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013756 typval_T *argvars;
13757 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013758{
13759 long start;
13760 long end;
13761 long stride = 1;
13762 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013763 int error = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013764
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013765 start = get_tv_number_chk(&argvars[0], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013766 if (argvars[1].v_type == VAR_UNKNOWN)
13767 {
13768 end = start - 1;
13769 start = 0;
13770 }
13771 else
13772 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013773 end = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013774 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013775 stride = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013776 }
13777
13778 rettv->vval.v_number = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013779 if (error)
13780 return; /* type error; errmsg already given */
Bram Moolenaar8c711452005-01-14 21:53:12 +000013781 if (stride == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013782 EMSG(_("E726: Stride is zero"));
Bram Moolenaar92124a32005-06-17 22:03:40 +000013783 else if (stride > 0 ? end + 1 < start : end - 1 > start)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013784 EMSG(_("E727: Start past end"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000013785 else
13786 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013787 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013788 for (i = start; stride > 0 ? i <= end : i >= end; i += stride)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013789 if (list_append_number(rettv->vval.v_list,
13790 (varnumber_T)i) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013791 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013792 }
13793}
13794
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013795/*
13796 * "readfile()" function
13797 */
13798 static void
13799f_readfile(argvars, rettv)
13800 typval_T *argvars;
13801 typval_T *rettv;
13802{
13803 int binary = FALSE;
13804 char_u *fname;
13805 FILE *fd;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013806 listitem_T *li;
13807#define FREAD_SIZE 200 /* optimized for text lines */
13808 char_u buf[FREAD_SIZE];
13809 int readlen; /* size of last fread() */
13810 int buflen; /* nr of valid chars in buf[] */
13811 int filtd; /* how much in buf[] was NUL -> '\n' filtered */
13812 int tolist; /* first byte in buf[] still to be put in list */
13813 int chop; /* how many CR to chop off */
13814 char_u *prev = NULL; /* previously read bytes, if any */
13815 int prevlen = 0; /* length of "prev" if not NULL */
13816 char_u *s;
13817 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013818 long maxline = MAXLNUM;
13819 long cnt = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013820
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013821 if (argvars[1].v_type != VAR_UNKNOWN)
13822 {
13823 if (STRCMP(get_tv_string(&argvars[1]), "b") == 0)
13824 binary = TRUE;
13825 if (argvars[2].v_type != VAR_UNKNOWN)
13826 maxline = get_tv_number(&argvars[2]);
13827 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013828
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013829 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013830 return;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013831
13832 /* Always open the file in binary mode, library functions have a mind of
13833 * their own about CR-LF conversion. */
13834 fname = get_tv_string(&argvars[0]);
13835 if (*fname == NUL || (fd = mch_fopen((char *)fname, READBIN)) == NULL)
13836 {
13837 EMSG2(_(e_notopen), *fname == NUL ? (char_u *)_("<empty>") : fname);
13838 return;
13839 }
13840
13841 filtd = 0;
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013842 while (cnt < maxline || maxline < 0)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013843 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013844 readlen = (int)fread(buf + filtd, 1, FREAD_SIZE - filtd, fd);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013845 buflen = filtd + readlen;
13846 tolist = 0;
13847 for ( ; filtd < buflen || readlen <= 0; ++filtd)
13848 {
13849 if (buf[filtd] == '\n' || readlen <= 0)
13850 {
13851 /* Only when in binary mode add an empty list item when the
13852 * last line ends in a '\n'. */
13853 if (!binary && readlen == 0 && filtd == 0)
13854 break;
13855
13856 /* Found end-of-line or end-of-file: add a text line to the
13857 * list. */
13858 chop = 0;
13859 if (!binary)
13860 while (filtd - chop - 1 >= tolist
13861 && buf[filtd - chop - 1] == '\r')
13862 ++chop;
13863 len = filtd - tolist - chop;
13864 if (prev == NULL)
13865 s = vim_strnsave(buf + tolist, len);
13866 else
13867 {
13868 s = alloc((unsigned)(prevlen + len + 1));
13869 if (s != NULL)
13870 {
13871 mch_memmove(s, prev, prevlen);
13872 vim_free(prev);
13873 prev = NULL;
13874 mch_memmove(s + prevlen, buf + tolist, len);
13875 s[prevlen + len] = NUL;
13876 }
13877 }
13878 tolist = filtd + 1;
13879
13880 li = listitem_alloc();
13881 if (li == NULL)
13882 {
13883 vim_free(s);
13884 break;
13885 }
13886 li->li_tv.v_type = VAR_STRING;
13887 li->li_tv.v_lock = 0;
13888 li->li_tv.vval.v_string = s;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013889 list_append(rettv->vval.v_list, li);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013890
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013891 if (++cnt >= maxline && maxline >= 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013892 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013893 if (readlen <= 0)
13894 break;
13895 }
13896 else if (buf[filtd] == NUL)
13897 buf[filtd] = '\n';
13898 }
13899 if (readlen <= 0)
13900 break;
13901
13902 if (tolist == 0)
13903 {
13904 /* "buf" is full, need to move text to an allocated buffer */
13905 if (prev == NULL)
13906 {
13907 prev = vim_strnsave(buf, buflen);
13908 prevlen = buflen;
13909 }
13910 else
13911 {
13912 s = alloc((unsigned)(prevlen + buflen));
13913 if (s != NULL)
13914 {
13915 mch_memmove(s, prev, prevlen);
13916 mch_memmove(s + prevlen, buf, buflen);
13917 vim_free(prev);
13918 prev = s;
13919 prevlen += buflen;
13920 }
13921 }
13922 filtd = 0;
13923 }
13924 else
13925 {
13926 mch_memmove(buf, buf + tolist, buflen - tolist);
13927 filtd -= tolist;
13928 }
13929 }
13930
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013931 /*
13932 * For a negative line count use only the lines at the end of the file,
13933 * free the rest.
13934 */
13935 if (maxline < 0)
13936 while (cnt > -maxline)
13937 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013938 listitem_remove(rettv->vval.v_list, rettv->vval.v_list->lv_first);
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013939 --cnt;
13940 }
13941
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013942 vim_free(prev);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013943 fclose(fd);
13944}
13945
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013946#if defined(FEAT_RELTIME)
13947static int list2proftime __ARGS((typval_T *arg, proftime_T *tm));
13948
13949/*
13950 * Convert a List to proftime_T.
13951 * Return FAIL when there is something wrong.
13952 */
13953 static int
13954list2proftime(arg, tm)
13955 typval_T *arg;
13956 proftime_T *tm;
13957{
13958 long n1, n2;
13959 int error = FALSE;
13960
13961 if (arg->v_type != VAR_LIST || arg->vval.v_list == NULL
13962 || arg->vval.v_list->lv_len != 2)
13963 return FAIL;
13964 n1 = list_find_nr(arg->vval.v_list, 0L, &error);
13965 n2 = list_find_nr(arg->vval.v_list, 1L, &error);
13966# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000013967 tm->HighPart = n1;
13968 tm->LowPart = n2;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013969# else
13970 tm->tv_sec = n1;
13971 tm->tv_usec = n2;
13972# endif
13973 return error ? FAIL : OK;
13974}
13975#endif /* FEAT_RELTIME */
13976
13977/*
13978 * "reltime()" function
13979 */
13980 static void
13981f_reltime(argvars, rettv)
13982 typval_T *argvars;
13983 typval_T *rettv;
13984{
13985#ifdef FEAT_RELTIME
13986 proftime_T res;
13987 proftime_T start;
13988
13989 if (argvars[0].v_type == VAR_UNKNOWN)
13990 {
13991 /* No arguments: get current time. */
13992 profile_start(&res);
13993 }
13994 else if (argvars[1].v_type == VAR_UNKNOWN)
13995 {
13996 if (list2proftime(&argvars[0], &res) == FAIL)
13997 return;
13998 profile_end(&res);
13999 }
14000 else
14001 {
14002 /* Two arguments: compute the difference. */
14003 if (list2proftime(&argvars[0], &start) == FAIL
14004 || list2proftime(&argvars[1], &res) == FAIL)
14005 return;
14006 profile_sub(&res, &start);
14007 }
14008
14009 if (rettv_list_alloc(rettv) == OK)
14010 {
14011 long n1, n2;
14012
14013# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000014014 n1 = res.HighPart;
14015 n2 = res.LowPart;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000014016# else
14017 n1 = res.tv_sec;
14018 n2 = res.tv_usec;
14019# endif
14020 list_append_number(rettv->vval.v_list, (varnumber_T)n1);
14021 list_append_number(rettv->vval.v_list, (varnumber_T)n2);
14022 }
14023#endif
14024}
14025
14026/*
14027 * "reltimestr()" function
14028 */
14029 static void
14030f_reltimestr(argvars, rettv)
14031 typval_T *argvars;
14032 typval_T *rettv;
14033{
14034#ifdef FEAT_RELTIME
14035 proftime_T tm;
14036#endif
14037
14038 rettv->v_type = VAR_STRING;
14039 rettv->vval.v_string = NULL;
14040#ifdef FEAT_RELTIME
14041 if (list2proftime(&argvars[0], &tm) == OK)
14042 rettv->vval.v_string = vim_strsave((char_u *)profile_msg(&tm));
14043#endif
14044}
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000014045
Bram Moolenaar0d660222005-01-07 21:51:51 +000014046#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
14047static void make_connection __ARGS((void));
14048static int check_connection __ARGS((void));
14049
14050 static void
14051make_connection()
14052{
14053 if (X_DISPLAY == NULL
14054# ifdef FEAT_GUI
14055 && !gui.in_use
14056# endif
14057 )
14058 {
14059 x_force_connect = TRUE;
14060 setup_term_clip();
14061 x_force_connect = FALSE;
14062 }
14063}
14064
14065 static int
14066check_connection()
14067{
14068 make_connection();
14069 if (X_DISPLAY == NULL)
14070 {
14071 EMSG(_("E240: No connection to Vim server"));
14072 return FAIL;
14073 }
14074 return OK;
14075}
14076#endif
14077
14078#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014079static void remote_common __ARGS((typval_T *argvars, typval_T *rettv, int expr));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014080
14081 static void
14082remote_common(argvars, rettv, expr)
Bram Moolenaar33570922005-01-25 22:26:29 +000014083 typval_T *argvars;
14084 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014085 int expr;
14086{
14087 char_u *server_name;
14088 char_u *keys;
14089 char_u *r = NULL;
14090 char_u buf[NUMBUFLEN];
14091# ifdef WIN32
14092 HWND w;
14093# else
14094 Window w;
14095# endif
14096
14097 if (check_restricted() || check_secure())
14098 return;
14099
14100# ifdef FEAT_X11
14101 if (check_connection() == FAIL)
14102 return;
14103# endif
14104
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014105 server_name = get_tv_string_chk(&argvars[0]);
14106 if (server_name == NULL)
14107 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014108 keys = get_tv_string_buf(&argvars[1], buf);
14109# ifdef WIN32
14110 if (serverSendToVim(server_name, keys, &r, &w, expr, TRUE) < 0)
14111# else
14112 if (serverSendToVim(X_DISPLAY, server_name, keys, &r, &w, expr, 0, TRUE)
14113 < 0)
14114# endif
14115 {
14116 if (r != NULL)
14117 EMSG(r); /* sending worked but evaluation failed */
14118 else
14119 EMSG2(_("E241: Unable to send to %s"), server_name);
14120 return;
14121 }
14122
14123 rettv->vval.v_string = r;
14124
14125 if (argvars[2].v_type != VAR_UNKNOWN)
14126 {
Bram Moolenaar33570922005-01-25 22:26:29 +000014127 dictitem_T v;
Bram Moolenaar555b2802005-05-19 21:08:39 +000014128 char_u str[30];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014129 char_u *idvar;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014130
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014131 sprintf((char *)str, PRINTF_HEX_LONG_U, (long_u)w);
Bram Moolenaar33570922005-01-25 22:26:29 +000014132 v.di_tv.v_type = VAR_STRING;
14133 v.di_tv.vval.v_string = vim_strsave(str);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014134 idvar = get_tv_string_chk(&argvars[2]);
14135 if (idvar != NULL)
14136 set_var(idvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014137 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014138 }
14139}
14140#endif
14141
14142/*
14143 * "remote_expr()" function
14144 */
14145/*ARGSUSED*/
14146 static void
14147f_remote_expr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014148 typval_T *argvars;
14149 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014150{
14151 rettv->v_type = VAR_STRING;
14152 rettv->vval.v_string = NULL;
14153#ifdef FEAT_CLIENTSERVER
14154 remote_common(argvars, rettv, TRUE);
14155#endif
14156}
14157
14158/*
14159 * "remote_foreground()" function
14160 */
14161/*ARGSUSED*/
14162 static void
14163f_remote_foreground(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014164 typval_T *argvars;
14165 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014166{
14167 rettv->vval.v_number = 0;
14168#ifdef FEAT_CLIENTSERVER
14169# ifdef WIN32
14170 /* On Win32 it's done in this application. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014171 {
14172 char_u *server_name = get_tv_string_chk(&argvars[0]);
14173
14174 if (server_name != NULL)
14175 serverForeground(server_name);
14176 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014177# else
14178 /* Send a foreground() expression to the server. */
14179 argvars[1].v_type = VAR_STRING;
14180 argvars[1].vval.v_string = vim_strsave((char_u *)"foreground()");
14181 argvars[2].v_type = VAR_UNKNOWN;
14182 remote_common(argvars, rettv, TRUE);
14183 vim_free(argvars[1].vval.v_string);
14184# endif
14185#endif
14186}
14187
14188/*ARGSUSED*/
14189 static void
14190f_remote_peek(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014191 typval_T *argvars;
14192 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014193{
14194#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014195 dictitem_T v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014196 char_u *s = NULL;
14197# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014198 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014199# endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014200 char_u *serverid;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014201
14202 if (check_restricted() || check_secure())
14203 {
14204 rettv->vval.v_number = -1;
14205 return;
14206 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014207 serverid = get_tv_string_chk(&argvars[0]);
14208 if (serverid == NULL)
14209 {
14210 rettv->vval.v_number = -1;
14211 return; /* type error; errmsg already given */
14212 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014213# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014214 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014215 if (n == 0)
14216 rettv->vval.v_number = -1;
14217 else
14218 {
14219 s = serverGetReply((HWND)n, FALSE, FALSE, FALSE);
14220 rettv->vval.v_number = (s != NULL);
14221 }
14222# else
14223 rettv->vval.v_number = 0;
14224 if (check_connection() == FAIL)
14225 return;
14226
14227 rettv->vval.v_number = serverPeekReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014228 serverStrToWin(serverid), &s);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014229# endif
14230
14231 if (argvars[1].v_type != VAR_UNKNOWN && rettv->vval.v_number > 0)
14232 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014233 char_u *retvar;
14234
Bram Moolenaar33570922005-01-25 22:26:29 +000014235 v.di_tv.v_type = VAR_STRING;
14236 v.di_tv.vval.v_string = vim_strsave(s);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014237 retvar = get_tv_string_chk(&argvars[1]);
14238 if (retvar != NULL)
14239 set_var(retvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014240 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014241 }
14242#else
14243 rettv->vval.v_number = -1;
14244#endif
14245}
14246
14247/*ARGSUSED*/
14248 static void
14249f_remote_read(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014250 typval_T *argvars;
14251 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014252{
14253 char_u *r = NULL;
14254
14255#ifdef FEAT_CLIENTSERVER
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014256 char_u *serverid = get_tv_string_chk(&argvars[0]);
14257
14258 if (serverid != NULL && !check_restricted() && !check_secure())
Bram Moolenaar0d660222005-01-07 21:51:51 +000014259 {
14260# ifdef WIN32
14261 /* The server's HWND is encoded in the 'id' parameter */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014262 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014263
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014264 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014265 if (n != 0)
14266 r = serverGetReply((HWND)n, FALSE, TRUE, TRUE);
14267 if (r == NULL)
14268# else
14269 if (check_connection() == FAIL || serverReadReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014270 serverStrToWin(serverid), &r, FALSE) < 0)
Bram Moolenaar0d660222005-01-07 21:51:51 +000014271# endif
14272 EMSG(_("E277: Unable to read a server reply"));
14273 }
14274#endif
14275 rettv->v_type = VAR_STRING;
14276 rettv->vval.v_string = r;
14277}
14278
14279/*
14280 * "remote_send()" function
14281 */
14282/*ARGSUSED*/
14283 static void
14284f_remote_send(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014285 typval_T *argvars;
14286 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014287{
14288 rettv->v_type = VAR_STRING;
14289 rettv->vval.v_string = NULL;
14290#ifdef FEAT_CLIENTSERVER
14291 remote_common(argvars, rettv, FALSE);
14292#endif
14293}
14294
14295/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000014296 * "remove()" function
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014297 */
14298 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014299f_remove(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014300 typval_T *argvars;
14301 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014302{
Bram Moolenaar33570922005-01-25 22:26:29 +000014303 list_T *l;
14304 listitem_T *item, *item2;
14305 listitem_T *li;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014306 long idx;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014307 long end;
Bram Moolenaar8c711452005-01-14 21:53:12 +000014308 char_u *key;
Bram Moolenaar33570922005-01-25 22:26:29 +000014309 dict_T *d;
14310 dictitem_T *di;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014311
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014312 rettv->vval.v_number = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +000014313 if (argvars[0].v_type == VAR_DICT)
14314 {
14315 if (argvars[2].v_type != VAR_UNKNOWN)
14316 EMSG2(_(e_toomanyarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014317 else if ((d = argvars[0].vval.v_dict) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014318 && !tv_check_lock(d->dv_lock, (char_u *)"remove() argument"))
Bram Moolenaar8c711452005-01-14 21:53:12 +000014319 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014320 key = get_tv_string_chk(&argvars[1]);
14321 if (key != NULL)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014322 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014323 di = dict_find(d, key, -1);
14324 if (di == NULL)
14325 EMSG2(_(e_dictkey), key);
14326 else
14327 {
14328 *rettv = di->di_tv;
14329 init_tv(&di->di_tv);
14330 dictitem_remove(d, di);
14331 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014332 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000014333 }
14334 }
14335 else if (argvars[0].v_type != VAR_LIST)
14336 EMSG2(_(e_listdictarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014337 else if ((l = argvars[0].vval.v_list) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014338 && !tv_check_lock(l->lv_lock, (char_u *)"remove() argument"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014339 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014340 int error = FALSE;
14341
14342 idx = get_tv_number_chk(&argvars[1], &error);
14343 if (error)
14344 ; /* type error: do nothing, errmsg already given */
14345 else if ((item = list_find(l, idx)) == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014346 EMSGN(_(e_listidx), idx);
14347 else
14348 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014349 if (argvars[2].v_type == VAR_UNKNOWN)
14350 {
14351 /* Remove one item, return its value. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014352 list_remove(l, item, item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014353 *rettv = item->li_tv;
14354 vim_free(item);
14355 }
14356 else
14357 {
14358 /* Remove range of items, return list with values. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014359 end = get_tv_number_chk(&argvars[2], &error);
14360 if (error)
14361 ; /* type error: do nothing */
14362 else if ((item2 = list_find(l, end)) == NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014363 EMSGN(_(e_listidx), end);
14364 else
14365 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000014366 int cnt = 0;
14367
14368 for (li = item; li != NULL; li = li->li_next)
14369 {
14370 ++cnt;
14371 if (li == item2)
14372 break;
14373 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014374 if (li == NULL) /* didn't find "item2" after "item" */
14375 EMSG(_(e_invrange));
14376 else
14377 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014378 list_remove(l, item, item2);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014379 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014380 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014381 l = rettv->vval.v_list;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014382 l->lv_first = item;
14383 l->lv_last = item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014384 item->li_prev = NULL;
14385 item2->li_next = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014386 l->lv_len = cnt;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014387 }
14388 }
14389 }
14390 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014391 }
14392 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014393}
14394
14395/*
14396 * "rename({from}, {to})" function
14397 */
14398 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014399f_rename(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014400 typval_T *argvars;
14401 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014402{
14403 char_u buf[NUMBUFLEN];
14404
14405 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014406 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014407 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014408 rettv->vval.v_number = vim_rename(get_tv_string(&argvars[0]),
14409 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000014410}
14411
14412/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014413 * "repeat()" function
14414 */
14415/*ARGSUSED*/
14416 static void
14417f_repeat(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014418 typval_T *argvars;
14419 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014420{
14421 char_u *p;
14422 int n;
14423 int slen;
14424 int len;
14425 char_u *r;
14426 int i;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014427
14428 n = get_tv_number(&argvars[1]);
14429 if (argvars[0].v_type == VAR_LIST)
14430 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014431 if (rettv_list_alloc(rettv) == OK && argvars[0].vval.v_list != NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014432 while (n-- > 0)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014433 if (list_extend(rettv->vval.v_list,
14434 argvars[0].vval.v_list, NULL) == FAIL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014435 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014436 }
14437 else
14438 {
14439 p = get_tv_string(&argvars[0]);
14440 rettv->v_type = VAR_STRING;
14441 rettv->vval.v_string = NULL;
14442
14443 slen = (int)STRLEN(p);
14444 len = slen * n;
14445 if (len <= 0)
14446 return;
14447
14448 r = alloc(len + 1);
14449 if (r != NULL)
14450 {
14451 for (i = 0; i < n; i++)
14452 mch_memmove(r + i * slen, p, (size_t)slen);
14453 r[len] = NUL;
14454 }
14455
14456 rettv->vval.v_string = r;
14457 }
14458}
14459
14460/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000014461 * "resolve()" function
14462 */
14463 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014464f_resolve(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014465 typval_T *argvars;
14466 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014467{
14468 char_u *p;
14469
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014470 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014471#ifdef FEAT_SHORTCUT
14472 {
14473 char_u *v = NULL;
14474
14475 v = mch_resolve_shortcut(p);
14476 if (v != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014477 rettv->vval.v_string = v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014478 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014479 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014480 }
14481#else
14482# ifdef HAVE_READLINK
14483 {
14484 char_u buf[MAXPATHL + 1];
14485 char_u *cpy;
14486 int len;
14487 char_u *remain = NULL;
14488 char_u *q;
14489 int is_relative_to_current = FALSE;
14490 int has_trailing_pathsep = FALSE;
14491 int limit = 100;
14492
14493 p = vim_strsave(p);
14494
14495 if (p[0] == '.' && (vim_ispathsep(p[1])
14496 || (p[1] == '.' && (vim_ispathsep(p[2])))))
14497 is_relative_to_current = TRUE;
14498
14499 len = STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014500 if (len > 0 && after_pathsep(p, p + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +000014501 has_trailing_pathsep = TRUE;
14502
14503 q = getnextcomp(p);
14504 if (*q != NUL)
14505 {
14506 /* Separate the first path component in "p", and keep the
14507 * remainder (beginning with the path separator). */
14508 remain = vim_strsave(q - 1);
14509 q[-1] = NUL;
14510 }
14511
14512 for (;;)
14513 {
14514 for (;;)
14515 {
14516 len = readlink((char *)p, (char *)buf, MAXPATHL);
14517 if (len <= 0)
14518 break;
14519 buf[len] = NUL;
14520
14521 if (limit-- == 0)
14522 {
14523 vim_free(p);
14524 vim_free(remain);
14525 EMSG(_("E655: Too many symbolic links (cycle?)"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014526 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014527 goto fail;
14528 }
14529
14530 /* Ensure that the result will have a trailing path separator
14531 * if the argument has one. */
14532 if (remain == NULL && has_trailing_pathsep)
14533 add_pathsep(buf);
14534
14535 /* Separate the first path component in the link value and
14536 * concatenate the remainders. */
14537 q = getnextcomp(vim_ispathsep(*buf) ? buf + 1 : buf);
14538 if (*q != NUL)
14539 {
14540 if (remain == NULL)
14541 remain = vim_strsave(q - 1);
14542 else
14543 {
Bram Moolenaar900b4d72005-12-12 22:05:50 +000014544 cpy = concat_str(q - 1, remain);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014545 if (cpy != NULL)
14546 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014547 vim_free(remain);
14548 remain = cpy;
14549 }
14550 }
14551 q[-1] = NUL;
14552 }
14553
14554 q = gettail(p);
14555 if (q > p && *q == NUL)
14556 {
14557 /* Ignore trailing path separator. */
14558 q[-1] = NUL;
14559 q = gettail(p);
14560 }
14561 if (q > p && !mch_isFullName(buf))
14562 {
14563 /* symlink is relative to directory of argument */
14564 cpy = alloc((unsigned)(STRLEN(p) + STRLEN(buf) + 1));
14565 if (cpy != NULL)
14566 {
14567 STRCPY(cpy, p);
14568 STRCPY(gettail(cpy), buf);
14569 vim_free(p);
14570 p = cpy;
14571 }
14572 }
14573 else
14574 {
14575 vim_free(p);
14576 p = vim_strsave(buf);
14577 }
14578 }
14579
14580 if (remain == NULL)
14581 break;
14582
14583 /* Append the first path component of "remain" to "p". */
14584 q = getnextcomp(remain + 1);
14585 len = q - remain - (*q != NUL);
14586 cpy = vim_strnsave(p, STRLEN(p) + len);
14587 if (cpy != NULL)
14588 {
14589 STRNCAT(cpy, remain, len);
14590 vim_free(p);
14591 p = cpy;
14592 }
14593 /* Shorten "remain". */
14594 if (*q != NUL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014595 STRMOVE(remain, q - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014596 else
14597 {
14598 vim_free(remain);
14599 remain = NULL;
14600 }
14601 }
14602
14603 /* If the result is a relative path name, make it explicitly relative to
14604 * the current directory if and only if the argument had this form. */
14605 if (!vim_ispathsep(*p))
14606 {
14607 if (is_relative_to_current
14608 && *p != NUL
14609 && !(p[0] == '.'
14610 && (p[1] == NUL
14611 || vim_ispathsep(p[1])
14612 || (p[1] == '.'
14613 && (p[2] == NUL
14614 || vim_ispathsep(p[2]))))))
14615 {
14616 /* Prepend "./". */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000014617 cpy = concat_str((char_u *)"./", p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014618 if (cpy != NULL)
14619 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014620 vim_free(p);
14621 p = cpy;
14622 }
14623 }
14624 else if (!is_relative_to_current)
14625 {
14626 /* Strip leading "./". */
14627 q = p;
14628 while (q[0] == '.' && vim_ispathsep(q[1]))
14629 q += 2;
14630 if (q > p)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014631 STRMOVE(p, p + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014632 }
14633 }
14634
14635 /* Ensure that the result will have no trailing path separator
14636 * if the argument had none. But keep "/" or "//". */
14637 if (!has_trailing_pathsep)
14638 {
14639 q = p + STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014640 if (after_pathsep(p, q))
14641 *gettail_sep(p) = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014642 }
14643
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014644 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014645 }
14646# else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014647 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014648# endif
14649#endif
14650
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014651 simplify_filename(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014652
14653#ifdef HAVE_READLINK
14654fail:
14655#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014656 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014657}
14658
14659/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000014660 * "reverse({list})" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000014661 */
14662 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000014663f_reverse(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014664 typval_T *argvars;
14665 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014666{
Bram Moolenaar33570922005-01-25 22:26:29 +000014667 list_T *l;
14668 listitem_T *li, *ni;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014669
Bram Moolenaar0d660222005-01-07 21:51:51 +000014670 rettv->vval.v_number = 0;
14671 if (argvars[0].v_type != VAR_LIST)
14672 EMSG2(_(e_listarg), "reverse()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014673 else if ((l = argvars[0].vval.v_list) != NULL
14674 && !tv_check_lock(l->lv_lock, (char_u *)"reverse()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000014675 {
14676 li = l->lv_last;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000014677 l->lv_first = l->lv_last = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014678 l->lv_len = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014679 while (li != NULL)
14680 {
14681 ni = li->li_prev;
14682 list_append(l, li);
14683 li = ni;
14684 }
14685 rettv->vval.v_list = l;
14686 rettv->v_type = VAR_LIST;
14687 ++l->lv_refcount;
Bram Moolenaar52514562008-04-01 11:12:09 +000014688 l->lv_idx = l->lv_len - l->lv_idx - 1;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014689 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014690}
14691
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014692#define SP_NOMOVE 0x01 /* don't move cursor */
14693#define SP_REPEAT 0x02 /* repeat to find outer pair */
14694#define SP_RETCOUNT 0x04 /* return matchcount */
14695#define SP_SETPCMARK 0x08 /* set previous context mark */
14696#define SP_START 0x10 /* accept match at start position */
14697#define SP_SUBPAT 0x20 /* return nr of matching sub-pattern */
14698#define SP_END 0x40 /* leave cursor at end of match */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014699
Bram Moolenaar33570922005-01-25 22:26:29 +000014700static int get_search_arg __ARGS((typval_T *varp, int *flagsp));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014701
14702/*
14703 * Get flags for a search function.
14704 * Possibly sets "p_ws".
14705 * Returns BACKWARD, FORWARD or zero (for an error).
14706 */
14707 static int
14708get_search_arg(varp, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014709 typval_T *varp;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014710 int *flagsp;
14711{
14712 int dir = FORWARD;
14713 char_u *flags;
14714 char_u nbuf[NUMBUFLEN];
14715 int mask;
14716
14717 if (varp->v_type != VAR_UNKNOWN)
14718 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014719 flags = get_tv_string_buf_chk(varp, nbuf);
14720 if (flags == NULL)
14721 return 0; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014722 while (*flags != NUL)
14723 {
14724 switch (*flags)
14725 {
14726 case 'b': dir = BACKWARD; break;
14727 case 'w': p_ws = TRUE; break;
14728 case 'W': p_ws = FALSE; break;
14729 default: mask = 0;
14730 if (flagsp != NULL)
14731 switch (*flags)
14732 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014733 case 'c': mask = SP_START; break;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014734 case 'e': mask = SP_END; break;
14735 case 'm': mask = SP_RETCOUNT; break;
14736 case 'n': mask = SP_NOMOVE; break;
14737 case 'p': mask = SP_SUBPAT; break;
14738 case 'r': mask = SP_REPEAT; break;
14739 case 's': mask = SP_SETPCMARK; break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014740 }
14741 if (mask == 0)
14742 {
14743 EMSG2(_(e_invarg2), flags);
14744 dir = 0;
14745 }
14746 else
14747 *flagsp |= mask;
14748 }
14749 if (dir == 0)
14750 break;
14751 ++flags;
14752 }
14753 }
14754 return dir;
14755}
14756
Bram Moolenaar071d4272004-06-13 20:20:40 +000014757/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014758 * Shared by search() and searchpos() functions
Bram Moolenaar071d4272004-06-13 20:20:40 +000014759 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014760 static int
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014761search_cmn(argvars, match_pos, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014762 typval_T *argvars;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014763 pos_T *match_pos;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014764 int *flagsp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014765{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014766 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014767 char_u *pat;
14768 pos_T pos;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014769 pos_T save_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014770 int save_p_ws = p_ws;
14771 int dir;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014772 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014773 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014774 proftime_T tm;
14775#ifdef FEAT_RELTIME
14776 long time_limit = 0;
14777#endif
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014778 int options = SEARCH_KEEP;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014779 int subpatnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014780
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014781 pat = get_tv_string(&argvars[0]);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014782 dir = get_search_arg(&argvars[1], flagsp); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014783 if (dir == 0)
14784 goto theend;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014785 flags = *flagsp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014786 if (flags & SP_START)
14787 options |= SEARCH_START;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014788 if (flags & SP_END)
14789 options |= SEARCH_END;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014790
Bram Moolenaar76929292008-01-06 19:07:36 +000014791 /* Optional arguments: line number to stop searching and timeout. */
14792 if (argvars[1].v_type != VAR_UNKNOWN && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014793 {
14794 lnum_stop = get_tv_number_chk(&argvars[2], NULL);
14795 if (lnum_stop < 0)
14796 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014797#ifdef FEAT_RELTIME
14798 if (argvars[3].v_type != VAR_UNKNOWN)
14799 {
14800 time_limit = get_tv_number_chk(&argvars[3], NULL);
14801 if (time_limit < 0)
14802 goto theend;
14803 }
14804#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014805 }
14806
Bram Moolenaar76929292008-01-06 19:07:36 +000014807#ifdef FEAT_RELTIME
14808 /* Set the time limit, if there is one. */
14809 profile_setlimit(time_limit, &tm);
14810#endif
14811
Bram Moolenaar231334e2005-07-25 20:46:57 +000014812 /*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014813 * This function does not accept SP_REPEAT and SP_RETCOUNT flags.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014814 * Check to make sure only those flags are set.
14815 * Also, Only the SP_NOMOVE or the SP_SETPCMARK flag can be set. Both
14816 * flags cannot be set. Check for that condition also.
14817 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014818 if (((flags & (SP_REPEAT | SP_RETCOUNT)) != 0)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014819 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014820 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014821 EMSG2(_(e_invarg2), get_tv_string(&argvars[1]));
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014822 goto theend;
14823 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014824
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014825 pos = save_cursor = curwin->w_cursor;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014826 subpatnum = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000014827 options, RE_SEARCH, (linenr_T)lnum_stop, &tm);
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014828 if (subpatnum != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014829 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014830 if (flags & SP_SUBPAT)
14831 retval = subpatnum;
14832 else
14833 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000014834 if (flags & SP_SETPCMARK)
14835 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000014836 curwin->w_cursor = pos;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014837 if (match_pos != NULL)
14838 {
14839 /* Store the match cursor position */
14840 match_pos->lnum = pos.lnum;
14841 match_pos->col = pos.col + 1;
14842 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014843 /* "/$" will put the cursor after the end of the line, may need to
14844 * correct that here */
14845 check_cursor();
14846 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014847
14848 /* If 'n' flag is used: restore cursor position. */
14849 if (flags & SP_NOMOVE)
14850 curwin->w_cursor = save_cursor;
Bram Moolenaar7a42fa32007-07-10 11:28:55 +000014851 else
14852 curwin->w_set_curswant = TRUE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014853theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +000014854 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014855
14856 return retval;
14857}
14858
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014859#ifdef FEAT_FLOAT
14860/*
14861 * "round({float})" function
14862 */
14863 static void
14864f_round(argvars, rettv)
14865 typval_T *argvars;
14866 typval_T *rettv;
14867{
14868 float_T f;
14869
14870 rettv->v_type = VAR_FLOAT;
14871 if (get_float_arg(argvars, &f) == OK)
14872 /* round() is not in C90, use ceil() or floor() instead. */
14873 rettv->vval.v_float = f > 0 ? floor(f + 0.5) : ceil(f - 0.5);
14874 else
14875 rettv->vval.v_float = 0.0;
14876}
14877#endif
14878
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014879/*
14880 * "search()" function
14881 */
14882 static void
14883f_search(argvars, rettv)
14884 typval_T *argvars;
14885 typval_T *rettv;
14886{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014887 int flags = 0;
14888
14889 rettv->vval.v_number = search_cmn(argvars, NULL, &flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014890}
14891
Bram Moolenaar071d4272004-06-13 20:20:40 +000014892/*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014893 * "searchdecl()" function
14894 */
14895 static void
14896f_searchdecl(argvars, rettv)
14897 typval_T *argvars;
14898 typval_T *rettv;
14899{
14900 int locally = 1;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014901 int thisblock = 0;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014902 int error = FALSE;
14903 char_u *name;
14904
14905 rettv->vval.v_number = 1; /* default: FAIL */
14906
14907 name = get_tv_string_chk(&argvars[0]);
14908 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaare6facf92005-09-13 21:22:27 +000014909 {
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014910 locally = get_tv_number_chk(&argvars[1], &error) == 0;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014911 if (!error && argvars[2].v_type != VAR_UNKNOWN)
14912 thisblock = get_tv_number_chk(&argvars[2], &error) != 0;
14913 }
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014914 if (!error && name != NULL)
14915 rettv->vval.v_number = find_decl(name, (int)STRLEN(name),
Bram Moolenaare6facf92005-09-13 21:22:27 +000014916 locally, thisblock, SEARCH_KEEP) == FAIL;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014917}
14918
14919/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014920 * Used by searchpair() and searchpairpos()
Bram Moolenaar071d4272004-06-13 20:20:40 +000014921 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014922 static int
14923searchpair_cmn(argvars, match_pos)
Bram Moolenaar33570922005-01-25 22:26:29 +000014924 typval_T *argvars;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014925 pos_T *match_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014926{
14927 char_u *spat, *mpat, *epat;
14928 char_u *skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014929 int save_p_ws = p_ws;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014930 int dir;
14931 int flags = 0;
14932 char_u nbuf1[NUMBUFLEN];
14933 char_u nbuf2[NUMBUFLEN];
14934 char_u nbuf3[NUMBUFLEN];
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014935 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014936 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014937 long time_limit = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014938
Bram Moolenaar071d4272004-06-13 20:20:40 +000014939 /* Get the three pattern arguments: start, middle, end. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014940 spat = get_tv_string_chk(&argvars[0]);
14941 mpat = get_tv_string_buf_chk(&argvars[1], nbuf1);
14942 epat = get_tv_string_buf_chk(&argvars[2], nbuf2);
14943 if (spat == NULL || mpat == NULL || epat == NULL)
14944 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014945
Bram Moolenaar071d4272004-06-13 20:20:40 +000014946 /* Handle the optional fourth argument: flags */
14947 dir = get_search_arg(&argvars[3], &flags); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014948 if (dir == 0)
14949 goto theend;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014950
14951 /* Don't accept SP_END or SP_SUBPAT.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014952 * Only one of the SP_NOMOVE or SP_SETPCMARK flags can be set.
14953 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014954 if ((flags & (SP_END | SP_SUBPAT)) != 0
14955 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar231334e2005-07-25 20:46:57 +000014956 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014957 EMSG2(_(e_invarg2), get_tv_string(&argvars[3]));
Bram Moolenaar231334e2005-07-25 20:46:57 +000014958 goto theend;
14959 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014960
Bram Moolenaar92de73d2008-01-22 10:59:38 +000014961 /* Using 'r' implies 'W', otherwise it doesn't work. */
14962 if (flags & SP_REPEAT)
14963 p_ws = FALSE;
14964
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014965 /* Optional fifth argument: skip expression */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014966 if (argvars[3].v_type == VAR_UNKNOWN
14967 || argvars[4].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014968 skip = (char_u *)"";
14969 else
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014970 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014971 skip = get_tv_string_buf_chk(&argvars[4], nbuf3);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014972 if (argvars[5].v_type != VAR_UNKNOWN)
14973 {
14974 lnum_stop = get_tv_number_chk(&argvars[5], NULL);
14975 if (lnum_stop < 0)
14976 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014977#ifdef FEAT_RELTIME
14978 if (argvars[6].v_type != VAR_UNKNOWN)
14979 {
14980 time_limit = get_tv_number_chk(&argvars[6], NULL);
14981 if (time_limit < 0)
14982 goto theend;
14983 }
14984#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014985 }
14986 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014987 if (skip == NULL)
14988 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014989
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014990 retval = do_searchpair(spat, mpat, epat, dir, skip, flags,
Bram Moolenaar76929292008-01-06 19:07:36 +000014991 match_pos, lnum_stop, time_limit);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000014992
14993theend:
14994 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014995
14996 return retval;
14997}
14998
14999/*
15000 * "searchpair()" function
15001 */
15002 static void
15003f_searchpair(argvars, rettv)
15004 typval_T *argvars;
15005 typval_T *rettv;
15006{
15007 rettv->vval.v_number = searchpair_cmn(argvars, NULL);
15008}
15009
15010/*
15011 * "searchpairpos()" function
15012 */
15013 static void
15014f_searchpairpos(argvars, rettv)
15015 typval_T *argvars;
15016 typval_T *rettv;
15017{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015018 pos_T match_pos;
15019 int lnum = 0;
15020 int col = 0;
15021
15022 rettv->vval.v_number = 0;
15023
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015024 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015025 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015026
15027 if (searchpair_cmn(argvars, &match_pos) > 0)
15028 {
15029 lnum = match_pos.lnum;
15030 col = match_pos.col;
15031 }
15032
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015033 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15034 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015035}
15036
15037/*
15038 * Search for a start/middle/end thing.
15039 * Used by searchpair(), see its documentation for the details.
15040 * Returns 0 or -1 for no match,
15041 */
15042 long
Bram Moolenaar76929292008-01-06 19:07:36 +000015043do_searchpair(spat, mpat, epat, dir, skip, flags, match_pos,
15044 lnum_stop, time_limit)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015045 char_u *spat; /* start pattern */
15046 char_u *mpat; /* middle pattern */
15047 char_u *epat; /* end pattern */
15048 int dir; /* BACKWARD or FORWARD */
15049 char_u *skip; /* skip expression */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000015050 int flags; /* SP_SETPCMARK and other SP_ values */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015051 pos_T *match_pos;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015052 linenr_T lnum_stop; /* stop at this line if not zero */
Bram Moolenaar76929292008-01-06 19:07:36 +000015053 long time_limit; /* stop after this many msec */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015054{
15055 char_u *save_cpo;
15056 char_u *pat, *pat2 = NULL, *pat3 = NULL;
15057 long retval = 0;
15058 pos_T pos;
15059 pos_T firstpos;
15060 pos_T foundpos;
15061 pos_T save_cursor;
15062 pos_T save_pos;
15063 int n;
15064 int r;
15065 int nest = 1;
15066 int err;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015067 int options = SEARCH_KEEP;
Bram Moolenaar76929292008-01-06 19:07:36 +000015068 proftime_T tm;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015069
15070 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
15071 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015072 p_cpo = empty_option;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015073
Bram Moolenaar76929292008-01-06 19:07:36 +000015074#ifdef FEAT_RELTIME
15075 /* Set the time limit, if there is one. */
15076 profile_setlimit(time_limit, &tm);
15077#endif
15078
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015079 /* Make two search patterns: start/end (pat2, for in nested pairs) and
15080 * start/middle/end (pat3, for the top pair). */
15081 pat2 = alloc((unsigned)(STRLEN(spat) + STRLEN(epat) + 15));
15082 pat3 = alloc((unsigned)(STRLEN(spat) + STRLEN(mpat) + STRLEN(epat) + 23));
15083 if (pat2 == NULL || pat3 == NULL)
15084 goto theend;
15085 sprintf((char *)pat2, "\\(%s\\m\\)\\|\\(%s\\m\\)", spat, epat);
15086 if (*mpat == NUL)
15087 STRCPY(pat3, pat2);
15088 else
15089 sprintf((char *)pat3, "\\(%s\\m\\)\\|\\(%s\\m\\)\\|\\(%s\\m\\)",
15090 spat, epat, mpat);
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015091 if (flags & SP_START)
15092 options |= SEARCH_START;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015093
Bram Moolenaar071d4272004-06-13 20:20:40 +000015094 save_cursor = curwin->w_cursor;
15095 pos = curwin->w_cursor;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000015096 clearpos(&firstpos);
15097 clearpos(&foundpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015098 pat = pat3;
15099 for (;;)
15100 {
15101 n = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000015102 options, RE_SEARCH, lnum_stop, &tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015103 if (n == FAIL || (firstpos.lnum != 0 && equalpos(pos, firstpos)))
15104 /* didn't find it or found the first match again: FAIL */
15105 break;
15106
15107 if (firstpos.lnum == 0)
15108 firstpos = pos;
Bram Moolenaarc9a2d2e2005-04-24 22:09:56 +000015109 if (equalpos(pos, foundpos))
15110 {
15111 /* Found the same position again. Can happen with a pattern that
15112 * has "\zs" at the end and searching backwards. Advance one
15113 * character and try again. */
15114 if (dir == BACKWARD)
15115 decl(&pos);
15116 else
15117 incl(&pos);
15118 }
15119 foundpos = pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015120
Bram Moolenaar92de73d2008-01-22 10:59:38 +000015121 /* clear the start flag to avoid getting stuck here */
15122 options &= ~SEARCH_START;
15123
Bram Moolenaar071d4272004-06-13 20:20:40 +000015124 /* If the skip pattern matches, ignore this match. */
15125 if (*skip != NUL)
15126 {
15127 save_pos = curwin->w_cursor;
15128 curwin->w_cursor = pos;
15129 r = eval_to_bool(skip, &err, NULL, FALSE);
15130 curwin->w_cursor = save_pos;
15131 if (err)
15132 {
15133 /* Evaluating {skip} caused an error, break here. */
15134 curwin->w_cursor = save_cursor;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015135 retval = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015136 break;
15137 }
15138 if (r)
15139 continue;
15140 }
15141
15142 if ((dir == BACKWARD && n == 3) || (dir == FORWARD && n == 2))
15143 {
15144 /* Found end when searching backwards or start when searching
15145 * forward: nested pair. */
15146 ++nest;
15147 pat = pat2; /* nested, don't search for middle */
15148 }
15149 else
15150 {
15151 /* Found end when searching forward or start when searching
15152 * backward: end of (nested) pair; or found middle in outer pair. */
15153 if (--nest == 1)
15154 pat = pat3; /* outer level, search for middle */
15155 }
15156
15157 if (nest == 0)
15158 {
15159 /* Found the match: return matchcount or line number. */
15160 if (flags & SP_RETCOUNT)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015161 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015162 else
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015163 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000015164 if (flags & SP_SETPCMARK)
15165 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000015166 curwin->w_cursor = pos;
15167 if (!(flags & SP_REPEAT))
15168 break;
15169 nest = 1; /* search for next unmatched */
15170 }
15171 }
15172
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015173 if (match_pos != NULL)
15174 {
15175 /* Store the match cursor position */
15176 match_pos->lnum = curwin->w_cursor.lnum;
15177 match_pos->col = curwin->w_cursor.col + 1;
15178 }
15179
Bram Moolenaar071d4272004-06-13 20:20:40 +000015180 /* If 'n' flag is used or search failed: restore cursor position. */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015181 if ((flags & SP_NOMOVE) || retval == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015182 curwin->w_cursor = save_cursor;
15183
15184theend:
15185 vim_free(pat2);
15186 vim_free(pat3);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015187 if (p_cpo == empty_option)
15188 p_cpo = save_cpo;
15189 else
15190 /* Darn, evaluating the {skip} expression changed the value. */
15191 free_string_option(save_cpo);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015192
15193 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015194}
15195
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015196/*
15197 * "searchpos()" function
15198 */
15199 static void
15200f_searchpos(argvars, rettv)
15201 typval_T *argvars;
15202 typval_T *rettv;
15203{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015204 pos_T match_pos;
15205 int lnum = 0;
15206 int col = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015207 int n;
15208 int flags = 0;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015209
15210 rettv->vval.v_number = 0;
15211
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015212 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015213 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015214
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015215 n = search_cmn(argvars, &match_pos, &flags);
15216 if (n > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015217 {
15218 lnum = match_pos.lnum;
15219 col = match_pos.col;
15220 }
15221
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015222 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15223 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015224 if (flags & SP_SUBPAT)
15225 list_append_number(rettv->vval.v_list, (varnumber_T)n);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015226}
15227
15228
Bram Moolenaar0d660222005-01-07 21:51:51 +000015229/*ARGSUSED*/
15230 static void
15231f_server2client(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015232 typval_T *argvars;
15233 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015234{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015235#ifdef FEAT_CLIENTSERVER
15236 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015237 char_u *server = get_tv_string_chk(&argvars[0]);
15238 char_u *reply = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015239
Bram Moolenaar0d660222005-01-07 21:51:51 +000015240 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015241 if (server == NULL || reply == NULL)
15242 return;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015243 if (check_restricted() || check_secure())
15244 return;
15245# ifdef FEAT_X11
15246 if (check_connection() == FAIL)
15247 return;
15248# endif
15249
15250 if (serverSendReply(server, reply) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015251 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015252 EMSG(_("E258: Unable to send to client"));
15253 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015254 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015255 rettv->vval.v_number = 0;
15256#else
15257 rettv->vval.v_number = -1;
15258#endif
15259}
15260
15261/*ARGSUSED*/
15262 static void
15263f_serverlist(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015264 typval_T *argvars;
15265 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015266{
15267 char_u *r = NULL;
15268
15269#ifdef FEAT_CLIENTSERVER
15270# ifdef WIN32
15271 r = serverGetVimNames();
15272# else
15273 make_connection();
15274 if (X_DISPLAY != NULL)
15275 r = serverGetVimNames(X_DISPLAY);
15276# endif
15277#endif
15278 rettv->v_type = VAR_STRING;
15279 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015280}
15281
15282/*
15283 * "setbufvar()" function
15284 */
15285/*ARGSUSED*/
15286 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015287f_setbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015288 typval_T *argvars;
15289 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015290{
15291 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015292 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015293 char_u *varname, *bufvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015294 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015295 char_u nbuf[NUMBUFLEN];
15296
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015297 rettv->vval.v_number = 0;
15298
Bram Moolenaar071d4272004-06-13 20:20:40 +000015299 if (check_restricted() || check_secure())
15300 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015301 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
15302 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015303 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015304 varp = &argvars[2];
15305
15306 if (buf != NULL && varname != NULL && varp != NULL)
15307 {
15308 /* set curbuf to be our buf, temporarily */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015309 aucmd_prepbuf(&aco, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015310
15311 if (*varname == '&')
15312 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015313 long numval;
15314 char_u *strval;
15315 int error = FALSE;
15316
Bram Moolenaar071d4272004-06-13 20:20:40 +000015317 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015318 numval = get_tv_number_chk(varp, &error);
15319 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015320 if (!error && strval != NULL)
15321 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015322 }
15323 else
15324 {
15325 bufvarname = alloc((unsigned)STRLEN(varname) + 3);
15326 if (bufvarname != NULL)
15327 {
15328 STRCPY(bufvarname, "b:");
15329 STRCPY(bufvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015330 set_var(bufvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015331 vim_free(bufvarname);
15332 }
15333 }
15334
15335 /* reset notion of buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015336 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015337 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015338}
15339
15340/*
15341 * "setcmdpos()" function
15342 */
15343 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015344f_setcmdpos(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015345 typval_T *argvars;
15346 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015347{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015348 int pos = (int)get_tv_number(&argvars[0]) - 1;
15349
15350 if (pos >= 0)
15351 rettv->vval.v_number = set_cmdline_pos(pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015352}
15353
15354/*
15355 * "setline()" function
15356 */
15357 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015358f_setline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015359 typval_T *argvars;
15360 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015361{
15362 linenr_T lnum;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +000015363 char_u *line = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015364 list_T *l = NULL;
15365 listitem_T *li = NULL;
15366 long added = 0;
15367 linenr_T lcount = curbuf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015368
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015369 lnum = get_tv_lnum(&argvars[0]);
15370 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015371 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015372 l = argvars[1].vval.v_list;
15373 li = l->lv_first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015374 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015375 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015376 line = get_tv_string_chk(&argvars[1]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015377
15378 rettv->vval.v_number = 0; /* OK */
15379 for (;;)
15380 {
15381 if (l != NULL)
15382 {
15383 /* list argument, get next string */
15384 if (li == NULL)
15385 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015386 line = get_tv_string_chk(&li->li_tv);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015387 li = li->li_next;
15388 }
15389
15390 rettv->vval.v_number = 1; /* FAIL */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015391 if (line == NULL || lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015392 break;
15393 if (lnum <= curbuf->b_ml.ml_line_count)
15394 {
15395 /* existing line, replace it */
15396 if (u_savesub(lnum) == OK && ml_replace(lnum, line, TRUE) == OK)
15397 {
15398 changed_bytes(lnum, 0);
Bram Moolenaar87c19962007-04-26 08:54:21 +000015399 if (lnum == curwin->w_cursor.lnum)
15400 check_cursor_col();
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015401 rettv->vval.v_number = 0; /* OK */
15402 }
15403 }
15404 else if (added > 0 || u_save(lnum - 1, lnum) == OK)
15405 {
15406 /* lnum is one past the last line, append the line */
15407 ++added;
15408 if (ml_append(lnum - 1, line, (colnr_T)0, FALSE) == OK)
15409 rettv->vval.v_number = 0; /* OK */
15410 }
15411
15412 if (l == NULL) /* only one string argument */
15413 break;
15414 ++lnum;
15415 }
15416
15417 if (added > 0)
15418 appended_lines_mark(lcount, added);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015419}
15420
Bram Moolenaard9ff7d52008-03-20 12:23:49 +000015421static void set_qf_ll_list __ARGS((win_T *wp, typval_T *list_arg, typval_T *action_arg, typval_T *rettv));
15422
Bram Moolenaar071d4272004-06-13 20:20:40 +000015423/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015424 * Used by "setqflist()" and "setloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000015425 */
15426/*ARGSUSED*/
15427 static void
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015428set_qf_ll_list(wp, list_arg, action_arg, rettv)
15429 win_T *wp;
15430 typval_T *list_arg;
15431 typval_T *action_arg;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015432 typval_T *rettv;
15433{
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015434#ifdef FEAT_QUICKFIX
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015435 char_u *act;
15436 int action = ' ';
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015437#endif
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015438
Bram Moolenaar2641f772005-03-25 21:58:17 +000015439 rettv->vval.v_number = -1;
15440
15441#ifdef FEAT_QUICKFIX
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015442 if (list_arg->v_type != VAR_LIST)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015443 EMSG(_(e_listreq));
15444 else
15445 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015446 list_T *l = list_arg->vval.v_list;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015447
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015448 if (action_arg->v_type == VAR_STRING)
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015449 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015450 act = get_tv_string_chk(action_arg);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015451 if (act == NULL)
15452 return; /* type error; errmsg already given */
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015453 if (*act == 'a' || *act == 'r')
15454 action = *act;
15455 }
15456
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015457 if (l != NULL && set_errorlist(wp, l, action) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015458 rettv->vval.v_number = 0;
15459 }
15460#endif
15461}
15462
15463/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015464 * "setloclist()" function
15465 */
15466/*ARGSUSED*/
15467 static void
15468f_setloclist(argvars, rettv)
15469 typval_T *argvars;
15470 typval_T *rettv;
15471{
15472 win_T *win;
15473
15474 rettv->vval.v_number = -1;
15475
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015476 win = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015477 if (win != NULL)
15478 set_qf_ll_list(win, &argvars[1], &argvars[2], rettv);
15479}
15480
15481/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000015482 * "setmatches()" function
15483 */
15484 static void
15485f_setmatches(argvars, rettv)
15486 typval_T *argvars;
15487 typval_T *rettv;
15488{
15489#ifdef FEAT_SEARCH_EXTRA
15490 list_T *l;
15491 listitem_T *li;
15492 dict_T *d;
15493
15494 rettv->vval.v_number = -1;
15495 if (argvars[0].v_type != VAR_LIST)
15496 {
15497 EMSG(_(e_listreq));
15498 return;
15499 }
15500 if ((l = argvars[0].vval.v_list) != NULL)
15501 {
15502
15503 /* To some extent make sure that we are dealing with a list from
15504 * "getmatches()". */
15505 li = l->lv_first;
15506 while (li != NULL)
15507 {
15508 if (li->li_tv.v_type != VAR_DICT
15509 || (d = li->li_tv.vval.v_dict) == NULL)
15510 {
15511 EMSG(_(e_invarg));
15512 return;
15513 }
15514 if (!(dict_find(d, (char_u *)"group", -1) != NULL
15515 && dict_find(d, (char_u *)"pattern", -1) != NULL
15516 && dict_find(d, (char_u *)"priority", -1) != NULL
15517 && dict_find(d, (char_u *)"id", -1) != NULL))
15518 {
15519 EMSG(_(e_invarg));
15520 return;
15521 }
15522 li = li->li_next;
15523 }
15524
15525 clear_matches(curwin);
15526 li = l->lv_first;
15527 while (li != NULL)
15528 {
15529 d = li->li_tv.vval.v_dict;
15530 match_add(curwin, get_dict_string(d, (char_u *)"group", FALSE),
15531 get_dict_string(d, (char_u *)"pattern", FALSE),
15532 (int)get_dict_number(d, (char_u *)"priority"),
15533 (int)get_dict_number(d, (char_u *)"id"));
15534 li = li->li_next;
15535 }
15536 rettv->vval.v_number = 0;
15537 }
15538#endif
15539}
15540
15541/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015542 * "setpos()" function
15543 */
15544/*ARGSUSED*/
15545 static void
15546f_setpos(argvars, rettv)
15547 typval_T *argvars;
15548 typval_T *rettv;
15549{
15550 pos_T pos;
15551 int fnum;
15552 char_u *name;
15553
Bram Moolenaar08250432008-02-13 11:42:46 +000015554 rettv->vval.v_number = -1;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015555 name = get_tv_string_chk(argvars);
15556 if (name != NULL)
15557 {
15558 if (list2fpos(&argvars[1], &pos, &fnum) == OK)
15559 {
15560 --pos.col;
Bram Moolenaar08250432008-02-13 11:42:46 +000015561 if (name[0] == '.' && name[1] == NUL)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015562 {
Bram Moolenaar08250432008-02-13 11:42:46 +000015563 /* set cursor */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015564 if (fnum == curbuf->b_fnum)
15565 {
15566 curwin->w_cursor = pos;
15567 check_cursor();
Bram Moolenaar08250432008-02-13 11:42:46 +000015568 rettv->vval.v_number = 0;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015569 }
15570 else
15571 EMSG(_(e_invarg));
15572 }
Bram Moolenaar08250432008-02-13 11:42:46 +000015573 else if (name[0] == '\'' && name[1] != NUL && name[2] == NUL)
15574 {
15575 /* set mark */
15576 if (setmark_pos(name[1], &pos, fnum) == OK)
15577 rettv->vval.v_number = 0;
15578 }
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015579 else
15580 EMSG(_(e_invarg));
15581 }
15582 }
15583}
15584
15585/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015586 * "setqflist()" function
15587 */
15588/*ARGSUSED*/
15589 static void
15590f_setqflist(argvars, rettv)
15591 typval_T *argvars;
15592 typval_T *rettv;
15593{
15594 set_qf_ll_list(NULL, &argvars[0], &argvars[1], rettv);
15595}
15596
15597/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000015598 * "setreg()" function
15599 */
15600 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015601f_setreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015602 typval_T *argvars;
15603 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015604{
15605 int regname;
15606 char_u *strregname;
15607 char_u *stropt;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015608 char_u *strval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015609 int append;
15610 char_u yank_type;
15611 long block_len;
15612
15613 block_len = -1;
15614 yank_type = MAUTO;
15615 append = FALSE;
15616
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015617 strregname = get_tv_string_chk(argvars);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015618 rettv->vval.v_number = 1; /* FAIL is default */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015619
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015620 if (strregname == NULL)
15621 return; /* type error; errmsg already given */
15622 regname = *strregname;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015623 if (regname == 0 || regname == '@')
15624 regname = '"';
15625 else if (regname == '=')
15626 return;
15627
Bram Moolenaar49cd9572005-01-03 21:06:01 +000015628 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015629 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015630 stropt = get_tv_string_chk(&argvars[2]);
15631 if (stropt == NULL)
15632 return; /* type error */
15633 for (; *stropt != NUL; ++stropt)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015634 switch (*stropt)
15635 {
15636 case 'a': case 'A': /* append */
15637 append = TRUE;
15638 break;
15639 case 'v': case 'c': /* character-wise selection */
15640 yank_type = MCHAR;
15641 break;
15642 case 'V': case 'l': /* line-wise selection */
15643 yank_type = MLINE;
15644 break;
15645#ifdef FEAT_VISUAL
15646 case 'b': case Ctrl_V: /* block-wise selection */
15647 yank_type = MBLOCK;
15648 if (VIM_ISDIGIT(stropt[1]))
15649 {
15650 ++stropt;
15651 block_len = getdigits(&stropt) - 1;
15652 --stropt;
15653 }
15654 break;
15655#endif
15656 }
15657 }
15658
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015659 strval = get_tv_string_chk(&argvars[1]);
15660 if (strval != NULL)
15661 write_reg_contents_ex(regname, strval, -1,
Bram Moolenaar071d4272004-06-13 20:20:40 +000015662 append, yank_type, block_len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015663 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015664}
15665
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015666/*
15667 * "settabwinvar()" function
15668 */
15669 static void
15670f_settabwinvar(argvars, rettv)
15671 typval_T *argvars;
15672 typval_T *rettv;
15673{
15674 setwinvar(argvars, rettv, 1);
15675}
Bram Moolenaar071d4272004-06-13 20:20:40 +000015676
15677/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015678 * "setwinvar()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015679 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015680 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015681f_setwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015682 typval_T *argvars;
15683 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015684{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015685 setwinvar(argvars, rettv, 0);
15686}
15687
15688/*
15689 * "setwinvar()" and "settabwinvar()" functions
15690 */
15691 static void
15692setwinvar(argvars, rettv, off)
15693 typval_T *argvars;
15694 typval_T *rettv;
15695 int off;
15696{
Bram Moolenaar071d4272004-06-13 20:20:40 +000015697 win_T *win;
15698#ifdef FEAT_WINDOWS
15699 win_T *save_curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015700 tabpage_T *save_curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015701#endif
15702 char_u *varname, *winvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015703 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015704 char_u nbuf[NUMBUFLEN];
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015705 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015706
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015707 rettv->vval.v_number = 0;
15708
Bram Moolenaar071d4272004-06-13 20:20:40 +000015709 if (check_restricted() || check_secure())
15710 return;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015711
15712#ifdef FEAT_WINDOWS
15713 if (off == 1)
15714 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
15715 else
15716 tp = curtab;
15717#endif
15718 win = find_win_by_nr(&argvars[off], tp);
15719 varname = get_tv_string_chk(&argvars[off + 1]);
15720 varp = &argvars[off + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015721
15722 if (win != NULL && varname != NULL && varp != NULL)
15723 {
15724#ifdef FEAT_WINDOWS
15725 /* set curwin to be our win, temporarily */
15726 save_curwin = curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015727 save_curtab = curtab;
15728 goto_tabpage_tp(tp);
15729 if (!win_valid(win))
15730 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015731 curwin = win;
15732 curbuf = curwin->w_buffer;
15733#endif
15734
15735 if (*varname == '&')
15736 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015737 long numval;
15738 char_u *strval;
15739 int error = FALSE;
15740
Bram Moolenaar071d4272004-06-13 20:20:40 +000015741 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015742 numval = get_tv_number_chk(varp, &error);
15743 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015744 if (!error && strval != NULL)
15745 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015746 }
15747 else
15748 {
15749 winvarname = alloc((unsigned)STRLEN(varname) + 3);
15750 if (winvarname != NULL)
15751 {
15752 STRCPY(winvarname, "w:");
15753 STRCPY(winvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015754 set_var(winvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015755 vim_free(winvarname);
15756 }
15757 }
15758
15759#ifdef FEAT_WINDOWS
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015760 /* Restore current tabpage and window, if still valid (autocomands can
15761 * make them invalid). */
15762 if (valid_tabpage(save_curtab))
15763 goto_tabpage_tp(save_curtab);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015764 if (win_valid(save_curwin))
15765 {
15766 curwin = save_curwin;
15767 curbuf = curwin->w_buffer;
15768 }
15769#endif
15770 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015771}
15772
15773/*
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015774 * "shellescape({string})" function
15775 */
15776 static void
15777f_shellescape(argvars, rettv)
15778 typval_T *argvars;
15779 typval_T *rettv;
15780{
Bram Moolenaar05bb9532008-07-04 09:44:11 +000015781 rettv->vval.v_string = vim_strsave_shellescape(
15782 get_tv_string(&argvars[0]), non_zero_arg(&argvars[1]));
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015783 rettv->v_type = VAR_STRING;
15784}
15785
15786/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015787 * "simplify()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015788 */
15789 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015790f_simplify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015791 typval_T *argvars;
15792 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015793{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015794 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015795
Bram Moolenaar0d660222005-01-07 21:51:51 +000015796 p = get_tv_string(&argvars[0]);
15797 rettv->vval.v_string = vim_strsave(p);
15798 simplify_filename(rettv->vval.v_string); /* simplify in place */
15799 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015800}
15801
Bram Moolenaar8c8de832008-06-24 22:58:06 +000015802#ifdef FEAT_FLOAT
15803/*
15804 * "sin()" function
15805 */
15806 static void
15807f_sin(argvars, rettv)
15808 typval_T *argvars;
15809 typval_T *rettv;
15810{
15811 float_T f;
15812
15813 rettv->v_type = VAR_FLOAT;
15814 if (get_float_arg(argvars, &f) == OK)
15815 rettv->vval.v_float = sin(f);
15816 else
15817 rettv->vval.v_float = 0.0;
15818}
15819#endif
15820
Bram Moolenaar0d660222005-01-07 21:51:51 +000015821static int
15822#ifdef __BORLANDC__
15823 _RTLENTRYF
15824#endif
15825 item_compare __ARGS((const void *s1, const void *s2));
15826static int
15827#ifdef __BORLANDC__
15828 _RTLENTRYF
15829#endif
15830 item_compare2 __ARGS((const void *s1, const void *s2));
15831
15832static int item_compare_ic;
15833static char_u *item_compare_func;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015834static int item_compare_func_err;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015835#define ITEM_COMPARE_FAIL 999
15836
Bram Moolenaar071d4272004-06-13 20:20:40 +000015837/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015838 * Compare functions for f_sort() below.
Bram Moolenaar071d4272004-06-13 20:20:40 +000015839 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015840 static int
15841#ifdef __BORLANDC__
15842_RTLENTRYF
15843#endif
15844item_compare(s1, s2)
15845 const void *s1;
15846 const void *s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015847{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015848 char_u *p1, *p2;
15849 char_u *tofree1, *tofree2;
15850 int res;
15851 char_u numbuf1[NUMBUFLEN];
15852 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015853
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000015854 p1 = tv2string(&(*(listitem_T **)s1)->li_tv, &tofree1, numbuf1, 0);
15855 p2 = tv2string(&(*(listitem_T **)s2)->li_tv, &tofree2, numbuf2, 0);
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000015856 if (p1 == NULL)
15857 p1 = (char_u *)"";
15858 if (p2 == NULL)
15859 p2 = (char_u *)"";
Bram Moolenaar0d660222005-01-07 21:51:51 +000015860 if (item_compare_ic)
15861 res = STRICMP(p1, p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015862 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015863 res = STRCMP(p1, p2);
15864 vim_free(tofree1);
15865 vim_free(tofree2);
15866 return res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015867}
15868
15869 static int
Bram Moolenaar0d660222005-01-07 21:51:51 +000015870#ifdef __BORLANDC__
15871_RTLENTRYF
Bram Moolenaar071d4272004-06-13 20:20:40 +000015872#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +000015873item_compare2(s1, s2)
15874 const void *s1;
15875 const void *s2;
15876{
15877 int res;
Bram Moolenaar33570922005-01-25 22:26:29 +000015878 typval_T rettv;
Bram Moolenaareb3593b2006-04-22 22:33:57 +000015879 typval_T argv[3];
Bram Moolenaar0d660222005-01-07 21:51:51 +000015880 int dummy;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015881
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015882 /* shortcut after failure in previous call; compare all items equal */
15883 if (item_compare_func_err)
15884 return 0;
15885
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015886 /* copy the values. This is needed to be able to set v_lock to VAR_FIXED
15887 * in the copy without changing the original list items. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015888 copy_tv(&(*(listitem_T **)s1)->li_tv, &argv[0]);
15889 copy_tv(&(*(listitem_T **)s2)->li_tv, &argv[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015890
15891 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000015892 res = call_func(item_compare_func, (int)STRLEN(item_compare_func),
Bram Moolenaare9a41262005-01-15 22:18:47 +000015893 &rettv, 2, argv, 0L, 0L, &dummy, TRUE, NULL);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015894 clear_tv(&argv[0]);
15895 clear_tv(&argv[1]);
15896
15897 if (res == FAIL)
15898 res = ITEM_COMPARE_FAIL;
15899 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015900 res = get_tv_number_chk(&rettv, &item_compare_func_err);
15901 if (item_compare_func_err)
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000015902 res = ITEM_COMPARE_FAIL; /* return value has wrong type */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015903 clear_tv(&rettv);
15904 return res;
15905}
15906
15907/*
15908 * "sort({list})" function
15909 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015910 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015911f_sort(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015912 typval_T *argvars;
15913 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015914{
Bram Moolenaar33570922005-01-25 22:26:29 +000015915 list_T *l;
15916 listitem_T *li;
15917 listitem_T **ptrs;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015918 long len;
15919 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015920
Bram Moolenaar0d660222005-01-07 21:51:51 +000015921 rettv->vval.v_number = 0;
15922 if (argvars[0].v_type != VAR_LIST)
15923 EMSG2(_(e_listarg), "sort()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000015924 else
15925 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015926 l = argvars[0].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015927 if (l == NULL || tv_check_lock(l->lv_lock, (char_u *)"sort()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000015928 return;
15929 rettv->vval.v_list = l;
15930 rettv->v_type = VAR_LIST;
15931 ++l->lv_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015932
Bram Moolenaar0d660222005-01-07 21:51:51 +000015933 len = list_len(l);
15934 if (len <= 1)
15935 return; /* short list sorts pretty quickly */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015936
Bram Moolenaar0d660222005-01-07 21:51:51 +000015937 item_compare_ic = FALSE;
15938 item_compare_func = NULL;
15939 if (argvars[1].v_type != VAR_UNKNOWN)
15940 {
15941 if (argvars[1].v_type == VAR_FUNC)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015942 item_compare_func = argvars[1].vval.v_string;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015943 else
15944 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015945 int error = FALSE;
15946
15947 i = get_tv_number_chk(&argvars[1], &error);
15948 if (error)
15949 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015950 if (i == 1)
15951 item_compare_ic = TRUE;
15952 else
15953 item_compare_func = get_tv_string(&argvars[1]);
15954 }
15955 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015956
Bram Moolenaar0d660222005-01-07 21:51:51 +000015957 /* Make an array with each entry pointing to an item in the List. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015958 ptrs = (listitem_T **)alloc((int)(len * sizeof(listitem_T *)));
Bram Moolenaar0d660222005-01-07 21:51:51 +000015959 if (ptrs == NULL)
15960 return;
15961 i = 0;
15962 for (li = l->lv_first; li != NULL; li = li->li_next)
15963 ptrs[i++] = li;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015964
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015965 item_compare_func_err = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015966 /* test the compare function */
15967 if (item_compare_func != NULL
15968 && item_compare2((void *)&ptrs[0], (void *)&ptrs[1])
15969 == ITEM_COMPARE_FAIL)
Bram Moolenaare49b69a2005-01-08 16:11:57 +000015970 EMSG(_("E702: Sort compare function failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000015971 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015972 {
15973 /* Sort the array with item pointers. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015974 qsort((void *)ptrs, (size_t)len, sizeof(listitem_T *),
Bram Moolenaar0d660222005-01-07 21:51:51 +000015975 item_compare_func == NULL ? item_compare : item_compare2);
15976
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015977 if (!item_compare_func_err)
15978 {
15979 /* Clear the List and append the items in the sorted order. */
Bram Moolenaar52514562008-04-01 11:12:09 +000015980 l->lv_first = l->lv_last = l->lv_idx_item = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015981 l->lv_len = 0;
15982 for (i = 0; i < len; ++i)
15983 list_append(l, ptrs[i]);
15984 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015985 }
15986
15987 vim_free(ptrs);
15988 }
15989}
15990
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015991/*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015992 * "soundfold({word})" function
15993 */
15994 static void
15995f_soundfold(argvars, rettv)
15996 typval_T *argvars;
15997 typval_T *rettv;
15998{
15999 char_u *s;
16000
16001 rettv->v_type = VAR_STRING;
16002 s = get_tv_string(&argvars[0]);
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016003#ifdef FEAT_SPELL
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000016004 rettv->vval.v_string = eval_soundfold(s);
16005#else
16006 rettv->vval.v_string = vim_strsave(s);
16007#endif
16008}
16009
16010/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016011 * "spellbadword()" function
16012 */
16013/* ARGSUSED */
16014 static void
16015f_spellbadword(argvars, rettv)
16016 typval_T *argvars;
16017 typval_T *rettv;
16018{
Bram Moolenaar4463f292005-09-25 22:20:24 +000016019 char_u *word = (char_u *)"";
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016020 hlf_T attr = HLF_COUNT;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000016021 int len = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016022
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016023 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar4463f292005-09-25 22:20:24 +000016024 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016025
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016026#ifdef FEAT_SPELL
Bram Moolenaar4463f292005-09-25 22:20:24 +000016027 if (argvars[0].v_type == VAR_UNKNOWN)
16028 {
16029 /* Find the start and length of the badly spelled word. */
16030 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, &attr);
16031 if (len != 0)
16032 word = ml_get_cursor();
16033 }
16034 else if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16035 {
16036 char_u *str = get_tv_string_chk(&argvars[0]);
16037 int capcol = -1;
16038
16039 if (str != NULL)
16040 {
16041 /* Check the argument for spelling. */
16042 while (*str != NUL)
16043 {
Bram Moolenaar4770d092006-01-12 23:22:24 +000016044 len = spell_check(curwin, str, &attr, &capcol, FALSE);
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016045 if (attr != HLF_COUNT)
Bram Moolenaar4463f292005-09-25 22:20:24 +000016046 {
16047 word = str;
16048 break;
16049 }
16050 str += len;
16051 }
16052 }
16053 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016054#endif
Bram Moolenaar4463f292005-09-25 22:20:24 +000016055
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016056 list_append_string(rettv->vval.v_list, word, len);
16057 list_append_string(rettv->vval.v_list, (char_u *)(
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016058 attr == HLF_SPB ? "bad" :
16059 attr == HLF_SPR ? "rare" :
16060 attr == HLF_SPL ? "local" :
16061 attr == HLF_SPC ? "caps" :
16062 ""), -1);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016063}
16064
16065/*
16066 * "spellsuggest()" function
16067 */
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016068/*ARGSUSED*/
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016069 static void
16070f_spellsuggest(argvars, rettv)
16071 typval_T *argvars;
16072 typval_T *rettv;
16073{
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016074#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016075 char_u *str;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016076 int typeerr = FALSE;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016077 int maxcount;
16078 garray_T ga;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016079 int i;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016080 listitem_T *li;
16081 int need_capital = FALSE;
16082#endif
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016083
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016084 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016085 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016086
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016087#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016088 if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16089 {
16090 str = get_tv_string(&argvars[0]);
16091 if (argvars[1].v_type != VAR_UNKNOWN)
16092 {
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016093 maxcount = get_tv_number_chk(&argvars[1], &typeerr);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016094 if (maxcount <= 0)
16095 return;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016096 if (argvars[2].v_type != VAR_UNKNOWN)
16097 {
16098 need_capital = get_tv_number_chk(&argvars[2], &typeerr);
16099 if (typeerr)
16100 return;
16101 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016102 }
16103 else
16104 maxcount = 25;
16105
Bram Moolenaar4770d092006-01-12 23:22:24 +000016106 spell_suggest_list(&ga, str, maxcount, need_capital, FALSE);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016107
16108 for (i = 0; i < ga.ga_len; ++i)
16109 {
16110 str = ((char_u **)ga.ga_data)[i];
16111
16112 li = listitem_alloc();
16113 if (li == NULL)
16114 vim_free(str);
16115 else
16116 {
16117 li->li_tv.v_type = VAR_STRING;
16118 li->li_tv.v_lock = 0;
16119 li->li_tv.vval.v_string = str;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016120 list_append(rettv->vval.v_list, li);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016121 }
16122 }
16123 ga_clear(&ga);
16124 }
16125#endif
16126}
16127
Bram Moolenaar0d660222005-01-07 21:51:51 +000016128 static void
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000016129f_split(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016130 typval_T *argvars;
16131 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016132{
16133 char_u *str;
16134 char_u *end;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016135 char_u *pat = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016136 regmatch_T regmatch;
16137 char_u patbuf[NUMBUFLEN];
16138 char_u *save_cpo;
16139 int match;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016140 colnr_T col = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016141 int keepempty = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016142 int typeerr = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016143
16144 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
16145 save_cpo = p_cpo;
16146 p_cpo = (char_u *)"";
16147
16148 str = get_tv_string(&argvars[0]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016149 if (argvars[1].v_type != VAR_UNKNOWN)
16150 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016151 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16152 if (pat == NULL)
16153 typeerr = TRUE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016154 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016155 keepempty = get_tv_number_chk(&argvars[2], &typeerr);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016156 }
16157 if (pat == NULL || *pat == NUL)
16158 pat = (char_u *)"[\\x01- ]\\+";
Bram Moolenaar0d660222005-01-07 21:51:51 +000016159
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016160 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016161 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016162 if (typeerr)
16163 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016164
Bram Moolenaar0d660222005-01-07 21:51:51 +000016165 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
16166 if (regmatch.regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016167 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016168 regmatch.rm_ic = FALSE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016169 while (*str != NUL || keepempty)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016170 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016171 if (*str == NUL)
16172 match = FALSE; /* empty item at the end */
16173 else
16174 match = vim_regexec_nl(&regmatch, str, col);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016175 if (match)
16176 end = regmatch.startp[0];
16177 else
16178 end = str + STRLEN(str);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016179 if (keepempty || end > str || (rettv->vval.v_list->lv_len > 0
16180 && *str != NUL && match && end < regmatch.endp[0]))
Bram Moolenaar0d660222005-01-07 21:51:51 +000016181 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016182 if (list_append_string(rettv->vval.v_list, str,
16183 (int)(end - str)) == FAIL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016184 break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016185 }
16186 if (!match)
16187 break;
16188 /* Advance to just after the match. */
16189 if (regmatch.endp[0] > str)
16190 col = 0;
16191 else
16192 {
16193 /* Don't get stuck at the same match. */
16194#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000016195 col = (*mb_ptr2len)(regmatch.endp[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016196#else
16197 col = 1;
16198#endif
16199 }
16200 str = regmatch.endp[0];
16201 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016202
Bram Moolenaar0d660222005-01-07 21:51:51 +000016203 vim_free(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016204 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016205
Bram Moolenaar0d660222005-01-07 21:51:51 +000016206 p_cpo = save_cpo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016207}
16208
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016209#ifdef FEAT_FLOAT
16210/*
16211 * "sqrt()" function
16212 */
16213 static void
16214f_sqrt(argvars, rettv)
16215 typval_T *argvars;
16216 typval_T *rettv;
16217{
16218 float_T f;
16219
16220 rettv->v_type = VAR_FLOAT;
16221 if (get_float_arg(argvars, &f) == OK)
16222 rettv->vval.v_float = sqrt(f);
16223 else
16224 rettv->vval.v_float = 0.0;
16225}
16226
16227/*
16228 * "str2float()" function
16229 */
16230 static void
16231f_str2float(argvars, rettv)
16232 typval_T *argvars;
16233 typval_T *rettv;
16234{
16235 char_u *p = skipwhite(get_tv_string(&argvars[0]));
16236
16237 if (*p == '+')
16238 p = skipwhite(p + 1);
16239 (void)string2float(p, &rettv->vval.v_float);
16240 rettv->v_type = VAR_FLOAT;
16241}
16242#endif
16243
Bram Moolenaar2c932302006-03-18 21:42:09 +000016244/*
16245 * "str2nr()" function
16246 */
16247 static void
16248f_str2nr(argvars, rettv)
16249 typval_T *argvars;
16250 typval_T *rettv;
16251{
16252 int base = 10;
16253 char_u *p;
16254 long n;
16255
16256 if (argvars[1].v_type != VAR_UNKNOWN)
16257 {
16258 base = get_tv_number(&argvars[1]);
16259 if (base != 8 && base != 10 && base != 16)
16260 {
16261 EMSG(_(e_invarg));
16262 return;
16263 }
16264 }
16265
16266 p = skipwhite(get_tv_string(&argvars[0]));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016267 if (*p == '+')
16268 p = skipwhite(p + 1);
Bram Moolenaar2c932302006-03-18 21:42:09 +000016269 vim_str2nr(p, NULL, NULL, base == 8 ? 2 : 0, base == 16 ? 2 : 0, &n, NULL);
16270 rettv->vval.v_number = n;
16271}
16272
Bram Moolenaar071d4272004-06-13 20:20:40 +000016273#ifdef HAVE_STRFTIME
16274/*
16275 * "strftime({format}[, {time}])" function
16276 */
16277 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016278f_strftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016279 typval_T *argvars;
16280 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016281{
16282 char_u result_buf[256];
16283 struct tm *curtime;
16284 time_t seconds;
16285 char_u *p;
16286
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016287 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016288
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016289 p = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016290 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016291 seconds = time(NULL);
16292 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016293 seconds = (time_t)get_tv_number(&argvars[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016294 curtime = localtime(&seconds);
16295 /* MSVC returns NULL for an invalid value of seconds. */
16296 if (curtime == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016297 rettv->vval.v_string = vim_strsave((char_u *)_("(Invalid)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016298 else
16299 {
16300# ifdef FEAT_MBYTE
16301 vimconv_T conv;
16302 char_u *enc;
16303
16304 conv.vc_type = CONV_NONE;
16305 enc = enc_locale();
16306 convert_setup(&conv, p_enc, enc);
16307 if (conv.vc_type != CONV_NONE)
16308 p = string_convert(&conv, p, NULL);
16309# endif
16310 if (p != NULL)
16311 (void)strftime((char *)result_buf, sizeof(result_buf),
16312 (char *)p, curtime);
16313 else
16314 result_buf[0] = NUL;
16315
16316# ifdef FEAT_MBYTE
16317 if (conv.vc_type != CONV_NONE)
16318 vim_free(p);
16319 convert_setup(&conv, enc, p_enc);
16320 if (conv.vc_type != CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016321 rettv->vval.v_string = string_convert(&conv, result_buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016322 else
16323# endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016324 rettv->vval.v_string = vim_strsave(result_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016325
16326# ifdef FEAT_MBYTE
16327 /* Release conversion descriptors */
16328 convert_setup(&conv, NULL, NULL);
16329 vim_free(enc);
16330# endif
16331 }
16332}
16333#endif
16334
16335/*
16336 * "stridx()" function
16337 */
16338 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016339f_stridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016340 typval_T *argvars;
16341 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016342{
16343 char_u buf[NUMBUFLEN];
16344 char_u *needle;
16345 char_u *haystack;
Bram Moolenaar33570922005-01-25 22:26:29 +000016346 char_u *save_haystack;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016347 char_u *pos;
Bram Moolenaar33570922005-01-25 22:26:29 +000016348 int start_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016349
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016350 needle = get_tv_string_chk(&argvars[1]);
16351 save_haystack = haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar33570922005-01-25 22:26:29 +000016352 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016353 if (needle == NULL || haystack == NULL)
16354 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016355
Bram Moolenaar33570922005-01-25 22:26:29 +000016356 if (argvars[2].v_type != VAR_UNKNOWN)
16357 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016358 int error = FALSE;
16359
16360 start_idx = get_tv_number_chk(&argvars[2], &error);
16361 if (error || start_idx >= (int)STRLEN(haystack))
Bram Moolenaar33570922005-01-25 22:26:29 +000016362 return;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016363 if (start_idx >= 0)
16364 haystack += start_idx;
Bram Moolenaar33570922005-01-25 22:26:29 +000016365 }
16366
16367 pos = (char_u *)strstr((char *)haystack, (char *)needle);
16368 if (pos != NULL)
16369 rettv->vval.v_number = (varnumber_T)(pos - save_haystack);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016370}
16371
16372/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016373 * "string()" function
16374 */
16375 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016376f_string(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016377 typval_T *argvars;
16378 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016379{
16380 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000016381 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016382
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016383 rettv->v_type = VAR_STRING;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000016384 rettv->vval.v_string = tv2string(&argvars[0], &tofree, numbuf, 0);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016385 /* Make a copy if we have a value but it's not in allocated memory. */
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000016386 if (rettv->vval.v_string != NULL && tofree == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016387 rettv->vval.v_string = vim_strsave(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016388}
16389
16390/*
16391 * "strlen()" function
16392 */
16393 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016394f_strlen(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016395 typval_T *argvars;
16396 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016397{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016398 rettv->vval.v_number = (varnumber_T)(STRLEN(
16399 get_tv_string(&argvars[0])));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016400}
16401
16402/*
16403 * "strpart()" function
16404 */
16405 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016406f_strpart(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016407 typval_T *argvars;
16408 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016409{
16410 char_u *p;
16411 int n;
16412 int len;
16413 int slen;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016414 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016415
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016416 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016417 slen = (int)STRLEN(p);
16418
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016419 n = get_tv_number_chk(&argvars[1], &error);
16420 if (error)
16421 len = 0;
16422 else if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016423 len = get_tv_number(&argvars[2]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016424 else
16425 len = slen - n; /* default len: all bytes that are available. */
16426
16427 /*
16428 * Only return the overlap between the specified part and the actual
16429 * string.
16430 */
16431 if (n < 0)
16432 {
16433 len += n;
16434 n = 0;
16435 }
16436 else if (n > slen)
16437 n = slen;
16438 if (len < 0)
16439 len = 0;
16440 else if (n + len > slen)
16441 len = slen - n;
16442
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016443 rettv->v_type = VAR_STRING;
16444 rettv->vval.v_string = vim_strnsave(p + n, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016445}
16446
16447/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016448 * "strridx()" function
16449 */
16450 static void
16451f_strridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016452 typval_T *argvars;
16453 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016454{
16455 char_u buf[NUMBUFLEN];
16456 char_u *needle;
16457 char_u *haystack;
16458 char_u *rest;
16459 char_u *lastmatch = NULL;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016460 int haystack_len, end_idx;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016461
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016462 needle = get_tv_string_chk(&argvars[1]);
16463 haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016464
16465 rettv->vval.v_number = -1;
16466 if (needle == NULL || haystack == NULL)
16467 return; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016468
16469 haystack_len = (int)STRLEN(haystack);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016470 if (argvars[2].v_type != VAR_UNKNOWN)
16471 {
16472 /* Third argument: upper limit for index */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016473 end_idx = get_tv_number_chk(&argvars[2], NULL);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016474 if (end_idx < 0)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016475 return; /* can never find a match */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016476 }
16477 else
16478 end_idx = haystack_len;
16479
Bram Moolenaar0d660222005-01-07 21:51:51 +000016480 if (*needle == NUL)
Bram Moolenaar05159a02005-02-26 23:04:13 +000016481 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016482 /* Empty string matches past the end. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016483 lastmatch = haystack + end_idx;
16484 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016485 else
Bram Moolenaar532c7802005-01-27 14:44:31 +000016486 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016487 for (rest = haystack; *rest != '\0'; ++rest)
16488 {
16489 rest = (char_u *)strstr((char *)rest, (char *)needle);
Bram Moolenaar532c7802005-01-27 14:44:31 +000016490 if (rest == NULL || rest > haystack + end_idx)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016491 break;
16492 lastmatch = rest;
16493 }
Bram Moolenaar532c7802005-01-27 14:44:31 +000016494 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016495
16496 if (lastmatch == NULL)
16497 rettv->vval.v_number = -1;
16498 else
16499 rettv->vval.v_number = (varnumber_T)(lastmatch - haystack);
16500}
16501
16502/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016503 * "strtrans()" function
16504 */
16505 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016506f_strtrans(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016507 typval_T *argvars;
16508 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016509{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016510 rettv->v_type = VAR_STRING;
16511 rettv->vval.v_string = transstr(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016512}
16513
16514/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016515 * "submatch()" function
16516 */
16517 static void
16518f_submatch(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016519 typval_T *argvars;
16520 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016521{
16522 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016523 rettv->vval.v_string =
16524 reg_submatch((int)get_tv_number_chk(&argvars[0], NULL));
Bram Moolenaar0d660222005-01-07 21:51:51 +000016525}
16526
16527/*
16528 * "substitute()" function
16529 */
16530 static void
16531f_substitute(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016532 typval_T *argvars;
16533 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016534{
16535 char_u patbuf[NUMBUFLEN];
16536 char_u subbuf[NUMBUFLEN];
16537 char_u flagsbuf[NUMBUFLEN];
16538
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016539 char_u *str = get_tv_string_chk(&argvars[0]);
16540 char_u *pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16541 char_u *sub = get_tv_string_buf_chk(&argvars[2], subbuf);
16542 char_u *flg = get_tv_string_buf_chk(&argvars[3], flagsbuf);
16543
Bram Moolenaar0d660222005-01-07 21:51:51 +000016544 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016545 if (str == NULL || pat == NULL || sub == NULL || flg == NULL)
16546 rettv->vval.v_string = NULL;
16547 else
16548 rettv->vval.v_string = do_string_sub(str, pat, sub, flg);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016549}
16550
16551/*
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016552 * "synID(lnum, col, trans)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000016553 */
16554/*ARGSUSED*/
16555 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016556f_synID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016557 typval_T *argvars;
16558 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016559{
16560 int id = 0;
16561#ifdef FEAT_SYN_HL
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016562 long lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016563 long col;
16564 int trans;
Bram Moolenaar92124a32005-06-17 22:03:40 +000016565 int transerr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016566
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016567 lnum = get_tv_lnum(argvars); /* -1 on type error */
16568 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16569 trans = get_tv_number_chk(&argvars[2], &transerr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016570
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016571 if (!transerr && lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016572 && col >= 0 && col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016573 id = syn_get_id(curwin, lnum, (colnr_T)col, trans, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016574#endif
16575
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016576 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016577}
16578
16579/*
16580 * "synIDattr(id, what [, mode])" function
16581 */
16582/*ARGSUSED*/
16583 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016584f_synIDattr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016585 typval_T *argvars;
16586 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016587{
16588 char_u *p = NULL;
16589#ifdef FEAT_SYN_HL
16590 int id;
16591 char_u *what;
16592 char_u *mode;
16593 char_u modebuf[NUMBUFLEN];
16594 int modec;
16595
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016596 id = get_tv_number(&argvars[0]);
16597 what = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016598 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016599 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016600 mode = get_tv_string_buf(&argvars[2], modebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016601 modec = TOLOWER_ASC(mode[0]);
16602 if (modec != 't' && modec != 'c'
16603#ifdef FEAT_GUI
16604 && modec != 'g'
16605#endif
16606 )
16607 modec = 0; /* replace invalid with current */
16608 }
16609 else
16610 {
16611#ifdef FEAT_GUI
16612 if (gui.in_use)
16613 modec = 'g';
16614 else
16615#endif
16616 if (t_colors > 1)
16617 modec = 'c';
16618 else
16619 modec = 't';
16620 }
16621
16622
16623 switch (TOLOWER_ASC(what[0]))
16624 {
16625 case 'b':
16626 if (TOLOWER_ASC(what[1]) == 'g') /* bg[#] */
16627 p = highlight_color(id, what, modec);
16628 else /* bold */
16629 p = highlight_has_attr(id, HL_BOLD, modec);
16630 break;
16631
16632 case 'f': /* fg[#] */
16633 p = highlight_color(id, what, modec);
16634 break;
16635
16636 case 'i':
16637 if (TOLOWER_ASC(what[1]) == 'n') /* inverse */
16638 p = highlight_has_attr(id, HL_INVERSE, modec);
16639 else /* italic */
16640 p = highlight_has_attr(id, HL_ITALIC, modec);
16641 break;
16642
16643 case 'n': /* name */
16644 p = get_highlight_name(NULL, id - 1);
16645 break;
16646
16647 case 'r': /* reverse */
16648 p = highlight_has_attr(id, HL_INVERSE, modec);
16649 break;
16650
16651 case 's': /* standout */
16652 p = highlight_has_attr(id, HL_STANDOUT, modec);
16653 break;
16654
Bram Moolenaar5b743bf2005-03-15 22:50:43 +000016655 case 'u':
16656 if (STRLEN(what) <= 5 || TOLOWER_ASC(what[5]) != 'c')
16657 /* underline */
16658 p = highlight_has_attr(id, HL_UNDERLINE, modec);
16659 else
16660 /* undercurl */
16661 p = highlight_has_attr(id, HL_UNDERCURL, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016662 break;
16663 }
16664
16665 if (p != NULL)
16666 p = vim_strsave(p);
16667#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016668 rettv->v_type = VAR_STRING;
16669 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016670}
16671
16672/*
16673 * "synIDtrans(id)" function
16674 */
16675/*ARGSUSED*/
16676 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016677f_synIDtrans(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016678 typval_T *argvars;
16679 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016680{
16681 int id;
16682
16683#ifdef FEAT_SYN_HL
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016684 id = get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016685
16686 if (id > 0)
16687 id = syn_get_final_id(id);
16688 else
16689#endif
16690 id = 0;
16691
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016692 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016693}
16694
16695/*
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016696 * "synstack(lnum, col)" function
16697 */
16698/*ARGSUSED*/
16699 static void
16700f_synstack(argvars, rettv)
16701 typval_T *argvars;
16702 typval_T *rettv;
16703{
16704#ifdef FEAT_SYN_HL
16705 long lnum;
16706 long col;
16707 int i;
16708 int id;
16709#endif
16710
16711 rettv->v_type = VAR_LIST;
16712 rettv->vval.v_list = NULL;
16713
16714#ifdef FEAT_SYN_HL
16715 lnum = get_tv_lnum(argvars); /* -1 on type error */
16716 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16717
16718 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar6cad8bd2008-09-10 13:39:10 +000016719 && col >= 0 && (col == 0 || col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016720 && rettv_list_alloc(rettv) != FAIL)
16721 {
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016722 (void)syn_get_id(curwin, lnum, (colnr_T)col, FALSE, NULL, TRUE);
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016723 for (i = 0; ; ++i)
16724 {
16725 id = syn_get_stack_item(i);
16726 if (id < 0)
16727 break;
16728 if (list_append_number(rettv->vval.v_list, id) == FAIL)
16729 break;
16730 }
16731 }
16732#endif
16733}
16734
16735/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016736 * "system()" function
16737 */
16738 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016739f_system(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016740 typval_T *argvars;
16741 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016742{
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016743 char_u *res = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016744 char_u *p;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016745 char_u *infile = NULL;
16746 char_u buf[NUMBUFLEN];
16747 int err = FALSE;
16748 FILE *fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016749
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016750 if (check_restricted() || check_secure())
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016751 goto done;
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016752
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016753 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016754 {
16755 /*
16756 * Write the string to a temp file, to be used for input of the shell
16757 * command.
16758 */
16759 if ((infile = vim_tempname('i')) == NULL)
16760 {
16761 EMSG(_(e_notmp));
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016762 goto done;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016763 }
16764
16765 fd = mch_fopen((char *)infile, WRITEBIN);
16766 if (fd == NULL)
16767 {
16768 EMSG2(_(e_notopen), infile);
16769 goto done;
16770 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016771 p = get_tv_string_buf_chk(&argvars[1], buf);
16772 if (p == NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016773 {
16774 fclose(fd);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016775 goto done; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016776 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016777 if (fwrite(p, STRLEN(p), 1, fd) != 1)
16778 err = TRUE;
16779 if (fclose(fd) != 0)
16780 err = TRUE;
16781 if (err)
16782 {
16783 EMSG(_("E677: Error writing temp file"));
16784 goto done;
16785 }
16786 }
16787
Bram Moolenaare580b0c2006-03-21 21:33:03 +000016788 res = get_cmd_output(get_tv_string(&argvars[0]), infile,
16789 SHELL_SILENT | SHELL_COOKED);
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016790
Bram Moolenaar071d4272004-06-13 20:20:40 +000016791#ifdef USE_CR
16792 /* translate <CR> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016793 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016794 {
16795 char_u *s;
16796
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016797 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016798 {
16799 if (*s == CAR)
16800 *s = NL;
16801 }
16802 }
16803#else
16804# ifdef USE_CRNL
16805 /* translate <CR><NL> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016806 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016807 {
16808 char_u *s, *d;
16809
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016810 d = res;
16811 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016812 {
16813 if (s[0] == CAR && s[1] == NL)
16814 ++s;
16815 *d++ = *s;
16816 }
16817 *d = NUL;
16818 }
16819# endif
16820#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016821
16822done:
16823 if (infile != NULL)
16824 {
16825 mch_remove(infile);
16826 vim_free(infile);
16827 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016828 rettv->v_type = VAR_STRING;
16829 rettv->vval.v_string = res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016830}
16831
16832/*
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016833 * "tabpagebuflist()" function
16834 */
16835/* ARGSUSED */
16836 static void
16837f_tabpagebuflist(argvars, rettv)
16838 typval_T *argvars;
16839 typval_T *rettv;
16840{
16841#ifndef FEAT_WINDOWS
16842 rettv->vval.v_number = 0;
16843#else
16844 tabpage_T *tp;
16845 win_T *wp = NULL;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016846
16847 if (argvars[0].v_type == VAR_UNKNOWN)
16848 wp = firstwin;
16849 else
16850 {
16851 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16852 if (tp != NULL)
Bram Moolenaar238a5642006-02-21 22:12:05 +000016853 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016854 }
16855 if (wp == NULL)
16856 rettv->vval.v_number = 0;
16857 else
16858 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016859 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016860 rettv->vval.v_number = 0;
16861 else
16862 {
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016863 for (; wp != NULL; wp = wp->w_next)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016864 if (list_append_number(rettv->vval.v_list,
16865 wp->w_buffer->b_fnum) == FAIL)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016866 break;
16867 }
16868 }
16869#endif
16870}
16871
16872
16873/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016874 * "tabpagenr()" function
16875 */
16876/* ARGSUSED */
16877 static void
16878f_tabpagenr(argvars, rettv)
16879 typval_T *argvars;
16880 typval_T *rettv;
16881{
16882 int nr = 1;
16883#ifdef FEAT_WINDOWS
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016884 char_u *arg;
16885
16886 if (argvars[0].v_type != VAR_UNKNOWN)
16887 {
16888 arg = get_tv_string_chk(&argvars[0]);
16889 nr = 0;
16890 if (arg != NULL)
16891 {
16892 if (STRCMP(arg, "$") == 0)
Bram Moolenaara5621492006-02-25 21:55:24 +000016893 nr = tabpage_index(NULL) - 1;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016894 else
16895 EMSG2(_(e_invexpr2), arg);
16896 }
16897 }
16898 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +000016899 nr = tabpage_index(curtab);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016900#endif
16901 rettv->vval.v_number = nr;
16902}
16903
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016904
16905#ifdef FEAT_WINDOWS
16906static int get_winnr __ARGS((tabpage_T *tp, typval_T *argvar));
16907
16908/*
16909 * Common code for tabpagewinnr() and winnr().
16910 */
16911 static int
16912get_winnr(tp, argvar)
16913 tabpage_T *tp;
16914 typval_T *argvar;
16915{
16916 win_T *twin;
16917 int nr = 1;
16918 win_T *wp;
16919 char_u *arg;
16920
16921 twin = (tp == curtab) ? curwin : tp->tp_curwin;
16922 if (argvar->v_type != VAR_UNKNOWN)
16923 {
16924 arg = get_tv_string_chk(argvar);
16925 if (arg == NULL)
16926 nr = 0; /* type error; errmsg already given */
16927 else if (STRCMP(arg, "$") == 0)
16928 twin = (tp == curtab) ? lastwin : tp->tp_lastwin;
16929 else if (STRCMP(arg, "#") == 0)
16930 {
16931 twin = (tp == curtab) ? prevwin : tp->tp_prevwin;
16932 if (twin == NULL)
16933 nr = 0;
16934 }
16935 else
16936 {
16937 EMSG2(_(e_invexpr2), arg);
16938 nr = 0;
16939 }
16940 }
16941
16942 if (nr > 0)
16943 for (wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
16944 wp != twin; wp = wp->w_next)
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016945 {
16946 if (wp == NULL)
16947 {
16948 /* didn't find it in this tabpage */
16949 nr = 0;
16950 break;
16951 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016952 ++nr;
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016953 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016954 return nr;
16955}
16956#endif
16957
16958/*
16959 * "tabpagewinnr()" function
16960 */
16961/* ARGSUSED */
16962 static void
16963f_tabpagewinnr(argvars, rettv)
16964 typval_T *argvars;
16965 typval_T *rettv;
16966{
16967 int nr = 1;
16968#ifdef FEAT_WINDOWS
16969 tabpage_T *tp;
16970
16971 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16972 if (tp == NULL)
16973 nr = 0;
16974 else
16975 nr = get_winnr(tp, &argvars[1]);
16976#endif
16977 rettv->vval.v_number = nr;
16978}
16979
16980
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016981/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016982 * "tagfiles()" function
16983 */
16984/*ARGSUSED*/
16985 static void
16986f_tagfiles(argvars, rettv)
16987 typval_T *argvars;
16988 typval_T *rettv;
16989{
16990 char_u fname[MAXPATHL + 1];
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016991 tagname_T tn;
16992 int first;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016993
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016994 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016995 {
16996 rettv->vval.v_number = 0;
16997 return;
16998 }
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016999
Bram Moolenaareddf53b2006-02-27 00:11:10 +000017000 for (first = TRUE; ; first = FALSE)
17001 if (get_tagfname(&tn, first, fname) == FAIL
17002 || list_append_string(rettv->vval.v_list, fname, -1) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000017003 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000017004 tagname_free(&tn);
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000017005}
17006
17007/*
Bram Moolenaare2ac10d2005-03-07 23:26:06 +000017008 * "taglist()" function
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017009 */
17010 static void
17011f_taglist(argvars, rettv)
17012 typval_T *argvars;
17013 typval_T *rettv;
17014{
17015 char_u *tag_pattern;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017016
17017 tag_pattern = get_tv_string(&argvars[0]);
17018
17019 rettv->vval.v_number = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017020 if (*tag_pattern == NUL)
17021 return;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017022
Bram Moolenaareddf53b2006-02-27 00:11:10 +000017023 if (rettv_list_alloc(rettv) == OK)
17024 (void)get_tags(rettv->vval.v_list, tag_pattern);
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017025}
17026
17027/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017028 * "tempname()" function
17029 */
17030/*ARGSUSED*/
17031 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017032f_tempname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017033 typval_T *argvars;
17034 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017035{
17036 static int x = 'A';
17037
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017038 rettv->v_type = VAR_STRING;
17039 rettv->vval.v_string = vim_tempname(x);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017040
17041 /* Advance 'x' to use A-Z and 0-9, so that there are at least 34 different
17042 * names. Skip 'I' and 'O', they are used for shell redirection. */
17043 do
17044 {
17045 if (x == 'Z')
17046 x = '0';
17047 else if (x == '9')
17048 x = 'A';
17049 else
17050 {
17051#ifdef EBCDIC
17052 if (x == 'I')
17053 x = 'J';
17054 else if (x == 'R')
17055 x = 'S';
17056 else
17057#endif
17058 ++x;
17059 }
17060 } while (x == 'I' || x == 'O');
17061}
17062
17063/*
Bram Moolenaard52d9742005-08-21 22:20:28 +000017064 * "test(list)" function: Just checking the walls...
17065 */
17066/*ARGSUSED*/
17067 static void
17068f_test(argvars, rettv)
17069 typval_T *argvars;
17070 typval_T *rettv;
17071{
17072 /* Used for unit testing. Change the code below to your liking. */
17073#if 0
17074 listitem_T *li;
17075 list_T *l;
17076 char_u *bad, *good;
17077
17078 if (argvars[0].v_type != VAR_LIST)
17079 return;
17080 l = argvars[0].vval.v_list;
17081 if (l == NULL)
17082 return;
17083 li = l->lv_first;
17084 if (li == NULL)
17085 return;
17086 bad = get_tv_string(&li->li_tv);
17087 li = li->li_next;
17088 if (li == NULL)
17089 return;
17090 good = get_tv_string(&li->li_tv);
17091 rettv->vval.v_number = test_edit_score(bad, good);
17092#endif
17093}
17094
17095/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017096 * "tolower(string)" function
17097 */
17098 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017099f_tolower(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017100 typval_T *argvars;
17101 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017102{
17103 char_u *p;
17104
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017105 p = vim_strsave(get_tv_string(&argvars[0]));
17106 rettv->v_type = VAR_STRING;
17107 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017108
17109 if (p != NULL)
17110 while (*p != NUL)
17111 {
17112#ifdef FEAT_MBYTE
17113 int l;
17114
17115 if (enc_utf8)
17116 {
17117 int c, lc;
17118
17119 c = utf_ptr2char(p);
17120 lc = utf_tolower(c);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017121 l = utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017122 /* TODO: reallocate string when byte count changes. */
17123 if (utf_char2len(lc) == l)
17124 utf_char2bytes(lc, p);
17125 p += l;
17126 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017127 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017128 p += l; /* skip multi-byte character */
17129 else
17130#endif
17131 {
17132 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
17133 ++p;
17134 }
17135 }
17136}
17137
17138/*
17139 * "toupper(string)" function
17140 */
17141 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017142f_toupper(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017143 typval_T *argvars;
17144 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017145{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017146 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017147 rettv->vval.v_string = strup_save(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000017148}
17149
17150/*
Bram Moolenaar8299df92004-07-10 09:47:34 +000017151 * "tr(string, fromstr, tostr)" function
17152 */
17153 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017154f_tr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017155 typval_T *argvars;
17156 typval_T *rettv;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017157{
17158 char_u *instr;
17159 char_u *fromstr;
17160 char_u *tostr;
17161 char_u *p;
17162#ifdef FEAT_MBYTE
Bram Moolenaar342337a2005-07-21 21:11:17 +000017163 int inlen;
17164 int fromlen;
17165 int tolen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017166 int idx;
17167 char_u *cpstr;
17168 int cplen;
17169 int first = TRUE;
17170#endif
17171 char_u buf[NUMBUFLEN];
17172 char_u buf2[NUMBUFLEN];
17173 garray_T ga;
17174
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017175 instr = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017176 fromstr = get_tv_string_buf_chk(&argvars[1], buf);
17177 tostr = get_tv_string_buf_chk(&argvars[2], buf2);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017178
17179 /* Default return value: empty string. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017180 rettv->v_type = VAR_STRING;
17181 rettv->vval.v_string = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017182 if (fromstr == NULL || tostr == NULL)
17183 return; /* type error; errmsg already given */
Bram Moolenaar8299df92004-07-10 09:47:34 +000017184 ga_init2(&ga, (int)sizeof(char), 80);
17185
17186#ifdef FEAT_MBYTE
17187 if (!has_mbyte)
17188#endif
17189 /* not multi-byte: fromstr and tostr must be the same length */
17190 if (STRLEN(fromstr) != STRLEN(tostr))
17191 {
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017192#ifdef FEAT_MBYTE
Bram Moolenaar8299df92004-07-10 09:47:34 +000017193error:
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017194#endif
Bram Moolenaar8299df92004-07-10 09:47:34 +000017195 EMSG2(_(e_invarg2), fromstr);
17196 ga_clear(&ga);
17197 return;
17198 }
17199
17200 /* fromstr and tostr have to contain the same number of chars */
17201 while (*instr != NUL)
17202 {
17203#ifdef FEAT_MBYTE
17204 if (has_mbyte)
17205 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017206 inlen = (*mb_ptr2len)(instr);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017207 cpstr = instr;
17208 cplen = inlen;
17209 idx = 0;
17210 for (p = fromstr; *p != NUL; p += fromlen)
17211 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017212 fromlen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017213 if (fromlen == inlen && STRNCMP(instr, p, inlen) == 0)
17214 {
17215 for (p = tostr; *p != NUL; p += tolen)
17216 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017217 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017218 if (idx-- == 0)
17219 {
17220 cplen = tolen;
17221 cpstr = p;
17222 break;
17223 }
17224 }
17225 if (*p == NUL) /* tostr is shorter than fromstr */
17226 goto error;
17227 break;
17228 }
17229 ++idx;
17230 }
17231
17232 if (first && cpstr == instr)
17233 {
17234 /* Check that fromstr and tostr have the same number of
17235 * (multi-byte) characters. Done only once when a character
17236 * of instr doesn't appear in fromstr. */
17237 first = FALSE;
17238 for (p = tostr; *p != NUL; p += tolen)
17239 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017240 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017241 --idx;
17242 }
17243 if (idx != 0)
17244 goto error;
17245 }
17246
17247 ga_grow(&ga, cplen);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000017248 mch_memmove((char *)ga.ga_data + ga.ga_len, cpstr, (size_t)cplen);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017249 ga.ga_len += cplen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017250
17251 instr += inlen;
17252 }
17253 else
17254#endif
17255 {
17256 /* When not using multi-byte chars we can do it faster. */
17257 p = vim_strchr(fromstr, *instr);
17258 if (p != NULL)
17259 ga_append(&ga, tostr[p - fromstr]);
17260 else
17261 ga_append(&ga, *instr);
17262 ++instr;
17263 }
17264 }
17265
Bram Moolenaar61b974b2006-12-05 09:32:29 +000017266 /* add a terminating NUL */
17267 ga_grow(&ga, 1);
17268 ga_append(&ga, NUL);
17269
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017270 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017271}
17272
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017273#ifdef FEAT_FLOAT
17274/*
17275 * "trunc({float})" function
17276 */
17277 static void
17278f_trunc(argvars, rettv)
17279 typval_T *argvars;
17280 typval_T *rettv;
17281{
17282 float_T f;
17283
17284 rettv->v_type = VAR_FLOAT;
17285 if (get_float_arg(argvars, &f) == OK)
17286 /* trunc() is not in C90, use floor() or ceil() instead. */
17287 rettv->vval.v_float = f > 0 ? floor(f) : ceil(f);
17288 else
17289 rettv->vval.v_float = 0.0;
17290}
17291#endif
17292
Bram Moolenaar8299df92004-07-10 09:47:34 +000017293/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017294 * "type(expr)" function
17295 */
17296 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017297f_type(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017298 typval_T *argvars;
17299 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017300{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017301 int n;
17302
17303 switch (argvars[0].v_type)
17304 {
17305 case VAR_NUMBER: n = 0; break;
17306 case VAR_STRING: n = 1; break;
17307 case VAR_FUNC: n = 2; break;
17308 case VAR_LIST: n = 3; break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000017309 case VAR_DICT: n = 4; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017310#ifdef FEAT_FLOAT
17311 case VAR_FLOAT: n = 5; break;
17312#endif
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017313 default: EMSG2(_(e_intern2), "f_type()"); n = 0; break;
17314 }
17315 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017316}
17317
17318/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000017319 * "values(dict)" function
17320 */
17321 static void
17322f_values(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017323 typval_T *argvars;
17324 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000017325{
17326 dict_list(argvars, rettv, 1);
17327}
17328
17329/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017330 * "virtcol(string)" function
17331 */
17332 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017333f_virtcol(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017334 typval_T *argvars;
17335 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017336{
17337 colnr_T vcol = 0;
17338 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017339 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017340
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017341 fp = var2fpos(&argvars[0], FALSE, &fnum);
17342 if (fp != NULL && fp->lnum <= curbuf->b_ml.ml_line_count
17343 && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017344 {
17345 getvvcol(curwin, fp, NULL, NULL, &vcol);
17346 ++vcol;
17347 }
17348
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017349 rettv->vval.v_number = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017350}
17351
17352/*
17353 * "visualmode()" function
17354 */
17355/*ARGSUSED*/
17356 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017357f_visualmode(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017358 typval_T *argvars;
17359 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017360{
17361#ifdef FEAT_VISUAL
17362 char_u str[2];
17363
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017364 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017365 str[0] = curbuf->b_visual_mode_eval;
17366 str[1] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017367 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017368
17369 /* A non-zero number or non-empty string argument: reset mode. */
Bram Moolenaar05bb9532008-07-04 09:44:11 +000017370 if (non_zero_arg(&argvars[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +000017371 curbuf->b_visual_mode_eval = NUL;
17372#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017373 rettv->vval.v_number = 0; /* return anything, it won't work anyway */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017374#endif
17375}
17376
17377/*
17378 * "winbufnr(nr)" function
17379 */
17380 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017381f_winbufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017382 typval_T *argvars;
17383 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017384{
17385 win_T *wp;
17386
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017387 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017388 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017389 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017390 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017391 rettv->vval.v_number = wp->w_buffer->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017392}
17393
17394/*
17395 * "wincol()" function
17396 */
17397/*ARGSUSED*/
17398 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017399f_wincol(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017400 typval_T *argvars;
17401 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017402{
17403 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017404 rettv->vval.v_number = curwin->w_wcol + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017405}
17406
17407/*
17408 * "winheight(nr)" function
17409 */
17410 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017411f_winheight(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017412 typval_T *argvars;
17413 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017414{
17415 win_T *wp;
17416
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017417 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017418 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017419 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017420 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017421 rettv->vval.v_number = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017422}
17423
17424/*
17425 * "winline()" function
17426 */
17427/*ARGSUSED*/
17428 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017429f_winline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017430 typval_T *argvars;
17431 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017432{
17433 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017434 rettv->vval.v_number = curwin->w_wrow + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017435}
17436
17437/*
17438 * "winnr()" function
17439 */
17440/* ARGSUSED */
17441 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017442f_winnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017443 typval_T *argvars;
17444 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017445{
17446 int nr = 1;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017447
Bram Moolenaar071d4272004-06-13 20:20:40 +000017448#ifdef FEAT_WINDOWS
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017449 nr = get_winnr(curtab, &argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017450#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017451 rettv->vval.v_number = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017452}
17453
17454/*
17455 * "winrestcmd()" function
17456 */
17457/* ARGSUSED */
17458 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017459f_winrestcmd(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017460 typval_T *argvars;
17461 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017462{
17463#ifdef FEAT_WINDOWS
17464 win_T *wp;
17465 int winnr = 1;
17466 garray_T ga;
17467 char_u buf[50];
17468
17469 ga_init2(&ga, (int)sizeof(char), 70);
17470 for (wp = firstwin; wp != NULL; wp = wp->w_next)
17471 {
17472 sprintf((char *)buf, "%dresize %d|", winnr, wp->w_height);
17473 ga_concat(&ga, buf);
17474# ifdef FEAT_VERTSPLIT
17475 sprintf((char *)buf, "vert %dresize %d|", winnr, wp->w_width);
17476 ga_concat(&ga, buf);
17477# endif
17478 ++winnr;
17479 }
Bram Moolenaar269ec652004-07-29 08:43:53 +000017480 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017481
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017482 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017483#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017484 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017485#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017486 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017487}
17488
17489/*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017490 * "winrestview()" function
17491 */
17492/* ARGSUSED */
17493 static void
17494f_winrestview(argvars, rettv)
17495 typval_T *argvars;
17496 typval_T *rettv;
17497{
17498 dict_T *dict;
17499
17500 if (argvars[0].v_type != VAR_DICT
17501 || (dict = argvars[0].vval.v_dict) == NULL)
17502 EMSG(_(e_invarg));
17503 else
17504 {
17505 curwin->w_cursor.lnum = get_dict_number(dict, (char_u *)"lnum");
17506 curwin->w_cursor.col = get_dict_number(dict, (char_u *)"col");
17507#ifdef FEAT_VIRTUALEDIT
17508 curwin->w_cursor.coladd = get_dict_number(dict, (char_u *)"coladd");
17509#endif
17510 curwin->w_curswant = get_dict_number(dict, (char_u *)"curswant");
Bram Moolenaar362e1a32006-03-06 23:29:24 +000017511 curwin->w_set_curswant = FALSE;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017512
Bram Moolenaar6f11a412006-09-06 20:16:42 +000017513 set_topline(curwin, get_dict_number(dict, (char_u *)"topline"));
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017514#ifdef FEAT_DIFF
17515 curwin->w_topfill = get_dict_number(dict, (char_u *)"topfill");
17516#endif
17517 curwin->w_leftcol = get_dict_number(dict, (char_u *)"leftcol");
17518 curwin->w_skipcol = get_dict_number(dict, (char_u *)"skipcol");
17519
17520 check_cursor();
17521 changed_cline_bef_curs();
17522 invalidate_botline();
17523 redraw_later(VALID);
17524
17525 if (curwin->w_topline == 0)
17526 curwin->w_topline = 1;
17527 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
17528 curwin->w_topline = curbuf->b_ml.ml_line_count;
17529#ifdef FEAT_DIFF
17530 check_topfill(curwin, TRUE);
17531#endif
17532 }
17533}
17534
17535/*
17536 * "winsaveview()" function
17537 */
17538/* ARGSUSED */
17539 static void
17540f_winsaveview(argvars, rettv)
17541 typval_T *argvars;
17542 typval_T *rettv;
17543{
17544 dict_T *dict;
17545
17546 dict = dict_alloc();
17547 if (dict == NULL)
17548 return;
17549 rettv->v_type = VAR_DICT;
17550 rettv->vval.v_dict = dict;
17551 ++dict->dv_refcount;
17552
17553 dict_add_nr_str(dict, "lnum", (long)curwin->w_cursor.lnum, NULL);
17554 dict_add_nr_str(dict, "col", (long)curwin->w_cursor.col, NULL);
17555#ifdef FEAT_VIRTUALEDIT
17556 dict_add_nr_str(dict, "coladd", (long)curwin->w_cursor.coladd, NULL);
17557#endif
Bram Moolenaar9af1ba92006-08-29 19:55:53 +000017558 update_curswant();
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017559 dict_add_nr_str(dict, "curswant", (long)curwin->w_curswant, NULL);
17560
17561 dict_add_nr_str(dict, "topline", (long)curwin->w_topline, NULL);
17562#ifdef FEAT_DIFF
17563 dict_add_nr_str(dict, "topfill", (long)curwin->w_topfill, NULL);
17564#endif
17565 dict_add_nr_str(dict, "leftcol", (long)curwin->w_leftcol, NULL);
17566 dict_add_nr_str(dict, "skipcol", (long)curwin->w_skipcol, NULL);
17567}
17568
17569/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017570 * "winwidth(nr)" function
17571 */
17572 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017573f_winwidth(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017574 typval_T *argvars;
17575 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017576{
17577 win_T *wp;
17578
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017579 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017580 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017581 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017582 else
17583#ifdef FEAT_VERTSPLIT
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017584 rettv->vval.v_number = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017585#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017586 rettv->vval.v_number = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017587#endif
17588}
17589
Bram Moolenaar071d4272004-06-13 20:20:40 +000017590/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017591 * "writefile()" function
17592 */
17593 static void
17594f_writefile(argvars, rettv)
17595 typval_T *argvars;
17596 typval_T *rettv;
17597{
17598 int binary = FALSE;
17599 char_u *fname;
17600 FILE *fd;
17601 listitem_T *li;
17602 char_u *s;
17603 int ret = 0;
17604 int c;
17605
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000017606 if (check_restricted() || check_secure())
17607 return;
17608
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017609 if (argvars[0].v_type != VAR_LIST)
17610 {
17611 EMSG2(_(e_listarg), "writefile()");
17612 return;
17613 }
17614 if (argvars[0].vval.v_list == NULL)
17615 return;
17616
17617 if (argvars[2].v_type != VAR_UNKNOWN
17618 && STRCMP(get_tv_string(&argvars[2]), "b") == 0)
17619 binary = TRUE;
17620
17621 /* Always open the file in binary mode, library functions have a mind of
17622 * their own about CR-LF conversion. */
17623 fname = get_tv_string(&argvars[1]);
17624 if (*fname == NUL || (fd = mch_fopen((char *)fname, WRITEBIN)) == NULL)
17625 {
17626 EMSG2(_(e_notcreate), *fname == NUL ? (char_u *)_("<empty>") : fname);
17627 ret = -1;
17628 }
17629 else
17630 {
17631 for (li = argvars[0].vval.v_list->lv_first; li != NULL;
17632 li = li->li_next)
17633 {
17634 for (s = get_tv_string(&li->li_tv); *s != NUL; ++s)
17635 {
17636 if (*s == '\n')
17637 c = putc(NUL, fd);
17638 else
17639 c = putc(*s, fd);
17640 if (c == EOF)
17641 {
17642 ret = -1;
17643 break;
17644 }
17645 }
17646 if (!binary || li->li_next != NULL)
17647 if (putc('\n', fd) == EOF)
17648 {
17649 ret = -1;
17650 break;
17651 }
17652 if (ret < 0)
17653 {
17654 EMSG(_(e_write));
17655 break;
17656 }
17657 }
17658 fclose(fd);
17659 }
17660
17661 rettv->vval.v_number = ret;
17662}
17663
17664/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017665 * Translate a String variable into a position.
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017666 * Returns NULL when there is an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017667 */
17668 static pos_T *
Bram Moolenaar477933c2007-07-17 14:32:23 +000017669var2fpos(varp, dollar_lnum, fnum)
Bram Moolenaar33570922005-01-25 22:26:29 +000017670 typval_T *varp;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017671 int dollar_lnum; /* TRUE when $ is last line */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017672 int *fnum; /* set to fnum for '0, 'A, etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017673{
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017674 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017675 static pos_T pos;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017676 pos_T *pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017677
Bram Moolenaara5525202006-03-02 22:52:09 +000017678 /* Argument can be [lnum, col, coladd]. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017679 if (varp->v_type == VAR_LIST)
17680 {
17681 list_T *l;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017682 int len;
Bram Moolenaara5525202006-03-02 22:52:09 +000017683 int error = FALSE;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017684 listitem_T *li;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017685
17686 l = varp->vval.v_list;
17687 if (l == NULL)
17688 return NULL;
17689
17690 /* Get the line number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017691 pos.lnum = list_find_nr(l, 0L, &error);
17692 if (error || pos.lnum <= 0 || pos.lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017693 return NULL; /* invalid line number */
17694
17695 /* Get the column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017696 pos.col = list_find_nr(l, 1L, &error);
17697 if (error)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017698 return NULL;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017699 len = (long)STRLEN(ml_get(pos.lnum));
Bram Moolenaar477933c2007-07-17 14:32:23 +000017700
17701 /* We accept "$" for the column number: last column. */
17702 li = list_find(l, 1L);
17703 if (li != NULL && li->li_tv.v_type == VAR_STRING
17704 && li->li_tv.vval.v_string != NULL
17705 && STRCMP(li->li_tv.vval.v_string, "$") == 0)
17706 pos.col = len + 1;
17707
Bram Moolenaara5525202006-03-02 22:52:09 +000017708 /* Accept a position up to the NUL after the line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000017709 if (pos.col == 0 || (int)pos.col > len + 1)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017710 return NULL; /* invalid column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017711 --pos.col;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017712
Bram Moolenaara5525202006-03-02 22:52:09 +000017713#ifdef FEAT_VIRTUALEDIT
17714 /* Get the virtual offset. Defaults to zero. */
17715 pos.coladd = list_find_nr(l, 2L, &error);
17716 if (error)
17717 pos.coladd = 0;
17718#endif
17719
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017720 return &pos;
17721 }
17722
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017723 name = get_tv_string_chk(varp);
17724 if (name == NULL)
17725 return NULL;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017726 if (name[0] == '.') /* cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017727 return &curwin->w_cursor;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017728#ifdef FEAT_VISUAL
17729 if (name[0] == 'v' && name[1] == NUL) /* Visual start */
17730 {
17731 if (VIsual_active)
17732 return &VIsual;
17733 return &curwin->w_cursor;
17734 }
17735#endif
17736 if (name[0] == '\'') /* mark */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017737 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017738 pp = getmark_fnum(name[1], FALSE, fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017739 if (pp == NULL || pp == (pos_T *)-1 || pp->lnum <= 0)
17740 return NULL;
17741 return pp;
17742 }
Bram Moolenaara5525202006-03-02 22:52:09 +000017743
17744#ifdef FEAT_VIRTUALEDIT
17745 pos.coladd = 0;
17746#endif
17747
Bram Moolenaar477933c2007-07-17 14:32:23 +000017748 if (name[0] == 'w' && dollar_lnum)
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017749 {
17750 pos.col = 0;
17751 if (name[1] == '0') /* "w0": first visible line */
17752 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017753 update_topline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017754 pos.lnum = curwin->w_topline;
17755 return &pos;
17756 }
17757 else if (name[1] == '$') /* "w$": last visible line */
17758 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017759 validate_botline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017760 pos.lnum = curwin->w_botline - 1;
17761 return &pos;
17762 }
17763 }
17764 else if (name[0] == '$') /* last column or line */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017765 {
Bram Moolenaar477933c2007-07-17 14:32:23 +000017766 if (dollar_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017767 {
17768 pos.lnum = curbuf->b_ml.ml_line_count;
17769 pos.col = 0;
17770 }
17771 else
17772 {
17773 pos.lnum = curwin->w_cursor.lnum;
17774 pos.col = (colnr_T)STRLEN(ml_get_curline());
17775 }
17776 return &pos;
17777 }
17778 return NULL;
17779}
17780
17781/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017782 * Convert list in "arg" into a position and optional file number.
17783 * When "fnump" is NULL there is no file number, only 3 items.
17784 * Note that the column is passed on as-is, the caller may want to decrement
17785 * it to use 1 for the first column.
17786 * Return FAIL when conversion is not possible, doesn't check the position for
17787 * validity.
17788 */
17789 static int
17790list2fpos(arg, posp, fnump)
17791 typval_T *arg;
17792 pos_T *posp;
17793 int *fnump;
17794{
17795 list_T *l = arg->vval.v_list;
17796 long i = 0;
17797 long n;
17798
Bram Moolenaarbde35262006-07-23 20:12:24 +000017799 /* List must be: [fnum, lnum, col, coladd], where "fnum" is only there
17800 * when "fnump" isn't NULL and "coladd" is optional. */
17801 if (arg->v_type != VAR_LIST
17802 || l == NULL
17803 || l->lv_len < (fnump == NULL ? 2 : 3)
17804 || l->lv_len > (fnump == NULL ? 3 : 4))
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017805 return FAIL;
17806
17807 if (fnump != NULL)
17808 {
17809 n = list_find_nr(l, i++, NULL); /* fnum */
17810 if (n < 0)
17811 return FAIL;
17812 if (n == 0)
17813 n = curbuf->b_fnum; /* current buffer */
17814 *fnump = n;
17815 }
17816
17817 n = list_find_nr(l, i++, NULL); /* lnum */
17818 if (n < 0)
17819 return FAIL;
17820 posp->lnum = n;
17821
17822 n = list_find_nr(l, i++, NULL); /* col */
17823 if (n < 0)
17824 return FAIL;
17825 posp->col = n;
17826
17827#ifdef FEAT_VIRTUALEDIT
17828 n = list_find_nr(l, i, NULL);
17829 if (n < 0)
Bram Moolenaarbde35262006-07-23 20:12:24 +000017830 posp->coladd = 0;
17831 else
17832 posp->coladd = n;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017833#endif
17834
17835 return OK;
17836}
17837
17838/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017839 * Get the length of an environment variable name.
17840 * Advance "arg" to the first character after the name.
17841 * Return 0 for error.
17842 */
17843 static int
17844get_env_len(arg)
17845 char_u **arg;
17846{
17847 char_u *p;
17848 int len;
17849
17850 for (p = *arg; vim_isIDc(*p); ++p)
17851 ;
17852 if (p == *arg) /* no name found */
17853 return 0;
17854
17855 len = (int)(p - *arg);
17856 *arg = p;
17857 return len;
17858}
17859
17860/*
17861 * Get the length of the name of a function or internal variable.
17862 * "arg" is advanced to the first non-white character after the name.
17863 * Return 0 if something is wrong.
17864 */
17865 static int
17866get_id_len(arg)
17867 char_u **arg;
17868{
17869 char_u *p;
17870 int len;
17871
17872 /* Find the end of the name. */
17873 for (p = *arg; eval_isnamec(*p); ++p)
17874 ;
17875 if (p == *arg) /* no name found */
17876 return 0;
17877
17878 len = (int)(p - *arg);
17879 *arg = skipwhite(p);
17880
17881 return len;
17882}
17883
17884/*
Bram Moolenaara7043832005-01-21 11:56:39 +000017885 * Get the length of the name of a variable or function.
17886 * Only the name is recognized, does not handle ".key" or "[idx]".
Bram Moolenaar071d4272004-06-13 20:20:40 +000017887 * "arg" is advanced to the first non-white character after the name.
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017888 * Return -1 if curly braces expansion failed.
17889 * Return 0 if something else is wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017890 * If the name contains 'magic' {}'s, expand them and return the
17891 * expanded name in an allocated string via 'alias' - caller must free.
17892 */
17893 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017894get_name_len(arg, alias, evaluate, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017895 char_u **arg;
17896 char_u **alias;
17897 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017898 int verbose;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017899{
17900 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017901 char_u *p;
17902 char_u *expr_start;
17903 char_u *expr_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017904
17905 *alias = NULL; /* default to no alias */
17906
17907 if ((*arg)[0] == K_SPECIAL && (*arg)[1] == KS_EXTRA
17908 && (*arg)[2] == (int)KE_SNR)
17909 {
17910 /* hard coded <SNR>, already translated */
17911 *arg += 3;
17912 return get_id_len(arg) + 3;
17913 }
17914 len = eval_fname_script(*arg);
17915 if (len > 0)
17916 {
17917 /* literal "<SID>", "s:" or "<SNR>" */
17918 *arg += len;
17919 }
17920
Bram Moolenaar071d4272004-06-13 20:20:40 +000017921 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017922 * Find the end of the name; check for {} construction.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017923 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017924 p = find_name_end(*arg, &expr_start, &expr_end,
17925 len > 0 ? 0 : FNE_CHECK_START);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017926 if (expr_start != NULL)
17927 {
17928 char_u *temp_string;
17929
17930 if (!evaluate)
17931 {
17932 len += (int)(p - *arg);
17933 *arg = skipwhite(p);
17934 return len;
17935 }
17936
17937 /*
17938 * Include any <SID> etc in the expanded string:
17939 * Thus the -len here.
17940 */
17941 temp_string = make_expanded_name(*arg - len, expr_start, expr_end, p);
17942 if (temp_string == NULL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017943 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017944 *alias = temp_string;
17945 *arg = skipwhite(p);
17946 return (int)STRLEN(temp_string);
17947 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017948
17949 len += get_id_len(arg);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017950 if (len == 0 && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017951 EMSG2(_(e_invexpr2), *arg);
17952
17953 return len;
17954}
17955
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017956/*
17957 * Find the end of a variable or function name, taking care of magic braces.
17958 * If "expr_start" is not NULL then "expr_start" and "expr_end" are set to the
17959 * start and end of the first magic braces item.
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017960 * "flags" can have FNE_INCL_BR and FNE_CHECK_START.
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017961 * Return a pointer to just after the name. Equal to "arg" if there is no
17962 * valid name.
17963 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017964 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017965find_name_end(arg, expr_start, expr_end, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017966 char_u *arg;
17967 char_u **expr_start;
17968 char_u **expr_end;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017969 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017970{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017971 int mb_nest = 0;
17972 int br_nest = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017973 char_u *p;
17974
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017975 if (expr_start != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017976 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017977 *expr_start = NULL;
17978 *expr_end = NULL;
17979 }
17980
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017981 /* Quick check for valid starting character. */
17982 if ((flags & FNE_CHECK_START) && !eval_isnamec1(*arg) && *arg != '{')
17983 return arg;
17984
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017985 for (p = arg; *p != NUL
17986 && (eval_isnamec(*p)
Bram Moolenaare9a41262005-01-15 22:18:47 +000017987 || *p == '{'
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017988 || ((flags & FNE_INCL_BR) && (*p == '[' || *p == '.'))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017989 || mb_nest != 0
Bram Moolenaar8af24422005-08-08 22:06:28 +000017990 || br_nest != 0); mb_ptr_adv(p))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017991 {
Bram Moolenaar8af24422005-08-08 22:06:28 +000017992 if (*p == '\'')
17993 {
17994 /* skip over 'string' to avoid counting [ and ] inside it. */
17995 for (p = p + 1; *p != NUL && *p != '\''; mb_ptr_adv(p))
17996 ;
17997 if (*p == NUL)
17998 break;
17999 }
18000 else if (*p == '"')
18001 {
18002 /* skip over "str\"ing" to avoid counting [ and ] inside it. */
18003 for (p = p + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
18004 if (*p == '\\' && p[1] != NUL)
18005 ++p;
18006 if (*p == NUL)
18007 break;
18008 }
18009
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018010 if (mb_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018011 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018012 if (*p == '[')
18013 ++br_nest;
18014 else if (*p == ']')
18015 --br_nest;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018016 }
Bram Moolenaar8af24422005-08-08 22:06:28 +000018017
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018018 if (br_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018019 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018020 if (*p == '{')
18021 {
18022 mb_nest++;
18023 if (expr_start != NULL && *expr_start == NULL)
18024 *expr_start = p;
18025 }
18026 else if (*p == '}')
18027 {
18028 mb_nest--;
18029 if (expr_start != NULL && mb_nest == 0 && *expr_end == NULL)
18030 *expr_end = p;
18031 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018032 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018033 }
18034
18035 return p;
18036}
18037
18038/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018039 * Expands out the 'magic' {}'s in a variable/function name.
18040 * Note that this can call itself recursively, to deal with
18041 * constructs like foo{bar}{baz}{bam}
18042 * The four pointer arguments point to "foo{expre}ss{ion}bar"
18043 * "in_start" ^
18044 * "expr_start" ^
18045 * "expr_end" ^
18046 * "in_end" ^
18047 *
18048 * Returns a new allocated string, which the caller must free.
18049 * Returns NULL for failure.
18050 */
18051 static char_u *
18052make_expanded_name(in_start, expr_start, expr_end, in_end)
18053 char_u *in_start;
18054 char_u *expr_start;
18055 char_u *expr_end;
18056 char_u *in_end;
18057{
18058 char_u c1;
18059 char_u *retval = NULL;
18060 char_u *temp_result;
18061 char_u *nextcmd = NULL;
18062
18063 if (expr_end == NULL || in_end == NULL)
18064 return NULL;
18065 *expr_start = NUL;
18066 *expr_end = NUL;
18067 c1 = *in_end;
18068 *in_end = NUL;
18069
Bram Moolenaar362e1a32006-03-06 23:29:24 +000018070 temp_result = eval_to_string(expr_start + 1, &nextcmd, FALSE);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018071 if (temp_result != NULL && nextcmd == NULL)
18072 {
18073 retval = alloc((unsigned)(STRLEN(temp_result) + (expr_start - in_start)
18074 + (in_end - expr_end) + 1));
18075 if (retval != NULL)
18076 {
18077 STRCPY(retval, in_start);
18078 STRCAT(retval, temp_result);
18079 STRCAT(retval, expr_end + 1);
18080 }
18081 }
18082 vim_free(temp_result);
18083
18084 *in_end = c1; /* put char back for error messages */
18085 *expr_start = '{';
18086 *expr_end = '}';
18087
18088 if (retval != NULL)
18089 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018090 temp_result = find_name_end(retval, &expr_start, &expr_end, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018091 if (expr_start != NULL)
18092 {
18093 /* Further expansion! */
18094 temp_result = make_expanded_name(retval, expr_start,
18095 expr_end, temp_result);
18096 vim_free(retval);
18097 retval = temp_result;
18098 }
18099 }
18100
18101 return retval;
18102}
18103
18104/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018105 * Return TRUE if character "c" can be used in a variable or function name.
Bram Moolenaare9a41262005-01-15 22:18:47 +000018106 * Does not include '{' or '}' for magic braces.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018107 */
18108 static int
18109eval_isnamec(c)
18110 int c;
18111{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018112 return (ASCII_ISALNUM(c) || c == '_' || c == ':' || c == AUTOLOAD_CHAR);
18113}
18114
18115/*
18116 * Return TRUE if character "c" can be used as the first character in a
18117 * variable or function name (excluding '{' and '}').
18118 */
18119 static int
18120eval_isnamec1(c)
18121 int c;
18122{
18123 return (ASCII_ISALPHA(c) || c == '_');
Bram Moolenaar071d4272004-06-13 20:20:40 +000018124}
18125
18126/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018127 * Set number v: variable to "val".
18128 */
18129 void
18130set_vim_var_nr(idx, val)
18131 int idx;
18132 long val;
18133{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018134 vimvars[idx].vv_nr = val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018135}
18136
18137/*
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018138 * Get number v: variable value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018139 */
18140 long
18141get_vim_var_nr(idx)
18142 int idx;
18143{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018144 return vimvars[idx].vv_nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018145}
18146
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018147/*
18148 * Get string v: variable value. Uses a static buffer, can only be used once.
18149 */
18150 char_u *
18151get_vim_var_str(idx)
18152 int idx;
18153{
18154 return get_tv_string(&vimvars[idx].vv_tv);
18155}
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018156
Bram Moolenaar071d4272004-06-13 20:20:40 +000018157/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018158 * Get List v: variable value. Caller must take care of reference count when
18159 * needed.
18160 */
18161 list_T *
18162get_vim_var_list(idx)
18163 int idx;
18164{
18165 return vimvars[idx].vv_list;
18166}
18167
18168/*
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018169 * Set v:count to "count" and v:count1 to "count1".
18170 * When "set_prevcount" is TRUE first set v:prevcount from v:count.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018171 */
18172 void
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018173set_vcount(count, count1, set_prevcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018174 long count;
18175 long count1;
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018176 int set_prevcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018177{
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018178 if (set_prevcount)
18179 vimvars[VV_PREVCOUNT].vv_nr = vimvars[VV_COUNT].vv_nr;
Bram Moolenaare9a41262005-01-15 22:18:47 +000018180 vimvars[VV_COUNT].vv_nr = count;
18181 vimvars[VV_COUNT1].vv_nr = count1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018182}
18183
18184/*
18185 * Set string v: variable to a copy of "val".
18186 */
18187 void
18188set_vim_var_string(idx, val, len)
18189 int idx;
18190 char_u *val;
18191 int len; /* length of "val" to use or -1 (whole string) */
18192{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018193 /* Need to do this (at least) once, since we can't initialize a union.
18194 * Will always be invoked when "v:progname" is set. */
18195 vimvars[VV_VERSION].vv_nr = VIM_VERSION_100;
18196
Bram Moolenaare9a41262005-01-15 22:18:47 +000018197 vim_free(vimvars[idx].vv_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018198 if (val == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018199 vimvars[idx].vv_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018200 else if (len == -1)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018201 vimvars[idx].vv_str = vim_strsave(val);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018202 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000018203 vimvars[idx].vv_str = vim_strnsave(val, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018204}
18205
18206/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018207 * Set List v: variable to "val".
18208 */
18209 void
18210set_vim_var_list(idx, val)
18211 int idx;
18212 list_T *val;
18213{
18214 list_unref(vimvars[idx].vv_list);
18215 vimvars[idx].vv_list = val;
18216 if (val != NULL)
18217 ++val->lv_refcount;
18218}
18219
18220/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018221 * Set v:register if needed.
18222 */
18223 void
18224set_reg_var(c)
18225 int c;
18226{
18227 char_u regname;
18228
18229 if (c == 0 || c == ' ')
18230 regname = '"';
18231 else
18232 regname = c;
18233 /* Avoid free/alloc when the value is already right. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000018234 if (vimvars[VV_REG].vv_str == NULL || vimvars[VV_REG].vv_str[0] != c)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018235 set_vim_var_string(VV_REG, &regname, 1);
18236}
18237
18238/*
18239 * Get or set v:exception. If "oldval" == NULL, return the current value.
18240 * Otherwise, restore the value to "oldval" and return NULL.
18241 * Must always be called in pairs to save and restore v:exception! Does not
18242 * take care of memory allocations.
18243 */
18244 char_u *
18245v_exception(oldval)
18246 char_u *oldval;
18247{
18248 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018249 return vimvars[VV_EXCEPTION].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018250
Bram Moolenaare9a41262005-01-15 22:18:47 +000018251 vimvars[VV_EXCEPTION].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018252 return NULL;
18253}
18254
18255/*
18256 * Get or set v:throwpoint. If "oldval" == NULL, return the current value.
18257 * Otherwise, restore the value to "oldval" and return NULL.
18258 * Must always be called in pairs to save and restore v:throwpoint! Does not
18259 * take care of memory allocations.
18260 */
18261 char_u *
18262v_throwpoint(oldval)
18263 char_u *oldval;
18264{
18265 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018266 return vimvars[VV_THROWPOINT].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018267
Bram Moolenaare9a41262005-01-15 22:18:47 +000018268 vimvars[VV_THROWPOINT].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018269 return NULL;
18270}
18271
18272#if defined(FEAT_AUTOCMD) || defined(PROTO)
18273/*
18274 * Set v:cmdarg.
18275 * If "eap" != NULL, use "eap" to generate the value and return the old value.
18276 * If "oldarg" != NULL, restore the value to "oldarg" and return NULL.
18277 * Must always be called in pairs!
18278 */
18279 char_u *
18280set_cmdarg(eap, oldarg)
18281 exarg_T *eap;
18282 char_u *oldarg;
18283{
18284 char_u *oldval;
18285 char_u *newval;
18286 unsigned len;
18287
Bram Moolenaare9a41262005-01-15 22:18:47 +000018288 oldval = vimvars[VV_CMDARG].vv_str;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018289 if (eap == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018290 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018291 vim_free(oldval);
Bram Moolenaare9a41262005-01-15 22:18:47 +000018292 vimvars[VV_CMDARG].vv_str = oldarg;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018293 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018294 }
18295
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018296 if (eap->force_bin == FORCE_BIN)
18297 len = 6;
18298 else if (eap->force_bin == FORCE_NOBIN)
18299 len = 8;
18300 else
18301 len = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018302
18303 if (eap->read_edit)
18304 len += 7;
18305
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018306 if (eap->force_ff != 0)
18307 len += (unsigned)STRLEN(eap->cmd + eap->force_ff) + 6;
18308# ifdef FEAT_MBYTE
18309 if (eap->force_enc != 0)
18310 len += (unsigned)STRLEN(eap->cmd + eap->force_enc) + 7;
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018311 if (eap->bad_char != 0)
18312 len += (unsigned)STRLEN(eap->cmd + eap->bad_char) + 7;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018313# endif
18314
18315 newval = alloc(len + 1);
18316 if (newval == NULL)
18317 return NULL;
18318
18319 if (eap->force_bin == FORCE_BIN)
18320 sprintf((char *)newval, " ++bin");
18321 else if (eap->force_bin == FORCE_NOBIN)
18322 sprintf((char *)newval, " ++nobin");
18323 else
18324 *newval = NUL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018325
18326 if (eap->read_edit)
18327 STRCAT(newval, " ++edit");
18328
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018329 if (eap->force_ff != 0)
18330 sprintf((char *)newval + STRLEN(newval), " ++ff=%s",
18331 eap->cmd + eap->force_ff);
18332# ifdef FEAT_MBYTE
18333 if (eap->force_enc != 0)
18334 sprintf((char *)newval + STRLEN(newval), " ++enc=%s",
18335 eap->cmd + eap->force_enc);
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018336 if (eap->bad_char != 0)
18337 sprintf((char *)newval + STRLEN(newval), " ++bad=%s",
18338 eap->cmd + eap->bad_char);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018339# endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000018340 vimvars[VV_CMDARG].vv_str = newval;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018341 return oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018342}
18343#endif
18344
18345/*
18346 * Get the value of internal variable "name".
18347 * Return OK or FAIL.
18348 */
18349 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018350get_var_tv(name, len, rettv, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018351 char_u *name;
18352 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +000018353 typval_T *rettv; /* NULL when only checking existence */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018354 int verbose; /* may give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018355{
18356 int ret = OK;
Bram Moolenaar33570922005-01-25 22:26:29 +000018357 typval_T *tv = NULL;
18358 typval_T atv;
18359 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018360 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018361
18362 /* truncate the name, so that we can use strcmp() */
18363 cc = name[len];
18364 name[len] = NUL;
18365
18366 /*
18367 * Check for "b:changedtick".
18368 */
18369 if (STRCMP(name, "b:changedtick") == 0)
18370 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000018371 atv.v_type = VAR_NUMBER;
18372 atv.vval.v_number = curbuf->b_changedtick;
18373 tv = &atv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018374 }
18375
18376 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018377 * Check for user-defined variables.
18378 */
18379 else
18380 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018381 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018382 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018383 tv = &v->di_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018384 }
18385
Bram Moolenaare9a41262005-01-15 22:18:47 +000018386 if (tv == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018387 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018388 if (rettv != NULL && verbose)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018389 EMSG2(_(e_undefvar), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018390 ret = FAIL;
18391 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018392 else if (rettv != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018393 copy_tv(tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018394
18395 name[len] = cc;
18396
18397 return ret;
18398}
18399
18400/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018401 * Handle expr[expr], expr[expr:expr] subscript and .name lookup.
18402 * Also handle function call with Funcref variable: func(expr)
18403 * Can all be combined: dict.func(expr)[idx]['func'](expr)
18404 */
18405 static int
18406handle_subscript(arg, rettv, evaluate, verbose)
18407 char_u **arg;
18408 typval_T *rettv;
18409 int evaluate; /* do more than finding the end */
18410 int verbose; /* give error messages */
18411{
18412 int ret = OK;
18413 dict_T *selfdict = NULL;
18414 char_u *s;
18415 int len;
Bram Moolenaard9fba312005-06-26 22:34:35 +000018416 typval_T functv;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018417
18418 while (ret == OK
18419 && (**arg == '['
18420 || (**arg == '.' && rettv->v_type == VAR_DICT)
18421 || (**arg == '(' && rettv->v_type == VAR_FUNC))
18422 && !vim_iswhite(*(*arg - 1)))
18423 {
18424 if (**arg == '(')
18425 {
Bram Moolenaard9fba312005-06-26 22:34:35 +000018426 /* need to copy the funcref so that we can clear rettv */
18427 functv = *rettv;
18428 rettv->v_type = VAR_UNKNOWN;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018429
18430 /* Invoke the function. Recursive! */
Bram Moolenaard9fba312005-06-26 22:34:35 +000018431 s = functv.vval.v_string;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018432 ret = get_func_tv(s, (int)STRLEN(s), rettv, arg,
Bram Moolenaard9fba312005-06-26 22:34:35 +000018433 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
18434 &len, evaluate, selfdict);
18435
18436 /* Clear the funcref afterwards, so that deleting it while
18437 * evaluating the arguments is possible (see test55). */
18438 clear_tv(&functv);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018439
18440 /* Stop the expression evaluation when immediately aborting on
18441 * error, or when an interrupt occurred or an exception was thrown
18442 * but not caught. */
18443 if (aborting())
18444 {
18445 if (ret == OK)
18446 clear_tv(rettv);
18447 ret = FAIL;
18448 }
18449 dict_unref(selfdict);
18450 selfdict = NULL;
18451 }
18452 else /* **arg == '[' || **arg == '.' */
18453 {
18454 dict_unref(selfdict);
18455 if (rettv->v_type == VAR_DICT)
18456 {
18457 selfdict = rettv->vval.v_dict;
18458 if (selfdict != NULL)
18459 ++selfdict->dv_refcount;
18460 }
18461 else
18462 selfdict = NULL;
18463 if (eval_index(arg, rettv, evaluate, verbose) == FAIL)
18464 {
18465 clear_tv(rettv);
18466 ret = FAIL;
18467 }
18468 }
18469 }
18470 dict_unref(selfdict);
18471 return ret;
18472}
18473
18474/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018475 * Allocate memory for a variable type-value, and make it empty (0 or NULL
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018476 * value).
18477 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018478 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018479alloc_tv()
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018480{
Bram Moolenaar33570922005-01-25 22:26:29 +000018481 return (typval_T *)alloc_clear((unsigned)sizeof(typval_T));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018482}
18483
18484/*
18485 * Allocate memory for a variable type-value, and assign a string to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018486 * The string "s" must have been allocated, it is consumed.
18487 * Return NULL for out of memory, the variable otherwise.
18488 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018489 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018490alloc_string_tv(s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018491 char_u *s;
18492{
Bram Moolenaar33570922005-01-25 22:26:29 +000018493 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018494
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018495 rettv = alloc_tv();
18496 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018497 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018498 rettv->v_type = VAR_STRING;
18499 rettv->vval.v_string = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018500 }
18501 else
18502 vim_free(s);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018503 return rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018504}
18505
18506/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018507 * Free the memory for a variable type-value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018508 */
Bram Moolenaar4770d092006-01-12 23:22:24 +000018509 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018510free_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018511 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018512{
18513 if (varp != NULL)
18514 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018515 switch (varp->v_type)
18516 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018517 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018518 func_unref(varp->vval.v_string);
18519 /*FALLTHROUGH*/
18520 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018521 vim_free(varp->vval.v_string);
18522 break;
18523 case VAR_LIST:
18524 list_unref(varp->vval.v_list);
18525 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018526 case VAR_DICT:
18527 dict_unref(varp->vval.v_dict);
18528 break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000018529 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018530#ifdef FEAT_FLOAT
18531 case VAR_FLOAT:
18532#endif
Bram Moolenaar758711c2005-02-02 23:11:38 +000018533 case VAR_UNKNOWN:
18534 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018535 default:
Bram Moolenaar758711c2005-02-02 23:11:38 +000018536 EMSG2(_(e_intern2), "free_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018537 break;
18538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018539 vim_free(varp);
18540 }
18541}
18542
18543/*
18544 * Free the memory for a variable value and set the value to NULL or 0.
18545 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018546 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018547clear_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018548 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018549{
18550 if (varp != NULL)
18551 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018552 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018553 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018554 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018555 func_unref(varp->vval.v_string);
18556 /*FALLTHROUGH*/
18557 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018558 vim_free(varp->vval.v_string);
18559 varp->vval.v_string = NULL;
18560 break;
18561 case VAR_LIST:
18562 list_unref(varp->vval.v_list);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018563 varp->vval.v_list = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018564 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018565 case VAR_DICT:
18566 dict_unref(varp->vval.v_dict);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018567 varp->vval.v_dict = NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018568 break;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018569 case VAR_NUMBER:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018570 varp->vval.v_number = 0;
18571 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018572#ifdef FEAT_FLOAT
18573 case VAR_FLOAT:
18574 varp->vval.v_float = 0.0;
18575 break;
18576#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018577 case VAR_UNKNOWN:
18578 break;
18579 default:
18580 EMSG2(_(e_intern2), "clear_tv()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000018581 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018582 varp->v_lock = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018583 }
18584}
18585
18586/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018587 * Set the value of a variable to NULL without freeing items.
18588 */
18589 static void
18590init_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018591 typval_T *varp;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018592{
18593 if (varp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018594 vim_memset(varp, 0, sizeof(typval_T));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018595}
18596
18597/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018598 * Get the number value of a variable.
18599 * If it is a String variable, uses vim_str2nr().
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018600 * For incompatible types, return 0.
18601 * get_tv_number_chk() is similar to get_tv_number(), but informs the
18602 * caller of incompatible types: it sets *denote to TRUE if "denote"
18603 * is not NULL or returns -1 otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018604 */
18605 static long
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018606get_tv_number(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018607 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018608{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018609 int error = FALSE;
18610
18611 return get_tv_number_chk(varp, &error); /* return 0L on error */
18612}
18613
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018614 long
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018615get_tv_number_chk(varp, denote)
18616 typval_T *varp;
18617 int *denote;
18618{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018619 long n = 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018620
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018621 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018622 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018623 case VAR_NUMBER:
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018624 return (long)(varp->vval.v_number);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018625#ifdef FEAT_FLOAT
18626 case VAR_FLOAT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018627 EMSG(_("E805: Using a Float as a Number"));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018628 break;
18629#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018630 case VAR_FUNC:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018631 EMSG(_("E703: Using a Funcref as a Number"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018632 break;
18633 case VAR_STRING:
18634 if (varp->vval.v_string != NULL)
18635 vim_str2nr(varp->vval.v_string, NULL, NULL,
18636 TRUE, TRUE, &n, NULL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018637 return n;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018638 case VAR_LIST:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018639 EMSG(_("E745: Using a List as a Number"));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018640 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018641 case VAR_DICT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018642 EMSG(_("E728: Using a Dictionary as a Number"));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018643 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018644 default:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018645 EMSG2(_(e_intern2), "get_tv_number()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018646 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018647 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018648 if (denote == NULL) /* useful for values that must be unsigned */
18649 n = -1;
18650 else
18651 *denote = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018652 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018653}
18654
18655/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018656 * Get the lnum from the first argument.
18657 * Also accepts ".", "$", etc., but that only works for the current buffer.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018658 * Returns -1 on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018659 */
18660 static linenr_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018661get_tv_lnum(argvars)
Bram Moolenaar33570922005-01-25 22:26:29 +000018662 typval_T *argvars;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018663{
Bram Moolenaar33570922005-01-25 22:26:29 +000018664 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018665 linenr_T lnum;
18666
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018667 lnum = get_tv_number_chk(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018668 if (lnum == 0) /* no valid number, try using line() */
18669 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018670 rettv.v_type = VAR_NUMBER;
18671 f_line(argvars, &rettv);
18672 lnum = rettv.vval.v_number;
18673 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018674 }
18675 return lnum;
18676}
18677
18678/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018679 * Get the lnum from the first argument.
18680 * Also accepts "$", then "buf" is used.
18681 * Returns 0 on error.
18682 */
18683 static linenr_T
18684get_tv_lnum_buf(argvars, buf)
18685 typval_T *argvars;
18686 buf_T *buf;
18687{
18688 if (argvars[0].v_type == VAR_STRING
18689 && argvars[0].vval.v_string != NULL
18690 && argvars[0].vval.v_string[0] == '$'
18691 && buf != NULL)
18692 return buf->b_ml.ml_line_count;
18693 return get_tv_number_chk(&argvars[0], NULL);
18694}
18695
18696/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018697 * Get the string value of a variable.
18698 * If it is a Number variable, the number is converted into a string.
Bram Moolenaara7043832005-01-21 11:56:39 +000018699 * get_tv_string() uses a single, static buffer. YOU CAN ONLY USE IT ONCE!
18700 * get_tv_string_buf() uses a given buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018701 * If the String variable has never been set, return an empty string.
18702 * Never returns NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018703 * get_tv_string_chk() and get_tv_string_buf_chk() are similar, but return
18704 * NULL on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018705 */
18706 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018707get_tv_string(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018708 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018709{
18710 static char_u mybuf[NUMBUFLEN];
18711
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018712 return get_tv_string_buf(varp, mybuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018713}
18714
18715 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018716get_tv_string_buf(varp, buf)
Bram Moolenaar33570922005-01-25 22:26:29 +000018717 typval_T *varp;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018718 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018719{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018720 char_u *res = get_tv_string_buf_chk(varp, buf);
18721
18722 return res != NULL ? res : (char_u *)"";
18723}
18724
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018725 char_u *
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018726get_tv_string_chk(varp)
18727 typval_T *varp;
18728{
18729 static char_u mybuf[NUMBUFLEN];
18730
18731 return get_tv_string_buf_chk(varp, mybuf);
18732}
18733
18734 static char_u *
18735get_tv_string_buf_chk(varp, buf)
18736 typval_T *varp;
18737 char_u *buf;
18738{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018739 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018740 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018741 case VAR_NUMBER:
18742 sprintf((char *)buf, "%ld", (long)varp->vval.v_number);
18743 return buf;
18744 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018745 EMSG(_("E729: using Funcref as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018746 break;
18747 case VAR_LIST:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018748 EMSG(_("E730: using List as a String"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000018749 break;
18750 case VAR_DICT:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018751 EMSG(_("E731: using Dictionary as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018752 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018753#ifdef FEAT_FLOAT
18754 case VAR_FLOAT:
18755 EMSG(_("E806: using Float as a String"));
18756 break;
18757#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018758 case VAR_STRING:
18759 if (varp->vval.v_string != NULL)
18760 return varp->vval.v_string;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018761 return (char_u *)"";
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018762 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018763 EMSG2(_(e_intern2), "get_tv_string_buf()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018764 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018765 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018766 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018767}
18768
18769/*
18770 * Find variable "name" in the list of variables.
18771 * Return a pointer to it if found, NULL if not found.
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018772 * Careful: "a:0" variables don't have a name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018773 * When "htp" is not NULL we are writing to the variable, set "htp" to the
Bram Moolenaar33570922005-01-25 22:26:29 +000018774 * hashtab_T used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018775 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018776 static dictitem_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018777find_var(name, htp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018778 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000018779 hashtab_T **htp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018780{
Bram Moolenaar071d4272004-06-13 20:20:40 +000018781 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000018782 hashtab_T *ht;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018783
Bram Moolenaara7043832005-01-21 11:56:39 +000018784 ht = find_var_ht(name, &varname);
18785 if (htp != NULL)
18786 *htp = ht;
18787 if (ht == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018788 return NULL;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018789 return find_var_in_ht(ht, varname, htp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018790}
18791
18792/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018793 * Find variable "varname" in hashtab "ht".
Bram Moolenaara7043832005-01-21 11:56:39 +000018794 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018795 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018796 static dictitem_T *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018797find_var_in_ht(ht, varname, writing)
Bram Moolenaar33570922005-01-25 22:26:29 +000018798 hashtab_T *ht;
Bram Moolenaara7043832005-01-21 11:56:39 +000018799 char_u *varname;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018800 int writing;
Bram Moolenaara7043832005-01-21 11:56:39 +000018801{
Bram Moolenaar33570922005-01-25 22:26:29 +000018802 hashitem_T *hi;
18803
18804 if (*varname == NUL)
18805 {
18806 /* Must be something like "s:", otherwise "ht" would be NULL. */
18807 switch (varname[-2])
18808 {
18809 case 's': return &SCRIPT_SV(current_SID).sv_var;
18810 case 'g': return &globvars_var;
18811 case 'v': return &vimvars_var;
18812 case 'b': return &curbuf->b_bufvar;
18813 case 'w': return &curwin->w_winvar;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018814#ifdef FEAT_WINDOWS
18815 case 't': return &curtab->tp_winvar;
18816#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000018817 case 'l': return current_funccal == NULL
18818 ? NULL : &current_funccal->l_vars_var;
18819 case 'a': return current_funccal == NULL
18820 ? NULL : &current_funccal->l_avars_var;
Bram Moolenaar33570922005-01-25 22:26:29 +000018821 }
18822 return NULL;
18823 }
Bram Moolenaara7043832005-01-21 11:56:39 +000018824
18825 hi = hash_find(ht, varname);
18826 if (HASHITEM_EMPTY(hi))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018827 {
18828 /* For global variables we may try auto-loading the script. If it
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018829 * worked find the variable again. Don't auto-load a script if it was
18830 * loaded already, otherwise it would be loaded every time when
18831 * checking if a function name is a Funcref variable. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018832 if (ht == &globvarht && !writing
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018833 && script_autoload(varname, FALSE) && !aborting())
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018834 hi = hash_find(ht, varname);
18835 if (HASHITEM_EMPTY(hi))
18836 return NULL;
18837 }
Bram Moolenaar33570922005-01-25 22:26:29 +000018838 return HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000018839}
18840
18841/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018842 * Find the hashtab used for a variable name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018843 * Set "varname" to the start of name without ':'.
18844 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018845 static hashtab_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018846find_var_ht(name, varname)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018847 char_u *name;
18848 char_u **varname;
18849{
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018850 hashitem_T *hi;
18851
Bram Moolenaar071d4272004-06-13 20:20:40 +000018852 if (name[1] != ':')
18853 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018854 /* The name must not start with a colon or #. */
18855 if (name[0] == ':' || name[0] == AUTOLOAD_CHAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018856 return NULL;
18857 *varname = name;
Bram Moolenaar532c7802005-01-27 14:44:31 +000018858
18859 /* "version" is "v:version" in all scopes */
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018860 hi = hash_find(&compat_hashtab, name);
18861 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar532c7802005-01-27 14:44:31 +000018862 return &compat_hashtab;
18863
Bram Moolenaar071d4272004-06-13 20:20:40 +000018864 if (current_funccal == NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018865 return &globvarht; /* global variable */
18866 return &current_funccal->l_vars.dv_hashtab; /* l: variable */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018867 }
18868 *varname = name + 2;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018869 if (*name == 'g') /* global variable */
18870 return &globvarht;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018871 /* There must be no ':' or '#' in the rest of the name, unless g: is used
18872 */
18873 if (vim_strchr(name + 2, ':') != NULL
18874 || vim_strchr(name + 2, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018875 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018876 if (*name == 'b') /* buffer variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018877 return &curbuf->b_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018878 if (*name == 'w') /* window variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018879 return &curwin->w_vars.dv_hashtab;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018880#ifdef FEAT_WINDOWS
18881 if (*name == 't') /* tab page variable */
18882 return &curtab->tp_vars.dv_hashtab;
18883#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000018884 if (*name == 'v') /* v: variable */
18885 return &vimvarht;
18886 if (*name == 'a' && current_funccal != NULL) /* function argument */
18887 return &current_funccal->l_avars.dv_hashtab;
18888 if (*name == 'l' && current_funccal != NULL) /* local function variable */
18889 return &current_funccal->l_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018890 if (*name == 's' /* script variable */
18891 && current_SID > 0 && current_SID <= ga_scripts.ga_len)
18892 return &SCRIPT_VARS(current_SID);
18893 return NULL;
18894}
18895
18896/*
18897 * Get the string value of a (global/local) variable.
18898 * Returns NULL when it doesn't exist.
18899 */
18900 char_u *
18901get_var_value(name)
18902 char_u *name;
18903{
Bram Moolenaar33570922005-01-25 22:26:29 +000018904 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018905
Bram Moolenaara7043832005-01-21 11:56:39 +000018906 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018907 if (v == NULL)
18908 return NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000018909 return get_tv_string(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018910}
18911
18912/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018913 * Allocate a new hashtab for a sourced script. It will be used while
Bram Moolenaar071d4272004-06-13 20:20:40 +000018914 * sourcing this script and when executing functions defined in the script.
18915 */
18916 void
18917new_script_vars(id)
18918 scid_T id;
18919{
Bram Moolenaara7043832005-01-21 11:56:39 +000018920 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +000018921 hashtab_T *ht;
18922 scriptvar_T *sv;
Bram Moolenaara7043832005-01-21 11:56:39 +000018923
Bram Moolenaar071d4272004-06-13 20:20:40 +000018924 if (ga_grow(&ga_scripts, (int)(id - ga_scripts.ga_len)) == OK)
18925 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018926 /* Re-allocating ga_data means that an ht_array pointing to
18927 * ht_smallarray becomes invalid. We can recognize this: ht_mask is
Bram Moolenaar33570922005-01-25 22:26:29 +000018928 * at its init value. Also reset "v_dict", it's always the same. */
Bram Moolenaara7043832005-01-21 11:56:39 +000018929 for (i = 1; i <= ga_scripts.ga_len; ++i)
18930 {
18931 ht = &SCRIPT_VARS(i);
18932 if (ht->ht_mask == HT_INIT_SIZE - 1)
18933 ht->ht_array = ht->ht_smallarray;
Bram Moolenaar33570922005-01-25 22:26:29 +000018934 sv = &SCRIPT_SV(i);
18935 sv->sv_var.di_tv.vval.v_dict = &sv->sv_dict;
Bram Moolenaara7043832005-01-21 11:56:39 +000018936 }
18937
Bram Moolenaar071d4272004-06-13 20:20:40 +000018938 while (ga_scripts.ga_len < id)
18939 {
Bram Moolenaar33570922005-01-25 22:26:29 +000018940 sv = &SCRIPT_SV(ga_scripts.ga_len + 1);
18941 init_var_dict(&sv->sv_dict, &sv->sv_var);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018942 ++ga_scripts.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018943 }
18944 }
18945}
18946
18947/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018948 * Initialize dictionary "dict" as a scope and set variable "dict_var" to
18949 * point to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018950 */
18951 void
Bram Moolenaar33570922005-01-25 22:26:29 +000018952init_var_dict(dict, dict_var)
18953 dict_T *dict;
18954 dictitem_T *dict_var;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018955{
Bram Moolenaar33570922005-01-25 22:26:29 +000018956 hash_init(&dict->dv_hashtab);
18957 dict->dv_refcount = 99999;
18958 dict_var->di_tv.vval.v_dict = dict;
18959 dict_var->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018960 dict_var->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000018961 dict_var->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
18962 dict_var->di_key[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018963}
18964
18965/*
18966 * Clean up a list of internal variables.
Bram Moolenaar33570922005-01-25 22:26:29 +000018967 * Frees all allocated variables and the value they contain.
18968 * Clears hashtab "ht", does not free it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018969 */
18970 void
Bram Moolenaara7043832005-01-21 11:56:39 +000018971vars_clear(ht)
Bram Moolenaar33570922005-01-25 22:26:29 +000018972 hashtab_T *ht;
18973{
18974 vars_clear_ext(ht, TRUE);
18975}
18976
18977/*
18978 * Like vars_clear(), but only free the value if "free_val" is TRUE.
18979 */
18980 static void
18981vars_clear_ext(ht, free_val)
18982 hashtab_T *ht;
18983 int free_val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018984{
Bram Moolenaara7043832005-01-21 11:56:39 +000018985 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000018986 hashitem_T *hi;
18987 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018988
Bram Moolenaar33570922005-01-25 22:26:29 +000018989 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018990 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +000018991 for (hi = ht->ht_array; todo > 0; ++hi)
18992 {
18993 if (!HASHITEM_EMPTY(hi))
18994 {
18995 --todo;
18996
Bram Moolenaar33570922005-01-25 22:26:29 +000018997 /* Free the variable. Don't remove it from the hashtab,
Bram Moolenaara7043832005-01-21 11:56:39 +000018998 * ht_array might change then. hash_clear() takes care of it
18999 * later. */
Bram Moolenaar33570922005-01-25 22:26:29 +000019000 v = HI2DI(hi);
19001 if (free_val)
19002 clear_tv(&v->di_tv);
19003 if ((v->di_flags & DI_FLAGS_FIX) == 0)
19004 vim_free(v);
Bram Moolenaara7043832005-01-21 11:56:39 +000019005 }
19006 }
19007 hash_clear(ht);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000019008 ht->ht_used = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019009}
19010
Bram Moolenaara7043832005-01-21 11:56:39 +000019011/*
Bram Moolenaar33570922005-01-25 22:26:29 +000019012 * Delete a variable from hashtab "ht" at item "hi".
19013 * Clear the variable value and free the dictitem.
Bram Moolenaara7043832005-01-21 11:56:39 +000019014 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019015 static void
Bram Moolenaara7043832005-01-21 11:56:39 +000019016delete_var(ht, hi)
Bram Moolenaar33570922005-01-25 22:26:29 +000019017 hashtab_T *ht;
19018 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019019{
Bram Moolenaar33570922005-01-25 22:26:29 +000019020 dictitem_T *di = HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000019021
19022 hash_remove(ht, hi);
Bram Moolenaar33570922005-01-25 22:26:29 +000019023 clear_tv(&di->di_tv);
19024 vim_free(di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019025}
19026
19027/*
19028 * List the value of one internal variable.
19029 */
19030 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019031list_one_var(v, prefix, first)
Bram Moolenaar33570922005-01-25 22:26:29 +000019032 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019033 char_u *prefix;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019034 int *first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019035{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019036 char_u *tofree;
19037 char_u *s;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019038 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019039
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000019040 s = echo_string(&v->di_tv, &tofree, numbuf, ++current_copyID);
Bram Moolenaar33570922005-01-25 22:26:29 +000019041 list_one_var_a(prefix, v->di_key, v->di_tv.v_type,
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019042 s == NULL ? (char_u *)"" : s, first);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019043 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019044}
19045
Bram Moolenaar071d4272004-06-13 20:20:40 +000019046 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019047list_one_var_a(prefix, name, type, string, first)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019048 char_u *prefix;
19049 char_u *name;
19050 int type;
19051 char_u *string;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019052 int *first; /* when TRUE clear rest of screen and set to FALSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019053{
Bram Moolenaar31859182007-08-14 20:41:13 +000019054 /* don't use msg() or msg_attr() to avoid overwriting "v:statusmsg" */
19055 msg_start();
19056 msg_puts(prefix);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019057 if (name != NULL) /* "a:" vars don't have a name stored */
19058 msg_puts(name);
19059 msg_putchar(' ');
19060 msg_advance(22);
19061 if (type == VAR_NUMBER)
19062 msg_putchar('#');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019063 else if (type == VAR_FUNC)
19064 msg_putchar('*');
19065 else if (type == VAR_LIST)
19066 {
19067 msg_putchar('[');
19068 if (*string == '[')
19069 ++string;
19070 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000019071 else if (type == VAR_DICT)
19072 {
19073 msg_putchar('{');
19074 if (*string == '{')
19075 ++string;
19076 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019077 else
19078 msg_putchar(' ');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019079
Bram Moolenaar071d4272004-06-13 20:20:40 +000019080 msg_outtrans(string);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019081
19082 if (type == VAR_FUNC)
19083 msg_puts((char_u *)"()");
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019084 if (*first)
19085 {
19086 msg_clr_eos();
19087 *first = FALSE;
19088 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019089}
19090
19091/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019092 * Set variable "name" to value in "tv".
Bram Moolenaar071d4272004-06-13 20:20:40 +000019093 * If the variable already exists, the value is updated.
19094 * Otherwise the variable is created.
19095 */
19096 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019097set_var(name, tv, copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019098 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000019099 typval_T *tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019100 int copy; /* make copy of value in "tv" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019101{
Bram Moolenaar33570922005-01-25 22:26:29 +000019102 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019103 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000019104 hashtab_T *ht;
Bram Moolenaar92124a32005-06-17 22:03:40 +000019105 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019106
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019107 if (tv->v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019108 {
19109 if (!(vim_strchr((char_u *)"wbs", name[0]) != NULL && name[1] == ':')
19110 && !ASCII_ISUPPER((name[0] != NUL && name[1] == ':')
19111 ? name[2] : name[0]))
19112 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019113 EMSG2(_("E704: Funcref variable name must start with a capital: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019114 return;
19115 }
19116 if (function_exists(name))
19117 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000019118 EMSG2(_("E705: Variable name conflicts with existing function: %s"),
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019119 name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019120 return;
19121 }
19122 }
19123
Bram Moolenaara7043832005-01-21 11:56:39 +000019124 ht = find_var_ht(name, &varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019125 if (ht == NULL || *varname == NUL)
Bram Moolenaara7043832005-01-21 11:56:39 +000019126 {
Bram Moolenaar92124a32005-06-17 22:03:40 +000019127 EMSG2(_(e_illvar), name);
Bram Moolenaara7043832005-01-21 11:56:39 +000019128 return;
19129 }
19130
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019131 v = find_var_in_ht(ht, varname, TRUE);
Bram Moolenaar33570922005-01-25 22:26:29 +000019132 if (v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019133 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019134 /* existing variable, need to clear the value */
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019135 if (var_check_ro(v->di_flags, name)
19136 || tv_check_lock(v->di_tv.v_lock, name))
Bram Moolenaar33570922005-01-25 22:26:29 +000019137 return;
19138 if (v->di_tv.v_type != tv->v_type
19139 && !((v->di_tv.v_type == VAR_STRING
19140 || v->di_tv.v_type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019141 && (tv->v_type == VAR_STRING
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019142 || tv->v_type == VAR_NUMBER))
19143#ifdef FEAT_FLOAT
19144 && !((v->di_tv.v_type == VAR_NUMBER
19145 || v->di_tv.v_type == VAR_FLOAT)
19146 && (tv->v_type == VAR_NUMBER
19147 || tv->v_type == VAR_FLOAT))
19148#endif
19149 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019150 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019151 EMSG2(_("E706: Variable type mismatch for: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019152 return;
19153 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019154
19155 /*
Bram Moolenaar758711c2005-02-02 23:11:38 +000019156 * Handle setting internal v: variables separately: we don't change
19157 * the type.
Bram Moolenaar33570922005-01-25 22:26:29 +000019158 */
19159 if (ht == &vimvarht)
19160 {
19161 if (v->di_tv.v_type == VAR_STRING)
19162 {
19163 vim_free(v->di_tv.vval.v_string);
19164 if (copy || tv->v_type != VAR_STRING)
19165 v->di_tv.vval.v_string = vim_strsave(get_tv_string(tv));
19166 else
19167 {
19168 /* Take over the string to avoid an extra alloc/free. */
19169 v->di_tv.vval.v_string = tv->vval.v_string;
19170 tv->vval.v_string = NULL;
19171 }
19172 }
19173 else if (v->di_tv.v_type != VAR_NUMBER)
19174 EMSG2(_(e_intern2), "set_var()");
19175 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019176 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019177 v->di_tv.vval.v_number = get_tv_number(tv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019178 if (STRCMP(varname, "searchforward") == 0)
19179 set_search_direction(v->di_tv.vval.v_number ? '/' : '?');
19180 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019181 return;
19182 }
19183
19184 clear_tv(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019185 }
19186 else /* add a new variable */
19187 {
Bram Moolenaar5fcc3fe2006-06-22 15:35:14 +000019188 /* Can't add "v:" variable. */
19189 if (ht == &vimvarht)
19190 {
19191 EMSG2(_(e_illvar), name);
19192 return;
19193 }
19194
Bram Moolenaar92124a32005-06-17 22:03:40 +000019195 /* Make sure the variable name is valid. */
19196 for (p = varname; *p != NUL; ++p)
Bram Moolenaara5792f52005-11-23 21:25:05 +000019197 if (!eval_isnamec1(*p) && (p == varname || !VIM_ISDIGIT(*p))
19198 && *p != AUTOLOAD_CHAR)
Bram Moolenaar92124a32005-06-17 22:03:40 +000019199 {
19200 EMSG2(_(e_illvar), varname);
19201 return;
19202 }
19203
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019204 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
19205 + STRLEN(varname)));
Bram Moolenaara7043832005-01-21 11:56:39 +000019206 if (v == NULL)
19207 return;
Bram Moolenaar33570922005-01-25 22:26:29 +000019208 STRCPY(v->di_key, varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019209 if (hash_add(ht, DI2HIKEY(v)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019210 {
Bram Moolenaara7043832005-01-21 11:56:39 +000019211 vim_free(v);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019212 return;
19213 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019214 v->di_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019215 }
Bram Moolenaara7043832005-01-21 11:56:39 +000019216
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019217 if (copy || tv->v_type == VAR_NUMBER || tv->v_type == VAR_FLOAT)
Bram Moolenaar33570922005-01-25 22:26:29 +000019218 copy_tv(tv, &v->di_tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019219 else
19220 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019221 v->di_tv = *tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019222 v->di_tv.v_lock = 0;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019223 init_tv(tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019224 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019225}
19226
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019227/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019228 * Return TRUE if di_flags "flags" indicates variable "name" is read-only.
Bram Moolenaar33570922005-01-25 22:26:29 +000019229 * Also give an error message.
19230 */
19231 static int
19232var_check_ro(flags, name)
19233 int flags;
19234 char_u *name;
19235{
19236 if (flags & DI_FLAGS_RO)
19237 {
19238 EMSG2(_(e_readonlyvar), name);
19239 return TRUE;
19240 }
19241 if ((flags & DI_FLAGS_RO_SBX) && sandbox)
19242 {
19243 EMSG2(_(e_readonlysbx), name);
19244 return TRUE;
19245 }
19246 return FALSE;
19247}
19248
19249/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019250 * Return TRUE if di_flags "flags" indicates variable "name" is fixed.
19251 * Also give an error message.
19252 */
19253 static int
19254var_check_fixed(flags, name)
19255 int flags;
19256 char_u *name;
19257{
19258 if (flags & DI_FLAGS_FIX)
19259 {
19260 EMSG2(_("E795: Cannot delete variable %s"), name);
19261 return TRUE;
19262 }
19263 return FALSE;
19264}
19265
19266/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019267 * Return TRUE if typeval "tv" is set to be locked (immutable).
19268 * Also give an error message, using "name".
19269 */
19270 static int
19271tv_check_lock(lock, name)
19272 int lock;
19273 char_u *name;
19274{
19275 if (lock & VAR_LOCKED)
19276 {
19277 EMSG2(_("E741: Value is locked: %s"),
19278 name == NULL ? (char_u *)_("Unknown") : name);
19279 return TRUE;
19280 }
19281 if (lock & VAR_FIXED)
19282 {
19283 EMSG2(_("E742: Cannot change value of %s"),
19284 name == NULL ? (char_u *)_("Unknown") : name);
19285 return TRUE;
19286 }
19287 return FALSE;
19288}
19289
19290/*
Bram Moolenaar33570922005-01-25 22:26:29 +000019291 * Copy the values from typval_T "from" to typval_T "to".
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019292 * When needed allocates string or increases reference count.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019293 * Does not make a copy of a list or dict but copies the reference!
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019294 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019295 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019296copy_tv(from, to)
Bram Moolenaar33570922005-01-25 22:26:29 +000019297 typval_T *from;
19298 typval_T *to;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019299{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019300 to->v_type = from->v_type;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019301 to->v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019302 switch (from->v_type)
19303 {
19304 case VAR_NUMBER:
19305 to->vval.v_number = from->vval.v_number;
19306 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019307#ifdef FEAT_FLOAT
19308 case VAR_FLOAT:
19309 to->vval.v_float = from->vval.v_float;
19310 break;
19311#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019312 case VAR_STRING:
19313 case VAR_FUNC:
19314 if (from->vval.v_string == NULL)
19315 to->vval.v_string = NULL;
19316 else
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019317 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019318 to->vval.v_string = vim_strsave(from->vval.v_string);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019319 if (from->v_type == VAR_FUNC)
19320 func_ref(to->vval.v_string);
19321 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019322 break;
19323 case VAR_LIST:
19324 if (from->vval.v_list == NULL)
19325 to->vval.v_list = NULL;
19326 else
19327 {
19328 to->vval.v_list = from->vval.v_list;
19329 ++to->vval.v_list->lv_refcount;
19330 }
19331 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000019332 case VAR_DICT:
19333 if (from->vval.v_dict == NULL)
19334 to->vval.v_dict = NULL;
19335 else
19336 {
19337 to->vval.v_dict = from->vval.v_dict;
19338 ++to->vval.v_dict->dv_refcount;
19339 }
19340 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019341 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019342 EMSG2(_(e_intern2), "copy_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019343 break;
19344 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019345}
19346
19347/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000019348 * Make a copy of an item.
19349 * Lists and Dictionaries are also copied. A deep copy if "deep" is set.
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019350 * For deepcopy() "copyID" is zero for a full copy or the ID for when a
19351 * reference to an already copied list/dict can be used.
19352 * Returns FAIL or OK.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019353 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019354 static int
19355item_copy(from, to, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +000019356 typval_T *from;
19357 typval_T *to;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019358 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019359 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019360{
19361 static int recurse = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019362 int ret = OK;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019363
Bram Moolenaar33570922005-01-25 22:26:29 +000019364 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +000019365 {
19366 EMSG(_("E698: variable nested too deep for making a copy"));
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019367 return FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019368 }
19369 ++recurse;
19370
19371 switch (from->v_type)
19372 {
19373 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019374#ifdef FEAT_FLOAT
19375 case VAR_FLOAT:
19376#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000019377 case VAR_STRING:
19378 case VAR_FUNC:
19379 copy_tv(from, to);
19380 break;
19381 case VAR_LIST:
19382 to->v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019383 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019384 if (from->vval.v_list == NULL)
19385 to->vval.v_list = NULL;
19386 else if (copyID != 0 && from->vval.v_list->lv_copyID == copyID)
19387 {
19388 /* use the copy made earlier */
19389 to->vval.v_list = from->vval.v_list->lv_copylist;
19390 ++to->vval.v_list->lv_refcount;
19391 }
19392 else
19393 to->vval.v_list = list_copy(from->vval.v_list, deep, copyID);
19394 if (to->vval.v_list == NULL)
19395 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019396 break;
19397 case VAR_DICT:
19398 to->v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019399 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019400 if (from->vval.v_dict == NULL)
19401 to->vval.v_dict = NULL;
19402 else if (copyID != 0 && from->vval.v_dict->dv_copyID == copyID)
19403 {
19404 /* use the copy made earlier */
19405 to->vval.v_dict = from->vval.v_dict->dv_copydict;
19406 ++to->vval.v_dict->dv_refcount;
19407 }
19408 else
19409 to->vval.v_dict = dict_copy(from->vval.v_dict, deep, copyID);
19410 if (to->vval.v_dict == NULL)
19411 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019412 break;
19413 default:
19414 EMSG2(_(e_intern2), "item_copy()");
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019415 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019416 }
19417 --recurse;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019418 return ret;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019419}
19420
19421/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000019422 * ":echo expr1 ..." print each argument separated with a space, add a
19423 * newline at the end.
19424 * ":echon expr1 ..." print each argument plain.
19425 */
19426 void
19427ex_echo(eap)
19428 exarg_T *eap;
19429{
19430 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019431 typval_T rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019432 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019433 char_u *p;
19434 int needclr = TRUE;
19435 int atstart = TRUE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019436 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000019437
19438 if (eap->skip)
19439 ++emsg_skip;
19440 while (*arg != NUL && *arg != '|' && *arg != '\n' && !got_int)
19441 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019442 /* If eval1() causes an error message the text from the command may
19443 * still need to be cleared. E.g., "echo 22,44". */
19444 need_clr_eos = needclr;
19445
Bram Moolenaar071d4272004-06-13 20:20:40 +000019446 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019447 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019448 {
19449 /*
19450 * Report the invalid expression unless the expression evaluation
19451 * has been cancelled due to an aborting error, an interrupt, or an
19452 * exception.
19453 */
19454 if (!aborting())
19455 EMSG2(_(e_invexpr2), p);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019456 need_clr_eos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019457 break;
19458 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019459 need_clr_eos = FALSE;
19460
Bram Moolenaar071d4272004-06-13 20:20:40 +000019461 if (!eap->skip)
19462 {
19463 if (atstart)
19464 {
19465 atstart = FALSE;
19466 /* Call msg_start() after eval1(), evaluating the expression
19467 * may cause a message to appear. */
19468 if (eap->cmdidx == CMD_echo)
19469 msg_start();
19470 }
19471 else if (eap->cmdidx == CMD_echo)
19472 msg_puts_attr((char_u *)" ", echo_attr);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000019473 p = echo_string(&rettv, &tofree, numbuf, ++current_copyID);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019474 if (p != NULL)
19475 for ( ; *p != NUL && !got_int; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019476 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019477 if (*p == '\n' || *p == '\r' || *p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019478 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019479 if (*p != TAB && needclr)
19480 {
19481 /* remove any text still there from the command */
19482 msg_clr_eos();
19483 needclr = FALSE;
19484 }
19485 msg_putchar_attr(*p, echo_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019486 }
19487 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019488 {
19489#ifdef FEAT_MBYTE
19490 if (has_mbyte)
19491 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000019492 int i = (*mb_ptr2len)(p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019493
19494 (void)msg_outtrans_len_attr(p, i, echo_attr);
19495 p += i - 1;
19496 }
19497 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000019498#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019499 (void)msg_outtrans_len_attr(p, 1, echo_attr);
19500 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019501 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019502 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019503 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019504 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019505 arg = skipwhite(arg);
19506 }
19507 eap->nextcmd = check_nextcmd(arg);
19508
19509 if (eap->skip)
19510 --emsg_skip;
19511 else
19512 {
19513 /* remove text that may still be there from the command */
19514 if (needclr)
19515 msg_clr_eos();
19516 if (eap->cmdidx == CMD_echo)
19517 msg_end();
19518 }
19519}
19520
19521/*
19522 * ":echohl {name}".
19523 */
19524 void
19525ex_echohl(eap)
19526 exarg_T *eap;
19527{
19528 int id;
19529
19530 id = syn_name2id(eap->arg);
19531 if (id == 0)
19532 echo_attr = 0;
19533 else
19534 echo_attr = syn_id2attr(id);
19535}
19536
19537/*
19538 * ":execute expr1 ..." execute the result of an expression.
19539 * ":echomsg expr1 ..." Print a message
19540 * ":echoerr expr1 ..." Print an error
19541 * Each gets spaces around each argument and a newline at the end for
19542 * echo commands
19543 */
19544 void
19545ex_execute(eap)
19546 exarg_T *eap;
19547{
19548 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019549 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019550 int ret = OK;
19551 char_u *p;
19552 garray_T ga;
19553 int len;
19554 int save_did_emsg;
19555
19556 ga_init2(&ga, 1, 80);
19557
19558 if (eap->skip)
19559 ++emsg_skip;
19560 while (*arg != NUL && *arg != '|' && *arg != '\n')
19561 {
19562 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019563 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019564 {
19565 /*
19566 * Report the invalid expression unless the expression evaluation
19567 * has been cancelled due to an aborting error, an interrupt, or an
19568 * exception.
19569 */
19570 if (!aborting())
19571 EMSG2(_(e_invexpr2), p);
19572 ret = FAIL;
19573 break;
19574 }
19575
19576 if (!eap->skip)
19577 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019578 p = get_tv_string(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019579 len = (int)STRLEN(p);
19580 if (ga_grow(&ga, len + 2) == FAIL)
19581 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019582 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019583 ret = FAIL;
19584 break;
19585 }
19586 if (ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019587 ((char_u *)(ga.ga_data))[ga.ga_len++] = ' ';
Bram Moolenaar071d4272004-06-13 20:20:40 +000019588 STRCPY((char_u *)(ga.ga_data) + ga.ga_len, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019589 ga.ga_len += len;
19590 }
19591
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019592 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019593 arg = skipwhite(arg);
19594 }
19595
19596 if (ret != FAIL && ga.ga_data != NULL)
19597 {
19598 if (eap->cmdidx == CMD_echomsg)
Bram Moolenaar4770d092006-01-12 23:22:24 +000019599 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000019600 MSG_ATTR(ga.ga_data, echo_attr);
Bram Moolenaar4770d092006-01-12 23:22:24 +000019601 out_flush();
19602 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019603 else if (eap->cmdidx == CMD_echoerr)
19604 {
19605 /* We don't want to abort following commands, restore did_emsg. */
19606 save_did_emsg = did_emsg;
19607 EMSG((char_u *)ga.ga_data);
19608 if (!force_abort)
19609 did_emsg = save_did_emsg;
19610 }
19611 else if (eap->cmdidx == CMD_execute)
19612 do_cmdline((char_u *)ga.ga_data,
19613 eap->getline, eap->cookie, DOCMD_NOWAIT|DOCMD_VERBOSE);
19614 }
19615
19616 ga_clear(&ga);
19617
19618 if (eap->skip)
19619 --emsg_skip;
19620
19621 eap->nextcmd = check_nextcmd(arg);
19622}
19623
19624/*
19625 * Skip over the name of an option: "&option", "&g:option" or "&l:option".
19626 * "arg" points to the "&" or '+' when called, to "option" when returning.
19627 * Returns NULL when no option name found. Otherwise pointer to the char
19628 * after the option name.
19629 */
19630 static char_u *
19631find_option_end(arg, opt_flags)
19632 char_u **arg;
19633 int *opt_flags;
19634{
19635 char_u *p = *arg;
19636
19637 ++p;
19638 if (*p == 'g' && p[1] == ':')
19639 {
19640 *opt_flags = OPT_GLOBAL;
19641 p += 2;
19642 }
19643 else if (*p == 'l' && p[1] == ':')
19644 {
19645 *opt_flags = OPT_LOCAL;
19646 p += 2;
19647 }
19648 else
19649 *opt_flags = 0;
19650
19651 if (!ASCII_ISALPHA(*p))
19652 return NULL;
19653 *arg = p;
19654
19655 if (p[0] == 't' && p[1] == '_' && p[2] != NUL && p[3] != NUL)
19656 p += 4; /* termcap option */
19657 else
19658 while (ASCII_ISALPHA(*p))
19659 ++p;
19660 return p;
19661}
19662
19663/*
19664 * ":function"
19665 */
19666 void
19667ex_function(eap)
19668 exarg_T *eap;
19669{
19670 char_u *theline;
19671 int j;
19672 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019673 int saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019674 char_u *name = NULL;
19675 char_u *p;
19676 char_u *arg;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019677 char_u *line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019678 garray_T newargs;
19679 garray_T newlines;
19680 int varargs = FALSE;
19681 int mustend = FALSE;
19682 int flags = 0;
19683 ufunc_T *fp;
19684 int indent;
19685 int nesting;
19686 char_u *skip_until = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000019687 dictitem_T *v;
19688 funcdict_T fudi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019689 static int func_nr = 0; /* number for nameless function */
19690 int paren;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019691 hashtab_T *ht;
19692 int todo;
19693 hashitem_T *hi;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019694 int sourcing_lnum_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019695
19696 /*
19697 * ":function" without argument: list functions.
19698 */
19699 if (ends_excmd(*eap->arg))
19700 {
19701 if (!eap->skip)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019702 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019703 todo = (int)func_hashtab.ht_used;
Bram Moolenaar038eb0e2005-02-27 22:43:26 +000019704 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019705 {
19706 if (!HASHITEM_EMPTY(hi))
19707 {
19708 --todo;
19709 fp = HI2UF(hi);
19710 if (!isdigit(*fp->uf_name))
19711 list_func_head(fp, FALSE);
19712 }
19713 }
19714 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019715 eap->nextcmd = check_nextcmd(eap->arg);
19716 return;
19717 }
19718
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019719 /*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019720 * ":function /pat": list functions matching pattern.
19721 */
19722 if (*eap->arg == '/')
19723 {
19724 p = skip_regexp(eap->arg + 1, '/', TRUE, NULL);
19725 if (!eap->skip)
19726 {
19727 regmatch_T regmatch;
19728
19729 c = *p;
19730 *p = NUL;
19731 regmatch.regprog = vim_regcomp(eap->arg + 1, RE_MAGIC);
19732 *p = c;
19733 if (regmatch.regprog != NULL)
19734 {
19735 regmatch.rm_ic = p_ic;
19736
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019737 todo = (int)func_hashtab.ht_used;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019738 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
19739 {
19740 if (!HASHITEM_EMPTY(hi))
19741 {
19742 --todo;
19743 fp = HI2UF(hi);
19744 if (!isdigit(*fp->uf_name)
19745 && vim_regexec(&regmatch, fp->uf_name, 0))
19746 list_func_head(fp, FALSE);
19747 }
19748 }
19749 }
19750 }
19751 if (*p == '/')
19752 ++p;
19753 eap->nextcmd = check_nextcmd(p);
19754 return;
19755 }
19756
19757 /*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019758 * Get the function name. There are these situations:
19759 * func normal function name
19760 * "name" == func, "fudi.fd_dict" == NULL
19761 * dict.func new dictionary entry
19762 * "name" == NULL, "fudi.fd_dict" set,
19763 * "fudi.fd_di" == NULL, "fudi.fd_newkey" == func
19764 * dict.func existing dict entry with a Funcref
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019765 * "name" == func, "fudi.fd_dict" set,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019766 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19767 * dict.func existing dict entry that's not a Funcref
19768 * "name" == NULL, "fudi.fd_dict" set,
19769 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19770 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019771 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019772 name = trans_function_name(&p, eap->skip, 0, &fudi);
19773 paren = (vim_strchr(p, '(') != NULL);
19774 if (name == NULL && (fudi.fd_dict == NULL || !paren) && !eap->skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019775 {
19776 /*
19777 * Return on an invalid expression in braces, unless the expression
19778 * evaluation has been cancelled due to an aborting error, an
19779 * interrupt, or an exception.
19780 */
19781 if (!aborting())
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019782 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000019783 if (!eap->skip && fudi.fd_newkey != NULL)
19784 EMSG2(_(e_dictkey), fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019785 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019786 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019787 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019788 else
19789 eap->skip = TRUE;
19790 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000019791
Bram Moolenaar071d4272004-06-13 20:20:40 +000019792 /* An error in a function call during evaluation of an expression in magic
19793 * braces should not cause the function not to be defined. */
19794 saved_did_emsg = did_emsg;
19795 did_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019796
19797 /*
19798 * ":function func" with only function name: list function.
19799 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019800 if (!paren)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019801 {
19802 if (!ends_excmd(*skipwhite(p)))
19803 {
19804 EMSG(_(e_trailing));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019805 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019806 }
19807 eap->nextcmd = check_nextcmd(p);
19808 if (eap->nextcmd != NULL)
19809 *p = NUL;
19810 if (!eap->skip && !got_int)
19811 {
19812 fp = find_func(name);
19813 if (fp != NULL)
19814 {
19815 list_func_head(fp, TRUE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019816 for (j = 0; j < fp->uf_lines.ga_len && !got_int; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019817 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019818 if (FUNCLINE(fp, j) == NULL)
19819 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019820 msg_putchar('\n');
19821 msg_outnum((long)(j + 1));
19822 if (j < 9)
19823 msg_putchar(' ');
19824 if (j < 99)
19825 msg_putchar(' ');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019826 msg_prt_line(FUNCLINE(fp, j), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019827 out_flush(); /* show a line at a time */
19828 ui_breakcheck();
19829 }
19830 if (!got_int)
19831 {
19832 msg_putchar('\n');
19833 msg_puts((char_u *)" endfunction");
19834 }
19835 }
19836 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019837 emsg_funcname("E123: Undefined function: %s", name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019838 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019839 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019840 }
19841
19842 /*
19843 * ":function name(arg1, arg2)" Define function.
19844 */
19845 p = skipwhite(p);
19846 if (*p != '(')
19847 {
19848 if (!eap->skip)
19849 {
19850 EMSG2(_("E124: Missing '(': %s"), eap->arg);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019851 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019852 }
19853 /* attempt to continue by skipping some text */
19854 if (vim_strchr(p, '(') != NULL)
19855 p = vim_strchr(p, '(');
19856 }
19857 p = skipwhite(p + 1);
19858
19859 ga_init2(&newargs, (int)sizeof(char_u *), 3);
19860 ga_init2(&newlines, (int)sizeof(char_u *), 3);
19861
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019862 if (!eap->skip)
19863 {
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019864 /* Check the name of the function. Unless it's a dictionary function
19865 * (that we are overwriting). */
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019866 if (name != NULL)
19867 arg = name;
19868 else
19869 arg = fudi.fd_newkey;
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019870 if (arg != NULL && (fudi.fd_di == NULL
19871 || fudi.fd_di->di_tv.v_type != VAR_FUNC))
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019872 {
19873 if (*arg == K_SPECIAL)
19874 j = 3;
19875 else
19876 j = 0;
19877 while (arg[j] != NUL && (j == 0 ? eval_isnamec1(arg[j])
19878 : eval_isnamec(arg[j])))
19879 ++j;
19880 if (arg[j] != NUL)
19881 emsg_funcname(_(e_invarg2), arg);
19882 }
19883 }
19884
Bram Moolenaar071d4272004-06-13 20:20:40 +000019885 /*
19886 * Isolate the arguments: "arg1, arg2, ...)"
19887 */
19888 while (*p != ')')
19889 {
19890 if (p[0] == '.' && p[1] == '.' && p[2] == '.')
19891 {
19892 varargs = TRUE;
19893 p += 3;
19894 mustend = TRUE;
19895 }
19896 else
19897 {
19898 arg = p;
19899 while (ASCII_ISALNUM(*p) || *p == '_')
19900 ++p;
19901 if (arg == p || isdigit(*arg)
19902 || (p - arg == 9 && STRNCMP(arg, "firstline", 9) == 0)
19903 || (p - arg == 8 && STRNCMP(arg, "lastline", 8) == 0))
19904 {
19905 if (!eap->skip)
19906 EMSG2(_("E125: Illegal argument: %s"), arg);
19907 break;
19908 }
19909 if (ga_grow(&newargs, 1) == FAIL)
19910 goto erret;
19911 c = *p;
19912 *p = NUL;
19913 arg = vim_strsave(arg);
19914 if (arg == NULL)
19915 goto erret;
19916 ((char_u **)(newargs.ga_data))[newargs.ga_len] = arg;
19917 *p = c;
19918 newargs.ga_len++;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019919 if (*p == ',')
19920 ++p;
19921 else
19922 mustend = TRUE;
19923 }
19924 p = skipwhite(p);
19925 if (mustend && *p != ')')
19926 {
19927 if (!eap->skip)
19928 EMSG2(_(e_invarg2), eap->arg);
19929 break;
19930 }
19931 }
19932 ++p; /* skip the ')' */
19933
Bram Moolenaare9a41262005-01-15 22:18:47 +000019934 /* find extra arguments "range", "dict" and "abort" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019935 for (;;)
19936 {
19937 p = skipwhite(p);
19938 if (STRNCMP(p, "range", 5) == 0)
19939 {
19940 flags |= FC_RANGE;
19941 p += 5;
19942 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000019943 else if (STRNCMP(p, "dict", 4) == 0)
19944 {
19945 flags |= FC_DICT;
19946 p += 4;
19947 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019948 else if (STRNCMP(p, "abort", 5) == 0)
19949 {
19950 flags |= FC_ABORT;
19951 p += 5;
19952 }
19953 else
19954 break;
19955 }
19956
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019957 /* When there is a line break use what follows for the function body.
19958 * Makes 'exe "func Test()\n...\nendfunc"' work. */
19959 if (*p == '\n')
19960 line_arg = p + 1;
19961 else if (*p != NUL && *p != '"' && !eap->skip && !did_emsg)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019962 EMSG(_(e_trailing));
19963
19964 /*
19965 * Read the body of the function, until ":endfunction" is found.
19966 */
19967 if (KeyTyped)
19968 {
19969 /* Check if the function already exists, don't let the user type the
19970 * whole function before telling him it doesn't work! For a script we
19971 * need to skip the body to be able to find what follows. */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019972 if (!eap->skip && !eap->forceit)
19973 {
19974 if (fudi.fd_dict != NULL && fudi.fd_newkey == NULL)
19975 EMSG(_(e_funcdict));
19976 else if (name != NULL && find_func(name) != NULL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019977 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019978 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019979
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019980 if (!eap->skip && did_emsg)
19981 goto erret;
19982
Bram Moolenaar071d4272004-06-13 20:20:40 +000019983 msg_putchar('\n'); /* don't overwrite the function name */
19984 cmdline_row = msg_row;
19985 }
19986
19987 indent = 2;
19988 nesting = 0;
19989 for (;;)
19990 {
19991 msg_scroll = TRUE;
19992 need_wait_return = FALSE;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019993 sourcing_lnum_off = sourcing_lnum;
19994
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019995 if (line_arg != NULL)
19996 {
19997 /* Use eap->arg, split up in parts by line breaks. */
19998 theline = line_arg;
19999 p = vim_strchr(theline, '\n');
20000 if (p == NULL)
20001 line_arg += STRLEN(line_arg);
20002 else
20003 {
20004 *p = NUL;
20005 line_arg = p + 1;
20006 }
20007 }
20008 else if (eap->getline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020009 theline = getcmdline(':', 0L, indent);
20010 else
20011 theline = eap->getline(':', eap->cookie, indent);
20012 if (KeyTyped)
20013 lines_left = Rows - 1;
20014 if (theline == NULL)
20015 {
20016 EMSG(_("E126: Missing :endfunction"));
20017 goto erret;
20018 }
20019
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020020 /* Detect line continuation: sourcing_lnum increased more than one. */
20021 if (sourcing_lnum > sourcing_lnum_off + 1)
20022 sourcing_lnum_off = sourcing_lnum - sourcing_lnum_off - 1;
20023 else
20024 sourcing_lnum_off = 0;
20025
Bram Moolenaar071d4272004-06-13 20:20:40 +000020026 if (skip_until != NULL)
20027 {
20028 /* between ":append" and "." and between ":python <<EOF" and "EOF"
20029 * don't check for ":endfunc". */
20030 if (STRCMP(theline, skip_until) == 0)
20031 {
20032 vim_free(skip_until);
20033 skip_until = NULL;
20034 }
20035 }
20036 else
20037 {
20038 /* skip ':' and blanks*/
20039 for (p = theline; vim_iswhite(*p) || *p == ':'; ++p)
20040 ;
20041
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020042 /* Check for "endfunction". */
20043 if (checkforcmd(&p, "endfunction", 4) && nesting-- == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020044 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020045 if (line_arg == NULL)
20046 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020047 break;
20048 }
20049
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020050 /* Increase indent inside "if", "while", "for" and "try", decrease
Bram Moolenaar071d4272004-06-13 20:20:40 +000020051 * at "end". */
20052 if (indent > 2 && STRNCMP(p, "end", 3) == 0)
20053 indent -= 2;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020054 else if (STRNCMP(p, "if", 2) == 0
20055 || STRNCMP(p, "wh", 2) == 0
20056 || STRNCMP(p, "for", 3) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000020057 || STRNCMP(p, "try", 3) == 0)
20058 indent += 2;
20059
20060 /* Check for defining a function inside this function. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020061 if (checkforcmd(&p, "function", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020062 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020063 if (*p == '!')
20064 p = skipwhite(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020065 p += eval_fname_script(p);
20066 if (ASCII_ISALPHA(*p))
20067 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020068 vim_free(trans_function_name(&p, TRUE, 0, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020069 if (*skipwhite(p) == '(')
20070 {
20071 ++nesting;
20072 indent += 2;
20073 }
20074 }
20075 }
20076
20077 /* Check for ":append" or ":insert". */
20078 p = skip_range(p, NULL);
20079 if ((p[0] == 'a' && (!ASCII_ISALPHA(p[1]) || p[1] == 'p'))
20080 || (p[0] == 'i'
20081 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'n'
20082 && (!ASCII_ISALPHA(p[2]) || (p[2] == 's'))))))
20083 skip_until = vim_strsave((char_u *)".");
20084
20085 /* Check for ":python <<EOF", ":tcl <<EOF", etc. */
20086 arg = skipwhite(skiptowhite(p));
20087 if (arg[0] == '<' && arg[1] =='<'
20088 && ((p[0] == 'p' && p[1] == 'y'
20089 && (!ASCII_ISALPHA(p[2]) || p[2] == 't'))
20090 || (p[0] == 'p' && p[1] == 'e'
20091 && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
20092 || (p[0] == 't' && p[1] == 'c'
20093 && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
20094 || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
20095 && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
Bram Moolenaar325b7a22004-07-05 15:58:32 +000020096 || (p[0] == 'm' && p[1] == 'z'
20097 && (!ASCII_ISALPHA(p[2]) || p[2] == 's'))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020098 ))
20099 {
20100 /* ":python <<" continues until a dot, like ":append" */
20101 p = skipwhite(arg + 2);
20102 if (*p == NUL)
20103 skip_until = vim_strsave((char_u *)".");
20104 else
20105 skip_until = vim_strsave(p);
20106 }
20107 }
20108
20109 /* Add the line to the function. */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020110 if (ga_grow(&newlines, 1 + sourcing_lnum_off) == FAIL)
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020111 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020112 if (line_arg == NULL)
20113 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020114 goto erret;
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020115 }
20116
20117 /* Copy the line to newly allocated memory. get_one_sourceline()
20118 * allocates 250 bytes per line, this saves 80% on average. The cost
20119 * is an extra alloc/free. */
20120 p = vim_strsave(theline);
20121 if (p != NULL)
20122 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020123 if (line_arg == NULL)
20124 vim_free(theline);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020125 theline = p;
20126 }
20127
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020128 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = theline;
20129
20130 /* Add NULL lines for continuation lines, so that the line count is
20131 * equal to the index in the growarray. */
20132 while (sourcing_lnum_off-- > 0)
20133 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = NULL;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020134
20135 /* Check for end of eap->arg. */
20136 if (line_arg != NULL && *line_arg == NUL)
20137 line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020138 }
20139
20140 /* Don't define the function when skipping commands or when an error was
20141 * detected. */
20142 if (eap->skip || did_emsg)
20143 goto erret;
20144
20145 /*
20146 * If there are no errors, add the function
20147 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020148 if (fudi.fd_dict == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020149 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020150 v = find_var(name, &ht);
Bram Moolenaar33570922005-01-25 22:26:29 +000020151 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020152 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020153 emsg_funcname("E707: Function name conflicts with variable: %s",
20154 name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020155 goto erret;
20156 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020157
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020158 fp = find_func(name);
20159 if (fp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020160 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020161 if (!eap->forceit)
20162 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020163 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020164 goto erret;
20165 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020166 if (fp->uf_calls > 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020167 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020168 emsg_funcname("E127: Cannot redefine function %s: It is in use",
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020169 name);
20170 goto erret;
20171 }
20172 /* redefine existing function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020173 ga_clear_strings(&(fp->uf_args));
20174 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020175 vim_free(name);
20176 name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020177 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020178 }
20179 else
20180 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020181 char numbuf[20];
20182
20183 fp = NULL;
20184 if (fudi.fd_newkey == NULL && !eap->forceit)
20185 {
20186 EMSG(_(e_funcdict));
20187 goto erret;
20188 }
Bram Moolenaar758711c2005-02-02 23:11:38 +000020189 if (fudi.fd_di == NULL)
20190 {
20191 /* Can't add a function to a locked dictionary */
20192 if (tv_check_lock(fudi.fd_dict->dv_lock, eap->arg))
20193 goto erret;
20194 }
20195 /* Can't change an existing function if it is locked */
20196 else if (tv_check_lock(fudi.fd_di->di_tv.v_lock, eap->arg))
20197 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020198
20199 /* Give the function a sequential number. Can only be used with a
20200 * Funcref! */
20201 vim_free(name);
20202 sprintf(numbuf, "%d", ++func_nr);
20203 name = vim_strsave((char_u *)numbuf);
20204 if (name == NULL)
20205 goto erret;
20206 }
20207
20208 if (fp == NULL)
20209 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020210 if (fudi.fd_dict == NULL && vim_strchr(name, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020211 {
20212 int slen, plen;
20213 char_u *scriptname;
20214
20215 /* Check that the autoload name matches the script name. */
20216 j = FAIL;
20217 if (sourcing_name != NULL)
20218 {
20219 scriptname = autoload_name(name);
20220 if (scriptname != NULL)
20221 {
20222 p = vim_strchr(scriptname, '/');
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020223 plen = (int)STRLEN(p);
20224 slen = (int)STRLEN(sourcing_name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020225 if (slen > plen && fnamecmp(p,
20226 sourcing_name + slen - plen) == 0)
20227 j = OK;
20228 vim_free(scriptname);
20229 }
20230 }
20231 if (j == FAIL)
20232 {
20233 EMSG2(_("E746: Function name does not match script file name: %s"), name);
20234 goto erret;
20235 }
20236 }
20237
20238 fp = (ufunc_T *)alloc((unsigned)(sizeof(ufunc_T) + STRLEN(name)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020239 if (fp == NULL)
20240 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020241
20242 if (fudi.fd_dict != NULL)
20243 {
20244 if (fudi.fd_di == NULL)
20245 {
20246 /* add new dict entry */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020247 fudi.fd_di = dictitem_alloc(fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020248 if (fudi.fd_di == NULL)
20249 {
20250 vim_free(fp);
20251 goto erret;
20252 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020253 if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
20254 {
20255 vim_free(fudi.fd_di);
Bram Moolenaar0a5fd8b2006-08-16 20:02:22 +000020256 vim_free(fp);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020257 goto erret;
20258 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020259 }
20260 else
20261 /* overwrite existing dict entry */
20262 clear_tv(&fudi.fd_di->di_tv);
20263 fudi.fd_di->di_tv.v_type = VAR_FUNC;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000020264 fudi.fd_di->di_tv.v_lock = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020265 fudi.fd_di->di_tv.vval.v_string = vim_strsave(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020266 fp->uf_refcount = 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000020267
20268 /* behave like "dict" was used */
20269 flags |= FC_DICT;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020270 }
20271
Bram Moolenaar071d4272004-06-13 20:20:40 +000020272 /* insert the new function in the function list */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020273 STRCPY(fp->uf_name, name);
20274 hash_add(&func_hashtab, UF2HIKEY(fp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020275 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020276 fp->uf_args = newargs;
20277 fp->uf_lines = newlines;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020278#ifdef FEAT_PROFILE
20279 fp->uf_tml_count = NULL;
20280 fp->uf_tml_total = NULL;
20281 fp->uf_tml_self = NULL;
20282 fp->uf_profiling = FALSE;
20283 if (prof_def_func())
20284 func_do_profile(fp);
20285#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020286 fp->uf_varargs = varargs;
20287 fp->uf_flags = flags;
20288 fp->uf_calls = 0;
20289 fp->uf_script_ID = current_SID;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020290 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020291
20292erret:
Bram Moolenaar071d4272004-06-13 20:20:40 +000020293 ga_clear_strings(&newargs);
20294 ga_clear_strings(&newlines);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020295ret_free:
20296 vim_free(skip_until);
20297 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020298 vim_free(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020299 did_emsg |= saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020300}
20301
20302/*
20303 * Get a function name, translating "<SID>" and "<SNR>".
Bram Moolenaara7043832005-01-21 11:56:39 +000020304 * Also handles a Funcref in a List or Dictionary.
Bram Moolenaar071d4272004-06-13 20:20:40 +000020305 * Returns the function name in allocated memory, or NULL for failure.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020306 * flags:
20307 * TFN_INT: internal function name OK
20308 * TFN_QUIET: be quiet
Bram Moolenaar071d4272004-06-13 20:20:40 +000020309 * Advances "pp" to just after the function name (if no error).
20310 */
20311 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020312trans_function_name(pp, skip, flags, fdp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020313 char_u **pp;
20314 int skip; /* only find the end, don't evaluate */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020315 int flags;
Bram Moolenaar33570922005-01-25 22:26:29 +000020316 funcdict_T *fdp; /* return: info about dictionary used */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020317{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020318 char_u *name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020319 char_u *start;
20320 char_u *end;
20321 int lead;
20322 char_u sid_buf[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +000020323 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +000020324 lval_T lv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020325
20326 if (fdp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000020327 vim_memset(fdp, 0, sizeof(funcdict_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020328 start = *pp;
Bram Moolenaara7043832005-01-21 11:56:39 +000020329
20330 /* Check for hard coded <SNR>: already translated function ID (from a user
20331 * command). */
20332 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA
20333 && (*pp)[2] == (int)KE_SNR)
20334 {
20335 *pp += 3;
20336 len = get_id_len(pp) + 3;
20337 return vim_strnsave(start, len);
20338 }
20339
20340 /* A name starting with "<SID>" or "<SNR>" is local to a script. But
20341 * don't skip over "s:", get_lval() needs it for "s:dict.func". */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020342 lead = eval_fname_script(start);
Bram Moolenaara7043832005-01-21 11:56:39 +000020343 if (lead > 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020344 start += lead;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020345
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020346 end = get_lval(start, NULL, &lv, FALSE, skip, flags & TFN_QUIET,
20347 lead > 2 ? 0 : FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020348 if (end == start)
20349 {
20350 if (!skip)
20351 EMSG(_("E129: Function name required"));
20352 goto theend;
20353 }
Bram Moolenaara7043832005-01-21 11:56:39 +000020354 if (end == NULL || (lv.ll_tv != NULL && (lead > 2 || lv.ll_range)))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020355 {
20356 /*
20357 * Report an invalid expression in braces, unless the expression
20358 * evaluation has been cancelled due to an aborting error, an
20359 * interrupt, or an exception.
20360 */
20361 if (!aborting())
20362 {
20363 if (end != NULL)
20364 EMSG2(_(e_invarg2), start);
20365 }
20366 else
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020367 *pp = find_name_end(start, NULL, NULL, FNE_INCL_BR);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020368 goto theend;
20369 }
20370
20371 if (lv.ll_tv != NULL)
20372 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020373 if (fdp != NULL)
20374 {
20375 fdp->fd_dict = lv.ll_dict;
20376 fdp->fd_newkey = lv.ll_newkey;
20377 lv.ll_newkey = NULL;
20378 fdp->fd_di = lv.ll_di;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020379 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020380 if (lv.ll_tv->v_type == VAR_FUNC && lv.ll_tv->vval.v_string != NULL)
20381 {
20382 name = vim_strsave(lv.ll_tv->vval.v_string);
20383 *pp = end;
20384 }
20385 else
20386 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020387 if (!skip && !(flags & TFN_QUIET) && (fdp == NULL
20388 || lv.ll_dict == NULL || fdp->fd_newkey == NULL))
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020389 EMSG(_(e_funcref));
20390 else
20391 *pp = end;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020392 name = NULL;
20393 }
20394 goto theend;
20395 }
20396
20397 if (lv.ll_name == NULL)
20398 {
20399 /* Error found, but continue after the function name. */
20400 *pp = end;
20401 goto theend;
20402 }
20403
Bram Moolenaar33e1a802007-09-06 12:26:44 +000020404 /* Check if the name is a Funcref. If so, use the value. */
20405 if (lv.ll_exp_name != NULL)
20406 {
20407 len = (int)STRLEN(lv.ll_exp_name);
20408 name = deref_func_name(lv.ll_exp_name, &len);
20409 if (name == lv.ll_exp_name)
20410 name = NULL;
20411 }
20412 else
20413 {
20414 len = (int)(end - *pp);
20415 name = deref_func_name(*pp, &len);
20416 if (name == *pp)
20417 name = NULL;
20418 }
20419 if (name != NULL)
20420 {
20421 name = vim_strsave(name);
20422 *pp = end;
20423 goto theend;
20424 }
20425
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020426 if (lv.ll_exp_name != NULL)
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020427 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020428 len = (int)STRLEN(lv.ll_exp_name);
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020429 if (lead <= 2 && lv.ll_name == lv.ll_exp_name
20430 && STRNCMP(lv.ll_name, "s:", 2) == 0)
20431 {
20432 /* When there was "s:" already or the name expanded to get a
20433 * leading "s:" then remove it. */
20434 lv.ll_name += 2;
20435 len -= 2;
20436 lead = 2;
20437 }
20438 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020439 else
Bram Moolenaara7043832005-01-21 11:56:39 +000020440 {
20441 if (lead == 2) /* skip over "s:" */
20442 lv.ll_name += 2;
20443 len = (int)(end - lv.ll_name);
20444 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020445
20446 /*
20447 * Copy the function name to allocated memory.
20448 * Accept <SID>name() inside a script, translate into <SNR>123_name().
20449 * Accept <SNR>123_name() outside a script.
20450 */
20451 if (skip)
20452 lead = 0; /* do nothing */
20453 else if (lead > 0)
20454 {
20455 lead = 3;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000020456 if ((lv.ll_exp_name != NULL && eval_fname_sid(lv.ll_exp_name))
20457 || eval_fname_sid(*pp))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020458 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +000020459 /* It's "s:" or "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020460 if (current_SID <= 0)
20461 {
20462 EMSG(_(e_usingsid));
20463 goto theend;
20464 }
20465 sprintf((char *)sid_buf, "%ld_", (long)current_SID);
20466 lead += (int)STRLEN(sid_buf);
20467 }
20468 }
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020469 else if (!(flags & TFN_INT) && builtin_function(lv.ll_name))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020470 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020471 EMSG2(_("E128: Function name must start with a capital or contain a colon: %s"), lv.ll_name);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020472 goto theend;
20473 }
20474 name = alloc((unsigned)(len + lead + 1));
20475 if (name != NULL)
20476 {
20477 if (lead > 0)
20478 {
20479 name[0] = K_SPECIAL;
20480 name[1] = KS_EXTRA;
20481 name[2] = (int)KE_SNR;
Bram Moolenaara7043832005-01-21 11:56:39 +000020482 if (lead > 3) /* If it's "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020483 STRCPY(name + 3, sid_buf);
20484 }
20485 mch_memmove(name + lead, lv.ll_name, (size_t)len);
20486 name[len + lead] = NUL;
20487 }
20488 *pp = end;
20489
20490theend:
20491 clear_lval(&lv);
20492 return name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020493}
20494
20495/*
20496 * Return 5 if "p" starts with "<SID>" or "<SNR>" (ignoring case).
20497 * Return 2 if "p" starts with "s:".
20498 * Return 0 otherwise.
20499 */
20500 static int
20501eval_fname_script(p)
20502 char_u *p;
20503{
20504 if (p[0] == '<' && (STRNICMP(p + 1, "SID>", 4) == 0
20505 || STRNICMP(p + 1, "SNR>", 4) == 0))
20506 return 5;
20507 if (p[0] == 's' && p[1] == ':')
20508 return 2;
20509 return 0;
20510}
20511
20512/*
20513 * Return TRUE if "p" starts with "<SID>" or "s:".
20514 * Only works if eval_fname_script() returned non-zero for "p"!
20515 */
20516 static int
20517eval_fname_sid(p)
20518 char_u *p;
20519{
20520 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I');
20521}
20522
20523/*
20524 * List the head of the function: "name(arg1, arg2)".
20525 */
20526 static void
20527list_func_head(fp, indent)
20528 ufunc_T *fp;
20529 int indent;
20530{
20531 int j;
20532
20533 msg_start();
20534 if (indent)
20535 MSG_PUTS(" ");
20536 MSG_PUTS("function ");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020537 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020538 {
20539 MSG_PUTS_ATTR("<SNR>", hl_attr(HLF_8));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020540 msg_puts(fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020541 }
20542 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020543 msg_puts(fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020544 msg_putchar('(');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020545 for (j = 0; j < fp->uf_args.ga_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020546 {
20547 if (j)
20548 MSG_PUTS(", ");
20549 msg_puts(FUNCARG(fp, j));
20550 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020551 if (fp->uf_varargs)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020552 {
20553 if (j)
20554 MSG_PUTS(", ");
20555 MSG_PUTS("...");
20556 }
20557 msg_putchar(')');
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000020558 msg_clr_eos();
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000020559 if (p_verbose > 0)
20560 last_set_msg(fp->uf_script_ID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020561}
20562
20563/*
20564 * Find a function by name, return pointer to it in ufuncs.
20565 * Return NULL for unknown function.
20566 */
20567 static ufunc_T *
20568find_func(name)
20569 char_u *name;
20570{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020571 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020572
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020573 hi = hash_find(&func_hashtab, name);
20574 if (!HASHITEM_EMPTY(hi))
20575 return HI2UF(hi);
20576 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020577}
20578
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020579#if defined(EXITFREE) || defined(PROTO)
20580 void
20581free_all_functions()
20582{
20583 hashitem_T *hi;
20584
20585 /* Need to start all over every time, because func_free() may change the
20586 * hash table. */
20587 while (func_hashtab.ht_used > 0)
20588 for (hi = func_hashtab.ht_array; ; ++hi)
20589 if (!HASHITEM_EMPTY(hi))
20590 {
20591 func_free(HI2UF(hi));
20592 break;
20593 }
20594}
20595#endif
20596
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020597/*
20598 * Return TRUE if a function "name" exists.
20599 */
20600 static int
20601function_exists(name)
20602 char_u *name;
20603{
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020604 char_u *nm = name;
20605 char_u *p;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020606 int n = FALSE;
20607
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020608 p = trans_function_name(&nm, FALSE, TFN_INT|TFN_QUIET, NULL);
Bram Moolenaar79783442006-05-05 21:18:03 +000020609 nm = skipwhite(nm);
20610
20611 /* Only accept "funcname", "funcname ", "funcname (..." and
20612 * "funcname(...", not "funcname!...". */
20613 if (p != NULL && (*nm == NUL || *nm == '('))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020614 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020615 if (builtin_function(p))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020616 n = (find_internal_func(p) >= 0);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020617 else
20618 n = (find_func(p) != NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020619 }
Bram Moolenaar79783442006-05-05 21:18:03 +000020620 vim_free(p);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020621 return n;
20622}
20623
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020624/*
20625 * Return TRUE if "name" looks like a builtin function name: starts with a
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020626 * lower case letter and doesn't contain a ':' or AUTOLOAD_CHAR.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020627 */
20628 static int
20629builtin_function(name)
20630 char_u *name;
20631{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020632 return ASCII_ISLOWER(name[0]) && vim_strchr(name, ':') == NULL
20633 && vim_strchr(name, AUTOLOAD_CHAR) == NULL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020634}
20635
Bram Moolenaar05159a02005-02-26 23:04:13 +000020636#if defined(FEAT_PROFILE) || defined(PROTO)
20637/*
20638 * Start profiling function "fp".
20639 */
20640 static void
20641func_do_profile(fp)
20642 ufunc_T *fp;
20643{
20644 fp->uf_tm_count = 0;
20645 profile_zero(&fp->uf_tm_self);
20646 profile_zero(&fp->uf_tm_total);
20647 if (fp->uf_tml_count == NULL)
20648 fp->uf_tml_count = (int *)alloc_clear((unsigned)
20649 (sizeof(int) * fp->uf_lines.ga_len));
20650 if (fp->uf_tml_total == NULL)
20651 fp->uf_tml_total = (proftime_T *)alloc_clear((unsigned)
20652 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20653 if (fp->uf_tml_self == NULL)
20654 fp->uf_tml_self = (proftime_T *)alloc_clear((unsigned)
20655 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20656 fp->uf_tml_idx = -1;
20657 if (fp->uf_tml_count == NULL || fp->uf_tml_total == NULL
20658 || fp->uf_tml_self == NULL)
20659 return; /* out of memory */
20660
20661 fp->uf_profiling = TRUE;
20662}
20663
20664/*
20665 * Dump the profiling results for all functions in file "fd".
20666 */
20667 void
20668func_dump_profile(fd)
20669 FILE *fd;
20670{
20671 hashitem_T *hi;
20672 int todo;
20673 ufunc_T *fp;
20674 int i;
Bram Moolenaar73830342005-02-28 22:48:19 +000020675 ufunc_T **sorttab;
20676 int st_len = 0;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020677
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020678 todo = (int)func_hashtab.ht_used;
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020679 if (todo == 0)
20680 return; /* nothing to dump */
20681
Bram Moolenaar73830342005-02-28 22:48:19 +000020682 sorttab = (ufunc_T **)alloc((unsigned)(sizeof(ufunc_T) * todo));
20683
Bram Moolenaar05159a02005-02-26 23:04:13 +000020684 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
20685 {
20686 if (!HASHITEM_EMPTY(hi))
20687 {
20688 --todo;
20689 fp = HI2UF(hi);
20690 if (fp->uf_profiling)
20691 {
Bram Moolenaar73830342005-02-28 22:48:19 +000020692 if (sorttab != NULL)
20693 sorttab[st_len++] = fp;
20694
Bram Moolenaar05159a02005-02-26 23:04:13 +000020695 if (fp->uf_name[0] == K_SPECIAL)
20696 fprintf(fd, "FUNCTION <SNR>%s()\n", fp->uf_name + 3);
20697 else
20698 fprintf(fd, "FUNCTION %s()\n", fp->uf_name);
20699 if (fp->uf_tm_count == 1)
20700 fprintf(fd, "Called 1 time\n");
20701 else
20702 fprintf(fd, "Called %d times\n", fp->uf_tm_count);
20703 fprintf(fd, "Total time: %s\n", profile_msg(&fp->uf_tm_total));
20704 fprintf(fd, " Self time: %s\n", profile_msg(&fp->uf_tm_self));
20705 fprintf(fd, "\n");
20706 fprintf(fd, "count total (s) self (s)\n");
20707
20708 for (i = 0; i < fp->uf_lines.ga_len; ++i)
20709 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020710 if (FUNCLINE(fp, i) == NULL)
20711 continue;
Bram Moolenaar73830342005-02-28 22:48:19 +000020712 prof_func_line(fd, fp->uf_tml_count[i],
20713 &fp->uf_tml_total[i], &fp->uf_tml_self[i], TRUE);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020714 fprintf(fd, "%s\n", FUNCLINE(fp, i));
20715 }
20716 fprintf(fd, "\n");
20717 }
20718 }
20719 }
Bram Moolenaar73830342005-02-28 22:48:19 +000020720
20721 if (sorttab != NULL && st_len > 0)
20722 {
20723 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20724 prof_total_cmp);
20725 prof_sort_list(fd, sorttab, st_len, "TOTAL", FALSE);
20726 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20727 prof_self_cmp);
20728 prof_sort_list(fd, sorttab, st_len, "SELF", TRUE);
20729 }
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020730
20731 vim_free(sorttab);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020732}
Bram Moolenaar73830342005-02-28 22:48:19 +000020733
20734 static void
20735prof_sort_list(fd, sorttab, st_len, title, prefer_self)
20736 FILE *fd;
20737 ufunc_T **sorttab;
20738 int st_len;
20739 char *title;
20740 int prefer_self; /* when equal print only self time */
20741{
20742 int i;
20743 ufunc_T *fp;
20744
20745 fprintf(fd, "FUNCTIONS SORTED ON %s TIME\n", title);
20746 fprintf(fd, "count total (s) self (s) function\n");
20747 for (i = 0; i < 20 && i < st_len; ++i)
20748 {
20749 fp = sorttab[i];
20750 prof_func_line(fd, fp->uf_tm_count, &fp->uf_tm_total, &fp->uf_tm_self,
20751 prefer_self);
20752 if (fp->uf_name[0] == K_SPECIAL)
20753 fprintf(fd, " <SNR>%s()\n", fp->uf_name + 3);
20754 else
20755 fprintf(fd, " %s()\n", fp->uf_name);
20756 }
20757 fprintf(fd, "\n");
20758}
20759
20760/*
20761 * Print the count and times for one function or function line.
20762 */
20763 static void
20764prof_func_line(fd, count, total, self, prefer_self)
20765 FILE *fd;
20766 int count;
20767 proftime_T *total;
20768 proftime_T *self;
20769 int prefer_self; /* when equal print only self time */
20770{
20771 if (count > 0)
20772 {
20773 fprintf(fd, "%5d ", count);
20774 if (prefer_self && profile_equal(total, self))
20775 fprintf(fd, " ");
20776 else
20777 fprintf(fd, "%s ", profile_msg(total));
20778 if (!prefer_self && profile_equal(total, self))
20779 fprintf(fd, " ");
20780 else
20781 fprintf(fd, "%s ", profile_msg(self));
20782 }
20783 else
20784 fprintf(fd, " ");
20785}
20786
20787/*
20788 * Compare function for total time sorting.
20789 */
20790 static int
20791#ifdef __BORLANDC__
20792_RTLENTRYF
20793#endif
20794prof_total_cmp(s1, s2)
20795 const void *s1;
20796 const void *s2;
20797{
20798 ufunc_T *p1, *p2;
20799
20800 p1 = *(ufunc_T **)s1;
20801 p2 = *(ufunc_T **)s2;
20802 return profile_cmp(&p1->uf_tm_total, &p2->uf_tm_total);
20803}
20804
20805/*
20806 * Compare function for self time sorting.
20807 */
20808 static int
20809#ifdef __BORLANDC__
20810_RTLENTRYF
20811#endif
20812prof_self_cmp(s1, s2)
20813 const void *s1;
20814 const void *s2;
20815{
20816 ufunc_T *p1, *p2;
20817
20818 p1 = *(ufunc_T **)s1;
20819 p2 = *(ufunc_T **)s2;
20820 return profile_cmp(&p1->uf_tm_self, &p2->uf_tm_self);
20821}
20822
Bram Moolenaar05159a02005-02-26 23:04:13 +000020823#endif
20824
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020825/*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020826 * If "name" has a package name try autoloading the script for it.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020827 * Return TRUE if a package was loaded.
20828 */
20829 static int
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020830script_autoload(name, reload)
20831 char_u *name;
20832 int reload; /* load script again when already loaded */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020833{
20834 char_u *p;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020835 char_u *scriptname, *tofree;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020836 int ret = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020837 int i;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020838
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020839 /* If there is no '#' after name[0] there is no package name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020840 p = vim_strchr(name, AUTOLOAD_CHAR);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020841 if (p == NULL || p == name)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020842 return FALSE;
20843
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020844 tofree = scriptname = autoload_name(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020845
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020846 /* Find the name in the list of previously loaded package names. Skip
20847 * "autoload/", it's always the same. */
20848 for (i = 0; i < ga_loaded.ga_len; ++i)
20849 if (STRCMP(((char_u **)ga_loaded.ga_data)[i] + 9, scriptname + 9) == 0)
20850 break;
20851 if (!reload && i < ga_loaded.ga_len)
20852 ret = FALSE; /* was loaded already */
20853 else
20854 {
20855 /* Remember the name if it wasn't loaded already. */
20856 if (i == ga_loaded.ga_len && ga_grow(&ga_loaded, 1) == OK)
20857 {
20858 ((char_u **)ga_loaded.ga_data)[ga_loaded.ga_len++] = scriptname;
20859 tofree = NULL;
20860 }
20861
20862 /* Try loading the package from $VIMRUNTIME/autoload/<name>.vim */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +000020863 if (source_runtime(scriptname, FALSE) == OK)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020864 ret = TRUE;
20865 }
20866
20867 vim_free(tofree);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020868 return ret;
20869}
20870
20871/*
20872 * Return the autoload script name for a function or variable name.
20873 * Returns NULL when out of memory.
20874 */
20875 static char_u *
20876autoload_name(name)
20877 char_u *name;
20878{
20879 char_u *p;
20880 char_u *scriptname;
20881
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020882 /* Get the script file name: replace '#' with '/', append ".vim". */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020883 scriptname = alloc((unsigned)(STRLEN(name) + 14));
20884 if (scriptname == NULL)
20885 return FALSE;
20886 STRCPY(scriptname, "autoload/");
20887 STRCAT(scriptname, name);
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020888 *vim_strrchr(scriptname, AUTOLOAD_CHAR) = NUL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020889 STRCAT(scriptname, ".vim");
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020890 while ((p = vim_strchr(scriptname, AUTOLOAD_CHAR)) != NULL)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020891 *p = '/';
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020892 return scriptname;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020893}
20894
Bram Moolenaar071d4272004-06-13 20:20:40 +000020895#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
20896
20897/*
20898 * Function given to ExpandGeneric() to obtain the list of user defined
20899 * function names.
20900 */
20901 char_u *
20902get_user_func_name(xp, idx)
20903 expand_T *xp;
20904 int idx;
20905{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020906 static long_u done;
20907 static hashitem_T *hi;
20908 ufunc_T *fp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020909
20910 if (idx == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020911 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020912 done = 0;
20913 hi = func_hashtab.ht_array;
20914 }
20915 if (done < func_hashtab.ht_used)
20916 {
20917 if (done++ > 0)
20918 ++hi;
20919 while (HASHITEM_EMPTY(hi))
20920 ++hi;
20921 fp = HI2UF(hi);
20922
20923 if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
20924 return fp->uf_name; /* prevents overflow */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020925
20926 cat_func_name(IObuff, fp);
20927 if (xp->xp_context != EXPAND_USER_FUNC)
20928 {
20929 STRCAT(IObuff, "(");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020930 if (!fp->uf_varargs && fp->uf_args.ga_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020931 STRCAT(IObuff, ")");
20932 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020933 return IObuff;
20934 }
20935 return NULL;
20936}
20937
20938#endif /* FEAT_CMDL_COMPL */
20939
20940/*
20941 * Copy the function name of "fp" to buffer "buf".
20942 * "buf" must be able to hold the function name plus three bytes.
20943 * Takes care of script-local function names.
20944 */
20945 static void
20946cat_func_name(buf, fp)
20947 char_u *buf;
20948 ufunc_T *fp;
20949{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020950 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020951 {
20952 STRCPY(buf, "<SNR>");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020953 STRCAT(buf, fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020954 }
20955 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020956 STRCPY(buf, fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020957}
20958
20959/*
20960 * ":delfunction {name}"
20961 */
20962 void
20963ex_delfunction(eap)
20964 exarg_T *eap;
20965{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020966 ufunc_T *fp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020967 char_u *p;
20968 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000020969 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020970
20971 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020972 name = trans_function_name(&p, eap->skip, 0, &fudi);
20973 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020974 if (name == NULL)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020975 {
20976 if (fudi.fd_dict != NULL && !eap->skip)
20977 EMSG(_(e_funcref));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020978 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020979 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020980 if (!ends_excmd(*skipwhite(p)))
20981 {
20982 vim_free(name);
20983 EMSG(_(e_trailing));
20984 return;
20985 }
20986 eap->nextcmd = check_nextcmd(p);
20987 if (eap->nextcmd != NULL)
20988 *p = NUL;
20989
20990 if (!eap->skip)
20991 fp = find_func(name);
20992 vim_free(name);
20993
20994 if (!eap->skip)
20995 {
20996 if (fp == NULL)
20997 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000020998 EMSG2(_(e_nofunc), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020999 return;
21000 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021001 if (fp->uf_calls > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021002 {
21003 EMSG2(_("E131: Cannot delete function %s: It is in use"), eap->arg);
21004 return;
21005 }
21006
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021007 if (fudi.fd_dict != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021008 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021009 /* Delete the dict item that refers to the function, it will
21010 * invoke func_unref() and possibly delete the function. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000021011 dictitem_remove(fudi.fd_dict, fudi.fd_di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021012 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021013 else
21014 func_free(fp);
21015 }
21016}
21017
21018/*
21019 * Free a function and remove it from the list of functions.
21020 */
21021 static void
21022func_free(fp)
21023 ufunc_T *fp;
21024{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021025 hashitem_T *hi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021026
21027 /* clear this function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021028 ga_clear_strings(&(fp->uf_args));
21029 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar05159a02005-02-26 23:04:13 +000021030#ifdef FEAT_PROFILE
21031 vim_free(fp->uf_tml_count);
21032 vim_free(fp->uf_tml_total);
21033 vim_free(fp->uf_tml_self);
21034#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021035
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021036 /* remove the function from the function hashtable */
21037 hi = hash_find(&func_hashtab, UF2HIKEY(fp));
21038 if (HASHITEM_EMPTY(hi))
21039 EMSG2(_(e_intern2), "func_free()");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021040 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021041 hash_remove(&func_hashtab, hi);
21042
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021043 vim_free(fp);
21044}
21045
21046/*
21047 * Unreference a Function: decrement the reference count and free it when it
21048 * becomes zero. Only for numbered functions.
21049 */
21050 static void
21051func_unref(name)
21052 char_u *name;
21053{
21054 ufunc_T *fp;
21055
21056 if (name != NULL && isdigit(*name))
21057 {
21058 fp = find_func(name);
21059 if (fp == NULL)
21060 EMSG2(_(e_intern2), "func_unref()");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021061 else if (--fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021062 {
21063 /* Only delete it when it's not being used. Otherwise it's done
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021064 * when "uf_calls" becomes zero. */
21065 if (fp->uf_calls == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021066 func_free(fp);
21067 }
21068 }
21069}
21070
21071/*
21072 * Count a reference to a Function.
21073 */
21074 static void
21075func_ref(name)
21076 char_u *name;
21077{
21078 ufunc_T *fp;
21079
21080 if (name != NULL && isdigit(*name))
21081 {
21082 fp = find_func(name);
21083 if (fp == NULL)
21084 EMSG2(_(e_intern2), "func_ref()");
21085 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021086 ++fp->uf_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021087 }
21088}
21089
21090/*
21091 * Call a user function.
21092 */
21093 static void
Bram Moolenaare9a41262005-01-15 22:18:47 +000021094call_user_func(fp, argcount, argvars, rettv, firstline, lastline, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021095 ufunc_T *fp; /* pointer to function */
21096 int argcount; /* nr of args */
Bram Moolenaar33570922005-01-25 22:26:29 +000021097 typval_T *argvars; /* arguments */
21098 typval_T *rettv; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021099 linenr_T firstline; /* first line of range */
21100 linenr_T lastline; /* last line of range */
Bram Moolenaar33570922005-01-25 22:26:29 +000021101 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021102{
Bram Moolenaar33570922005-01-25 22:26:29 +000021103 char_u *save_sourcing_name;
21104 linenr_T save_sourcing_lnum;
21105 scid_T save_current_SID;
21106 funccall_T fc;
Bram Moolenaar33570922005-01-25 22:26:29 +000021107 int save_did_emsg;
21108 static int depth = 0;
21109 dictitem_T *v;
21110 int fixvar_idx = 0; /* index in fixvar[] */
21111 int i;
21112 int ai;
21113 char_u numbuf[NUMBUFLEN];
21114 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021115#ifdef FEAT_PROFILE
21116 proftime_T wait_start;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021117 proftime_T call_start;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021118#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021119
21120 /* If depth of calling is getting too high, don't execute the function */
21121 if (depth >= p_mfd)
21122 {
21123 EMSG(_("E132: Function call depth is higher than 'maxfuncdepth'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021124 rettv->v_type = VAR_NUMBER;
21125 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021126 return;
21127 }
21128 ++depth;
21129
21130 line_breakcheck(); /* check for CTRL-C hit */
21131
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000021132 fc.caller = current_funccal;
Bram Moolenaar33570922005-01-25 22:26:29 +000021133 current_funccal = &fc;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021134 fc.func = fp;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021135 fc.rettv = rettv;
21136 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021137 fc.linenr = 0;
21138 fc.returned = FALSE;
21139 fc.level = ex_nesting_level;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021140 /* Check if this function has a breakpoint. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021141 fc.breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021142 fc.dbg_tick = debug_tick;
21143
Bram Moolenaar33570922005-01-25 22:26:29 +000021144 /*
21145 * Note about using fc.fixvar[]: This is an array of FIXVAR_CNT variables
21146 * with names up to VAR_SHORT_LEN long. This avoids having to alloc/free
21147 * each argument variable and saves a lot of time.
21148 */
21149 /*
21150 * Init l: variables.
21151 */
21152 init_var_dict(&fc.l_vars, &fc.l_vars_var);
Bram Moolenaara7043832005-01-21 11:56:39 +000021153 if (selfdict != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000021154 {
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021155 /* Set l:self to "selfdict". Use "name" to avoid a warning from
21156 * some compiler that checks the destination size. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021157 v = &fc.fixvar[fixvar_idx++].var;
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021158 name = v->di_key;
21159 STRCPY(name, "self");
Bram Moolenaar33570922005-01-25 22:26:29 +000021160 v->di_flags = DI_FLAGS_RO + DI_FLAGS_FIX;
21161 hash_add(&fc.l_vars.dv_hashtab, DI2HIKEY(v));
21162 v->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021163 v->di_tv.v_lock = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000021164 v->di_tv.vval.v_dict = selfdict;
21165 ++selfdict->dv_refcount;
21166 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000021167
Bram Moolenaar33570922005-01-25 22:26:29 +000021168 /*
21169 * Init a: variables.
21170 * Set a:0 to "argcount".
21171 * Set a:000 to a list with room for the "..." arguments.
21172 */
21173 init_var_dict(&fc.l_avars, &fc.l_avars_var);
21174 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "0",
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021175 (varnumber_T)(argcount - fp->uf_args.ga_len));
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021176 /* Use "name" to avoid a warning from some compiler that checks the
21177 * destination size. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021178 v = &fc.fixvar[fixvar_idx++].var;
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021179 name = v->di_key;
21180 STRCPY(name, "000");
Bram Moolenaar33570922005-01-25 22:26:29 +000021181 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21182 hash_add(&fc.l_avars.dv_hashtab, DI2HIKEY(v));
21183 v->di_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021184 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021185 v->di_tv.vval.v_list = &fc.l_varlist;
21186 vim_memset(&fc.l_varlist, 0, sizeof(list_T));
21187 fc.l_varlist.lv_refcount = 99999;
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000021188 fc.l_varlist.lv_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021189
21190 /*
21191 * Set a:firstline to "firstline" and a:lastline to "lastline".
21192 * Set a:name to named arguments.
21193 * Set a:N to the "..." arguments.
21194 */
21195 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "firstline",
21196 (varnumber_T)firstline);
21197 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "lastline",
21198 (varnumber_T)lastline);
21199 for (i = 0; i < argcount; ++i)
21200 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021201 ai = i - fp->uf_args.ga_len;
Bram Moolenaar33570922005-01-25 22:26:29 +000021202 if (ai < 0)
21203 /* named argument a:name */
21204 name = FUNCARG(fp, i);
21205 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000021206 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021207 /* "..." argument a:1, a:2, etc. */
21208 sprintf((char *)numbuf, "%d", ai + 1);
21209 name = numbuf;
21210 }
21211 if (fixvar_idx < FIXVAR_CNT && STRLEN(name) <= VAR_SHORT_LEN)
21212 {
21213 v = &fc.fixvar[fixvar_idx++].var;
21214 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21215 }
21216 else
21217 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021218 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
21219 + STRLEN(name)));
Bram Moolenaar33570922005-01-25 22:26:29 +000021220 if (v == NULL)
21221 break;
21222 v->di_flags = DI_FLAGS_RO;
21223 }
21224 STRCPY(v->di_key, name);
21225 hash_add(&fc.l_avars.dv_hashtab, DI2HIKEY(v));
21226
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021227 /* Note: the values are copied directly to avoid alloc/free.
21228 * "argvars" must have VAR_FIXED for v_lock. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021229 v->di_tv = argvars[i];
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021230 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021231
21232 if (ai >= 0 && ai < MAX_FUNC_ARGS)
21233 {
21234 list_append(&fc.l_varlist, &fc.l_listitems[ai]);
21235 fc.l_listitems[ai].li_tv = argvars[i];
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021236 fc.l_listitems[ai].li_tv.v_lock = VAR_FIXED;
Bram Moolenaare9a41262005-01-15 22:18:47 +000021237 }
21238 }
21239
Bram Moolenaar071d4272004-06-13 20:20:40 +000021240 /* Don't redraw while executing the function. */
21241 ++RedrawingDisabled;
21242 save_sourcing_name = sourcing_name;
21243 save_sourcing_lnum = sourcing_lnum;
21244 sourcing_lnum = 1;
21245 sourcing_name = alloc((unsigned)((save_sourcing_name == NULL ? 0
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021246 : STRLEN(save_sourcing_name)) + STRLEN(fp->uf_name) + 13));
Bram Moolenaar071d4272004-06-13 20:20:40 +000021247 if (sourcing_name != NULL)
21248 {
21249 if (save_sourcing_name != NULL
21250 && STRNCMP(save_sourcing_name, "function ", 9) == 0)
21251 sprintf((char *)sourcing_name, "%s..", save_sourcing_name);
21252 else
21253 STRCPY(sourcing_name, "function ");
21254 cat_func_name(sourcing_name + STRLEN(sourcing_name), fp);
21255
21256 if (p_verbose >= 12)
21257 {
21258 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021259 verbose_enter_scroll();
21260
Bram Moolenaar555b2802005-05-19 21:08:39 +000021261 smsg((char_u *)_("calling %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021262 if (p_verbose >= 14)
21263 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021264 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021265 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021266 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021267 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021268
21269 msg_puts((char_u *)"(");
21270 for (i = 0; i < argcount; ++i)
21271 {
21272 if (i > 0)
21273 msg_puts((char_u *)", ");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000021274 if (argvars[i].v_type == VAR_NUMBER)
21275 msg_outnum((long)argvars[i].vval.v_number);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021276 else
21277 {
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021278 s = tv2string(&argvars[i], &tofree, numbuf2, 0);
21279 if (s != NULL)
21280 {
21281 trunc_string(s, buf, MSG_BUF_CLEN);
21282 msg_puts(buf);
21283 vim_free(tofree);
21284 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021285 }
21286 }
21287 msg_puts((char_u *)")");
21288 }
21289 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021290
21291 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021292 --no_wait_return;
21293 }
21294 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021295#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021296 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021297 {
21298 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
21299 func_do_profile(fp);
21300 if (fp->uf_profiling
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000021301 || (fc.caller != NULL && fc.caller->func->uf_profiling))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021302 {
21303 ++fp->uf_tm_count;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021304 profile_start(&call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021305 profile_zero(&fp->uf_tm_children);
21306 }
21307 script_prof_save(&wait_start);
21308 }
21309#endif
21310
Bram Moolenaar071d4272004-06-13 20:20:40 +000021311 save_current_SID = current_SID;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021312 current_SID = fp->uf_script_ID;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021313 save_did_emsg = did_emsg;
21314 did_emsg = FALSE;
21315
21316 /* call do_cmdline() to execute the lines */
21317 do_cmdline(NULL, get_func_line, (void *)&fc,
21318 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
21319
21320 --RedrawingDisabled;
21321
21322 /* when the function was aborted because of an error, return -1 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021323 if ((did_emsg && (fp->uf_flags & FC_ABORT)) || rettv->v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021324 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021325 clear_tv(rettv);
21326 rettv->v_type = VAR_NUMBER;
21327 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021328 }
21329
Bram Moolenaar05159a02005-02-26 23:04:13 +000021330#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021331 if (do_profiling == PROF_YES && (fp->uf_profiling
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000021332 || (fc.caller != NULL && fc.caller->func->uf_profiling)))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021333 {
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021334 profile_end(&call_start);
21335 profile_sub_wait(&wait_start, &call_start);
21336 profile_add(&fp->uf_tm_total, &call_start);
21337 profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000021338 if (fc.caller != NULL && fc.caller->func->uf_profiling)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021339 {
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021340 profile_add(&fc.caller->func->uf_tm_children, &call_start);
21341 profile_add(&fc.caller->func->uf_tml_children, &call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021342 }
21343 }
21344#endif
21345
Bram Moolenaar071d4272004-06-13 20:20:40 +000021346 /* when being verbose, mention the return value */
21347 if (p_verbose >= 12)
21348 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021349 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021350 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021351
Bram Moolenaar071d4272004-06-13 20:20:40 +000021352 if (aborting())
Bram Moolenaar555b2802005-05-19 21:08:39 +000021353 smsg((char_u *)_("%s aborted"), sourcing_name);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021354 else if (fc.rettv->v_type == VAR_NUMBER)
Bram Moolenaar555b2802005-05-19 21:08:39 +000021355 smsg((char_u *)_("%s returning #%ld"), sourcing_name,
21356 (long)fc.rettv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +000021357 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000021358 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000021359 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021360 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021361 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021362 char_u *s;
Bram Moolenaar758711c2005-02-02 23:11:38 +000021363
Bram Moolenaar555b2802005-05-19 21:08:39 +000021364 /* The value may be very long. Skip the middle part, so that we
21365 * have some idea how it starts and ends. smsg() would always
21366 * truncate it at the end. */
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021367 s = tv2string(fc.rettv, &tofree, numbuf2, 0);
21368 if (s != NULL)
21369 {
21370 trunc_string(s, buf, MSG_BUF_CLEN);
21371 smsg((char_u *)_("%s returning %s"), sourcing_name, buf);
21372 vim_free(tofree);
21373 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021374 }
21375 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021376
21377 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021378 --no_wait_return;
21379 }
21380
21381 vim_free(sourcing_name);
21382 sourcing_name = save_sourcing_name;
21383 sourcing_lnum = save_sourcing_lnum;
21384 current_SID = save_current_SID;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021385#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021386 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021387 script_prof_restore(&wait_start);
21388#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021389
21390 if (p_verbose >= 12 && sourcing_name != NULL)
21391 {
21392 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021393 verbose_enter_scroll();
21394
Bram Moolenaar555b2802005-05-19 21:08:39 +000021395 smsg((char_u *)_("continuing in %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021396 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021397
21398 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021399 --no_wait_return;
21400 }
21401
21402 did_emsg |= save_did_emsg;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000021403 current_funccal = fc.caller;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021404
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021405 /* The a: variables typevals were not allocated, only free the allocated
Bram Moolenaar33570922005-01-25 22:26:29 +000021406 * variables. */
21407 vars_clear_ext(&fc.l_avars.dv_hashtab, FALSE);
21408
21409 vars_clear(&fc.l_vars.dv_hashtab); /* free all l: variables */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021410 --depth;
21411}
21412
21413/*
Bram Moolenaar33570922005-01-25 22:26:29 +000021414 * Add a number variable "name" to dict "dp" with value "nr".
21415 */
21416 static void
21417add_nr_var(dp, v, name, nr)
21418 dict_T *dp;
21419 dictitem_T *v;
21420 char *name;
21421 varnumber_T nr;
21422{
21423 STRCPY(v->di_key, name);
21424 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21425 hash_add(&dp->dv_hashtab, DI2HIKEY(v));
21426 v->di_tv.v_type = VAR_NUMBER;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021427 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021428 v->di_tv.vval.v_number = nr;
21429}
21430
21431/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000021432 * ":return [expr]"
21433 */
21434 void
21435ex_return(eap)
21436 exarg_T *eap;
21437{
21438 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000021439 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021440 int returning = FALSE;
21441
21442 if (current_funccal == NULL)
21443 {
21444 EMSG(_("E133: :return not inside a function"));
21445 return;
21446 }
21447
21448 if (eap->skip)
21449 ++emsg_skip;
21450
21451 eap->nextcmd = NULL;
21452 if ((*arg != NUL && *arg != '|' && *arg != '\n')
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021453 && eval0(arg, &rettv, &eap->nextcmd, !eap->skip) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021454 {
21455 if (!eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021456 returning = do_return(eap, FALSE, TRUE, &rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021457 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021458 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021459 }
21460 /* It's safer to return also on error. */
21461 else if (!eap->skip)
21462 {
21463 /*
21464 * Return unless the expression evaluation has been cancelled due to an
21465 * aborting error, an interrupt, or an exception.
21466 */
21467 if (!aborting())
21468 returning = do_return(eap, FALSE, TRUE, NULL);
21469 }
21470
21471 /* When skipping or the return gets pending, advance to the next command
21472 * in this line (!returning). Otherwise, ignore the rest of the line.
21473 * Following lines will be ignored by get_func_line(). */
21474 if (returning)
21475 eap->nextcmd = NULL;
21476 else if (eap->nextcmd == NULL) /* no argument */
21477 eap->nextcmd = check_nextcmd(arg);
21478
21479 if (eap->skip)
21480 --emsg_skip;
21481}
21482
21483/*
21484 * Return from a function. Possibly makes the return pending. Also called
21485 * for a pending return at the ":endtry" or after returning from an extra
21486 * do_cmdline(). "reanimate" is used in the latter case. "is_cmd" is set
Bram Moolenaar33570922005-01-25 22:26:29 +000021487 * when called due to a ":return" command. "rettv" may point to a typval_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021488 * with the return rettv. Returns TRUE when the return can be carried out,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021489 * FALSE when the return gets pending.
21490 */
21491 int
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021492do_return(eap, reanimate, is_cmd, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021493 exarg_T *eap;
21494 int reanimate;
21495 int is_cmd;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021496 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021497{
21498 int idx;
21499 struct condstack *cstack = eap->cstack;
21500
21501 if (reanimate)
21502 /* Undo the return. */
21503 current_funccal->returned = FALSE;
21504
21505 /*
21506 * Cleanup (and inactivate) conditionals, but stop when a try conditional
21507 * not in its finally clause (which then is to be executed next) is found.
21508 * In this case, make the ":return" pending for execution at the ":endtry".
21509 * Otherwise, return normally.
21510 */
21511 idx = cleanup_conditionals(eap->cstack, 0, TRUE);
21512 if (idx >= 0)
21513 {
21514 cstack->cs_pending[idx] = CSTP_RETURN;
21515
21516 if (!is_cmd && !reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021517 /* A pending return again gets pending. "rettv" points to an
21518 * allocated variable with the rettv of the original ":return"'s
Bram Moolenaar071d4272004-06-13 20:20:40 +000021519 * argument if present or is NULL else. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021520 cstack->cs_rettv[idx] = rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021521 else
21522 {
21523 /* When undoing a return in order to make it pending, get the stored
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021524 * return rettv. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021525 if (reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021526 rettv = current_funccal->rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021527
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021528 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021529 {
21530 /* Store the value of the pending return. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021531 if ((cstack->cs_rettv[idx] = alloc_tv()) != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000021532 *(typval_T *)cstack->cs_rettv[idx] = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021533 else
21534 EMSG(_(e_outofmem));
21535 }
21536 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021537 cstack->cs_rettv[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021538
21539 if (reanimate)
21540 {
21541 /* The pending return value could be overwritten by a ":return"
21542 * without argument in a finally clause; reset the default
21543 * return value. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021544 current_funccal->rettv->v_type = VAR_NUMBER;
21545 current_funccal->rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021546 }
21547 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021548 report_make_pending(CSTP_RETURN, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021549 }
21550 else
21551 {
21552 current_funccal->returned = TRUE;
21553
21554 /* If the return is carried out now, store the return value. For
21555 * a return immediately after reanimation, the value is already
21556 * there. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021557 if (!reanimate && rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021558 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021559 clear_tv(current_funccal->rettv);
Bram Moolenaar33570922005-01-25 22:26:29 +000021560 *current_funccal->rettv = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021561 if (!is_cmd)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021562 vim_free(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021563 }
21564 }
21565
21566 return idx < 0;
21567}
21568
21569/*
21570 * Free the variable with a pending return value.
21571 */
21572 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021573discard_pending_return(rettv)
21574 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021575{
Bram Moolenaar33570922005-01-25 22:26:29 +000021576 free_tv((typval_T *)rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021577}
21578
21579/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021580 * Generate a return command for producing the value of "rettv". The result
Bram Moolenaar071d4272004-06-13 20:20:40 +000021581 * is an allocated string. Used by report_pending() for verbose messages.
21582 */
21583 char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021584get_return_cmd(rettv)
21585 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021586{
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021587 char_u *s = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021588 char_u *tofree = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021589 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021590
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021591 if (rettv != NULL)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021592 s = echo_string((typval_T *)rettv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021593 if (s == NULL)
21594 s = (char_u *)"";
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021595
21596 STRCPY(IObuff, ":return ");
21597 STRNCPY(IObuff + 8, s, IOSIZE - 8);
21598 if (STRLEN(s) + 8 >= IOSIZE)
21599 STRCPY(IObuff + IOSIZE - 4, "...");
21600 vim_free(tofree);
21601 return vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021602}
21603
21604/*
21605 * Get next function line.
21606 * Called by do_cmdline() to get the next line.
21607 * Returns allocated string, or NULL for end of function.
21608 */
21609/* ARGSUSED */
21610 char_u *
21611get_func_line(c, cookie, indent)
21612 int c; /* not used */
21613 void *cookie;
21614 int indent; /* not used */
21615{
Bram Moolenaar33570922005-01-25 22:26:29 +000021616 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021617 ufunc_T *fp = fcp->func;
21618 char_u *retval;
21619 garray_T *gap; /* growarray with function lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021620
21621 /* If breakpoints have been added/deleted need to check for it. */
21622 if (fcp->dbg_tick != debug_tick)
21623 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021624 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021625 sourcing_lnum);
21626 fcp->dbg_tick = debug_tick;
21627 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021628#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021629 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021630 func_line_end(cookie);
21631#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021632
Bram Moolenaar05159a02005-02-26 23:04:13 +000021633 gap = &fp->uf_lines;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021634 if (((fp->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
21635 || fcp->returned)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021636 retval = NULL;
21637 else
21638 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021639 /* Skip NULL lines (continuation lines). */
21640 while (fcp->linenr < gap->ga_len
21641 && ((char_u **)(gap->ga_data))[fcp->linenr] == NULL)
21642 ++fcp->linenr;
21643 if (fcp->linenr >= gap->ga_len)
21644 retval = NULL;
21645 else
21646 {
21647 retval = vim_strsave(((char_u **)(gap->ga_data))[fcp->linenr++]);
21648 sourcing_lnum = fcp->linenr;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021649#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021650 if (do_profiling == PROF_YES)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021651 func_line_start(cookie);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021652#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021653 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021654 }
21655
21656 /* Did we encounter a breakpoint? */
21657 if (fcp->breakpoint != 0 && fcp->breakpoint <= sourcing_lnum)
21658 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021659 dbg_breakpoint(fp->uf_name, sourcing_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021660 /* Find next breakpoint. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000021661 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021662 sourcing_lnum);
21663 fcp->dbg_tick = debug_tick;
21664 }
21665
21666 return retval;
21667}
21668
Bram Moolenaar05159a02005-02-26 23:04:13 +000021669#if defined(FEAT_PROFILE) || defined(PROTO)
21670/*
21671 * Called when starting to read a function line.
21672 * "sourcing_lnum" must be correct!
21673 * When skipping lines it may not actually be executed, but we won't find out
21674 * until later and we need to store the time now.
21675 */
21676 void
21677func_line_start(cookie)
21678 void *cookie;
21679{
21680 funccall_T *fcp = (funccall_T *)cookie;
21681 ufunc_T *fp = fcp->func;
21682
21683 if (fp->uf_profiling && sourcing_lnum >= 1
21684 && sourcing_lnum <= fp->uf_lines.ga_len)
21685 {
21686 fp->uf_tml_idx = sourcing_lnum - 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021687 /* Skip continuation lines. */
21688 while (fp->uf_tml_idx > 0 && FUNCLINE(fp, fp->uf_tml_idx) == NULL)
21689 --fp->uf_tml_idx;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021690 fp->uf_tml_execed = FALSE;
21691 profile_start(&fp->uf_tml_start);
21692 profile_zero(&fp->uf_tml_children);
21693 profile_get_wait(&fp->uf_tml_wait);
21694 }
21695}
21696
21697/*
21698 * Called when actually executing a function line.
21699 */
21700 void
21701func_line_exec(cookie)
21702 void *cookie;
21703{
21704 funccall_T *fcp = (funccall_T *)cookie;
21705 ufunc_T *fp = fcp->func;
21706
21707 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21708 fp->uf_tml_execed = TRUE;
21709}
21710
21711/*
21712 * Called when done with a function line.
21713 */
21714 void
21715func_line_end(cookie)
21716 void *cookie;
21717{
21718 funccall_T *fcp = (funccall_T *)cookie;
21719 ufunc_T *fp = fcp->func;
21720
21721 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21722 {
21723 if (fp->uf_tml_execed)
21724 {
21725 ++fp->uf_tml_count[fp->uf_tml_idx];
21726 profile_end(&fp->uf_tml_start);
21727 profile_sub_wait(&fp->uf_tml_wait, &fp->uf_tml_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021728 profile_add(&fp->uf_tml_total[fp->uf_tml_idx], &fp->uf_tml_start);
Bram Moolenaar1056d982006-03-09 22:37:52 +000021729 profile_self(&fp->uf_tml_self[fp->uf_tml_idx], &fp->uf_tml_start,
21730 &fp->uf_tml_children);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021731 }
21732 fp->uf_tml_idx = -1;
21733 }
21734}
21735#endif
21736
Bram Moolenaar071d4272004-06-13 20:20:40 +000021737/*
21738 * Return TRUE if the currently active function should be ended, because a
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021739 * return was encountered or an error occurred. Used inside a ":while".
Bram Moolenaar071d4272004-06-13 20:20:40 +000021740 */
21741 int
21742func_has_ended(cookie)
21743 void *cookie;
21744{
Bram Moolenaar33570922005-01-25 22:26:29 +000021745 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021746
21747 /* Ignore the "abort" flag if the abortion behavior has been changed due to
21748 * an error inside a try conditional. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021749 return (((fcp->func->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
Bram Moolenaar071d4272004-06-13 20:20:40 +000021750 || fcp->returned);
21751}
21752
21753/*
21754 * return TRUE if cookie indicates a function which "abort"s on errors.
21755 */
21756 int
21757func_has_abort(cookie)
21758 void *cookie;
21759{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021760 return ((funccall_T *)cookie)->func->uf_flags & FC_ABORT;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021761}
21762
21763#if defined(FEAT_VIMINFO) || defined(FEAT_SESSION)
21764typedef enum
21765{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021766 VAR_FLAVOUR_DEFAULT, /* doesn't start with uppercase */
21767 VAR_FLAVOUR_SESSION, /* starts with uppercase, some lower */
21768 VAR_FLAVOUR_VIMINFO /* all uppercase */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021769} var_flavour_T;
21770
21771static var_flavour_T var_flavour __ARGS((char_u *varname));
21772
21773 static var_flavour_T
21774var_flavour(varname)
21775 char_u *varname;
21776{
21777 char_u *p = varname;
21778
21779 if (ASCII_ISUPPER(*p))
21780 {
21781 while (*(++p))
21782 if (ASCII_ISLOWER(*p))
21783 return VAR_FLAVOUR_SESSION;
21784 return VAR_FLAVOUR_VIMINFO;
21785 }
21786 else
21787 return VAR_FLAVOUR_DEFAULT;
21788}
21789#endif
21790
21791#if defined(FEAT_VIMINFO) || defined(PROTO)
21792/*
21793 * Restore global vars that start with a capital from the viminfo file
21794 */
21795 int
21796read_viminfo_varlist(virp, writing)
21797 vir_T *virp;
21798 int writing;
21799{
21800 char_u *tab;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021801 int type = VAR_NUMBER;
Bram Moolenaar33570922005-01-25 22:26:29 +000021802 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021803
21804 if (!writing && (find_viminfo_parameter('!') != NULL))
21805 {
21806 tab = vim_strchr(virp->vir_line + 1, '\t');
21807 if (tab != NULL)
21808 {
21809 *tab++ = '\0'; /* isolate the variable name */
21810 if (*tab == 'S') /* string var */
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021811 type = VAR_STRING;
21812#ifdef FEAT_FLOAT
21813 else if (*tab == 'F')
21814 type = VAR_FLOAT;
21815#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021816
21817 tab = vim_strchr(tab, '\t');
21818 if (tab != NULL)
21819 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021820 tv.v_type = type;
21821 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021822 tv.vval.v_string = viminfo_readstring(virp,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021823 (int)(tab - virp->vir_line + 1), TRUE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021824#ifdef FEAT_FLOAT
21825 else if (type == VAR_FLOAT)
21826 (void)string2float(tab + 1, &tv.vval.v_float);
21827#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021828 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021829 tv.vval.v_number = atol((char *)tab + 1);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021830 set_var(virp->vir_line + 1, &tv, FALSE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021831 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021832 vim_free(tv.vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021833 }
21834 }
21835 }
21836
21837 return viminfo_readline(virp);
21838}
21839
21840/*
21841 * Write global vars that start with a capital to the viminfo file
21842 */
21843 void
21844write_viminfo_varlist(fp)
21845 FILE *fp;
21846{
Bram Moolenaar33570922005-01-25 22:26:29 +000021847 hashitem_T *hi;
21848 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021849 int todo;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021850 char *s;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021851 char_u *p;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021852 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021853 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021854
21855 if (find_viminfo_parameter('!') == NULL)
21856 return;
21857
21858 fprintf(fp, _("\n# global variables:\n"));
Bram Moolenaara7043832005-01-21 11:56:39 +000021859
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021860 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021861 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021862 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021863 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021864 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021865 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021866 this_var = HI2DI(hi);
21867 if (var_flavour(this_var->di_key) == VAR_FLAVOUR_VIMINFO)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021868 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021869 switch (this_var->di_tv.v_type)
Bram Moolenaara7043832005-01-21 11:56:39 +000021870 {
21871 case VAR_STRING: s = "STR"; break;
21872 case VAR_NUMBER: s = "NUM"; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021873#ifdef FEAT_FLOAT
21874 case VAR_FLOAT: s = "FLO"; break;
21875#endif
Bram Moolenaara7043832005-01-21 11:56:39 +000021876 default: continue;
21877 }
Bram Moolenaar33570922005-01-25 22:26:29 +000021878 fprintf(fp, "!%s\t%s\t", this_var->di_key, s);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021879 p = echo_string(&this_var->di_tv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021880 if (p != NULL)
21881 viminfo_writestring(fp, p);
Bram Moolenaara7043832005-01-21 11:56:39 +000021882 vim_free(tofree);
21883 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021884 }
21885 }
21886}
21887#endif
21888
21889#if defined(FEAT_SESSION) || defined(PROTO)
21890 int
21891store_session_globals(fd)
21892 FILE *fd;
21893{
Bram Moolenaar33570922005-01-25 22:26:29 +000021894 hashitem_T *hi;
21895 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021896 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021897 char_u *p, *t;
21898
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021899 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021900 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021901 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021902 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021903 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021904 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021905 this_var = HI2DI(hi);
21906 if ((this_var->di_tv.v_type == VAR_NUMBER
21907 || this_var->di_tv.v_type == VAR_STRING)
21908 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021909 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021910 /* Escape special characters with a backslash. Turn a LF and
21911 * CR into \n and \r. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021912 p = vim_strsave_escaped(get_tv_string(&this_var->di_tv),
Bram Moolenaara7043832005-01-21 11:56:39 +000021913 (char_u *)"\\\"\n\r");
21914 if (p == NULL) /* out of memory */
21915 break;
21916 for (t = p; *t != NUL; ++t)
21917 if (*t == '\n')
21918 *t = 'n';
21919 else if (*t == '\r')
21920 *t = 'r';
21921 if ((fprintf(fd, "let %s = %c%s%c",
Bram Moolenaar33570922005-01-25 22:26:29 +000021922 this_var->di_key,
21923 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21924 : ' ',
21925 p,
21926 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21927 : ' ') < 0)
Bram Moolenaara7043832005-01-21 11:56:39 +000021928 || put_eol(fd) == FAIL)
21929 {
21930 vim_free(p);
21931 return FAIL;
21932 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021933 vim_free(p);
21934 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021935#ifdef FEAT_FLOAT
21936 else if (this_var->di_tv.v_type == VAR_FLOAT
21937 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
21938 {
21939 float_T f = this_var->di_tv.vval.v_float;
21940 int sign = ' ';
21941
21942 if (f < 0)
21943 {
21944 f = -f;
21945 sign = '-';
21946 }
21947 if ((fprintf(fd, "let %s = %c&%f",
21948 this_var->di_key, sign, f) < 0)
21949 || put_eol(fd) == FAIL)
21950 return FAIL;
21951 }
21952#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021953 }
21954 }
21955 return OK;
21956}
21957#endif
21958
Bram Moolenaar661b1822005-07-28 22:36:45 +000021959/*
21960 * Display script name where an item was last set.
21961 * Should only be invoked when 'verbose' is non-zero.
21962 */
21963 void
21964last_set_msg(scriptID)
21965 scid_T scriptID;
21966{
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000021967 char_u *p;
21968
Bram Moolenaar661b1822005-07-28 22:36:45 +000021969 if (scriptID != 0)
21970 {
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000021971 p = home_replace_save(NULL, get_scriptname(scriptID));
21972 if (p != NULL)
21973 {
21974 verbose_enter();
21975 MSG_PUTS(_("\n\tLast set from "));
21976 MSG_PUTS(p);
21977 vim_free(p);
21978 verbose_leave();
21979 }
Bram Moolenaar661b1822005-07-28 22:36:45 +000021980 }
21981}
21982
Bram Moolenaard812df62008-11-09 12:46:09 +000021983/*
21984 * List v:oldfiles in a nice way.
21985 */
21986/*ARGSUSED*/
21987 void
21988ex_oldfiles(eap)
21989 exarg_T *eap;
21990{
21991 list_T *l = vimvars[VV_OLDFILES].vv_list;
21992 listitem_T *li;
21993 int nr = 0;
21994
21995 if (l == NULL)
21996 msg((char_u *)_("No old files"));
21997 else
21998 {
21999 msg_start();
22000 msg_scroll = TRUE;
22001 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
22002 {
22003 msg_outnum((long)++nr);
22004 MSG_PUTS(": ");
22005 msg_outtrans(get_tv_string(&li->li_tv));
22006 msg_putchar('\n');
22007 out_flush(); /* output one line at a time */
22008 ui_breakcheck();
22009 }
22010 /* Assume "got_int" was set to truncate the listing. */
22011 got_int = FALSE;
22012
22013#ifdef FEAT_BROWSE_CMD
22014 if (cmdmod.browse)
22015 {
22016 quit_more = FALSE;
22017 nr = prompt_for_number(FALSE);
22018 msg_starthere();
22019 if (nr > 0)
22020 {
22021 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
22022 (long)nr);
22023
22024 if (p != NULL)
22025 {
22026 p = expand_env_save(p);
22027 eap->arg = p;
22028 eap->cmdidx = CMD_edit;
22029 cmdmod.browse = FALSE;
22030 do_exedit(eap, NULL);
22031 vim_free(p);
22032 }
22033 }
22034 }
22035#endif
22036 }
22037}
22038
Bram Moolenaar071d4272004-06-13 20:20:40 +000022039#endif /* FEAT_EVAL */
22040
Bram Moolenaar071d4272004-06-13 20:20:40 +000022041
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022042#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022043
22044#ifdef WIN3264
22045/*
22046 * Functions for ":8" filename modifier: get 8.3 version of a filename.
22047 */
22048static int get_short_pathname __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22049static int shortpath_for_invalid_fname __ARGS((char_u **fname, char_u **bufp, int *fnamelen));
22050static int shortpath_for_partial __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22051
22052/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022053 * Get the short path (8.3) for the filename in "fnamep".
22054 * Only works for a valid file name.
22055 * When the path gets longer "fnamep" is changed and the allocated buffer
22056 * is put in "bufp".
22057 * *fnamelen is the length of "fnamep" and set to 0 for a nonexistent path.
22058 * Returns OK on success, FAIL on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022059 */
22060 static int
22061get_short_pathname(fnamep, bufp, fnamelen)
22062 char_u **fnamep;
22063 char_u **bufp;
22064 int *fnamelen;
22065{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022066 int l, len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022067 char_u *newbuf;
22068
22069 len = *fnamelen;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022070 l = GetShortPathName(*fnamep, *fnamep, len);
22071 if (l > len - 1)
22072 {
22073 /* If that doesn't work (not enough space), then save the string
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022074 * and try again with a new buffer big enough. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022075 newbuf = vim_strnsave(*fnamep, l);
22076 if (newbuf == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022077 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022078
22079 vim_free(*bufp);
22080 *fnamep = *bufp = newbuf;
22081
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022082 /* Really should always succeed, as the buffer is big enough. */
22083 l = GetShortPathName(*fnamep, *fnamep, l+1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022084 }
22085
22086 *fnamelen = l;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022087 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022088}
22089
22090/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022091 * Get the short path (8.3) for the filename in "fname". The converted
22092 * path is returned in "bufp".
22093 *
22094 * Some of the directories specified in "fname" may not exist. This function
22095 * will shorten the existing directories at the beginning of the path and then
22096 * append the remaining non-existing path.
22097 *
22098 * fname - Pointer to the filename to shorten. On return, contains the
22099 * pointer to the shortened pathname
22100 * bufp - Pointer to an allocated buffer for the filename.
22101 * fnamelen - Length of the filename pointed to by fname
22102 *
22103 * Returns OK on success (or nothing done) and FAIL on failure (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +000022104 */
22105 static int
22106shortpath_for_invalid_fname(fname, bufp, fnamelen)
22107 char_u **fname;
22108 char_u **bufp;
22109 int *fnamelen;
22110{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022111 char_u *short_fname, *save_fname, *pbuf_unused;
22112 char_u *endp, *save_endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022113 char_u ch;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022114 int old_len, len;
22115 int new_len, sfx_len;
22116 int retval = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022117
22118 /* Make a copy */
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022119 old_len = *fnamelen;
22120 save_fname = vim_strnsave(*fname, old_len);
22121 pbuf_unused = NULL;
22122 short_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022123
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022124 endp = save_fname + old_len - 1; /* Find the end of the copy */
22125 save_endp = endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022126
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022127 /*
22128 * Try shortening the supplied path till it succeeds by removing one
22129 * directory at a time from the tail of the path.
22130 */
22131 len = 0;
22132 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022133 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022134 /* go back one path-separator */
22135 while (endp > save_fname && !after_pathsep(save_fname, endp + 1))
22136 --endp;
22137 if (endp <= save_fname)
22138 break; /* processed the complete path */
22139
22140 /*
22141 * Replace the path separator with a NUL and try to shorten the
22142 * resulting path.
22143 */
22144 ch = *endp;
22145 *endp = 0;
22146 short_fname = save_fname;
Bram Moolenaarc236c162008-07-13 17:41:49 +000022147 len = (int)STRLEN(short_fname) + 1;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022148 if (get_short_pathname(&short_fname, &pbuf_unused, &len) == FAIL)
22149 {
22150 retval = FAIL;
22151 goto theend;
22152 }
22153 *endp = ch; /* preserve the string */
22154
22155 if (len > 0)
22156 break; /* successfully shortened the path */
22157
22158 /* failed to shorten the path. Skip the path separator */
22159 --endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022160 }
22161
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022162 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022163 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022164 /*
22165 * Succeeded in shortening the path. Now concatenate the shortened
22166 * path with the remaining path at the tail.
22167 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022168
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022169 /* Compute the length of the new path. */
22170 sfx_len = (int)(save_endp - endp) + 1;
22171 new_len = len + sfx_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022172
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022173 *fnamelen = new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022174 vim_free(*bufp);
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022175 if (new_len > old_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022176 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022177 /* There is not enough space in the currently allocated string,
22178 * copy it to a buffer big enough. */
22179 *fname = *bufp = vim_strnsave(short_fname, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022180 if (*fname == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022181 {
22182 retval = FAIL;
22183 goto theend;
22184 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022185 }
22186 else
22187 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022188 /* Transfer short_fname to the main buffer (it's big enough),
22189 * unless get_short_pathname() did its work in-place. */
22190 *fname = *bufp = save_fname;
22191 if (short_fname != save_fname)
22192 vim_strncpy(save_fname, short_fname, len);
22193 save_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022194 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022195
22196 /* concat the not-shortened part of the path */
22197 vim_strncpy(*fname + len, endp, sfx_len);
22198 (*fname)[new_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022199 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022200
22201theend:
22202 vim_free(pbuf_unused);
22203 vim_free(save_fname);
22204
22205 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022206}
22207
22208/*
22209 * Get a pathname for a partial path.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022210 * Returns OK for success, FAIL for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022211 */
22212 static int
22213shortpath_for_partial(fnamep, bufp, fnamelen)
22214 char_u **fnamep;
22215 char_u **bufp;
22216 int *fnamelen;
22217{
22218 int sepcount, len, tflen;
22219 char_u *p;
22220 char_u *pbuf, *tfname;
22221 int hasTilde;
22222
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022223 /* Count up the path separators from the RHS.. so we know which part
22224 * of the path to return. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022225 sepcount = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022226 for (p = *fnamep; p < *fnamep + *fnamelen; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022227 if (vim_ispathsep(*p))
22228 ++sepcount;
22229
22230 /* Need full path first (use expand_env() to remove a "~/") */
22231 hasTilde = (**fnamep == '~');
22232 if (hasTilde)
22233 pbuf = tfname = expand_env_save(*fnamep);
22234 else
22235 pbuf = tfname = FullName_save(*fnamep, FALSE);
22236
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000022237 len = tflen = (int)STRLEN(tfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022238
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022239 if (get_short_pathname(&tfname, &pbuf, &len) == FAIL)
22240 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022241
22242 if (len == 0)
22243 {
22244 /* Don't have a valid filename, so shorten the rest of the
22245 * path if we can. This CAN give us invalid 8.3 filenames, but
22246 * there's not a lot of point in guessing what it might be.
22247 */
22248 len = tflen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022249 if (shortpath_for_invalid_fname(&tfname, &pbuf, &len) == FAIL)
22250 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022251 }
22252
22253 /* Count the paths backward to find the beginning of the desired string. */
22254 for (p = tfname + len - 1; p >= tfname; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022255 {
22256#ifdef FEAT_MBYTE
22257 if (has_mbyte)
22258 p -= mb_head_off(tfname, p);
22259#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000022260 if (vim_ispathsep(*p))
22261 {
22262 if (sepcount == 0 || (hasTilde && sepcount == 1))
22263 break;
22264 else
22265 sepcount --;
22266 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022267 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022268 if (hasTilde)
22269 {
22270 --p;
22271 if (p >= tfname)
22272 *p = '~';
22273 else
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022274 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022275 }
22276 else
22277 ++p;
22278
22279 /* Copy in the string - p indexes into tfname - allocated at pbuf */
22280 vim_free(*bufp);
22281 *fnamelen = (int)STRLEN(p);
22282 *bufp = pbuf;
22283 *fnamep = p;
22284
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022285 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022286}
22287#endif /* WIN3264 */
22288
22289/*
22290 * Adjust a filename, according to a string of modifiers.
22291 * *fnamep must be NUL terminated when called. When returning, the length is
22292 * determined by *fnamelen.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022293 * Returns VALID_ flags or -1 for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022294 * When there is an error, *fnamep is set to NULL.
22295 */
22296 int
22297modify_fname(src, usedlen, fnamep, bufp, fnamelen)
22298 char_u *src; /* string with modifiers */
22299 int *usedlen; /* characters after src that are used */
22300 char_u **fnamep; /* file name so far */
22301 char_u **bufp; /* buffer for allocated file name or NULL */
22302 int *fnamelen; /* length of fnamep */
22303{
22304 int valid = 0;
22305 char_u *tail;
22306 char_u *s, *p, *pbuf;
22307 char_u dirname[MAXPATHL];
22308 int c;
22309 int has_fullname = 0;
22310#ifdef WIN3264
22311 int has_shortname = 0;
22312#endif
22313
22314repeat:
22315 /* ":p" - full path/file_name */
22316 if (src[*usedlen] == ':' && src[*usedlen + 1] == 'p')
22317 {
22318 has_fullname = 1;
22319
22320 valid |= VALID_PATH;
22321 *usedlen += 2;
22322
22323 /* Expand "~/path" for all systems and "~user/path" for Unix and VMS */
22324 if ((*fnamep)[0] == '~'
22325#if !defined(UNIX) && !(defined(VMS) && defined(USER_HOME))
22326 && ((*fnamep)[1] == '/'
22327# ifdef BACKSLASH_IN_FILENAME
22328 || (*fnamep)[1] == '\\'
22329# endif
22330 || (*fnamep)[1] == NUL)
22331
22332#endif
22333 )
22334 {
22335 *fnamep = expand_env_save(*fnamep);
22336 vim_free(*bufp); /* free any allocated file name */
22337 *bufp = *fnamep;
22338 if (*fnamep == NULL)
22339 return -1;
22340 }
22341
22342 /* When "/." or "/.." is used: force expansion to get rid of it. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022343 for (p = *fnamep; *p != NUL; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022344 {
22345 if (vim_ispathsep(*p)
22346 && p[1] == '.'
22347 && (p[2] == NUL
22348 || vim_ispathsep(p[2])
22349 || (p[2] == '.'
22350 && (p[3] == NUL || vim_ispathsep(p[3])))))
22351 break;
22352 }
22353
22354 /* FullName_save() is slow, don't use it when not needed. */
22355 if (*p != NUL || !vim_isAbsName(*fnamep))
22356 {
22357 *fnamep = FullName_save(*fnamep, *p != NUL);
22358 vim_free(*bufp); /* free any allocated file name */
22359 *bufp = *fnamep;
22360 if (*fnamep == NULL)
22361 return -1;
22362 }
22363
22364 /* Append a path separator to a directory. */
22365 if (mch_isdir(*fnamep))
22366 {
22367 /* Make room for one or two extra characters. */
22368 *fnamep = vim_strnsave(*fnamep, (int)STRLEN(*fnamep) + 2);
22369 vim_free(*bufp); /* free any allocated file name */
22370 *bufp = *fnamep;
22371 if (*fnamep == NULL)
22372 return -1;
22373 add_pathsep(*fnamep);
22374 }
22375 }
22376
22377 /* ":." - path relative to the current directory */
22378 /* ":~" - path relative to the home directory */
22379 /* ":8" - shortname path - postponed till after */
22380 while (src[*usedlen] == ':'
22381 && ((c = src[*usedlen + 1]) == '.' || c == '~' || c == '8'))
22382 {
22383 *usedlen += 2;
22384 if (c == '8')
22385 {
22386#ifdef WIN3264
22387 has_shortname = 1; /* Postpone this. */
22388#endif
22389 continue;
22390 }
22391 pbuf = NULL;
22392 /* Need full path first (use expand_env() to remove a "~/") */
22393 if (!has_fullname)
22394 {
22395 if (c == '.' && **fnamep == '~')
22396 p = pbuf = expand_env_save(*fnamep);
22397 else
22398 p = pbuf = FullName_save(*fnamep, FALSE);
22399 }
22400 else
22401 p = *fnamep;
22402
22403 has_fullname = 0;
22404
22405 if (p != NULL)
22406 {
22407 if (c == '.')
22408 {
22409 mch_dirname(dirname, MAXPATHL);
22410 s = shorten_fname(p, dirname);
22411 if (s != NULL)
22412 {
22413 *fnamep = s;
22414 if (pbuf != NULL)
22415 {
22416 vim_free(*bufp); /* free any allocated file name */
22417 *bufp = pbuf;
22418 pbuf = NULL;
22419 }
22420 }
22421 }
22422 else
22423 {
22424 home_replace(NULL, p, dirname, MAXPATHL, TRUE);
22425 /* Only replace it when it starts with '~' */
22426 if (*dirname == '~')
22427 {
22428 s = vim_strsave(dirname);
22429 if (s != NULL)
22430 {
22431 *fnamep = s;
22432 vim_free(*bufp);
22433 *bufp = s;
22434 }
22435 }
22436 }
22437 vim_free(pbuf);
22438 }
22439 }
22440
22441 tail = gettail(*fnamep);
22442 *fnamelen = (int)STRLEN(*fnamep);
22443
22444 /* ":h" - head, remove "/file_name", can be repeated */
22445 /* Don't remove the first "/" or "c:\" */
22446 while (src[*usedlen] == ':' && src[*usedlen + 1] == 'h')
22447 {
22448 valid |= VALID_HEAD;
22449 *usedlen += 2;
22450 s = get_past_head(*fnamep);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022451 while (tail > s && after_pathsep(s, tail))
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022452 mb_ptr_back(*fnamep, tail);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022453 *fnamelen = (int)(tail - *fnamep);
22454#ifdef VMS
22455 if (*fnamelen > 0)
22456 *fnamelen += 1; /* the path separator is part of the path */
22457#endif
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022458 if (*fnamelen == 0)
22459 {
22460 /* Result is empty. Turn it into "." to make ":cd %:h" work. */
22461 p = vim_strsave((char_u *)".");
22462 if (p == NULL)
22463 return -1;
22464 vim_free(*bufp);
22465 *bufp = *fnamep = tail = p;
22466 *fnamelen = 1;
22467 }
22468 else
22469 {
22470 while (tail > s && !after_pathsep(s, tail))
22471 mb_ptr_back(*fnamep, tail);
22472 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022473 }
22474
22475 /* ":8" - shortname */
22476 if (src[*usedlen] == ':' && src[*usedlen + 1] == '8')
22477 {
22478 *usedlen += 2;
22479#ifdef WIN3264
22480 has_shortname = 1;
22481#endif
22482 }
22483
22484#ifdef WIN3264
22485 /* Check shortname after we have done 'heads' and before we do 'tails'
22486 */
22487 if (has_shortname)
22488 {
22489 pbuf = NULL;
22490 /* Copy the string if it is shortened by :h */
22491 if (*fnamelen < (int)STRLEN(*fnamep))
22492 {
22493 p = vim_strnsave(*fnamep, *fnamelen);
22494 if (p == 0)
22495 return -1;
22496 vim_free(*bufp);
22497 *bufp = *fnamep = p;
22498 }
22499
22500 /* Split into two implementations - makes it easier. First is where
22501 * there isn't a full name already, second is where there is.
22502 */
22503 if (!has_fullname && !vim_isAbsName(*fnamep))
22504 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022505 if (shortpath_for_partial(fnamep, bufp, fnamelen) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022506 return -1;
22507 }
22508 else
22509 {
22510 int l;
22511
22512 /* Simple case, already have the full-name
22513 * Nearly always shorter, so try first time. */
22514 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022515 if (get_short_pathname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022516 return -1;
22517
22518 if (l == 0)
22519 {
22520 /* Couldn't find the filename.. search the paths.
22521 */
22522 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022523 if (shortpath_for_invalid_fname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022524 return -1;
22525 }
22526 *fnamelen = l;
22527 }
22528 }
22529#endif /* WIN3264 */
22530
22531 /* ":t" - tail, just the basename */
22532 if (src[*usedlen] == ':' && src[*usedlen + 1] == 't')
22533 {
22534 *usedlen += 2;
22535 *fnamelen -= (int)(tail - *fnamep);
22536 *fnamep = tail;
22537 }
22538
22539 /* ":e" - extension, can be repeated */
22540 /* ":r" - root, without extension, can be repeated */
22541 while (src[*usedlen] == ':'
22542 && (src[*usedlen + 1] == 'e' || src[*usedlen + 1] == 'r'))
22543 {
22544 /* find a '.' in the tail:
22545 * - for second :e: before the current fname
22546 * - otherwise: The last '.'
22547 */
22548 if (src[*usedlen + 1] == 'e' && *fnamep > tail)
22549 s = *fnamep - 2;
22550 else
22551 s = *fnamep + *fnamelen - 1;
22552 for ( ; s > tail; --s)
22553 if (s[0] == '.')
22554 break;
22555 if (src[*usedlen + 1] == 'e') /* :e */
22556 {
22557 if (s > tail)
22558 {
22559 *fnamelen += (int)(*fnamep - (s + 1));
22560 *fnamep = s + 1;
22561#ifdef VMS
22562 /* cut version from the extension */
22563 s = *fnamep + *fnamelen - 1;
22564 for ( ; s > *fnamep; --s)
22565 if (s[0] == ';')
22566 break;
22567 if (s > *fnamep)
22568 *fnamelen = s - *fnamep;
22569#endif
22570 }
22571 else if (*fnamep <= tail)
22572 *fnamelen = 0;
22573 }
22574 else /* :r */
22575 {
22576 if (s > tail) /* remove one extension */
22577 *fnamelen = (int)(s - *fnamep);
22578 }
22579 *usedlen += 2;
22580 }
22581
22582 /* ":s?pat?foo?" - substitute */
22583 /* ":gs?pat?foo?" - global substitute */
22584 if (src[*usedlen] == ':'
22585 && (src[*usedlen + 1] == 's'
22586 || (src[*usedlen + 1] == 'g' && src[*usedlen + 2] == 's')))
22587 {
22588 char_u *str;
22589 char_u *pat;
22590 char_u *sub;
22591 int sep;
22592 char_u *flags;
22593 int didit = FALSE;
22594
22595 flags = (char_u *)"";
22596 s = src + *usedlen + 2;
22597 if (src[*usedlen + 1] == 'g')
22598 {
22599 flags = (char_u *)"g";
22600 ++s;
22601 }
22602
22603 sep = *s++;
22604 if (sep)
22605 {
22606 /* find end of pattern */
22607 p = vim_strchr(s, sep);
22608 if (p != NULL)
22609 {
22610 pat = vim_strnsave(s, (int)(p - s));
22611 if (pat != NULL)
22612 {
22613 s = p + 1;
22614 /* find end of substitution */
22615 p = vim_strchr(s, sep);
22616 if (p != NULL)
22617 {
22618 sub = vim_strnsave(s, (int)(p - s));
22619 str = vim_strnsave(*fnamep, *fnamelen);
22620 if (sub != NULL && str != NULL)
22621 {
22622 *usedlen = (int)(p + 1 - src);
22623 s = do_string_sub(str, pat, sub, flags);
22624 if (s != NULL)
22625 {
22626 *fnamep = s;
22627 *fnamelen = (int)STRLEN(s);
22628 vim_free(*bufp);
22629 *bufp = s;
22630 didit = TRUE;
22631 }
22632 }
22633 vim_free(sub);
22634 vim_free(str);
22635 }
22636 vim_free(pat);
22637 }
22638 }
22639 /* after using ":s", repeat all the modifiers */
22640 if (didit)
22641 goto repeat;
22642 }
22643 }
22644
22645 return valid;
22646}
22647
22648/*
22649 * Perform a substitution on "str" with pattern "pat" and substitute "sub".
22650 * "flags" can be "g" to do a global substitute.
22651 * Returns an allocated string, NULL for error.
22652 */
22653 char_u *
22654do_string_sub(str, pat, sub, flags)
22655 char_u *str;
22656 char_u *pat;
22657 char_u *sub;
22658 char_u *flags;
22659{
22660 int sublen;
22661 regmatch_T regmatch;
22662 int i;
22663 int do_all;
22664 char_u *tail;
22665 garray_T ga;
22666 char_u *ret;
22667 char_u *save_cpo;
22668
22669 /* Make 'cpoptions' empty, so that the 'l' flag doesn't work here */
22670 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022671 p_cpo = empty_option;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022672
22673 ga_init2(&ga, 1, 200);
22674
22675 do_all = (flags[0] == 'g');
22676
22677 regmatch.rm_ic = p_ic;
22678 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
22679 if (regmatch.regprog != NULL)
22680 {
22681 tail = str;
22682 while (vim_regexec_nl(&regmatch, str, (colnr_T)(tail - str)))
22683 {
22684 /*
22685 * Get some space for a temporary buffer to do the substitution
22686 * into. It will contain:
22687 * - The text up to where the match is.
22688 * - The substituted text.
22689 * - The text after the match.
22690 */
22691 sublen = vim_regsub(&regmatch, sub, tail, FALSE, TRUE, FALSE);
22692 if (ga_grow(&ga, (int)(STRLEN(tail) + sublen -
22693 (regmatch.endp[0] - regmatch.startp[0]))) == FAIL)
22694 {
22695 ga_clear(&ga);
22696 break;
22697 }
22698
22699 /* copy the text up to where the match is */
22700 i = (int)(regmatch.startp[0] - tail);
22701 mch_memmove((char_u *)ga.ga_data + ga.ga_len, tail, (size_t)i);
22702 /* add the substituted text */
22703 (void)vim_regsub(&regmatch, sub, (char_u *)ga.ga_data
22704 + ga.ga_len + i, TRUE, TRUE, FALSE);
22705 ga.ga_len += i + sublen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022706 /* avoid getting stuck on a match with an empty string */
22707 if (tail == regmatch.endp[0])
22708 {
22709 if (*tail == NUL)
22710 break;
22711 *((char_u *)ga.ga_data + ga.ga_len) = *tail++;
22712 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022713 }
22714 else
22715 {
22716 tail = regmatch.endp[0];
22717 if (*tail == NUL)
22718 break;
22719 }
22720 if (!do_all)
22721 break;
22722 }
22723
22724 if (ga.ga_data != NULL)
22725 STRCPY((char *)ga.ga_data + ga.ga_len, tail);
22726
22727 vim_free(regmatch.regprog);
22728 }
22729
22730 ret = vim_strsave(ga.ga_data == NULL ? str : (char_u *)ga.ga_data);
22731 ga_clear(&ga);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022732 if (p_cpo == empty_option)
22733 p_cpo = save_cpo;
22734 else
22735 /* Darn, evaluating {sub} expression changed the value. */
22736 free_string_option(save_cpo);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022737
22738 return ret;
22739}
22740
22741#endif /* defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) */