blob: 98fc8edf301c25ac62652456c873775b71a9c539 [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},
7567 {"glob", 1, 1, f_glob},
7568 {"globpath", 2, 2, f_globpath},
7569 {"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
9560 * for 'suffixes' and 'wildignore' */
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{
11326 expand_T xpc;
11327
11328 ExpandInit(&xpc);
11329 xpc.xp_context = EXPAND_FILES;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011330 rettv->v_type = VAR_STRING;
11331 rettv->vval.v_string = ExpandOne(&xpc, get_tv_string(&argvars[0]),
Bram Moolenaar071d4272004-06-13 20:20:40 +000011332 NULL, WILD_USE_NL|WILD_SILENT, WILD_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011333}
11334
11335/*
11336 * "globpath()" function
11337 */
11338 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011339f_globpath(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011340 typval_T *argvars;
11341 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011342{
11343 char_u buf1[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011344 char_u *file = get_tv_string_buf_chk(&argvars[1], buf1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011345
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011346 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011347 if (file == NULL)
11348 rettv->vval.v_string = NULL;
11349 else
11350 rettv->vval.v_string = globpath(get_tv_string(&argvars[0]), file);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011351}
11352
11353/*
11354 * "has()" function
11355 */
11356 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011357f_has(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011358 typval_T *argvars;
11359 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011360{
11361 int i;
11362 char_u *name;
11363 int n = FALSE;
11364 static char *(has_list[]) =
11365 {
11366#ifdef AMIGA
11367 "amiga",
11368# ifdef FEAT_ARP
11369 "arp",
11370# endif
11371#endif
11372#ifdef __BEOS__
11373 "beos",
11374#endif
11375#ifdef MSDOS
11376# ifdef DJGPP
11377 "dos32",
11378# else
11379 "dos16",
11380# endif
11381#endif
Bram Moolenaar241a8aa2005-12-06 20:04:44 +000011382#ifdef MACOS
Bram Moolenaar071d4272004-06-13 20:20:40 +000011383 "mac",
11384#endif
11385#if defined(MACOS_X_UNIX)
11386 "macunix",
11387#endif
11388#ifdef OS2
11389 "os2",
11390#endif
11391#ifdef __QNX__
11392 "qnx",
11393#endif
11394#ifdef RISCOS
11395 "riscos",
11396#endif
11397#ifdef UNIX
11398 "unix",
11399#endif
11400#ifdef VMS
11401 "vms",
11402#endif
11403#ifdef WIN16
11404 "win16",
11405#endif
11406#ifdef WIN32
11407 "win32",
11408#endif
11409#if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
11410 "win32unix",
11411#endif
11412#ifdef WIN64
11413 "win64",
11414#endif
11415#ifdef EBCDIC
11416 "ebcdic",
11417#endif
11418#ifndef CASE_INSENSITIVE_FILENAME
11419 "fname_case",
11420#endif
11421#ifdef FEAT_ARABIC
11422 "arabic",
11423#endif
11424#ifdef FEAT_AUTOCMD
11425 "autocmd",
11426#endif
11427#ifdef FEAT_BEVAL
11428 "balloon_eval",
Bram Moolenaar342337a2005-07-21 21:11:17 +000011429# ifndef FEAT_GUI_W32 /* other GUIs always have multiline balloons */
11430 "balloon_multiline",
11431# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011432#endif
11433#if defined(SOME_BUILTIN_TCAPS) || defined(ALL_BUILTIN_TCAPS)
11434 "builtin_terms",
11435# ifdef ALL_BUILTIN_TCAPS
11436 "all_builtin_terms",
11437# endif
11438#endif
11439#ifdef FEAT_BYTEOFF
11440 "byte_offset",
11441#endif
11442#ifdef FEAT_CINDENT
11443 "cindent",
11444#endif
11445#ifdef FEAT_CLIENTSERVER
11446 "clientserver",
11447#endif
11448#ifdef FEAT_CLIPBOARD
11449 "clipboard",
11450#endif
11451#ifdef FEAT_CMDL_COMPL
11452 "cmdline_compl",
11453#endif
11454#ifdef FEAT_CMDHIST
11455 "cmdline_hist",
11456#endif
11457#ifdef FEAT_COMMENTS
11458 "comments",
11459#endif
11460#ifdef FEAT_CRYPT
11461 "cryptv",
11462#endif
11463#ifdef FEAT_CSCOPE
11464 "cscope",
11465#endif
Bram Moolenaarac6e65f2005-08-29 22:25:38 +000011466#ifdef CURSOR_SHAPE
11467 "cursorshape",
11468#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011469#ifdef DEBUG
11470 "debug",
11471#endif
11472#ifdef FEAT_CON_DIALOG
11473 "dialog_con",
11474#endif
11475#ifdef FEAT_GUI_DIALOG
11476 "dialog_gui",
11477#endif
11478#ifdef FEAT_DIFF
11479 "diff",
11480#endif
11481#ifdef FEAT_DIGRAPHS
11482 "digraphs",
11483#endif
11484#ifdef FEAT_DND
11485 "dnd",
11486#endif
11487#ifdef FEAT_EMACS_TAGS
11488 "emacs_tags",
11489#endif
11490 "eval", /* always present, of course! */
11491#ifdef FEAT_EX_EXTRA
11492 "ex_extra",
11493#endif
11494#ifdef FEAT_SEARCH_EXTRA
11495 "extra_search",
11496#endif
11497#ifdef FEAT_FKMAP
11498 "farsi",
11499#endif
11500#ifdef FEAT_SEARCHPATH
11501 "file_in_path",
11502#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011503#if defined(UNIX) && !defined(USE_SYSTEM)
11504 "filterpipe",
11505#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011506#ifdef FEAT_FIND_ID
11507 "find_in_path",
11508#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011509#ifdef FEAT_FLOAT
11510 "float",
11511#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011512#ifdef FEAT_FOLDING
11513 "folding",
11514#endif
11515#ifdef FEAT_FOOTER
11516 "footer",
11517#endif
11518#if !defined(USE_SYSTEM) && defined(UNIX)
11519 "fork",
11520#endif
11521#ifdef FEAT_GETTEXT
11522 "gettext",
11523#endif
11524#ifdef FEAT_GUI
11525 "gui",
11526#endif
11527#ifdef FEAT_GUI_ATHENA
11528# ifdef FEAT_GUI_NEXTAW
11529 "gui_neXtaw",
11530# else
11531 "gui_athena",
11532# endif
11533#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011534#ifdef FEAT_GUI_GTK
11535 "gui_gtk",
11536# ifdef HAVE_GTK2
11537 "gui_gtk2",
11538# endif
11539#endif
Bram Moolenaar7b188622007-09-25 10:51:12 +000011540#ifdef FEAT_GUI_GNOME
11541 "gui_gnome",
11542#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011543#ifdef FEAT_GUI_MAC
11544 "gui_mac",
11545#endif
11546#ifdef FEAT_GUI_MOTIF
11547 "gui_motif",
11548#endif
11549#ifdef FEAT_GUI_PHOTON
11550 "gui_photon",
11551#endif
11552#ifdef FEAT_GUI_W16
11553 "gui_win16",
11554#endif
11555#ifdef FEAT_GUI_W32
11556 "gui_win32",
11557#endif
11558#ifdef FEAT_HANGULIN
11559 "hangul_input",
11560#endif
11561#if defined(HAVE_ICONV_H) && defined(USE_ICONV)
11562 "iconv",
11563#endif
11564#ifdef FEAT_INS_EXPAND
11565 "insert_expand",
11566#endif
11567#ifdef FEAT_JUMPLIST
11568 "jumplist",
11569#endif
11570#ifdef FEAT_KEYMAP
11571 "keymap",
11572#endif
11573#ifdef FEAT_LANGMAP
11574 "langmap",
11575#endif
11576#ifdef FEAT_LIBCALL
11577 "libcall",
11578#endif
11579#ifdef FEAT_LINEBREAK
11580 "linebreak",
11581#endif
11582#ifdef FEAT_LISP
11583 "lispindent",
11584#endif
11585#ifdef FEAT_LISTCMDS
11586 "listcmds",
11587#endif
11588#ifdef FEAT_LOCALMAP
11589 "localmap",
11590#endif
11591#ifdef FEAT_MENU
11592 "menu",
11593#endif
11594#ifdef FEAT_SESSION
11595 "mksession",
11596#endif
11597#ifdef FEAT_MODIFY_FNAME
11598 "modify_fname",
11599#endif
11600#ifdef FEAT_MOUSE
11601 "mouse",
11602#endif
11603#ifdef FEAT_MOUSESHAPE
11604 "mouseshape",
11605#endif
11606#if defined(UNIX) || defined(VMS)
11607# ifdef FEAT_MOUSE_DEC
11608 "mouse_dec",
11609# endif
11610# ifdef FEAT_MOUSE_GPM
11611 "mouse_gpm",
11612# endif
11613# ifdef FEAT_MOUSE_JSB
11614 "mouse_jsbterm",
11615# endif
11616# ifdef FEAT_MOUSE_NET
11617 "mouse_netterm",
11618# endif
11619# ifdef FEAT_MOUSE_PTERM
11620 "mouse_pterm",
11621# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011622# ifdef FEAT_SYSMOUSE
11623 "mouse_sysmouse",
11624# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011625# ifdef FEAT_MOUSE_XTERM
11626 "mouse_xterm",
11627# endif
11628#endif
11629#ifdef FEAT_MBYTE
11630 "multi_byte",
11631#endif
11632#ifdef FEAT_MBYTE_IME
11633 "multi_byte_ime",
11634#endif
11635#ifdef FEAT_MULTI_LANG
11636 "multi_lang",
11637#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011638#ifdef FEAT_MZSCHEME
Bram Moolenaar33570922005-01-25 22:26:29 +000011639#ifndef DYNAMIC_MZSCHEME
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011640 "mzscheme",
11641#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011642#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011643#ifdef FEAT_OLE
11644 "ole",
11645#endif
11646#ifdef FEAT_OSFILETYPE
11647 "osfiletype",
11648#endif
11649#ifdef FEAT_PATH_EXTRA
11650 "path_extra",
11651#endif
11652#ifdef FEAT_PERL
11653#ifndef DYNAMIC_PERL
11654 "perl",
11655#endif
11656#endif
11657#ifdef FEAT_PYTHON
11658#ifndef DYNAMIC_PYTHON
11659 "python",
11660#endif
11661#endif
11662#ifdef FEAT_POSTSCRIPT
11663 "postscript",
11664#endif
11665#ifdef FEAT_PRINTER
11666 "printer",
11667#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +000011668#ifdef FEAT_PROFILE
11669 "profile",
11670#endif
Bram Moolenaare580b0c2006-03-21 21:33:03 +000011671#ifdef FEAT_RELTIME
11672 "reltime",
11673#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011674#ifdef FEAT_QUICKFIX
11675 "quickfix",
11676#endif
11677#ifdef FEAT_RIGHTLEFT
11678 "rightleft",
11679#endif
11680#if defined(FEAT_RUBY) && !defined(DYNAMIC_RUBY)
11681 "ruby",
11682#endif
11683#ifdef FEAT_SCROLLBIND
11684 "scrollbind",
11685#endif
11686#ifdef FEAT_CMDL_INFO
11687 "showcmd",
11688 "cmdline_info",
11689#endif
11690#ifdef FEAT_SIGNS
11691 "signs",
11692#endif
11693#ifdef FEAT_SMARTINDENT
11694 "smartindent",
11695#endif
11696#ifdef FEAT_SNIFF
11697 "sniff",
11698#endif
11699#ifdef FEAT_STL_OPT
11700 "statusline",
11701#endif
11702#ifdef FEAT_SUN_WORKSHOP
11703 "sun_workshop",
11704#endif
11705#ifdef FEAT_NETBEANS_INTG
11706 "netbeans_intg",
11707#endif
Bram Moolenaar3c56a962006-03-12 22:19:04 +000011708#ifdef FEAT_SPELL
Bram Moolenaar0e4d8772005-06-07 21:12:49 +000011709 "spell",
11710#endif
11711#ifdef FEAT_SYN_HL
Bram Moolenaar071d4272004-06-13 20:20:40 +000011712 "syntax",
11713#endif
11714#if defined(USE_SYSTEM) || !defined(UNIX)
11715 "system",
11716#endif
11717#ifdef FEAT_TAG_BINS
11718 "tag_binary",
11719#endif
11720#ifdef FEAT_TAG_OLDSTATIC
11721 "tag_old_static",
11722#endif
11723#ifdef FEAT_TAG_ANYWHITE
11724 "tag_any_white",
11725#endif
11726#ifdef FEAT_TCL
11727# ifndef DYNAMIC_TCL
11728 "tcl",
11729# endif
11730#endif
11731#ifdef TERMINFO
11732 "terminfo",
11733#endif
11734#ifdef FEAT_TERMRESPONSE
11735 "termresponse",
11736#endif
11737#ifdef FEAT_TEXTOBJ
11738 "textobjects",
11739#endif
11740#ifdef HAVE_TGETENT
11741 "tgetent",
11742#endif
11743#ifdef FEAT_TITLE
11744 "title",
11745#endif
11746#ifdef FEAT_TOOLBAR
11747 "toolbar",
11748#endif
11749#ifdef FEAT_USR_CMDS
11750 "user-commands", /* was accidentally included in 5.4 */
11751 "user_commands",
11752#endif
11753#ifdef FEAT_VIMINFO
11754 "viminfo",
11755#endif
11756#ifdef FEAT_VERTSPLIT
11757 "vertsplit",
11758#endif
11759#ifdef FEAT_VIRTUALEDIT
11760 "virtualedit",
11761#endif
11762#ifdef FEAT_VISUAL
11763 "visual",
11764#endif
11765#ifdef FEAT_VISUALEXTRA
11766 "visualextra",
11767#endif
11768#ifdef FEAT_VREPLACE
11769 "vreplace",
11770#endif
11771#ifdef FEAT_WILDIGN
11772 "wildignore",
11773#endif
11774#ifdef FEAT_WILDMENU
11775 "wildmenu",
11776#endif
11777#ifdef FEAT_WINDOWS
11778 "windows",
11779#endif
11780#ifdef FEAT_WAK
11781 "winaltkeys",
11782#endif
11783#ifdef FEAT_WRITEBACKUP
11784 "writebackup",
11785#endif
11786#ifdef FEAT_XIM
11787 "xim",
11788#endif
11789#ifdef FEAT_XFONTSET
11790 "xfontset",
11791#endif
11792#ifdef USE_XSMP
11793 "xsmp",
11794#endif
11795#ifdef USE_XSMP_INTERACT
11796 "xsmp_interact",
11797#endif
11798#ifdef FEAT_XCLIPBOARD
11799 "xterm_clipboard",
11800#endif
11801#ifdef FEAT_XTERM_SAVE
11802 "xterm_save",
11803#endif
11804#if defined(UNIX) && defined(FEAT_X11)
11805 "X11",
11806#endif
11807 NULL
11808 };
11809
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011810 name = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011811 for (i = 0; has_list[i] != NULL; ++i)
11812 if (STRICMP(name, has_list[i]) == 0)
11813 {
11814 n = TRUE;
11815 break;
11816 }
11817
11818 if (n == FALSE)
11819 {
11820 if (STRNICMP(name, "patch", 5) == 0)
11821 n = has_patch(atoi((char *)name + 5));
11822 else if (STRICMP(name, "vim_starting") == 0)
11823 n = (starting != 0);
Bram Moolenaar342337a2005-07-21 21:11:17 +000011824#if defined(FEAT_BEVAL) && defined(FEAT_GUI_W32)
11825 else if (STRICMP(name, "balloon_multiline") == 0)
11826 n = multiline_balloon_available();
11827#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011828#ifdef DYNAMIC_TCL
11829 else if (STRICMP(name, "tcl") == 0)
11830 n = tcl_enabled(FALSE);
11831#endif
11832#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
11833 else if (STRICMP(name, "iconv") == 0)
11834 n = iconv_enabled(FALSE);
11835#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011836#ifdef DYNAMIC_MZSCHEME
11837 else if (STRICMP(name, "mzscheme") == 0)
11838 n = mzscheme_enabled(FALSE);
11839#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011840#ifdef DYNAMIC_RUBY
11841 else if (STRICMP(name, "ruby") == 0)
11842 n = ruby_enabled(FALSE);
11843#endif
11844#ifdef DYNAMIC_PYTHON
11845 else if (STRICMP(name, "python") == 0)
11846 n = python_enabled(FALSE);
11847#endif
11848#ifdef DYNAMIC_PERL
11849 else if (STRICMP(name, "perl") == 0)
11850 n = perl_enabled(FALSE);
11851#endif
11852#ifdef FEAT_GUI
11853 else if (STRICMP(name, "gui_running") == 0)
11854 n = (gui.in_use || gui.starting);
11855# ifdef FEAT_GUI_W32
11856 else if (STRICMP(name, "gui_win32s") == 0)
11857 n = gui_is_win32s();
11858# endif
11859# ifdef FEAT_BROWSE
11860 else if (STRICMP(name, "browse") == 0)
11861 n = gui.in_use; /* gui_mch_browse() works when GUI is running */
11862# endif
11863#endif
11864#ifdef FEAT_SYN_HL
11865 else if (STRICMP(name, "syntax_items") == 0)
11866 n = syntax_present(curbuf);
11867#endif
11868#if defined(WIN3264)
11869 else if (STRICMP(name, "win95") == 0)
11870 n = mch_windows95();
11871#endif
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +000011872#ifdef FEAT_NETBEANS_INTG
11873 else if (STRICMP(name, "netbeans_enabled") == 0)
11874 n = usingNetbeans;
11875#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011876 }
11877
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011878 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011879}
11880
11881/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000011882 * "has_key()" function
11883 */
11884 static void
11885f_has_key(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011886 typval_T *argvars;
11887 typval_T *rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011888{
11889 rettv->vval.v_number = 0;
11890 if (argvars[0].v_type != VAR_DICT)
11891 {
11892 EMSG(_(e_dictreq));
11893 return;
11894 }
11895 if (argvars[0].vval.v_dict == NULL)
11896 return;
11897
11898 rettv->vval.v_number = dict_find(argvars[0].vval.v_dict,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000011899 get_tv_string(&argvars[1]), -1) != NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011900}
11901
11902/*
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011903 * "haslocaldir()" function
11904 */
11905/*ARGSUSED*/
11906 static void
11907f_haslocaldir(argvars, rettv)
11908 typval_T *argvars;
11909 typval_T *rettv;
11910{
11911 rettv->vval.v_number = (curwin->w_localdir != NULL);
11912}
11913
11914/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011915 * "hasmapto()" function
11916 */
11917 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011918f_hasmapto(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011919 typval_T *argvars;
11920 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011921{
11922 char_u *name;
11923 char_u *mode;
11924 char_u buf[NUMBUFLEN];
Bram Moolenaar2c932302006-03-18 21:42:09 +000011925 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011926
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011927 name = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011928 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011929 mode = (char_u *)"nvo";
11930 else
Bram Moolenaar2c932302006-03-18 21:42:09 +000011931 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011932 mode = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000011933 if (argvars[2].v_type != VAR_UNKNOWN)
11934 abbr = get_tv_number(&argvars[2]);
11935 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011936
Bram Moolenaar2c932302006-03-18 21:42:09 +000011937 if (map_to_exists(name, mode, abbr))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011938 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011939 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011940 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011941}
11942
11943/*
11944 * "histadd()" function
11945 */
11946/*ARGSUSED*/
11947 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011948f_histadd(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011949 typval_T *argvars;
11950 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011951{
11952#ifdef FEAT_CMDHIST
11953 int histype;
11954 char_u *str;
11955 char_u buf[NUMBUFLEN];
11956#endif
11957
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011958 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011959 if (check_restricted() || check_secure())
11960 return;
11961#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011962 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
11963 histype = str != NULL ? get_histtype(str) : -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011964 if (histype >= 0)
11965 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011966 str = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011967 if (*str != NUL)
11968 {
11969 add_to_history(histype, str, FALSE, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011970 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011971 return;
11972 }
11973 }
11974#endif
11975}
11976
11977/*
11978 * "histdel()" function
11979 */
11980/*ARGSUSED*/
11981 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011982f_histdel(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011983 typval_T *argvars;
11984 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011985{
11986#ifdef FEAT_CMDHIST
11987 int n;
11988 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011989 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011990
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011991 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
11992 if (str == NULL)
11993 n = 0;
11994 else if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011995 /* only one argument: clear entire history */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011996 n = clr_history(get_histtype(str));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011997 else if (argvars[1].v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011998 /* index given: remove that entry */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011999 n = del_history_idx(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012000 (int)get_tv_number(&argvars[1]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012001 else
12002 /* string given: remove all matching entries */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012003 n = del_history_entry(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012004 get_tv_string_buf(&argvars[1], buf));
12005 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012006#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012007 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012008#endif
12009}
12010
12011/*
12012 * "histget()" function
12013 */
12014/*ARGSUSED*/
12015 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012016f_histget(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012017 typval_T *argvars;
12018 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012019{
12020#ifdef FEAT_CMDHIST
12021 int type;
12022 int idx;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012023 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012024
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012025 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12026 if (str == NULL)
12027 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012028 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012029 {
12030 type = get_histtype(str);
12031 if (argvars[1].v_type == VAR_UNKNOWN)
12032 idx = get_history_idx(type);
12033 else
12034 idx = (int)get_tv_number_chk(&argvars[1], NULL);
12035 /* -1 on type error */
12036 rettv->vval.v_string = vim_strsave(get_history_entry(type, idx));
12037 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012038#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012039 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012040#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012041 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012042}
12043
12044/*
12045 * "histnr()" function
12046 */
12047/*ARGSUSED*/
12048 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012049f_histnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012050 typval_T *argvars;
12051 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012052{
12053 int i;
12054
12055#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012056 char_u *history = get_tv_string_chk(&argvars[0]);
12057
12058 i = history == NULL ? HIST_CMD - 1 : get_histtype(history);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012059 if (i >= HIST_CMD && i < HIST_COUNT)
12060 i = get_history_idx(i);
12061 else
12062#endif
12063 i = -1;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012064 rettv->vval.v_number = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012065}
12066
12067/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012068 * "highlightID(name)" function
12069 */
12070 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012071f_hlID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012072 typval_T *argvars;
12073 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012074{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012075 rettv->vval.v_number = syn_name2id(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012076}
12077
12078/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012079 * "highlight_exists()" function
12080 */
12081 static void
12082f_hlexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012083 typval_T *argvars;
12084 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012085{
12086 rettv->vval.v_number = highlight_exists(get_tv_string(&argvars[0]));
12087}
12088
12089/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012090 * "hostname()" function
12091 */
12092/*ARGSUSED*/
12093 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012094f_hostname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012095 typval_T *argvars;
12096 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012097{
12098 char_u hostname[256];
12099
12100 mch_get_host_name(hostname, 256);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012101 rettv->v_type = VAR_STRING;
12102 rettv->vval.v_string = vim_strsave(hostname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012103}
12104
12105/*
12106 * iconv() function
12107 */
12108/*ARGSUSED*/
12109 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012110f_iconv(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012111 typval_T *argvars;
12112 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012113{
12114#ifdef FEAT_MBYTE
12115 char_u buf1[NUMBUFLEN];
12116 char_u buf2[NUMBUFLEN];
12117 char_u *from, *to, *str;
12118 vimconv_T vimconv;
12119#endif
12120
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012121 rettv->v_type = VAR_STRING;
12122 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012123
12124#ifdef FEAT_MBYTE
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012125 str = get_tv_string(&argvars[0]);
12126 from = enc_canonize(enc_skip(get_tv_string_buf(&argvars[1], buf1)));
12127 to = enc_canonize(enc_skip(get_tv_string_buf(&argvars[2], buf2)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012128 vimconv.vc_type = CONV_NONE;
12129 convert_setup(&vimconv, from, to);
12130
12131 /* If the encodings are equal, no conversion needed. */
12132 if (vimconv.vc_type == CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012133 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012134 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012135 rettv->vval.v_string = string_convert(&vimconv, str, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012136
12137 convert_setup(&vimconv, NULL, NULL);
12138 vim_free(from);
12139 vim_free(to);
12140#endif
12141}
12142
12143/*
12144 * "indent()" function
12145 */
12146 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012147f_indent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012148 typval_T *argvars;
12149 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012150{
12151 linenr_T lnum;
12152
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012153 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012154 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012155 rettv->vval.v_number = get_indent_lnum(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012156 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012157 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012158}
12159
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012160/*
12161 * "index()" function
12162 */
12163 static void
12164f_index(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012165 typval_T *argvars;
12166 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012167{
Bram Moolenaar33570922005-01-25 22:26:29 +000012168 list_T *l;
12169 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012170 long idx = 0;
12171 int ic = FALSE;
12172
12173 rettv->vval.v_number = -1;
12174 if (argvars[0].v_type != VAR_LIST)
12175 {
12176 EMSG(_(e_listreq));
12177 return;
12178 }
12179 l = argvars[0].vval.v_list;
12180 if (l != NULL)
12181 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012182 item = l->lv_first;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012183 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012184 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012185 int error = FALSE;
12186
Bram Moolenaar758711c2005-02-02 23:11:38 +000012187 /* Start at specified item. Use the cached index that list_find()
12188 * sets, so that a negative number also works. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012189 item = list_find(l, get_tv_number_chk(&argvars[2], &error));
Bram Moolenaar758711c2005-02-02 23:11:38 +000012190 idx = l->lv_idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012191 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012192 ic = get_tv_number_chk(&argvars[3], &error);
12193 if (error)
12194 item = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012195 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012196
Bram Moolenaar758711c2005-02-02 23:11:38 +000012197 for ( ; item != NULL; item = item->li_next, ++idx)
12198 if (tv_equal(&item->li_tv, &argvars[1], ic))
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012199 {
12200 rettv->vval.v_number = idx;
12201 break;
12202 }
12203 }
12204}
12205
Bram Moolenaar071d4272004-06-13 20:20:40 +000012206static int inputsecret_flag = 0;
12207
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012208static void get_user_input __ARGS((typval_T *argvars, typval_T *rettv, int inputdialog));
12209
Bram Moolenaar071d4272004-06-13 20:20:40 +000012210/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012211 * This function is used by f_input() and f_inputdialog() functions. The third
12212 * argument to f_input() specifies the type of completion to use at the
12213 * prompt. The third argument to f_inputdialog() specifies the value to return
12214 * when the user cancels the prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +000012215 */
12216 static void
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012217get_user_input(argvars, rettv, inputdialog)
Bram Moolenaar33570922005-01-25 22:26:29 +000012218 typval_T *argvars;
12219 typval_T *rettv;
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012220 int inputdialog;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012221{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012222 char_u *prompt = get_tv_string_chk(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012223 char_u *p = NULL;
12224 int c;
12225 char_u buf[NUMBUFLEN];
12226 int cmd_silent_save = cmd_silent;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012227 char_u *defstr = (char_u *)"";
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012228 int xp_type = EXPAND_NOTHING;
12229 char_u *xp_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012230
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012231 rettv->v_type = VAR_STRING;
Bram Moolenaarce85c562007-09-16 12:21:16 +000012232 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012233
12234#ifdef NO_CONSOLE_INPUT
12235 /* While starting up, there is no place to enter text. */
12236 if (no_console_input())
Bram Moolenaar071d4272004-06-13 20:20:40 +000012237 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012238#endif
12239
12240 cmd_silent = FALSE; /* Want to see the prompt. */
12241 if (prompt != NULL)
12242 {
12243 /* Only the part of the message after the last NL is considered as
12244 * prompt for the command line */
12245 p = vim_strrchr(prompt, '\n');
12246 if (p == NULL)
12247 p = prompt;
12248 else
12249 {
12250 ++p;
12251 c = *p;
12252 *p = NUL;
12253 msg_start();
12254 msg_clr_eos();
12255 msg_puts_attr(prompt, echo_attr);
12256 msg_didout = FALSE;
12257 msg_starthere();
12258 *p = c;
12259 }
12260 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012261
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012262 if (argvars[1].v_type != VAR_UNKNOWN)
12263 {
12264 defstr = get_tv_string_buf_chk(&argvars[1], buf);
12265 if (defstr != NULL)
12266 stuffReadbuffSpec(defstr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012267
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012268 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar4463f292005-09-25 22:20:24 +000012269 {
12270 char_u *xp_name;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000012271 int xp_namelen;
Bram Moolenaar4463f292005-09-25 22:20:24 +000012272 long argt;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012273
Bram Moolenaar4463f292005-09-25 22:20:24 +000012274 rettv->vval.v_string = NULL;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012275
Bram Moolenaar4463f292005-09-25 22:20:24 +000012276 xp_name = get_tv_string_buf_chk(&argvars[2], buf);
12277 if (xp_name == NULL)
12278 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012279
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012280 xp_namelen = (int)STRLEN(xp_name);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012281
Bram Moolenaar4463f292005-09-25 22:20:24 +000012282 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt,
12283 &xp_arg) == FAIL)
12284 return;
12285 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012286 }
12287
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012288 if (defstr != NULL)
12289 rettv->vval.v_string =
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012290 getcmdline_prompt(inputsecret_flag ? NUL : '@', p, echo_attr,
12291 xp_type, xp_arg);
12292
12293 vim_free(xp_arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012294
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012295 /* since the user typed this, no need to wait for return */
12296 need_wait_return = FALSE;
12297 msg_didout = FALSE;
12298 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012299 cmd_silent = cmd_silent_save;
12300}
12301
12302/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012303 * "input()" function
12304 * Also handles inputsecret() when inputsecret is set.
12305 */
12306 static void
12307f_input(argvars, rettv)
12308 typval_T *argvars;
12309 typval_T *rettv;
12310{
12311 get_user_input(argvars, rettv, FALSE);
12312}
12313
12314/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012315 * "inputdialog()" function
12316 */
12317 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012318f_inputdialog(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012319 typval_T *argvars;
12320 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012321{
12322#if defined(FEAT_GUI_TEXTDIALOG)
12323 /* Use a GUI dialog if the GUI is running and 'c' is not in 'guioptions' */
12324 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
12325 {
12326 char_u *message;
12327 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012328 char_u *defstr = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +000012329
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012330 message = get_tv_string_chk(&argvars[0]);
12331 if (argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaarc05f93f2006-05-02 22:09:31 +000012332 && (defstr = get_tv_string_buf_chk(&argvars[1], buf)) != NULL)
Bram Moolenaarce0842a2005-07-18 21:58:11 +000012333 vim_strncpy(IObuff, defstr, IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012334 else
12335 IObuff[0] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012336 if (message != NULL && defstr != NULL
12337 && do_dialog(VIM_QUESTION, NULL, message,
12338 (char_u *)_("&OK\n&Cancel"), 1, IObuff) == 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012339 rettv->vval.v_string = vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012340 else
12341 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012342 if (message != NULL && defstr != NULL
12343 && argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012344 && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012345 rettv->vval.v_string = vim_strsave(
12346 get_tv_string_buf(&argvars[2], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012347 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012348 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012349 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012350 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012351 }
12352 else
12353#endif
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012354 get_user_input(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012355}
12356
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012357/*
12358 * "inputlist()" function
12359 */
12360 static void
12361f_inputlist(argvars, rettv)
12362 typval_T *argvars;
12363 typval_T *rettv;
12364{
12365 listitem_T *li;
12366 int selected;
12367 int mouse_used;
12368
12369 rettv->vval.v_number = 0;
12370#ifdef NO_CONSOLE_INPUT
12371 /* While starting up, there is no place to enter text. */
12372 if (no_console_input())
12373 return;
12374#endif
12375 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
12376 {
12377 EMSG2(_(e_listarg), "inputlist()");
12378 return;
12379 }
12380
12381 msg_start();
Bram Moolenaar412f7442006-07-23 19:51:57 +000012382 msg_row = Rows - 1; /* for when 'cmdheight' > 1 */
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012383 lines_left = Rows; /* avoid more prompt */
12384 msg_scroll = TRUE;
12385 msg_clr_eos();
12386
12387 for (li = argvars[0].vval.v_list->lv_first; li != NULL; li = li->li_next)
12388 {
12389 msg_puts(get_tv_string(&li->li_tv));
12390 msg_putchar('\n');
12391 }
12392
12393 /* Ask for choice. */
12394 selected = prompt_for_number(&mouse_used);
12395 if (mouse_used)
12396 selected -= lines_left;
12397
12398 rettv->vval.v_number = selected;
12399}
12400
12401
Bram Moolenaar071d4272004-06-13 20:20:40 +000012402static garray_T ga_userinput = {0, 0, sizeof(tasave_T), 4, NULL};
12403
12404/*
12405 * "inputrestore()" function
12406 */
12407/*ARGSUSED*/
12408 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012409f_inputrestore(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012410 typval_T *argvars;
12411 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012412{
12413 if (ga_userinput.ga_len > 0)
12414 {
12415 --ga_userinput.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012416 restore_typeahead((tasave_T *)(ga_userinput.ga_data)
12417 + ga_userinput.ga_len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012418 rettv->vval.v_number = 0; /* OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012419 }
12420 else if (p_verbose > 1)
12421 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +000012422 verb_msg((char_u *)_("called inputrestore() more often than inputsave()"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012423 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012424 }
12425}
12426
12427/*
12428 * "inputsave()" function
12429 */
12430/*ARGSUSED*/
12431 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012432f_inputsave(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012433 typval_T *argvars;
12434 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012435{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012436 /* Add an entry to the stack of typeahead storage. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012437 if (ga_grow(&ga_userinput, 1) == OK)
12438 {
12439 save_typeahead((tasave_T *)(ga_userinput.ga_data)
12440 + ga_userinput.ga_len);
12441 ++ga_userinput.ga_len;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012442 rettv->vval.v_number = 0; /* OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012443 }
12444 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012445 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012446}
12447
12448/*
12449 * "inputsecret()" function
12450 */
12451 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012452f_inputsecret(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{
12456 ++cmdline_star;
12457 ++inputsecret_flag;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012458 f_input(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012459 --cmdline_star;
12460 --inputsecret_flag;
12461}
12462
12463/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012464 * "insert()" function
12465 */
12466 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012467f_insert(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012468 typval_T *argvars;
12469 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012470{
12471 long before = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000012472 listitem_T *item;
12473 list_T *l;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012474 int error = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012475
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012476 rettv->vval.v_number = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012477 if (argvars[0].v_type != VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000012478 EMSG2(_(e_listarg), "insert()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012479 else if ((l = argvars[0].vval.v_list) != NULL
12480 && !tv_check_lock(l->lv_lock, (char_u *)"insert()"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012481 {
12482 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012483 before = get_tv_number_chk(&argvars[2], &error);
12484 if (error)
12485 return; /* type error; errmsg already given */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012486
Bram Moolenaar758711c2005-02-02 23:11:38 +000012487 if (before == l->lv_len)
12488 item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012489 else
12490 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012491 item = list_find(l, before);
12492 if (item == NULL)
12493 {
12494 EMSGN(_(e_listidx), before);
12495 l = NULL;
12496 }
12497 }
12498 if (l != NULL)
12499 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012500 list_insert_tv(l, &argvars[1], item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012501 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012502 }
12503 }
12504}
12505
12506/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012507 * "isdirectory()" function
12508 */
12509 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012510f_isdirectory(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012511 typval_T *argvars;
12512 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012513{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012514 rettv->vval.v_number = mch_isdir(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012515}
12516
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012517/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012518 * "islocked()" function
12519 */
12520 static void
12521f_islocked(argvars, rettv)
12522 typval_T *argvars;
12523 typval_T *rettv;
12524{
12525 lval_T lv;
12526 char_u *end;
12527 dictitem_T *di;
12528
12529 rettv->vval.v_number = -1;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000012530 end = get_lval(get_tv_string(&argvars[0]), NULL, &lv, FALSE, FALSE, FALSE,
12531 FNE_CHECK_START);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012532 if (end != NULL && lv.ll_name != NULL)
12533 {
12534 if (*end != NUL)
12535 EMSG(_(e_trailing));
12536 else
12537 {
12538 if (lv.ll_tv == NULL)
12539 {
12540 if (check_changedtick(lv.ll_name))
12541 rettv->vval.v_number = 1; /* always locked */
12542 else
12543 {
12544 di = find_var(lv.ll_name, NULL);
12545 if (di != NULL)
12546 {
12547 /* Consider a variable locked when:
12548 * 1. the variable itself is locked
12549 * 2. the value of the variable is locked.
12550 * 3. the List or Dict value is locked.
12551 */
12552 rettv->vval.v_number = ((di->di_flags & DI_FLAGS_LOCK)
12553 || tv_islocked(&di->di_tv));
12554 }
12555 }
12556 }
12557 else if (lv.ll_range)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000012558 EMSG(_("E786: Range not allowed"));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012559 else if (lv.ll_newkey != NULL)
12560 EMSG2(_(e_dictkey), lv.ll_newkey);
12561 else if (lv.ll_list != NULL)
12562 /* List item. */
12563 rettv->vval.v_number = tv_islocked(&lv.ll_li->li_tv);
12564 else
12565 /* Dictionary item. */
12566 rettv->vval.v_number = tv_islocked(&lv.ll_di->di_tv);
12567 }
12568 }
12569
12570 clear_lval(&lv);
12571}
12572
Bram Moolenaar33570922005-01-25 22:26:29 +000012573static void dict_list __ARGS((typval_T *argvars, typval_T *rettv, int what));
Bram Moolenaar8c711452005-01-14 21:53:12 +000012574
12575/*
12576 * Turn a dict into a list:
12577 * "what" == 0: list of keys
12578 * "what" == 1: list of values
12579 * "what" == 2: list of items
12580 */
12581 static void
12582dict_list(argvars, rettv, what)
Bram Moolenaar33570922005-01-25 22:26:29 +000012583 typval_T *argvars;
12584 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012585 int what;
12586{
Bram Moolenaar33570922005-01-25 22:26:29 +000012587 list_T *l2;
12588 dictitem_T *di;
12589 hashitem_T *hi;
12590 listitem_T *li;
12591 listitem_T *li2;
12592 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012593 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012594
12595 rettv->vval.v_number = 0;
12596 if (argvars[0].v_type != VAR_DICT)
12597 {
12598 EMSG(_(e_dictreq));
12599 return;
12600 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012601 if ((d = argvars[0].vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012602 return;
12603
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012604 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012605 return;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012606
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012607 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000012608 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012609 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012610 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +000012611 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012612 --todo;
12613 di = HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012614
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012615 li = listitem_alloc();
12616 if (li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012617 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012618 list_append(rettv->vval.v_list, li);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012619
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012620 if (what == 0)
12621 {
12622 /* keys() */
12623 li->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012624 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012625 li->li_tv.vval.v_string = vim_strsave(di->di_key);
12626 }
12627 else if (what == 1)
12628 {
12629 /* values() */
12630 copy_tv(&di->di_tv, &li->li_tv);
12631 }
12632 else
12633 {
12634 /* items() */
12635 l2 = list_alloc();
12636 li->li_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012637 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012638 li->li_tv.vval.v_list = l2;
12639 if (l2 == NULL)
12640 break;
12641 ++l2->lv_refcount;
12642
12643 li2 = listitem_alloc();
12644 if (li2 == NULL)
12645 break;
12646 list_append(l2, li2);
12647 li2->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012648 li2->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012649 li2->li_tv.vval.v_string = vim_strsave(di->di_key);
12650
12651 li2 = listitem_alloc();
12652 if (li2 == NULL)
12653 break;
12654 list_append(l2, li2);
12655 copy_tv(&di->di_tv, &li2->li_tv);
12656 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000012657 }
12658 }
12659}
12660
12661/*
12662 * "items(dict)" function
12663 */
12664 static void
12665f_items(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012666 typval_T *argvars;
12667 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012668{
12669 dict_list(argvars, rettv, 2);
12670}
12671
Bram Moolenaar071d4272004-06-13 20:20:40 +000012672/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012673 * "join()" function
12674 */
12675 static void
12676f_join(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012677 typval_T *argvars;
12678 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012679{
12680 garray_T ga;
12681 char_u *sep;
12682
12683 rettv->vval.v_number = 0;
12684 if (argvars[0].v_type != VAR_LIST)
12685 {
12686 EMSG(_(e_listreq));
12687 return;
12688 }
12689 if (argvars[0].vval.v_list == NULL)
12690 return;
12691 if (argvars[1].v_type == VAR_UNKNOWN)
12692 sep = (char_u *)" ";
12693 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012694 sep = get_tv_string_chk(&argvars[1]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012695
12696 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012697
12698 if (sep != NULL)
12699 {
12700 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000012701 list_join(&ga, argvars[0].vval.v_list, sep, TRUE, 0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012702 ga_append(&ga, NUL);
12703 rettv->vval.v_string = (char_u *)ga.ga_data;
12704 }
12705 else
12706 rettv->vval.v_string = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012707}
12708
12709/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000012710 * "keys()" function
12711 */
12712 static void
12713f_keys(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012714 typval_T *argvars;
12715 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012716{
12717 dict_list(argvars, rettv, 0);
12718}
12719
12720/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012721 * "last_buffer_nr()" function.
12722 */
12723/*ARGSUSED*/
12724 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012725f_last_buffer_nr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012726 typval_T *argvars;
12727 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012728{
12729 int n = 0;
12730 buf_T *buf;
12731
12732 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
12733 if (n < buf->b_fnum)
12734 n = buf->b_fnum;
12735
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012736 rettv->vval.v_number = n;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012737}
12738
12739/*
12740 * "len()" function
12741 */
12742 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012743f_len(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012744 typval_T *argvars;
12745 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012746{
12747 switch (argvars[0].v_type)
12748 {
12749 case VAR_STRING:
12750 case VAR_NUMBER:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012751 rettv->vval.v_number = (varnumber_T)STRLEN(
12752 get_tv_string(&argvars[0]));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012753 break;
12754 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012755 rettv->vval.v_number = list_len(argvars[0].vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012756 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +000012757 case VAR_DICT:
12758 rettv->vval.v_number = dict_len(argvars[0].vval.v_dict);
12759 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012760 default:
Bram Moolenaare49b69a2005-01-08 16:11:57 +000012761 EMSG(_("E701: Invalid type for len()"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012762 break;
12763 }
12764}
12765
Bram Moolenaar33570922005-01-25 22:26:29 +000012766static void libcall_common __ARGS((typval_T *argvars, typval_T *rettv, int type));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012767
12768 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012769libcall_common(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000012770 typval_T *argvars;
12771 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012772 int type;
12773{
12774#ifdef FEAT_LIBCALL
12775 char_u *string_in;
12776 char_u **string_result;
12777 int nr_result;
12778#endif
12779
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012780 rettv->v_type = type;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012781 if (type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012782 rettv->vval.v_number = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012783 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012784 rettv->vval.v_string = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012785
12786 if (check_restricted() || check_secure())
12787 return;
12788
12789#ifdef FEAT_LIBCALL
12790 /* The first two args must be strings, otherwise its meaningless */
12791 if (argvars[0].v_type == VAR_STRING && argvars[1].v_type == VAR_STRING)
12792 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012793 string_in = NULL;
12794 if (argvars[2].v_type == VAR_STRING)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012795 string_in = argvars[2].vval.v_string;
12796 if (type == VAR_NUMBER)
12797 string_result = NULL;
12798 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012799 string_result = &rettv->vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012800 if (mch_libcall(argvars[0].vval.v_string,
12801 argvars[1].vval.v_string,
12802 string_in,
12803 argvars[2].vval.v_number,
12804 string_result,
12805 &nr_result) == OK
12806 && type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012807 rettv->vval.v_number = nr_result;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012808 }
12809#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000012810}
12811
12812/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012813 * "libcall()" function
12814 */
12815 static void
12816f_libcall(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012817 typval_T *argvars;
12818 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012819{
12820 libcall_common(argvars, rettv, VAR_STRING);
12821}
12822
12823/*
12824 * "libcallnr()" function
12825 */
12826 static void
12827f_libcallnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012828 typval_T *argvars;
12829 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012830{
12831 libcall_common(argvars, rettv, VAR_NUMBER);
12832}
12833
12834/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012835 * "line(string)" function
12836 */
12837 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012838f_line(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012839 typval_T *argvars;
12840 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012841{
12842 linenr_T lnum = 0;
12843 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012844 int fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012845
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012846 fp = var2fpos(&argvars[0], TRUE, &fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012847 if (fp != NULL)
12848 lnum = fp->lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012849 rettv->vval.v_number = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012850}
12851
12852/*
12853 * "line2byte(lnum)" function
12854 */
12855/*ARGSUSED*/
12856 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012857f_line2byte(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012858 typval_T *argvars;
12859 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012860{
12861#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012862 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012863#else
12864 linenr_T lnum;
12865
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012866 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012867 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012868 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012869 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012870 rettv->vval.v_number = ml_find_line_or_offset(curbuf, lnum, NULL);
12871 if (rettv->vval.v_number >= 0)
12872 ++rettv->vval.v_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012873#endif
12874}
12875
12876/*
12877 * "lispindent(lnum)" function
12878 */
12879 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012880f_lispindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012881 typval_T *argvars;
12882 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012883{
12884#ifdef FEAT_LISP
12885 pos_T pos;
12886 linenr_T lnum;
12887
12888 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012889 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012890 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
12891 {
12892 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012893 rettv->vval.v_number = get_lisp_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +000012894 curwin->w_cursor = pos;
12895 }
12896 else
12897#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012898 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012899}
12900
12901/*
12902 * "localtime()" function
12903 */
12904/*ARGSUSED*/
12905 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012906f_localtime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012907 typval_T *argvars;
12908 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012909{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012910 rettv->vval.v_number = (varnumber_T)time(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012911}
12912
Bram Moolenaar33570922005-01-25 22:26:29 +000012913static void get_maparg __ARGS((typval_T *argvars, typval_T *rettv, int exact));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012914
12915 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012916get_maparg(argvars, rettv, exact)
Bram Moolenaar33570922005-01-25 22:26:29 +000012917 typval_T *argvars;
12918 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012919 int exact;
12920{
12921 char_u *keys;
12922 char_u *which;
12923 char_u buf[NUMBUFLEN];
12924 char_u *keys_buf = NULL;
12925 char_u *rhs;
12926 int mode;
12927 garray_T ga;
Bram Moolenaar2c932302006-03-18 21:42:09 +000012928 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012929
12930 /* return empty string for failure */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012931 rettv->v_type = VAR_STRING;
12932 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012933
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012934 keys = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012935 if (*keys == NUL)
12936 return;
12937
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012938 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar2c932302006-03-18 21:42:09 +000012939 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012940 which = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012941 if (argvars[2].v_type != VAR_UNKNOWN)
12942 abbr = get_tv_number(&argvars[2]);
12943 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012944 else
12945 which = (char_u *)"";
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012946 if (which == NULL)
12947 return;
12948
Bram Moolenaar071d4272004-06-13 20:20:40 +000012949 mode = get_map_mode(&which, 0);
12950
Bram Moolenaar3fb9eda2006-05-03 21:29:58 +000012951 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE, FALSE);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012952 rhs = check_map(keys, mode, exact, FALSE, abbr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012953 vim_free(keys_buf);
12954 if (rhs != NULL)
12955 {
12956 ga_init(&ga);
12957 ga.ga_itemsize = 1;
12958 ga.ga_growsize = 40;
12959
12960 while (*rhs != NUL)
12961 ga_concat(&ga, str2special(&rhs, FALSE));
12962
12963 ga_append(&ga, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012964 rettv->vval.v_string = (char_u *)ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012965 }
12966}
12967
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012968#ifdef FEAT_FLOAT
12969/*
12970 * "log10()" function
12971 */
12972 static void
12973f_log10(argvars, rettv)
12974 typval_T *argvars;
12975 typval_T *rettv;
12976{
12977 float_T f;
12978
12979 rettv->v_type = VAR_FLOAT;
12980 if (get_float_arg(argvars, &f) == OK)
12981 rettv->vval.v_float = log10(f);
12982 else
12983 rettv->vval.v_float = 0.0;
12984}
12985#endif
12986
Bram Moolenaar071d4272004-06-13 20:20:40 +000012987/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012988 * "map()" function
12989 */
12990 static void
12991f_map(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012992 typval_T *argvars;
12993 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012994{
12995 filter_map(argvars, rettv, TRUE);
12996}
12997
12998/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012999 * "maparg()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013000 */
13001 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013002f_maparg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013003 typval_T *argvars;
13004 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013005{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013006 get_maparg(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013007}
13008
13009/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013010 * "mapcheck()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013011 */
13012 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013013f_mapcheck(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013014 typval_T *argvars;
13015 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013016{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013017 get_maparg(argvars, rettv, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013018}
13019
Bram Moolenaar33570922005-01-25 22:26:29 +000013020static void find_some_match __ARGS((typval_T *argvars, typval_T *rettv, int start));
Bram Moolenaar071d4272004-06-13 20:20:40 +000013021
13022 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013023find_some_match(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000013024 typval_T *argvars;
13025 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013026 int type;
13027{
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013028 char_u *str = NULL;
13029 char_u *expr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013030 char_u *pat;
13031 regmatch_T regmatch;
13032 char_u patbuf[NUMBUFLEN];
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013033 char_u strbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000013034 char_u *save_cpo;
13035 long start = 0;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013036 long nth = 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013037 colnr_T startcol = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013038 int match = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000013039 list_T *l = NULL;
13040 listitem_T *li = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013041 long idx = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013042 char_u *tofree = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013043
13044 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
13045 save_cpo = p_cpo;
13046 p_cpo = (char_u *)"";
13047
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013048 rettv->vval.v_number = -1;
13049 if (type == 3)
13050 {
13051 /* return empty list when there are no matches */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013052 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013053 goto theend;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013054 }
13055 else if (type == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013056 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013057 rettv->v_type = VAR_STRING;
13058 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013059 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013060
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013061 if (argvars[0].v_type == VAR_LIST)
13062 {
13063 if ((l = argvars[0].vval.v_list) == NULL)
13064 goto theend;
13065 li = l->lv_first;
13066 }
13067 else
13068 expr = str = get_tv_string(&argvars[0]);
13069
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013070 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
13071 if (pat == NULL)
13072 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013073
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013074 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013075 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013076 int error = FALSE;
13077
13078 start = get_tv_number_chk(&argvars[2], &error);
13079 if (error)
13080 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013081 if (l != NULL)
13082 {
13083 li = list_find(l, start);
13084 if (li == NULL)
13085 goto theend;
Bram Moolenaar758711c2005-02-02 23:11:38 +000013086 idx = l->lv_idx; /* use the cached index */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013087 }
13088 else
13089 {
13090 if (start < 0)
13091 start = 0;
13092 if (start > (long)STRLEN(str))
13093 goto theend;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000013094 /* When "count" argument is there ignore matches before "start",
13095 * otherwise skip part of the string. Differs when pattern is "^"
13096 * or "\<". */
13097 if (argvars[3].v_type != VAR_UNKNOWN)
13098 startcol = start;
13099 else
13100 str += start;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013101 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013102
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013103 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013104 nth = get_tv_number_chk(&argvars[3], &error);
13105 if (error)
13106 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013107 }
13108
13109 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
13110 if (regmatch.regprog != NULL)
13111 {
13112 regmatch.rm_ic = p_ic;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013113
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013114 for (;;)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013115 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013116 if (l != NULL)
13117 {
13118 if (li == NULL)
13119 {
13120 match = FALSE;
13121 break;
13122 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013123 vim_free(tofree);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013124 str = echo_string(&li->li_tv, &tofree, strbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013125 if (str == NULL)
13126 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013127 }
13128
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013129 match = vim_regexec_nl(&regmatch, str, (colnr_T)startcol);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013130
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013131 if (match && --nth <= 0)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013132 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013133 if (l == NULL && !match)
13134 break;
13135
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013136 /* Advance to just after the match. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013137 if (l != NULL)
13138 {
13139 li = li->li_next;
13140 ++idx;
13141 }
13142 else
13143 {
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013144#ifdef FEAT_MBYTE
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013145 startcol = (colnr_T)(regmatch.startp[0]
13146 + (*mb_ptr2len)(regmatch.startp[0]) - str);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013147#else
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013148 startcol = regmatch.startp[0] + 1 - str;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013149#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013150 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013151 }
13152
13153 if (match)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013154 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013155 if (type == 3)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013156 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013157 int i;
13158
13159 /* return list with matched string and submatches */
13160 for (i = 0; i < NSUBEXP; ++i)
13161 {
13162 if (regmatch.endp[i] == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000013163 {
13164 if (list_append_string(rettv->vval.v_list,
13165 (char_u *)"", 0) == FAIL)
13166 break;
13167 }
13168 else if (list_append_string(rettv->vval.v_list,
Bram Moolenaar4463f292005-09-25 22:20:24 +000013169 regmatch.startp[i],
13170 (int)(regmatch.endp[i] - regmatch.startp[i]))
13171 == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013172 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013173 }
13174 }
13175 else if (type == 2)
13176 {
13177 /* return matched string */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013178 if (l != NULL)
13179 copy_tv(&li->li_tv, rettv);
13180 else
13181 rettv->vval.v_string = vim_strnsave(regmatch.startp[0],
Bram Moolenaar071d4272004-06-13 20:20:40 +000013182 (int)(regmatch.endp[0] - regmatch.startp[0]));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013183 }
13184 else if (l != NULL)
13185 rettv->vval.v_number = idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013186 else
13187 {
13188 if (type != 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013189 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013190 (varnumber_T)(regmatch.startp[0] - str);
13191 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013192 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013193 (varnumber_T)(regmatch.endp[0] - str);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013194 rettv->vval.v_number += (varnumber_T)(str - expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013195 }
13196 }
13197 vim_free(regmatch.regprog);
13198 }
13199
13200theend:
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013201 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013202 p_cpo = save_cpo;
13203}
13204
13205/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013206 * "match()" function
13207 */
13208 static void
13209f_match(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013210 typval_T *argvars;
13211 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013212{
13213 find_some_match(argvars, rettv, 1);
13214}
13215
13216/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013217 * "matchadd()" function
13218 */
13219 static void
13220f_matchadd(argvars, rettv)
13221 typval_T *argvars;
13222 typval_T *rettv;
13223{
13224#ifdef FEAT_SEARCH_EXTRA
13225 char_u buf[NUMBUFLEN];
13226 char_u *grp = get_tv_string_buf_chk(&argvars[0], buf); /* group */
13227 char_u *pat = get_tv_string_buf_chk(&argvars[1], buf); /* pattern */
13228 int prio = 10; /* default priority */
13229 int id = -1;
13230 int error = FALSE;
13231
13232 rettv->vval.v_number = -1;
13233
13234 if (grp == NULL || pat == NULL)
13235 return;
13236 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013237 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013238 prio = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013239 if (argvars[3].v_type != VAR_UNKNOWN)
13240 id = get_tv_number_chk(&argvars[3], &error);
13241 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013242 if (error == TRUE)
13243 return;
13244 if (id >= 1 && id <= 3)
13245 {
13246 EMSGN("E798: ID is reserved for \":match\": %ld", id);
13247 return;
13248 }
13249
13250 rettv->vval.v_number = match_add(curwin, grp, pat, prio, id);
13251#endif
13252}
13253
13254/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013255 * "matcharg()" function
13256 */
13257 static void
13258f_matcharg(argvars, rettv)
13259 typval_T *argvars;
13260 typval_T *rettv;
13261{
13262 if (rettv_list_alloc(rettv) == OK)
13263 {
13264#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013265 int id = get_tv_number(&argvars[0]);
13266 matchitem_T *m;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013267
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013268 if (id >= 1 && id <= 3)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013269 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013270 if ((m = (matchitem_T *)get_match(curwin, id)) != NULL)
13271 {
13272 list_append_string(rettv->vval.v_list,
13273 syn_id2name(m->hlg_id), -1);
13274 list_append_string(rettv->vval.v_list, m->pattern, -1);
13275 }
13276 else
13277 {
13278 list_append_string(rettv->vval.v_list, NUL, -1);
13279 list_append_string(rettv->vval.v_list, NUL, -1);
13280 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013281 }
13282#endif
13283 }
13284}
13285
13286/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013287 * "matchdelete()" function
13288 */
13289 static void
13290f_matchdelete(argvars, rettv)
13291 typval_T *argvars;
13292 typval_T *rettv;
13293{
13294#ifdef FEAT_SEARCH_EXTRA
13295 rettv->vval.v_number = match_delete(curwin,
13296 (int)get_tv_number(&argvars[0]), TRUE);
13297#endif
13298}
13299
13300/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013301 * "matchend()" function
13302 */
13303 static void
13304f_matchend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013305 typval_T *argvars;
13306 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013307{
13308 find_some_match(argvars, rettv, 0);
13309}
13310
13311/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013312 * "matchlist()" function
13313 */
13314 static void
13315f_matchlist(argvars, rettv)
13316 typval_T *argvars;
13317 typval_T *rettv;
13318{
13319 find_some_match(argvars, rettv, 3);
13320}
13321
13322/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013323 * "matchstr()" function
13324 */
13325 static void
13326f_matchstr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013327 typval_T *argvars;
13328 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013329{
13330 find_some_match(argvars, rettv, 2);
13331}
13332
Bram Moolenaar33570922005-01-25 22:26:29 +000013333static void max_min __ARGS((typval_T *argvars, typval_T *rettv, int domax));
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013334
13335 static void
13336max_min(argvars, rettv, domax)
Bram Moolenaar33570922005-01-25 22:26:29 +000013337 typval_T *argvars;
13338 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013339 int domax;
13340{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013341 long n = 0;
13342 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013343 int error = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013344
13345 if (argvars[0].v_type == VAR_LIST)
13346 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013347 list_T *l;
13348 listitem_T *li;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013349
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013350 l = argvars[0].vval.v_list;
13351 if (l != NULL)
13352 {
13353 li = l->lv_first;
13354 if (li != NULL)
13355 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013356 n = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013357 for (;;)
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013358 {
13359 li = li->li_next;
13360 if (li == NULL)
13361 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013362 i = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013363 if (domax ? i > n : i < n)
13364 n = i;
13365 }
13366 }
13367 }
13368 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000013369 else if (argvars[0].v_type == VAR_DICT)
13370 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013371 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013372 int first = TRUE;
Bram Moolenaar33570922005-01-25 22:26:29 +000013373 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013374 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013375
13376 d = argvars[0].vval.v_dict;
13377 if (d != NULL)
13378 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013379 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000013380 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013381 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013382 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +000013383 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013384 --todo;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013385 i = get_tv_number_chk(&HI2DI(hi)->di_tv, &error);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013386 if (first)
13387 {
13388 n = i;
13389 first = FALSE;
13390 }
13391 else if (domax ? i > n : i < n)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013392 n = i;
13393 }
13394 }
13395 }
13396 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013397 else
Bram Moolenaar758711c2005-02-02 23:11:38 +000013398 EMSG(_(e_listdictarg));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013399 rettv->vval.v_number = error ? 0 : n;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013400}
13401
13402/*
13403 * "max()" function
13404 */
13405 static void
13406f_max(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013407 typval_T *argvars;
13408 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013409{
13410 max_min(argvars, rettv, TRUE);
13411}
13412
13413/*
13414 * "min()" function
13415 */
13416 static void
13417f_min(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013418 typval_T *argvars;
13419 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013420{
13421 max_min(argvars, rettv, FALSE);
13422}
13423
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013424static int mkdir_recurse __ARGS((char_u *dir, int prot));
13425
13426/*
13427 * Create the directory in which "dir" is located, and higher levels when
13428 * needed.
13429 */
13430 static int
13431mkdir_recurse(dir, prot)
13432 char_u *dir;
13433 int prot;
13434{
13435 char_u *p;
13436 char_u *updir;
13437 int r = FAIL;
13438
13439 /* Get end of directory name in "dir".
13440 * We're done when it's "/" or "c:/". */
13441 p = gettail_sep(dir);
13442 if (p <= get_past_head(dir))
13443 return OK;
13444
13445 /* If the directory exists we're done. Otherwise: create it.*/
13446 updir = vim_strnsave(dir, (int)(p - dir));
13447 if (updir == NULL)
13448 return FAIL;
13449 if (mch_isdir(updir))
13450 r = OK;
13451 else if (mkdir_recurse(updir, prot) == OK)
13452 r = vim_mkdir_emsg(updir, prot);
13453 vim_free(updir);
13454 return r;
13455}
13456
13457#ifdef vim_mkdir
13458/*
13459 * "mkdir()" function
13460 */
13461 static void
13462f_mkdir(argvars, rettv)
13463 typval_T *argvars;
13464 typval_T *rettv;
13465{
13466 char_u *dir;
13467 char_u buf[NUMBUFLEN];
13468 int prot = 0755;
13469
13470 rettv->vval.v_number = FAIL;
13471 if (check_restricted() || check_secure())
13472 return;
13473
13474 dir = get_tv_string_buf(&argvars[0], buf);
13475 if (argvars[1].v_type != VAR_UNKNOWN)
13476 {
13477 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013478 prot = get_tv_number_chk(&argvars[2], NULL);
13479 if (prot != -1 && STRCMP(get_tv_string(&argvars[1]), "p") == 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013480 mkdir_recurse(dir, prot);
13481 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013482 rettv->vval.v_number = prot != -1 ? vim_mkdir_emsg(dir, prot) : 0;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013483}
13484#endif
13485
Bram Moolenaar0d660222005-01-07 21:51:51 +000013486/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013487 * "mode()" function
13488 */
13489/*ARGSUSED*/
13490 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013491f_mode(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013492 typval_T *argvars;
13493 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013494{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013495 char_u buf[3];
13496
13497 buf[1] = NUL;
13498 buf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013499
13500#ifdef FEAT_VISUAL
13501 if (VIsual_active)
13502 {
13503 if (VIsual_select)
13504 buf[0] = VIsual_mode + 's' - 'v';
13505 else
13506 buf[0] = VIsual_mode;
13507 }
13508 else
13509#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013510 if (State == HITRETURN || State == ASKMORE || State == SETWSIZE
13511 || State == CONFIRM)
13512 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013513 buf[0] = 'r';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013514 if (State == ASKMORE)
13515 buf[1] = 'm';
13516 else if (State == CONFIRM)
13517 buf[1] = '?';
13518 }
13519 else if (State == EXTERNCMD)
13520 buf[0] = '!';
Bram Moolenaar071d4272004-06-13 20:20:40 +000013521 else if (State & INSERT)
13522 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013523#ifdef FEAT_VREPLACE
13524 if (State & VREPLACE_FLAG)
13525 {
13526 buf[0] = 'R';
13527 buf[1] = 'v';
13528 }
13529 else
13530#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000013531 if (State & REPLACE_FLAG)
13532 buf[0] = 'R';
13533 else
13534 buf[0] = 'i';
13535 }
13536 else if (State & CMDLINE)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013537 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013538 buf[0] = 'c';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013539 if (exmode_active)
13540 buf[1] = 'v';
13541 }
13542 else if (exmode_active)
13543 {
13544 buf[0] = 'c';
13545 buf[1] = 'e';
13546 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013547 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013548 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013549 buf[0] = 'n';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013550 if (finish_op)
13551 buf[1] = 'o';
13552 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013553
Bram Moolenaar05bb9532008-07-04 09:44:11 +000013554 /* Clear out the minor mode when the argument is not a non-zero number or
13555 * non-empty string. */
13556 if (!non_zero_arg(&argvars[0]))
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013557 buf[1] = NUL;
13558
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013559 rettv->vval.v_string = vim_strsave(buf);
13560 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013561}
13562
13563/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013564 * "nextnonblank()" function
13565 */
13566 static void
13567f_nextnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013568 typval_T *argvars;
13569 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013570{
13571 linenr_T lnum;
13572
13573 for (lnum = get_tv_lnum(argvars); ; ++lnum)
13574 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013575 if (lnum < 0 || lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar0d660222005-01-07 21:51:51 +000013576 {
13577 lnum = 0;
13578 break;
13579 }
13580 if (*skipwhite(ml_get(lnum)) != NUL)
13581 break;
13582 }
13583 rettv->vval.v_number = lnum;
13584}
13585
13586/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013587 * "nr2char()" function
13588 */
13589 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013590f_nr2char(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013591 typval_T *argvars;
13592 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013593{
13594 char_u buf[NUMBUFLEN];
13595
13596#ifdef FEAT_MBYTE
13597 if (has_mbyte)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013598 buf[(*mb_char2bytes)((int)get_tv_number(&argvars[0]), buf)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013599 else
13600#endif
13601 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013602 buf[0] = (char_u)get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013603 buf[1] = NUL;
13604 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013605 rettv->v_type = VAR_STRING;
13606 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013607}
13608
13609/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013610 * "pathshorten()" function
13611 */
13612 static void
13613f_pathshorten(argvars, rettv)
13614 typval_T *argvars;
13615 typval_T *rettv;
13616{
13617 char_u *p;
13618
13619 rettv->v_type = VAR_STRING;
13620 p = get_tv_string_chk(&argvars[0]);
13621 if (p == NULL)
13622 rettv->vval.v_string = NULL;
13623 else
13624 {
13625 p = vim_strsave(p);
13626 rettv->vval.v_string = p;
13627 if (p != NULL)
13628 shorten_dir(p);
13629 }
13630}
13631
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013632#ifdef FEAT_FLOAT
13633/*
13634 * "pow()" function
13635 */
13636 static void
13637f_pow(argvars, rettv)
13638 typval_T *argvars;
13639 typval_T *rettv;
13640{
13641 float_T fx, fy;
13642
13643 rettv->v_type = VAR_FLOAT;
13644 if (get_float_arg(argvars, &fx) == OK
13645 && get_float_arg(&argvars[1], &fy) == OK)
13646 rettv->vval.v_float = pow(fx, fy);
13647 else
13648 rettv->vval.v_float = 0.0;
13649}
13650#endif
13651
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013652/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013653 * "prevnonblank()" function
13654 */
13655 static void
13656f_prevnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013657 typval_T *argvars;
13658 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013659{
13660 linenr_T lnum;
13661
13662 lnum = get_tv_lnum(argvars);
13663 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
13664 lnum = 0;
13665 else
13666 while (lnum >= 1 && *skipwhite(ml_get(lnum)) == NUL)
13667 --lnum;
13668 rettv->vval.v_number = lnum;
13669}
13670
Bram Moolenaara6c840d2005-08-22 22:59:46 +000013671#ifdef HAVE_STDARG_H
13672/* This dummy va_list is here because:
13673 * - passing a NULL pointer doesn't work when va_list isn't a pointer
13674 * - locally in the function results in a "used before set" warning
13675 * - using va_start() to initialize it gives "function with fixed args" error */
13676static va_list ap;
13677#endif
13678
Bram Moolenaar8c711452005-01-14 21:53:12 +000013679/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013680 * "printf()" function
13681 */
13682 static void
13683f_printf(argvars, rettv)
13684 typval_T *argvars;
13685 typval_T *rettv;
13686{
13687 rettv->v_type = VAR_STRING;
13688 rettv->vval.v_string = NULL;
Bram Moolenaard52d9742005-08-21 22:20:28 +000013689#ifdef HAVE_STDARG_H /* only very old compilers can't do this */
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013690 {
13691 char_u buf[NUMBUFLEN];
13692 int len;
13693 char_u *s;
13694 int saved_did_emsg = did_emsg;
13695 char *fmt;
13696
13697 /* Get the required length, allocate the buffer and do it for real. */
13698 did_emsg = FALSE;
13699 fmt = (char *)get_tv_string_buf(&argvars[0], buf);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013700 len = vim_vsnprintf(NULL, 0, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013701 if (!did_emsg)
13702 {
13703 s = alloc(len + 1);
13704 if (s != NULL)
13705 {
13706 rettv->vval.v_string = s;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013707 (void)vim_vsnprintf((char *)s, len + 1, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013708 }
13709 }
13710 did_emsg |= saved_did_emsg;
13711 }
13712#endif
13713}
13714
13715/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013716 * "pumvisible()" function
13717 */
13718/*ARGSUSED*/
13719 static void
13720f_pumvisible(argvars, rettv)
13721 typval_T *argvars;
13722 typval_T *rettv;
13723{
13724 rettv->vval.v_number = 0;
13725#ifdef FEAT_INS_EXPAND
13726 if (pum_visible())
13727 rettv->vval.v_number = 1;
13728#endif
13729}
13730
13731/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000013732 * "range()" function
13733 */
13734 static void
13735f_range(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013736 typval_T *argvars;
13737 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013738{
13739 long start;
13740 long end;
13741 long stride = 1;
13742 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013743 int error = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013744
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013745 start = get_tv_number_chk(&argvars[0], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013746 if (argvars[1].v_type == VAR_UNKNOWN)
13747 {
13748 end = start - 1;
13749 start = 0;
13750 }
13751 else
13752 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013753 end = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013754 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013755 stride = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013756 }
13757
13758 rettv->vval.v_number = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013759 if (error)
13760 return; /* type error; errmsg already given */
Bram Moolenaar8c711452005-01-14 21:53:12 +000013761 if (stride == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013762 EMSG(_("E726: Stride is zero"));
Bram Moolenaar92124a32005-06-17 22:03:40 +000013763 else if (stride > 0 ? end + 1 < start : end - 1 > start)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013764 EMSG(_("E727: Start past end"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000013765 else
13766 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013767 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013768 for (i = start; stride > 0 ? i <= end : i >= end; i += stride)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013769 if (list_append_number(rettv->vval.v_list,
13770 (varnumber_T)i) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013771 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013772 }
13773}
13774
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013775/*
13776 * "readfile()" function
13777 */
13778 static void
13779f_readfile(argvars, rettv)
13780 typval_T *argvars;
13781 typval_T *rettv;
13782{
13783 int binary = FALSE;
13784 char_u *fname;
13785 FILE *fd;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013786 listitem_T *li;
13787#define FREAD_SIZE 200 /* optimized for text lines */
13788 char_u buf[FREAD_SIZE];
13789 int readlen; /* size of last fread() */
13790 int buflen; /* nr of valid chars in buf[] */
13791 int filtd; /* how much in buf[] was NUL -> '\n' filtered */
13792 int tolist; /* first byte in buf[] still to be put in list */
13793 int chop; /* how many CR to chop off */
13794 char_u *prev = NULL; /* previously read bytes, if any */
13795 int prevlen = 0; /* length of "prev" if not NULL */
13796 char_u *s;
13797 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013798 long maxline = MAXLNUM;
13799 long cnt = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013800
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013801 if (argvars[1].v_type != VAR_UNKNOWN)
13802 {
13803 if (STRCMP(get_tv_string(&argvars[1]), "b") == 0)
13804 binary = TRUE;
13805 if (argvars[2].v_type != VAR_UNKNOWN)
13806 maxline = get_tv_number(&argvars[2]);
13807 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013808
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013809 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013810 return;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013811
13812 /* Always open the file in binary mode, library functions have a mind of
13813 * their own about CR-LF conversion. */
13814 fname = get_tv_string(&argvars[0]);
13815 if (*fname == NUL || (fd = mch_fopen((char *)fname, READBIN)) == NULL)
13816 {
13817 EMSG2(_(e_notopen), *fname == NUL ? (char_u *)_("<empty>") : fname);
13818 return;
13819 }
13820
13821 filtd = 0;
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013822 while (cnt < maxline || maxline < 0)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013823 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013824 readlen = (int)fread(buf + filtd, 1, FREAD_SIZE - filtd, fd);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013825 buflen = filtd + readlen;
13826 tolist = 0;
13827 for ( ; filtd < buflen || readlen <= 0; ++filtd)
13828 {
13829 if (buf[filtd] == '\n' || readlen <= 0)
13830 {
13831 /* Only when in binary mode add an empty list item when the
13832 * last line ends in a '\n'. */
13833 if (!binary && readlen == 0 && filtd == 0)
13834 break;
13835
13836 /* Found end-of-line or end-of-file: add a text line to the
13837 * list. */
13838 chop = 0;
13839 if (!binary)
13840 while (filtd - chop - 1 >= tolist
13841 && buf[filtd - chop - 1] == '\r')
13842 ++chop;
13843 len = filtd - tolist - chop;
13844 if (prev == NULL)
13845 s = vim_strnsave(buf + tolist, len);
13846 else
13847 {
13848 s = alloc((unsigned)(prevlen + len + 1));
13849 if (s != NULL)
13850 {
13851 mch_memmove(s, prev, prevlen);
13852 vim_free(prev);
13853 prev = NULL;
13854 mch_memmove(s + prevlen, buf + tolist, len);
13855 s[prevlen + len] = NUL;
13856 }
13857 }
13858 tolist = filtd + 1;
13859
13860 li = listitem_alloc();
13861 if (li == NULL)
13862 {
13863 vim_free(s);
13864 break;
13865 }
13866 li->li_tv.v_type = VAR_STRING;
13867 li->li_tv.v_lock = 0;
13868 li->li_tv.vval.v_string = s;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013869 list_append(rettv->vval.v_list, li);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013870
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013871 if (++cnt >= maxline && maxline >= 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013872 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013873 if (readlen <= 0)
13874 break;
13875 }
13876 else if (buf[filtd] == NUL)
13877 buf[filtd] = '\n';
13878 }
13879 if (readlen <= 0)
13880 break;
13881
13882 if (tolist == 0)
13883 {
13884 /* "buf" is full, need to move text to an allocated buffer */
13885 if (prev == NULL)
13886 {
13887 prev = vim_strnsave(buf, buflen);
13888 prevlen = buflen;
13889 }
13890 else
13891 {
13892 s = alloc((unsigned)(prevlen + buflen));
13893 if (s != NULL)
13894 {
13895 mch_memmove(s, prev, prevlen);
13896 mch_memmove(s + prevlen, buf, buflen);
13897 vim_free(prev);
13898 prev = s;
13899 prevlen += buflen;
13900 }
13901 }
13902 filtd = 0;
13903 }
13904 else
13905 {
13906 mch_memmove(buf, buf + tolist, buflen - tolist);
13907 filtd -= tolist;
13908 }
13909 }
13910
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013911 /*
13912 * For a negative line count use only the lines at the end of the file,
13913 * free the rest.
13914 */
13915 if (maxline < 0)
13916 while (cnt > -maxline)
13917 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013918 listitem_remove(rettv->vval.v_list, rettv->vval.v_list->lv_first);
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013919 --cnt;
13920 }
13921
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013922 vim_free(prev);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013923 fclose(fd);
13924}
13925
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013926#if defined(FEAT_RELTIME)
13927static int list2proftime __ARGS((typval_T *arg, proftime_T *tm));
13928
13929/*
13930 * Convert a List to proftime_T.
13931 * Return FAIL when there is something wrong.
13932 */
13933 static int
13934list2proftime(arg, tm)
13935 typval_T *arg;
13936 proftime_T *tm;
13937{
13938 long n1, n2;
13939 int error = FALSE;
13940
13941 if (arg->v_type != VAR_LIST || arg->vval.v_list == NULL
13942 || arg->vval.v_list->lv_len != 2)
13943 return FAIL;
13944 n1 = list_find_nr(arg->vval.v_list, 0L, &error);
13945 n2 = list_find_nr(arg->vval.v_list, 1L, &error);
13946# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000013947 tm->HighPart = n1;
13948 tm->LowPart = n2;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013949# else
13950 tm->tv_sec = n1;
13951 tm->tv_usec = n2;
13952# endif
13953 return error ? FAIL : OK;
13954}
13955#endif /* FEAT_RELTIME */
13956
13957/*
13958 * "reltime()" function
13959 */
13960 static void
13961f_reltime(argvars, rettv)
13962 typval_T *argvars;
13963 typval_T *rettv;
13964{
13965#ifdef FEAT_RELTIME
13966 proftime_T res;
13967 proftime_T start;
13968
13969 if (argvars[0].v_type == VAR_UNKNOWN)
13970 {
13971 /* No arguments: get current time. */
13972 profile_start(&res);
13973 }
13974 else if (argvars[1].v_type == VAR_UNKNOWN)
13975 {
13976 if (list2proftime(&argvars[0], &res) == FAIL)
13977 return;
13978 profile_end(&res);
13979 }
13980 else
13981 {
13982 /* Two arguments: compute the difference. */
13983 if (list2proftime(&argvars[0], &start) == FAIL
13984 || list2proftime(&argvars[1], &res) == FAIL)
13985 return;
13986 profile_sub(&res, &start);
13987 }
13988
13989 if (rettv_list_alloc(rettv) == OK)
13990 {
13991 long n1, n2;
13992
13993# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000013994 n1 = res.HighPart;
13995 n2 = res.LowPart;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013996# else
13997 n1 = res.tv_sec;
13998 n2 = res.tv_usec;
13999# endif
14000 list_append_number(rettv->vval.v_list, (varnumber_T)n1);
14001 list_append_number(rettv->vval.v_list, (varnumber_T)n2);
14002 }
14003#endif
14004}
14005
14006/*
14007 * "reltimestr()" function
14008 */
14009 static void
14010f_reltimestr(argvars, rettv)
14011 typval_T *argvars;
14012 typval_T *rettv;
14013{
14014#ifdef FEAT_RELTIME
14015 proftime_T tm;
14016#endif
14017
14018 rettv->v_type = VAR_STRING;
14019 rettv->vval.v_string = NULL;
14020#ifdef FEAT_RELTIME
14021 if (list2proftime(&argvars[0], &tm) == OK)
14022 rettv->vval.v_string = vim_strsave((char_u *)profile_msg(&tm));
14023#endif
14024}
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000014025
Bram Moolenaar0d660222005-01-07 21:51:51 +000014026#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
14027static void make_connection __ARGS((void));
14028static int check_connection __ARGS((void));
14029
14030 static void
14031make_connection()
14032{
14033 if (X_DISPLAY == NULL
14034# ifdef FEAT_GUI
14035 && !gui.in_use
14036# endif
14037 )
14038 {
14039 x_force_connect = TRUE;
14040 setup_term_clip();
14041 x_force_connect = FALSE;
14042 }
14043}
14044
14045 static int
14046check_connection()
14047{
14048 make_connection();
14049 if (X_DISPLAY == NULL)
14050 {
14051 EMSG(_("E240: No connection to Vim server"));
14052 return FAIL;
14053 }
14054 return OK;
14055}
14056#endif
14057
14058#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014059static void remote_common __ARGS((typval_T *argvars, typval_T *rettv, int expr));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014060
14061 static void
14062remote_common(argvars, rettv, expr)
Bram Moolenaar33570922005-01-25 22:26:29 +000014063 typval_T *argvars;
14064 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014065 int expr;
14066{
14067 char_u *server_name;
14068 char_u *keys;
14069 char_u *r = NULL;
14070 char_u buf[NUMBUFLEN];
14071# ifdef WIN32
14072 HWND w;
14073# else
14074 Window w;
14075# endif
14076
14077 if (check_restricted() || check_secure())
14078 return;
14079
14080# ifdef FEAT_X11
14081 if (check_connection() == FAIL)
14082 return;
14083# endif
14084
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014085 server_name = get_tv_string_chk(&argvars[0]);
14086 if (server_name == NULL)
14087 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014088 keys = get_tv_string_buf(&argvars[1], buf);
14089# ifdef WIN32
14090 if (serverSendToVim(server_name, keys, &r, &w, expr, TRUE) < 0)
14091# else
14092 if (serverSendToVim(X_DISPLAY, server_name, keys, &r, &w, expr, 0, TRUE)
14093 < 0)
14094# endif
14095 {
14096 if (r != NULL)
14097 EMSG(r); /* sending worked but evaluation failed */
14098 else
14099 EMSG2(_("E241: Unable to send to %s"), server_name);
14100 return;
14101 }
14102
14103 rettv->vval.v_string = r;
14104
14105 if (argvars[2].v_type != VAR_UNKNOWN)
14106 {
Bram Moolenaar33570922005-01-25 22:26:29 +000014107 dictitem_T v;
Bram Moolenaar555b2802005-05-19 21:08:39 +000014108 char_u str[30];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014109 char_u *idvar;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014110
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014111 sprintf((char *)str, PRINTF_HEX_LONG_U, (long_u)w);
Bram Moolenaar33570922005-01-25 22:26:29 +000014112 v.di_tv.v_type = VAR_STRING;
14113 v.di_tv.vval.v_string = vim_strsave(str);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014114 idvar = get_tv_string_chk(&argvars[2]);
14115 if (idvar != NULL)
14116 set_var(idvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014117 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014118 }
14119}
14120#endif
14121
14122/*
14123 * "remote_expr()" function
14124 */
14125/*ARGSUSED*/
14126 static void
14127f_remote_expr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014128 typval_T *argvars;
14129 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014130{
14131 rettv->v_type = VAR_STRING;
14132 rettv->vval.v_string = NULL;
14133#ifdef FEAT_CLIENTSERVER
14134 remote_common(argvars, rettv, TRUE);
14135#endif
14136}
14137
14138/*
14139 * "remote_foreground()" function
14140 */
14141/*ARGSUSED*/
14142 static void
14143f_remote_foreground(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014144 typval_T *argvars;
14145 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014146{
14147 rettv->vval.v_number = 0;
14148#ifdef FEAT_CLIENTSERVER
14149# ifdef WIN32
14150 /* On Win32 it's done in this application. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014151 {
14152 char_u *server_name = get_tv_string_chk(&argvars[0]);
14153
14154 if (server_name != NULL)
14155 serverForeground(server_name);
14156 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014157# else
14158 /* Send a foreground() expression to the server. */
14159 argvars[1].v_type = VAR_STRING;
14160 argvars[1].vval.v_string = vim_strsave((char_u *)"foreground()");
14161 argvars[2].v_type = VAR_UNKNOWN;
14162 remote_common(argvars, rettv, TRUE);
14163 vim_free(argvars[1].vval.v_string);
14164# endif
14165#endif
14166}
14167
14168/*ARGSUSED*/
14169 static void
14170f_remote_peek(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014171 typval_T *argvars;
14172 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014173{
14174#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014175 dictitem_T v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014176 char_u *s = NULL;
14177# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014178 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014179# endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014180 char_u *serverid;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014181
14182 if (check_restricted() || check_secure())
14183 {
14184 rettv->vval.v_number = -1;
14185 return;
14186 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014187 serverid = get_tv_string_chk(&argvars[0]);
14188 if (serverid == NULL)
14189 {
14190 rettv->vval.v_number = -1;
14191 return; /* type error; errmsg already given */
14192 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014193# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014194 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014195 if (n == 0)
14196 rettv->vval.v_number = -1;
14197 else
14198 {
14199 s = serverGetReply((HWND)n, FALSE, FALSE, FALSE);
14200 rettv->vval.v_number = (s != NULL);
14201 }
14202# else
14203 rettv->vval.v_number = 0;
14204 if (check_connection() == FAIL)
14205 return;
14206
14207 rettv->vval.v_number = serverPeekReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014208 serverStrToWin(serverid), &s);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014209# endif
14210
14211 if (argvars[1].v_type != VAR_UNKNOWN && rettv->vval.v_number > 0)
14212 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014213 char_u *retvar;
14214
Bram Moolenaar33570922005-01-25 22:26:29 +000014215 v.di_tv.v_type = VAR_STRING;
14216 v.di_tv.vval.v_string = vim_strsave(s);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014217 retvar = get_tv_string_chk(&argvars[1]);
14218 if (retvar != NULL)
14219 set_var(retvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014220 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014221 }
14222#else
14223 rettv->vval.v_number = -1;
14224#endif
14225}
14226
14227/*ARGSUSED*/
14228 static void
14229f_remote_read(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014230 typval_T *argvars;
14231 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014232{
14233 char_u *r = NULL;
14234
14235#ifdef FEAT_CLIENTSERVER
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014236 char_u *serverid = get_tv_string_chk(&argvars[0]);
14237
14238 if (serverid != NULL && !check_restricted() && !check_secure())
Bram Moolenaar0d660222005-01-07 21:51:51 +000014239 {
14240# ifdef WIN32
14241 /* The server's HWND is encoded in the 'id' parameter */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014242 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014243
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014244 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014245 if (n != 0)
14246 r = serverGetReply((HWND)n, FALSE, TRUE, TRUE);
14247 if (r == NULL)
14248# else
14249 if (check_connection() == FAIL || serverReadReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014250 serverStrToWin(serverid), &r, FALSE) < 0)
Bram Moolenaar0d660222005-01-07 21:51:51 +000014251# endif
14252 EMSG(_("E277: Unable to read a server reply"));
14253 }
14254#endif
14255 rettv->v_type = VAR_STRING;
14256 rettv->vval.v_string = r;
14257}
14258
14259/*
14260 * "remote_send()" function
14261 */
14262/*ARGSUSED*/
14263 static void
14264f_remote_send(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014265 typval_T *argvars;
14266 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014267{
14268 rettv->v_type = VAR_STRING;
14269 rettv->vval.v_string = NULL;
14270#ifdef FEAT_CLIENTSERVER
14271 remote_common(argvars, rettv, FALSE);
14272#endif
14273}
14274
14275/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000014276 * "remove()" function
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014277 */
14278 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014279f_remove(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014280 typval_T *argvars;
14281 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014282{
Bram Moolenaar33570922005-01-25 22:26:29 +000014283 list_T *l;
14284 listitem_T *item, *item2;
14285 listitem_T *li;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014286 long idx;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014287 long end;
Bram Moolenaar8c711452005-01-14 21:53:12 +000014288 char_u *key;
Bram Moolenaar33570922005-01-25 22:26:29 +000014289 dict_T *d;
14290 dictitem_T *di;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014291
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014292 rettv->vval.v_number = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +000014293 if (argvars[0].v_type == VAR_DICT)
14294 {
14295 if (argvars[2].v_type != VAR_UNKNOWN)
14296 EMSG2(_(e_toomanyarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014297 else if ((d = argvars[0].vval.v_dict) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014298 && !tv_check_lock(d->dv_lock, (char_u *)"remove() argument"))
Bram Moolenaar8c711452005-01-14 21:53:12 +000014299 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014300 key = get_tv_string_chk(&argvars[1]);
14301 if (key != NULL)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014302 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014303 di = dict_find(d, key, -1);
14304 if (di == NULL)
14305 EMSG2(_(e_dictkey), key);
14306 else
14307 {
14308 *rettv = di->di_tv;
14309 init_tv(&di->di_tv);
14310 dictitem_remove(d, di);
14311 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014312 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000014313 }
14314 }
14315 else if (argvars[0].v_type != VAR_LIST)
14316 EMSG2(_(e_listdictarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014317 else if ((l = argvars[0].vval.v_list) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014318 && !tv_check_lock(l->lv_lock, (char_u *)"remove() argument"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014319 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014320 int error = FALSE;
14321
14322 idx = get_tv_number_chk(&argvars[1], &error);
14323 if (error)
14324 ; /* type error: do nothing, errmsg already given */
14325 else if ((item = list_find(l, idx)) == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014326 EMSGN(_(e_listidx), idx);
14327 else
14328 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014329 if (argvars[2].v_type == VAR_UNKNOWN)
14330 {
14331 /* Remove one item, return its value. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014332 list_remove(l, item, item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014333 *rettv = item->li_tv;
14334 vim_free(item);
14335 }
14336 else
14337 {
14338 /* Remove range of items, return list with values. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014339 end = get_tv_number_chk(&argvars[2], &error);
14340 if (error)
14341 ; /* type error: do nothing */
14342 else if ((item2 = list_find(l, end)) == NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014343 EMSGN(_(e_listidx), end);
14344 else
14345 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000014346 int cnt = 0;
14347
14348 for (li = item; li != NULL; li = li->li_next)
14349 {
14350 ++cnt;
14351 if (li == item2)
14352 break;
14353 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014354 if (li == NULL) /* didn't find "item2" after "item" */
14355 EMSG(_(e_invrange));
14356 else
14357 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014358 list_remove(l, item, item2);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014359 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014360 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014361 l = rettv->vval.v_list;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014362 l->lv_first = item;
14363 l->lv_last = item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014364 item->li_prev = NULL;
14365 item2->li_next = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014366 l->lv_len = cnt;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014367 }
14368 }
14369 }
14370 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014371 }
14372 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014373}
14374
14375/*
14376 * "rename({from}, {to})" function
14377 */
14378 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014379f_rename(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014380 typval_T *argvars;
14381 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014382{
14383 char_u buf[NUMBUFLEN];
14384
14385 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014386 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014387 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014388 rettv->vval.v_number = vim_rename(get_tv_string(&argvars[0]),
14389 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000014390}
14391
14392/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014393 * "repeat()" function
14394 */
14395/*ARGSUSED*/
14396 static void
14397f_repeat(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014398 typval_T *argvars;
14399 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014400{
14401 char_u *p;
14402 int n;
14403 int slen;
14404 int len;
14405 char_u *r;
14406 int i;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014407
14408 n = get_tv_number(&argvars[1]);
14409 if (argvars[0].v_type == VAR_LIST)
14410 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014411 if (rettv_list_alloc(rettv) == OK && argvars[0].vval.v_list != NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014412 while (n-- > 0)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014413 if (list_extend(rettv->vval.v_list,
14414 argvars[0].vval.v_list, NULL) == FAIL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014415 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014416 }
14417 else
14418 {
14419 p = get_tv_string(&argvars[0]);
14420 rettv->v_type = VAR_STRING;
14421 rettv->vval.v_string = NULL;
14422
14423 slen = (int)STRLEN(p);
14424 len = slen * n;
14425 if (len <= 0)
14426 return;
14427
14428 r = alloc(len + 1);
14429 if (r != NULL)
14430 {
14431 for (i = 0; i < n; i++)
14432 mch_memmove(r + i * slen, p, (size_t)slen);
14433 r[len] = NUL;
14434 }
14435
14436 rettv->vval.v_string = r;
14437 }
14438}
14439
14440/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000014441 * "resolve()" function
14442 */
14443 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014444f_resolve(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014445 typval_T *argvars;
14446 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014447{
14448 char_u *p;
14449
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014450 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014451#ifdef FEAT_SHORTCUT
14452 {
14453 char_u *v = NULL;
14454
14455 v = mch_resolve_shortcut(p);
14456 if (v != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014457 rettv->vval.v_string = v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014458 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014459 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014460 }
14461#else
14462# ifdef HAVE_READLINK
14463 {
14464 char_u buf[MAXPATHL + 1];
14465 char_u *cpy;
14466 int len;
14467 char_u *remain = NULL;
14468 char_u *q;
14469 int is_relative_to_current = FALSE;
14470 int has_trailing_pathsep = FALSE;
14471 int limit = 100;
14472
14473 p = vim_strsave(p);
14474
14475 if (p[0] == '.' && (vim_ispathsep(p[1])
14476 || (p[1] == '.' && (vim_ispathsep(p[2])))))
14477 is_relative_to_current = TRUE;
14478
14479 len = STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014480 if (len > 0 && after_pathsep(p, p + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +000014481 has_trailing_pathsep = TRUE;
14482
14483 q = getnextcomp(p);
14484 if (*q != NUL)
14485 {
14486 /* Separate the first path component in "p", and keep the
14487 * remainder (beginning with the path separator). */
14488 remain = vim_strsave(q - 1);
14489 q[-1] = NUL;
14490 }
14491
14492 for (;;)
14493 {
14494 for (;;)
14495 {
14496 len = readlink((char *)p, (char *)buf, MAXPATHL);
14497 if (len <= 0)
14498 break;
14499 buf[len] = NUL;
14500
14501 if (limit-- == 0)
14502 {
14503 vim_free(p);
14504 vim_free(remain);
14505 EMSG(_("E655: Too many symbolic links (cycle?)"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014506 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014507 goto fail;
14508 }
14509
14510 /* Ensure that the result will have a trailing path separator
14511 * if the argument has one. */
14512 if (remain == NULL && has_trailing_pathsep)
14513 add_pathsep(buf);
14514
14515 /* Separate the first path component in the link value and
14516 * concatenate the remainders. */
14517 q = getnextcomp(vim_ispathsep(*buf) ? buf + 1 : buf);
14518 if (*q != NUL)
14519 {
14520 if (remain == NULL)
14521 remain = vim_strsave(q - 1);
14522 else
14523 {
Bram Moolenaar900b4d72005-12-12 22:05:50 +000014524 cpy = concat_str(q - 1, remain);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014525 if (cpy != NULL)
14526 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014527 vim_free(remain);
14528 remain = cpy;
14529 }
14530 }
14531 q[-1] = NUL;
14532 }
14533
14534 q = gettail(p);
14535 if (q > p && *q == NUL)
14536 {
14537 /* Ignore trailing path separator. */
14538 q[-1] = NUL;
14539 q = gettail(p);
14540 }
14541 if (q > p && !mch_isFullName(buf))
14542 {
14543 /* symlink is relative to directory of argument */
14544 cpy = alloc((unsigned)(STRLEN(p) + STRLEN(buf) + 1));
14545 if (cpy != NULL)
14546 {
14547 STRCPY(cpy, p);
14548 STRCPY(gettail(cpy), buf);
14549 vim_free(p);
14550 p = cpy;
14551 }
14552 }
14553 else
14554 {
14555 vim_free(p);
14556 p = vim_strsave(buf);
14557 }
14558 }
14559
14560 if (remain == NULL)
14561 break;
14562
14563 /* Append the first path component of "remain" to "p". */
14564 q = getnextcomp(remain + 1);
14565 len = q - remain - (*q != NUL);
14566 cpy = vim_strnsave(p, STRLEN(p) + len);
14567 if (cpy != NULL)
14568 {
14569 STRNCAT(cpy, remain, len);
14570 vim_free(p);
14571 p = cpy;
14572 }
14573 /* Shorten "remain". */
14574 if (*q != NUL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014575 STRMOVE(remain, q - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014576 else
14577 {
14578 vim_free(remain);
14579 remain = NULL;
14580 }
14581 }
14582
14583 /* If the result is a relative path name, make it explicitly relative to
14584 * the current directory if and only if the argument had this form. */
14585 if (!vim_ispathsep(*p))
14586 {
14587 if (is_relative_to_current
14588 && *p != NUL
14589 && !(p[0] == '.'
14590 && (p[1] == NUL
14591 || vim_ispathsep(p[1])
14592 || (p[1] == '.'
14593 && (p[2] == NUL
14594 || vim_ispathsep(p[2]))))))
14595 {
14596 /* Prepend "./". */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000014597 cpy = concat_str((char_u *)"./", p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014598 if (cpy != NULL)
14599 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014600 vim_free(p);
14601 p = cpy;
14602 }
14603 }
14604 else if (!is_relative_to_current)
14605 {
14606 /* Strip leading "./". */
14607 q = p;
14608 while (q[0] == '.' && vim_ispathsep(q[1]))
14609 q += 2;
14610 if (q > p)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014611 STRMOVE(p, p + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014612 }
14613 }
14614
14615 /* Ensure that the result will have no trailing path separator
14616 * if the argument had none. But keep "/" or "//". */
14617 if (!has_trailing_pathsep)
14618 {
14619 q = p + STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014620 if (after_pathsep(p, q))
14621 *gettail_sep(p) = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014622 }
14623
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014624 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014625 }
14626# else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014627 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014628# endif
14629#endif
14630
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014631 simplify_filename(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014632
14633#ifdef HAVE_READLINK
14634fail:
14635#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014636 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014637}
14638
14639/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000014640 * "reverse({list})" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000014641 */
14642 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000014643f_reverse(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014644 typval_T *argvars;
14645 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014646{
Bram Moolenaar33570922005-01-25 22:26:29 +000014647 list_T *l;
14648 listitem_T *li, *ni;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014649
Bram Moolenaar0d660222005-01-07 21:51:51 +000014650 rettv->vval.v_number = 0;
14651 if (argvars[0].v_type != VAR_LIST)
14652 EMSG2(_(e_listarg), "reverse()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014653 else if ((l = argvars[0].vval.v_list) != NULL
14654 && !tv_check_lock(l->lv_lock, (char_u *)"reverse()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000014655 {
14656 li = l->lv_last;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000014657 l->lv_first = l->lv_last = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014658 l->lv_len = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014659 while (li != NULL)
14660 {
14661 ni = li->li_prev;
14662 list_append(l, li);
14663 li = ni;
14664 }
14665 rettv->vval.v_list = l;
14666 rettv->v_type = VAR_LIST;
14667 ++l->lv_refcount;
Bram Moolenaar52514562008-04-01 11:12:09 +000014668 l->lv_idx = l->lv_len - l->lv_idx - 1;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014669 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014670}
14671
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014672#define SP_NOMOVE 0x01 /* don't move cursor */
14673#define SP_REPEAT 0x02 /* repeat to find outer pair */
14674#define SP_RETCOUNT 0x04 /* return matchcount */
14675#define SP_SETPCMARK 0x08 /* set previous context mark */
14676#define SP_START 0x10 /* accept match at start position */
14677#define SP_SUBPAT 0x20 /* return nr of matching sub-pattern */
14678#define SP_END 0x40 /* leave cursor at end of match */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014679
Bram Moolenaar33570922005-01-25 22:26:29 +000014680static int get_search_arg __ARGS((typval_T *varp, int *flagsp));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014681
14682/*
14683 * Get flags for a search function.
14684 * Possibly sets "p_ws".
14685 * Returns BACKWARD, FORWARD or zero (for an error).
14686 */
14687 static int
14688get_search_arg(varp, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014689 typval_T *varp;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014690 int *flagsp;
14691{
14692 int dir = FORWARD;
14693 char_u *flags;
14694 char_u nbuf[NUMBUFLEN];
14695 int mask;
14696
14697 if (varp->v_type != VAR_UNKNOWN)
14698 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014699 flags = get_tv_string_buf_chk(varp, nbuf);
14700 if (flags == NULL)
14701 return 0; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014702 while (*flags != NUL)
14703 {
14704 switch (*flags)
14705 {
14706 case 'b': dir = BACKWARD; break;
14707 case 'w': p_ws = TRUE; break;
14708 case 'W': p_ws = FALSE; break;
14709 default: mask = 0;
14710 if (flagsp != NULL)
14711 switch (*flags)
14712 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014713 case 'c': mask = SP_START; break;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014714 case 'e': mask = SP_END; break;
14715 case 'm': mask = SP_RETCOUNT; break;
14716 case 'n': mask = SP_NOMOVE; break;
14717 case 'p': mask = SP_SUBPAT; break;
14718 case 'r': mask = SP_REPEAT; break;
14719 case 's': mask = SP_SETPCMARK; break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014720 }
14721 if (mask == 0)
14722 {
14723 EMSG2(_(e_invarg2), flags);
14724 dir = 0;
14725 }
14726 else
14727 *flagsp |= mask;
14728 }
14729 if (dir == 0)
14730 break;
14731 ++flags;
14732 }
14733 }
14734 return dir;
14735}
14736
Bram Moolenaar071d4272004-06-13 20:20:40 +000014737/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014738 * Shared by search() and searchpos() functions
Bram Moolenaar071d4272004-06-13 20:20:40 +000014739 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014740 static int
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014741search_cmn(argvars, match_pos, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014742 typval_T *argvars;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014743 pos_T *match_pos;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014744 int *flagsp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014745{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014746 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014747 char_u *pat;
14748 pos_T pos;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014749 pos_T save_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014750 int save_p_ws = p_ws;
14751 int dir;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014752 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014753 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014754 proftime_T tm;
14755#ifdef FEAT_RELTIME
14756 long time_limit = 0;
14757#endif
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014758 int options = SEARCH_KEEP;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014759 int subpatnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014760
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014761 pat = get_tv_string(&argvars[0]);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014762 dir = get_search_arg(&argvars[1], flagsp); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014763 if (dir == 0)
14764 goto theend;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014765 flags = *flagsp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014766 if (flags & SP_START)
14767 options |= SEARCH_START;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014768 if (flags & SP_END)
14769 options |= SEARCH_END;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014770
Bram Moolenaar76929292008-01-06 19:07:36 +000014771 /* Optional arguments: line number to stop searching and timeout. */
14772 if (argvars[1].v_type != VAR_UNKNOWN && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014773 {
14774 lnum_stop = get_tv_number_chk(&argvars[2], NULL);
14775 if (lnum_stop < 0)
14776 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014777#ifdef FEAT_RELTIME
14778 if (argvars[3].v_type != VAR_UNKNOWN)
14779 {
14780 time_limit = get_tv_number_chk(&argvars[3], NULL);
14781 if (time_limit < 0)
14782 goto theend;
14783 }
14784#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014785 }
14786
Bram Moolenaar76929292008-01-06 19:07:36 +000014787#ifdef FEAT_RELTIME
14788 /* Set the time limit, if there is one. */
14789 profile_setlimit(time_limit, &tm);
14790#endif
14791
Bram Moolenaar231334e2005-07-25 20:46:57 +000014792 /*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014793 * This function does not accept SP_REPEAT and SP_RETCOUNT flags.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014794 * Check to make sure only those flags are set.
14795 * Also, Only the SP_NOMOVE or the SP_SETPCMARK flag can be set. Both
14796 * flags cannot be set. Check for that condition also.
14797 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014798 if (((flags & (SP_REPEAT | SP_RETCOUNT)) != 0)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014799 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014800 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014801 EMSG2(_(e_invarg2), get_tv_string(&argvars[1]));
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014802 goto theend;
14803 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014804
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014805 pos = save_cursor = curwin->w_cursor;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014806 subpatnum = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000014807 options, RE_SEARCH, (linenr_T)lnum_stop, &tm);
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014808 if (subpatnum != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014809 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014810 if (flags & SP_SUBPAT)
14811 retval = subpatnum;
14812 else
14813 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000014814 if (flags & SP_SETPCMARK)
14815 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000014816 curwin->w_cursor = pos;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014817 if (match_pos != NULL)
14818 {
14819 /* Store the match cursor position */
14820 match_pos->lnum = pos.lnum;
14821 match_pos->col = pos.col + 1;
14822 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014823 /* "/$" will put the cursor after the end of the line, may need to
14824 * correct that here */
14825 check_cursor();
14826 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014827
14828 /* If 'n' flag is used: restore cursor position. */
14829 if (flags & SP_NOMOVE)
14830 curwin->w_cursor = save_cursor;
Bram Moolenaar7a42fa32007-07-10 11:28:55 +000014831 else
14832 curwin->w_set_curswant = TRUE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014833theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +000014834 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014835
14836 return retval;
14837}
14838
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014839#ifdef FEAT_FLOAT
14840/*
14841 * "round({float})" function
14842 */
14843 static void
14844f_round(argvars, rettv)
14845 typval_T *argvars;
14846 typval_T *rettv;
14847{
14848 float_T f;
14849
14850 rettv->v_type = VAR_FLOAT;
14851 if (get_float_arg(argvars, &f) == OK)
14852 /* round() is not in C90, use ceil() or floor() instead. */
14853 rettv->vval.v_float = f > 0 ? floor(f + 0.5) : ceil(f - 0.5);
14854 else
14855 rettv->vval.v_float = 0.0;
14856}
14857#endif
14858
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014859/*
14860 * "search()" function
14861 */
14862 static void
14863f_search(argvars, rettv)
14864 typval_T *argvars;
14865 typval_T *rettv;
14866{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014867 int flags = 0;
14868
14869 rettv->vval.v_number = search_cmn(argvars, NULL, &flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014870}
14871
Bram Moolenaar071d4272004-06-13 20:20:40 +000014872/*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014873 * "searchdecl()" function
14874 */
14875 static void
14876f_searchdecl(argvars, rettv)
14877 typval_T *argvars;
14878 typval_T *rettv;
14879{
14880 int locally = 1;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014881 int thisblock = 0;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014882 int error = FALSE;
14883 char_u *name;
14884
14885 rettv->vval.v_number = 1; /* default: FAIL */
14886
14887 name = get_tv_string_chk(&argvars[0]);
14888 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaare6facf92005-09-13 21:22:27 +000014889 {
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014890 locally = get_tv_number_chk(&argvars[1], &error) == 0;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014891 if (!error && argvars[2].v_type != VAR_UNKNOWN)
14892 thisblock = get_tv_number_chk(&argvars[2], &error) != 0;
14893 }
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014894 if (!error && name != NULL)
14895 rettv->vval.v_number = find_decl(name, (int)STRLEN(name),
Bram Moolenaare6facf92005-09-13 21:22:27 +000014896 locally, thisblock, SEARCH_KEEP) == FAIL;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014897}
14898
14899/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014900 * Used by searchpair() and searchpairpos()
Bram Moolenaar071d4272004-06-13 20:20:40 +000014901 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014902 static int
14903searchpair_cmn(argvars, match_pos)
Bram Moolenaar33570922005-01-25 22:26:29 +000014904 typval_T *argvars;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014905 pos_T *match_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014906{
14907 char_u *spat, *mpat, *epat;
14908 char_u *skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014909 int save_p_ws = p_ws;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014910 int dir;
14911 int flags = 0;
14912 char_u nbuf1[NUMBUFLEN];
14913 char_u nbuf2[NUMBUFLEN];
14914 char_u nbuf3[NUMBUFLEN];
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014915 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014916 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014917 long time_limit = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014918
Bram Moolenaar071d4272004-06-13 20:20:40 +000014919 /* Get the three pattern arguments: start, middle, end. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014920 spat = get_tv_string_chk(&argvars[0]);
14921 mpat = get_tv_string_buf_chk(&argvars[1], nbuf1);
14922 epat = get_tv_string_buf_chk(&argvars[2], nbuf2);
14923 if (spat == NULL || mpat == NULL || epat == NULL)
14924 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014925
Bram Moolenaar071d4272004-06-13 20:20:40 +000014926 /* Handle the optional fourth argument: flags */
14927 dir = get_search_arg(&argvars[3], &flags); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014928 if (dir == 0)
14929 goto theend;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014930
14931 /* Don't accept SP_END or SP_SUBPAT.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014932 * Only one of the SP_NOMOVE or SP_SETPCMARK flags can be set.
14933 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014934 if ((flags & (SP_END | SP_SUBPAT)) != 0
14935 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar231334e2005-07-25 20:46:57 +000014936 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014937 EMSG2(_(e_invarg2), get_tv_string(&argvars[3]));
Bram Moolenaar231334e2005-07-25 20:46:57 +000014938 goto theend;
14939 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014940
Bram Moolenaar92de73d2008-01-22 10:59:38 +000014941 /* Using 'r' implies 'W', otherwise it doesn't work. */
14942 if (flags & SP_REPEAT)
14943 p_ws = FALSE;
14944
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014945 /* Optional fifth argument: skip expression */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014946 if (argvars[3].v_type == VAR_UNKNOWN
14947 || argvars[4].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014948 skip = (char_u *)"";
14949 else
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014950 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014951 skip = get_tv_string_buf_chk(&argvars[4], nbuf3);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014952 if (argvars[5].v_type != VAR_UNKNOWN)
14953 {
14954 lnum_stop = get_tv_number_chk(&argvars[5], NULL);
14955 if (lnum_stop < 0)
14956 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014957#ifdef FEAT_RELTIME
14958 if (argvars[6].v_type != VAR_UNKNOWN)
14959 {
14960 time_limit = get_tv_number_chk(&argvars[6], NULL);
14961 if (time_limit < 0)
14962 goto theend;
14963 }
14964#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014965 }
14966 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014967 if (skip == NULL)
14968 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014969
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014970 retval = do_searchpair(spat, mpat, epat, dir, skip, flags,
Bram Moolenaar76929292008-01-06 19:07:36 +000014971 match_pos, lnum_stop, time_limit);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000014972
14973theend:
14974 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014975
14976 return retval;
14977}
14978
14979/*
14980 * "searchpair()" function
14981 */
14982 static void
14983f_searchpair(argvars, rettv)
14984 typval_T *argvars;
14985 typval_T *rettv;
14986{
14987 rettv->vval.v_number = searchpair_cmn(argvars, NULL);
14988}
14989
14990/*
14991 * "searchpairpos()" function
14992 */
14993 static void
14994f_searchpairpos(argvars, rettv)
14995 typval_T *argvars;
14996 typval_T *rettv;
14997{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014998 pos_T match_pos;
14999 int lnum = 0;
15000 int col = 0;
15001
15002 rettv->vval.v_number = 0;
15003
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015004 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015005 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015006
15007 if (searchpair_cmn(argvars, &match_pos) > 0)
15008 {
15009 lnum = match_pos.lnum;
15010 col = match_pos.col;
15011 }
15012
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015013 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15014 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015015}
15016
15017/*
15018 * Search for a start/middle/end thing.
15019 * Used by searchpair(), see its documentation for the details.
15020 * Returns 0 or -1 for no match,
15021 */
15022 long
Bram Moolenaar76929292008-01-06 19:07:36 +000015023do_searchpair(spat, mpat, epat, dir, skip, flags, match_pos,
15024 lnum_stop, time_limit)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015025 char_u *spat; /* start pattern */
15026 char_u *mpat; /* middle pattern */
15027 char_u *epat; /* end pattern */
15028 int dir; /* BACKWARD or FORWARD */
15029 char_u *skip; /* skip expression */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000015030 int flags; /* SP_SETPCMARK and other SP_ values */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015031 pos_T *match_pos;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015032 linenr_T lnum_stop; /* stop at this line if not zero */
Bram Moolenaar76929292008-01-06 19:07:36 +000015033 long time_limit; /* stop after this many msec */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015034{
15035 char_u *save_cpo;
15036 char_u *pat, *pat2 = NULL, *pat3 = NULL;
15037 long retval = 0;
15038 pos_T pos;
15039 pos_T firstpos;
15040 pos_T foundpos;
15041 pos_T save_cursor;
15042 pos_T save_pos;
15043 int n;
15044 int r;
15045 int nest = 1;
15046 int err;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015047 int options = SEARCH_KEEP;
Bram Moolenaar76929292008-01-06 19:07:36 +000015048 proftime_T tm;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015049
15050 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
15051 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015052 p_cpo = empty_option;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015053
Bram Moolenaar76929292008-01-06 19:07:36 +000015054#ifdef FEAT_RELTIME
15055 /* Set the time limit, if there is one. */
15056 profile_setlimit(time_limit, &tm);
15057#endif
15058
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015059 /* Make two search patterns: start/end (pat2, for in nested pairs) and
15060 * start/middle/end (pat3, for the top pair). */
15061 pat2 = alloc((unsigned)(STRLEN(spat) + STRLEN(epat) + 15));
15062 pat3 = alloc((unsigned)(STRLEN(spat) + STRLEN(mpat) + STRLEN(epat) + 23));
15063 if (pat2 == NULL || pat3 == NULL)
15064 goto theend;
15065 sprintf((char *)pat2, "\\(%s\\m\\)\\|\\(%s\\m\\)", spat, epat);
15066 if (*mpat == NUL)
15067 STRCPY(pat3, pat2);
15068 else
15069 sprintf((char *)pat3, "\\(%s\\m\\)\\|\\(%s\\m\\)\\|\\(%s\\m\\)",
15070 spat, epat, mpat);
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015071 if (flags & SP_START)
15072 options |= SEARCH_START;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015073
Bram Moolenaar071d4272004-06-13 20:20:40 +000015074 save_cursor = curwin->w_cursor;
15075 pos = curwin->w_cursor;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000015076 clearpos(&firstpos);
15077 clearpos(&foundpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015078 pat = pat3;
15079 for (;;)
15080 {
15081 n = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000015082 options, RE_SEARCH, lnum_stop, &tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015083 if (n == FAIL || (firstpos.lnum != 0 && equalpos(pos, firstpos)))
15084 /* didn't find it or found the first match again: FAIL */
15085 break;
15086
15087 if (firstpos.lnum == 0)
15088 firstpos = pos;
Bram Moolenaarc9a2d2e2005-04-24 22:09:56 +000015089 if (equalpos(pos, foundpos))
15090 {
15091 /* Found the same position again. Can happen with a pattern that
15092 * has "\zs" at the end and searching backwards. Advance one
15093 * character and try again. */
15094 if (dir == BACKWARD)
15095 decl(&pos);
15096 else
15097 incl(&pos);
15098 }
15099 foundpos = pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015100
Bram Moolenaar92de73d2008-01-22 10:59:38 +000015101 /* clear the start flag to avoid getting stuck here */
15102 options &= ~SEARCH_START;
15103
Bram Moolenaar071d4272004-06-13 20:20:40 +000015104 /* If the skip pattern matches, ignore this match. */
15105 if (*skip != NUL)
15106 {
15107 save_pos = curwin->w_cursor;
15108 curwin->w_cursor = pos;
15109 r = eval_to_bool(skip, &err, NULL, FALSE);
15110 curwin->w_cursor = save_pos;
15111 if (err)
15112 {
15113 /* Evaluating {skip} caused an error, break here. */
15114 curwin->w_cursor = save_cursor;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015115 retval = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015116 break;
15117 }
15118 if (r)
15119 continue;
15120 }
15121
15122 if ((dir == BACKWARD && n == 3) || (dir == FORWARD && n == 2))
15123 {
15124 /* Found end when searching backwards or start when searching
15125 * forward: nested pair. */
15126 ++nest;
15127 pat = pat2; /* nested, don't search for middle */
15128 }
15129 else
15130 {
15131 /* Found end when searching forward or start when searching
15132 * backward: end of (nested) pair; or found middle in outer pair. */
15133 if (--nest == 1)
15134 pat = pat3; /* outer level, search for middle */
15135 }
15136
15137 if (nest == 0)
15138 {
15139 /* Found the match: return matchcount or line number. */
15140 if (flags & SP_RETCOUNT)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015141 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015142 else
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015143 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000015144 if (flags & SP_SETPCMARK)
15145 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000015146 curwin->w_cursor = pos;
15147 if (!(flags & SP_REPEAT))
15148 break;
15149 nest = 1; /* search for next unmatched */
15150 }
15151 }
15152
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015153 if (match_pos != NULL)
15154 {
15155 /* Store the match cursor position */
15156 match_pos->lnum = curwin->w_cursor.lnum;
15157 match_pos->col = curwin->w_cursor.col + 1;
15158 }
15159
Bram Moolenaar071d4272004-06-13 20:20:40 +000015160 /* If 'n' flag is used or search failed: restore cursor position. */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015161 if ((flags & SP_NOMOVE) || retval == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015162 curwin->w_cursor = save_cursor;
15163
15164theend:
15165 vim_free(pat2);
15166 vim_free(pat3);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015167 if (p_cpo == empty_option)
15168 p_cpo = save_cpo;
15169 else
15170 /* Darn, evaluating the {skip} expression changed the value. */
15171 free_string_option(save_cpo);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015172
15173 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015174}
15175
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015176/*
15177 * "searchpos()" function
15178 */
15179 static void
15180f_searchpos(argvars, rettv)
15181 typval_T *argvars;
15182 typval_T *rettv;
15183{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015184 pos_T match_pos;
15185 int lnum = 0;
15186 int col = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015187 int n;
15188 int flags = 0;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015189
15190 rettv->vval.v_number = 0;
15191
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015192 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015193 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015194
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015195 n = search_cmn(argvars, &match_pos, &flags);
15196 if (n > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015197 {
15198 lnum = match_pos.lnum;
15199 col = match_pos.col;
15200 }
15201
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015202 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15203 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015204 if (flags & SP_SUBPAT)
15205 list_append_number(rettv->vval.v_list, (varnumber_T)n);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015206}
15207
15208
Bram Moolenaar0d660222005-01-07 21:51:51 +000015209/*ARGSUSED*/
15210 static void
15211f_server2client(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015212 typval_T *argvars;
15213 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015214{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015215#ifdef FEAT_CLIENTSERVER
15216 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015217 char_u *server = get_tv_string_chk(&argvars[0]);
15218 char_u *reply = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015219
Bram Moolenaar0d660222005-01-07 21:51:51 +000015220 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015221 if (server == NULL || reply == NULL)
15222 return;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015223 if (check_restricted() || check_secure())
15224 return;
15225# ifdef FEAT_X11
15226 if (check_connection() == FAIL)
15227 return;
15228# endif
15229
15230 if (serverSendReply(server, reply) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015231 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015232 EMSG(_("E258: Unable to send to client"));
15233 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015234 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015235 rettv->vval.v_number = 0;
15236#else
15237 rettv->vval.v_number = -1;
15238#endif
15239}
15240
15241/*ARGSUSED*/
15242 static void
15243f_serverlist(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015244 typval_T *argvars;
15245 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015246{
15247 char_u *r = NULL;
15248
15249#ifdef FEAT_CLIENTSERVER
15250# ifdef WIN32
15251 r = serverGetVimNames();
15252# else
15253 make_connection();
15254 if (X_DISPLAY != NULL)
15255 r = serverGetVimNames(X_DISPLAY);
15256# endif
15257#endif
15258 rettv->v_type = VAR_STRING;
15259 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015260}
15261
15262/*
15263 * "setbufvar()" function
15264 */
15265/*ARGSUSED*/
15266 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015267f_setbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015268 typval_T *argvars;
15269 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015270{
15271 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015272 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015273 char_u *varname, *bufvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015274 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015275 char_u nbuf[NUMBUFLEN];
15276
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015277 rettv->vval.v_number = 0;
15278
Bram Moolenaar071d4272004-06-13 20:20:40 +000015279 if (check_restricted() || check_secure())
15280 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015281 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
15282 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015283 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015284 varp = &argvars[2];
15285
15286 if (buf != NULL && varname != NULL && varp != NULL)
15287 {
15288 /* set curbuf to be our buf, temporarily */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015289 aucmd_prepbuf(&aco, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015290
15291 if (*varname == '&')
15292 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015293 long numval;
15294 char_u *strval;
15295 int error = FALSE;
15296
Bram Moolenaar071d4272004-06-13 20:20:40 +000015297 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015298 numval = get_tv_number_chk(varp, &error);
15299 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015300 if (!error && strval != NULL)
15301 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015302 }
15303 else
15304 {
15305 bufvarname = alloc((unsigned)STRLEN(varname) + 3);
15306 if (bufvarname != NULL)
15307 {
15308 STRCPY(bufvarname, "b:");
15309 STRCPY(bufvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015310 set_var(bufvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015311 vim_free(bufvarname);
15312 }
15313 }
15314
15315 /* reset notion of buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015316 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015317 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015318}
15319
15320/*
15321 * "setcmdpos()" function
15322 */
15323 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015324f_setcmdpos(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015325 typval_T *argvars;
15326 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015327{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015328 int pos = (int)get_tv_number(&argvars[0]) - 1;
15329
15330 if (pos >= 0)
15331 rettv->vval.v_number = set_cmdline_pos(pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015332}
15333
15334/*
15335 * "setline()" function
15336 */
15337 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015338f_setline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015339 typval_T *argvars;
15340 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015341{
15342 linenr_T lnum;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +000015343 char_u *line = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015344 list_T *l = NULL;
15345 listitem_T *li = NULL;
15346 long added = 0;
15347 linenr_T lcount = curbuf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015348
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015349 lnum = get_tv_lnum(&argvars[0]);
15350 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015351 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015352 l = argvars[1].vval.v_list;
15353 li = l->lv_first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015354 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015355 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015356 line = get_tv_string_chk(&argvars[1]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015357
15358 rettv->vval.v_number = 0; /* OK */
15359 for (;;)
15360 {
15361 if (l != NULL)
15362 {
15363 /* list argument, get next string */
15364 if (li == NULL)
15365 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015366 line = get_tv_string_chk(&li->li_tv);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015367 li = li->li_next;
15368 }
15369
15370 rettv->vval.v_number = 1; /* FAIL */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015371 if (line == NULL || lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015372 break;
15373 if (lnum <= curbuf->b_ml.ml_line_count)
15374 {
15375 /* existing line, replace it */
15376 if (u_savesub(lnum) == OK && ml_replace(lnum, line, TRUE) == OK)
15377 {
15378 changed_bytes(lnum, 0);
Bram Moolenaar87c19962007-04-26 08:54:21 +000015379 if (lnum == curwin->w_cursor.lnum)
15380 check_cursor_col();
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015381 rettv->vval.v_number = 0; /* OK */
15382 }
15383 }
15384 else if (added > 0 || u_save(lnum - 1, lnum) == OK)
15385 {
15386 /* lnum is one past the last line, append the line */
15387 ++added;
15388 if (ml_append(lnum - 1, line, (colnr_T)0, FALSE) == OK)
15389 rettv->vval.v_number = 0; /* OK */
15390 }
15391
15392 if (l == NULL) /* only one string argument */
15393 break;
15394 ++lnum;
15395 }
15396
15397 if (added > 0)
15398 appended_lines_mark(lcount, added);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015399}
15400
Bram Moolenaard9ff7d52008-03-20 12:23:49 +000015401static void set_qf_ll_list __ARGS((win_T *wp, typval_T *list_arg, typval_T *action_arg, typval_T *rettv));
15402
Bram Moolenaar071d4272004-06-13 20:20:40 +000015403/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015404 * Used by "setqflist()" and "setloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000015405 */
15406/*ARGSUSED*/
15407 static void
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015408set_qf_ll_list(wp, list_arg, action_arg, rettv)
15409 win_T *wp;
15410 typval_T *list_arg;
15411 typval_T *action_arg;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015412 typval_T *rettv;
15413{
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015414#ifdef FEAT_QUICKFIX
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015415 char_u *act;
15416 int action = ' ';
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015417#endif
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015418
Bram Moolenaar2641f772005-03-25 21:58:17 +000015419 rettv->vval.v_number = -1;
15420
15421#ifdef FEAT_QUICKFIX
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015422 if (list_arg->v_type != VAR_LIST)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015423 EMSG(_(e_listreq));
15424 else
15425 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015426 list_T *l = list_arg->vval.v_list;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015427
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015428 if (action_arg->v_type == VAR_STRING)
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015429 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015430 act = get_tv_string_chk(action_arg);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015431 if (act == NULL)
15432 return; /* type error; errmsg already given */
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015433 if (*act == 'a' || *act == 'r')
15434 action = *act;
15435 }
15436
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015437 if (l != NULL && set_errorlist(wp, l, action) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015438 rettv->vval.v_number = 0;
15439 }
15440#endif
15441}
15442
15443/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015444 * "setloclist()" function
15445 */
15446/*ARGSUSED*/
15447 static void
15448f_setloclist(argvars, rettv)
15449 typval_T *argvars;
15450 typval_T *rettv;
15451{
15452 win_T *win;
15453
15454 rettv->vval.v_number = -1;
15455
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015456 win = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015457 if (win != NULL)
15458 set_qf_ll_list(win, &argvars[1], &argvars[2], rettv);
15459}
15460
15461/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000015462 * "setmatches()" function
15463 */
15464 static void
15465f_setmatches(argvars, rettv)
15466 typval_T *argvars;
15467 typval_T *rettv;
15468{
15469#ifdef FEAT_SEARCH_EXTRA
15470 list_T *l;
15471 listitem_T *li;
15472 dict_T *d;
15473
15474 rettv->vval.v_number = -1;
15475 if (argvars[0].v_type != VAR_LIST)
15476 {
15477 EMSG(_(e_listreq));
15478 return;
15479 }
15480 if ((l = argvars[0].vval.v_list) != NULL)
15481 {
15482
15483 /* To some extent make sure that we are dealing with a list from
15484 * "getmatches()". */
15485 li = l->lv_first;
15486 while (li != NULL)
15487 {
15488 if (li->li_tv.v_type != VAR_DICT
15489 || (d = li->li_tv.vval.v_dict) == NULL)
15490 {
15491 EMSG(_(e_invarg));
15492 return;
15493 }
15494 if (!(dict_find(d, (char_u *)"group", -1) != NULL
15495 && dict_find(d, (char_u *)"pattern", -1) != NULL
15496 && dict_find(d, (char_u *)"priority", -1) != NULL
15497 && dict_find(d, (char_u *)"id", -1) != NULL))
15498 {
15499 EMSG(_(e_invarg));
15500 return;
15501 }
15502 li = li->li_next;
15503 }
15504
15505 clear_matches(curwin);
15506 li = l->lv_first;
15507 while (li != NULL)
15508 {
15509 d = li->li_tv.vval.v_dict;
15510 match_add(curwin, get_dict_string(d, (char_u *)"group", FALSE),
15511 get_dict_string(d, (char_u *)"pattern", FALSE),
15512 (int)get_dict_number(d, (char_u *)"priority"),
15513 (int)get_dict_number(d, (char_u *)"id"));
15514 li = li->li_next;
15515 }
15516 rettv->vval.v_number = 0;
15517 }
15518#endif
15519}
15520
15521/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015522 * "setpos()" function
15523 */
15524/*ARGSUSED*/
15525 static void
15526f_setpos(argvars, rettv)
15527 typval_T *argvars;
15528 typval_T *rettv;
15529{
15530 pos_T pos;
15531 int fnum;
15532 char_u *name;
15533
Bram Moolenaar08250432008-02-13 11:42:46 +000015534 rettv->vval.v_number = -1;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015535 name = get_tv_string_chk(argvars);
15536 if (name != NULL)
15537 {
15538 if (list2fpos(&argvars[1], &pos, &fnum) == OK)
15539 {
15540 --pos.col;
Bram Moolenaar08250432008-02-13 11:42:46 +000015541 if (name[0] == '.' && name[1] == NUL)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015542 {
Bram Moolenaar08250432008-02-13 11:42:46 +000015543 /* set cursor */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015544 if (fnum == curbuf->b_fnum)
15545 {
15546 curwin->w_cursor = pos;
15547 check_cursor();
Bram Moolenaar08250432008-02-13 11:42:46 +000015548 rettv->vval.v_number = 0;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015549 }
15550 else
15551 EMSG(_(e_invarg));
15552 }
Bram Moolenaar08250432008-02-13 11:42:46 +000015553 else if (name[0] == '\'' && name[1] != NUL && name[2] == NUL)
15554 {
15555 /* set mark */
15556 if (setmark_pos(name[1], &pos, fnum) == OK)
15557 rettv->vval.v_number = 0;
15558 }
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015559 else
15560 EMSG(_(e_invarg));
15561 }
15562 }
15563}
15564
15565/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015566 * "setqflist()" function
15567 */
15568/*ARGSUSED*/
15569 static void
15570f_setqflist(argvars, rettv)
15571 typval_T *argvars;
15572 typval_T *rettv;
15573{
15574 set_qf_ll_list(NULL, &argvars[0], &argvars[1], rettv);
15575}
15576
15577/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000015578 * "setreg()" function
15579 */
15580 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015581f_setreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015582 typval_T *argvars;
15583 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015584{
15585 int regname;
15586 char_u *strregname;
15587 char_u *stropt;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015588 char_u *strval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015589 int append;
15590 char_u yank_type;
15591 long block_len;
15592
15593 block_len = -1;
15594 yank_type = MAUTO;
15595 append = FALSE;
15596
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015597 strregname = get_tv_string_chk(argvars);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015598 rettv->vval.v_number = 1; /* FAIL is default */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015599
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015600 if (strregname == NULL)
15601 return; /* type error; errmsg already given */
15602 regname = *strregname;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015603 if (regname == 0 || regname == '@')
15604 regname = '"';
15605 else if (regname == '=')
15606 return;
15607
Bram Moolenaar49cd9572005-01-03 21:06:01 +000015608 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015609 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015610 stropt = get_tv_string_chk(&argvars[2]);
15611 if (stropt == NULL)
15612 return; /* type error */
15613 for (; *stropt != NUL; ++stropt)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015614 switch (*stropt)
15615 {
15616 case 'a': case 'A': /* append */
15617 append = TRUE;
15618 break;
15619 case 'v': case 'c': /* character-wise selection */
15620 yank_type = MCHAR;
15621 break;
15622 case 'V': case 'l': /* line-wise selection */
15623 yank_type = MLINE;
15624 break;
15625#ifdef FEAT_VISUAL
15626 case 'b': case Ctrl_V: /* block-wise selection */
15627 yank_type = MBLOCK;
15628 if (VIM_ISDIGIT(stropt[1]))
15629 {
15630 ++stropt;
15631 block_len = getdigits(&stropt) - 1;
15632 --stropt;
15633 }
15634 break;
15635#endif
15636 }
15637 }
15638
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015639 strval = get_tv_string_chk(&argvars[1]);
15640 if (strval != NULL)
15641 write_reg_contents_ex(regname, strval, -1,
Bram Moolenaar071d4272004-06-13 20:20:40 +000015642 append, yank_type, block_len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015643 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015644}
15645
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015646/*
15647 * "settabwinvar()" function
15648 */
15649 static void
15650f_settabwinvar(argvars, rettv)
15651 typval_T *argvars;
15652 typval_T *rettv;
15653{
15654 setwinvar(argvars, rettv, 1);
15655}
Bram Moolenaar071d4272004-06-13 20:20:40 +000015656
15657/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015658 * "setwinvar()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015659 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015660 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015661f_setwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015662 typval_T *argvars;
15663 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015664{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015665 setwinvar(argvars, rettv, 0);
15666}
15667
15668/*
15669 * "setwinvar()" and "settabwinvar()" functions
15670 */
15671 static void
15672setwinvar(argvars, rettv, off)
15673 typval_T *argvars;
15674 typval_T *rettv;
15675 int off;
15676{
Bram Moolenaar071d4272004-06-13 20:20:40 +000015677 win_T *win;
15678#ifdef FEAT_WINDOWS
15679 win_T *save_curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015680 tabpage_T *save_curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015681#endif
15682 char_u *varname, *winvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015683 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015684 char_u nbuf[NUMBUFLEN];
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015685 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015686
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015687 rettv->vval.v_number = 0;
15688
Bram Moolenaar071d4272004-06-13 20:20:40 +000015689 if (check_restricted() || check_secure())
15690 return;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015691
15692#ifdef FEAT_WINDOWS
15693 if (off == 1)
15694 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
15695 else
15696 tp = curtab;
15697#endif
15698 win = find_win_by_nr(&argvars[off], tp);
15699 varname = get_tv_string_chk(&argvars[off + 1]);
15700 varp = &argvars[off + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015701
15702 if (win != NULL && varname != NULL && varp != NULL)
15703 {
15704#ifdef FEAT_WINDOWS
15705 /* set curwin to be our win, temporarily */
15706 save_curwin = curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015707 save_curtab = curtab;
15708 goto_tabpage_tp(tp);
15709 if (!win_valid(win))
15710 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015711 curwin = win;
15712 curbuf = curwin->w_buffer;
15713#endif
15714
15715 if (*varname == '&')
15716 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015717 long numval;
15718 char_u *strval;
15719 int error = FALSE;
15720
Bram Moolenaar071d4272004-06-13 20:20:40 +000015721 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015722 numval = get_tv_number_chk(varp, &error);
15723 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015724 if (!error && strval != NULL)
15725 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015726 }
15727 else
15728 {
15729 winvarname = alloc((unsigned)STRLEN(varname) + 3);
15730 if (winvarname != NULL)
15731 {
15732 STRCPY(winvarname, "w:");
15733 STRCPY(winvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015734 set_var(winvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015735 vim_free(winvarname);
15736 }
15737 }
15738
15739#ifdef FEAT_WINDOWS
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015740 /* Restore current tabpage and window, if still valid (autocomands can
15741 * make them invalid). */
15742 if (valid_tabpage(save_curtab))
15743 goto_tabpage_tp(save_curtab);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015744 if (win_valid(save_curwin))
15745 {
15746 curwin = save_curwin;
15747 curbuf = curwin->w_buffer;
15748 }
15749#endif
15750 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015751}
15752
15753/*
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015754 * "shellescape({string})" function
15755 */
15756 static void
15757f_shellescape(argvars, rettv)
15758 typval_T *argvars;
15759 typval_T *rettv;
15760{
Bram Moolenaar05bb9532008-07-04 09:44:11 +000015761 rettv->vval.v_string = vim_strsave_shellescape(
15762 get_tv_string(&argvars[0]), non_zero_arg(&argvars[1]));
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015763 rettv->v_type = VAR_STRING;
15764}
15765
15766/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015767 * "simplify()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015768 */
15769 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015770f_simplify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015771 typval_T *argvars;
15772 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015773{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015774 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015775
Bram Moolenaar0d660222005-01-07 21:51:51 +000015776 p = get_tv_string(&argvars[0]);
15777 rettv->vval.v_string = vim_strsave(p);
15778 simplify_filename(rettv->vval.v_string); /* simplify in place */
15779 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015780}
15781
Bram Moolenaar8c8de832008-06-24 22:58:06 +000015782#ifdef FEAT_FLOAT
15783/*
15784 * "sin()" function
15785 */
15786 static void
15787f_sin(argvars, rettv)
15788 typval_T *argvars;
15789 typval_T *rettv;
15790{
15791 float_T f;
15792
15793 rettv->v_type = VAR_FLOAT;
15794 if (get_float_arg(argvars, &f) == OK)
15795 rettv->vval.v_float = sin(f);
15796 else
15797 rettv->vval.v_float = 0.0;
15798}
15799#endif
15800
Bram Moolenaar0d660222005-01-07 21:51:51 +000015801static int
15802#ifdef __BORLANDC__
15803 _RTLENTRYF
15804#endif
15805 item_compare __ARGS((const void *s1, const void *s2));
15806static int
15807#ifdef __BORLANDC__
15808 _RTLENTRYF
15809#endif
15810 item_compare2 __ARGS((const void *s1, const void *s2));
15811
15812static int item_compare_ic;
15813static char_u *item_compare_func;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015814static int item_compare_func_err;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015815#define ITEM_COMPARE_FAIL 999
15816
Bram Moolenaar071d4272004-06-13 20:20:40 +000015817/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015818 * Compare functions for f_sort() below.
Bram Moolenaar071d4272004-06-13 20:20:40 +000015819 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015820 static int
15821#ifdef __BORLANDC__
15822_RTLENTRYF
15823#endif
15824item_compare(s1, s2)
15825 const void *s1;
15826 const void *s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015827{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015828 char_u *p1, *p2;
15829 char_u *tofree1, *tofree2;
15830 int res;
15831 char_u numbuf1[NUMBUFLEN];
15832 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015833
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000015834 p1 = tv2string(&(*(listitem_T **)s1)->li_tv, &tofree1, numbuf1, 0);
15835 p2 = tv2string(&(*(listitem_T **)s2)->li_tv, &tofree2, numbuf2, 0);
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000015836 if (p1 == NULL)
15837 p1 = (char_u *)"";
15838 if (p2 == NULL)
15839 p2 = (char_u *)"";
Bram Moolenaar0d660222005-01-07 21:51:51 +000015840 if (item_compare_ic)
15841 res = STRICMP(p1, p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015842 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015843 res = STRCMP(p1, p2);
15844 vim_free(tofree1);
15845 vim_free(tofree2);
15846 return res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015847}
15848
15849 static int
Bram Moolenaar0d660222005-01-07 21:51:51 +000015850#ifdef __BORLANDC__
15851_RTLENTRYF
Bram Moolenaar071d4272004-06-13 20:20:40 +000015852#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +000015853item_compare2(s1, s2)
15854 const void *s1;
15855 const void *s2;
15856{
15857 int res;
Bram Moolenaar33570922005-01-25 22:26:29 +000015858 typval_T rettv;
Bram Moolenaareb3593b2006-04-22 22:33:57 +000015859 typval_T argv[3];
Bram Moolenaar0d660222005-01-07 21:51:51 +000015860 int dummy;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015861
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015862 /* shortcut after failure in previous call; compare all items equal */
15863 if (item_compare_func_err)
15864 return 0;
15865
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015866 /* copy the values. This is needed to be able to set v_lock to VAR_FIXED
15867 * in the copy without changing the original list items. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015868 copy_tv(&(*(listitem_T **)s1)->li_tv, &argv[0]);
15869 copy_tv(&(*(listitem_T **)s2)->li_tv, &argv[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015870
15871 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000015872 res = call_func(item_compare_func, (int)STRLEN(item_compare_func),
Bram Moolenaare9a41262005-01-15 22:18:47 +000015873 &rettv, 2, argv, 0L, 0L, &dummy, TRUE, NULL);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015874 clear_tv(&argv[0]);
15875 clear_tv(&argv[1]);
15876
15877 if (res == FAIL)
15878 res = ITEM_COMPARE_FAIL;
15879 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015880 res = get_tv_number_chk(&rettv, &item_compare_func_err);
15881 if (item_compare_func_err)
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000015882 res = ITEM_COMPARE_FAIL; /* return value has wrong type */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015883 clear_tv(&rettv);
15884 return res;
15885}
15886
15887/*
15888 * "sort({list})" function
15889 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015890 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015891f_sort(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015892 typval_T *argvars;
15893 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015894{
Bram Moolenaar33570922005-01-25 22:26:29 +000015895 list_T *l;
15896 listitem_T *li;
15897 listitem_T **ptrs;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015898 long len;
15899 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015900
Bram Moolenaar0d660222005-01-07 21:51:51 +000015901 rettv->vval.v_number = 0;
15902 if (argvars[0].v_type != VAR_LIST)
15903 EMSG2(_(e_listarg), "sort()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000015904 else
15905 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015906 l = argvars[0].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015907 if (l == NULL || tv_check_lock(l->lv_lock, (char_u *)"sort()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000015908 return;
15909 rettv->vval.v_list = l;
15910 rettv->v_type = VAR_LIST;
15911 ++l->lv_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015912
Bram Moolenaar0d660222005-01-07 21:51:51 +000015913 len = list_len(l);
15914 if (len <= 1)
15915 return; /* short list sorts pretty quickly */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015916
Bram Moolenaar0d660222005-01-07 21:51:51 +000015917 item_compare_ic = FALSE;
15918 item_compare_func = NULL;
15919 if (argvars[1].v_type != VAR_UNKNOWN)
15920 {
15921 if (argvars[1].v_type == VAR_FUNC)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015922 item_compare_func = argvars[1].vval.v_string;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015923 else
15924 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015925 int error = FALSE;
15926
15927 i = get_tv_number_chk(&argvars[1], &error);
15928 if (error)
15929 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015930 if (i == 1)
15931 item_compare_ic = TRUE;
15932 else
15933 item_compare_func = get_tv_string(&argvars[1]);
15934 }
15935 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015936
Bram Moolenaar0d660222005-01-07 21:51:51 +000015937 /* Make an array with each entry pointing to an item in the List. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015938 ptrs = (listitem_T **)alloc((int)(len * sizeof(listitem_T *)));
Bram Moolenaar0d660222005-01-07 21:51:51 +000015939 if (ptrs == NULL)
15940 return;
15941 i = 0;
15942 for (li = l->lv_first; li != NULL; li = li->li_next)
15943 ptrs[i++] = li;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015944
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015945 item_compare_func_err = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015946 /* test the compare function */
15947 if (item_compare_func != NULL
15948 && item_compare2((void *)&ptrs[0], (void *)&ptrs[1])
15949 == ITEM_COMPARE_FAIL)
Bram Moolenaare49b69a2005-01-08 16:11:57 +000015950 EMSG(_("E702: Sort compare function failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000015951 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015952 {
15953 /* Sort the array with item pointers. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015954 qsort((void *)ptrs, (size_t)len, sizeof(listitem_T *),
Bram Moolenaar0d660222005-01-07 21:51:51 +000015955 item_compare_func == NULL ? item_compare : item_compare2);
15956
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015957 if (!item_compare_func_err)
15958 {
15959 /* Clear the List and append the items in the sorted order. */
Bram Moolenaar52514562008-04-01 11:12:09 +000015960 l->lv_first = l->lv_last = l->lv_idx_item = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015961 l->lv_len = 0;
15962 for (i = 0; i < len; ++i)
15963 list_append(l, ptrs[i]);
15964 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015965 }
15966
15967 vim_free(ptrs);
15968 }
15969}
15970
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015971/*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015972 * "soundfold({word})" function
15973 */
15974 static void
15975f_soundfold(argvars, rettv)
15976 typval_T *argvars;
15977 typval_T *rettv;
15978{
15979 char_u *s;
15980
15981 rettv->v_type = VAR_STRING;
15982 s = get_tv_string(&argvars[0]);
Bram Moolenaar3c56a962006-03-12 22:19:04 +000015983#ifdef FEAT_SPELL
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015984 rettv->vval.v_string = eval_soundfold(s);
15985#else
15986 rettv->vval.v_string = vim_strsave(s);
15987#endif
15988}
15989
15990/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015991 * "spellbadword()" function
15992 */
15993/* ARGSUSED */
15994 static void
15995f_spellbadword(argvars, rettv)
15996 typval_T *argvars;
15997 typval_T *rettv;
15998{
Bram Moolenaar4463f292005-09-25 22:20:24 +000015999 char_u *word = (char_u *)"";
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016000 hlf_T attr = HLF_COUNT;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000016001 int len = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016002
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016003 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar4463f292005-09-25 22:20:24 +000016004 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016005
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016006#ifdef FEAT_SPELL
Bram Moolenaar4463f292005-09-25 22:20:24 +000016007 if (argvars[0].v_type == VAR_UNKNOWN)
16008 {
16009 /* Find the start and length of the badly spelled word. */
16010 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, &attr);
16011 if (len != 0)
16012 word = ml_get_cursor();
16013 }
16014 else if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16015 {
16016 char_u *str = get_tv_string_chk(&argvars[0]);
16017 int capcol = -1;
16018
16019 if (str != NULL)
16020 {
16021 /* Check the argument for spelling. */
16022 while (*str != NUL)
16023 {
Bram Moolenaar4770d092006-01-12 23:22:24 +000016024 len = spell_check(curwin, str, &attr, &capcol, FALSE);
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016025 if (attr != HLF_COUNT)
Bram Moolenaar4463f292005-09-25 22:20:24 +000016026 {
16027 word = str;
16028 break;
16029 }
16030 str += len;
16031 }
16032 }
16033 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016034#endif
Bram Moolenaar4463f292005-09-25 22:20:24 +000016035
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016036 list_append_string(rettv->vval.v_list, word, len);
16037 list_append_string(rettv->vval.v_list, (char_u *)(
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016038 attr == HLF_SPB ? "bad" :
16039 attr == HLF_SPR ? "rare" :
16040 attr == HLF_SPL ? "local" :
16041 attr == HLF_SPC ? "caps" :
16042 ""), -1);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016043}
16044
16045/*
16046 * "spellsuggest()" function
16047 */
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016048/*ARGSUSED*/
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016049 static void
16050f_spellsuggest(argvars, rettv)
16051 typval_T *argvars;
16052 typval_T *rettv;
16053{
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016054#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016055 char_u *str;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016056 int typeerr = FALSE;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016057 int maxcount;
16058 garray_T ga;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016059 int i;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016060 listitem_T *li;
16061 int need_capital = FALSE;
16062#endif
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016063
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016064 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016065 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016066
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016067#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016068 if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16069 {
16070 str = get_tv_string(&argvars[0]);
16071 if (argvars[1].v_type != VAR_UNKNOWN)
16072 {
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016073 maxcount = get_tv_number_chk(&argvars[1], &typeerr);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016074 if (maxcount <= 0)
16075 return;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016076 if (argvars[2].v_type != VAR_UNKNOWN)
16077 {
16078 need_capital = get_tv_number_chk(&argvars[2], &typeerr);
16079 if (typeerr)
16080 return;
16081 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016082 }
16083 else
16084 maxcount = 25;
16085
Bram Moolenaar4770d092006-01-12 23:22:24 +000016086 spell_suggest_list(&ga, str, maxcount, need_capital, FALSE);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016087
16088 for (i = 0; i < ga.ga_len; ++i)
16089 {
16090 str = ((char_u **)ga.ga_data)[i];
16091
16092 li = listitem_alloc();
16093 if (li == NULL)
16094 vim_free(str);
16095 else
16096 {
16097 li->li_tv.v_type = VAR_STRING;
16098 li->li_tv.v_lock = 0;
16099 li->li_tv.vval.v_string = str;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016100 list_append(rettv->vval.v_list, li);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016101 }
16102 }
16103 ga_clear(&ga);
16104 }
16105#endif
16106}
16107
Bram Moolenaar0d660222005-01-07 21:51:51 +000016108 static void
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000016109f_split(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016110 typval_T *argvars;
16111 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016112{
16113 char_u *str;
16114 char_u *end;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016115 char_u *pat = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016116 regmatch_T regmatch;
16117 char_u patbuf[NUMBUFLEN];
16118 char_u *save_cpo;
16119 int match;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016120 colnr_T col = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016121 int keepempty = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016122 int typeerr = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016123
16124 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
16125 save_cpo = p_cpo;
16126 p_cpo = (char_u *)"";
16127
16128 str = get_tv_string(&argvars[0]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016129 if (argvars[1].v_type != VAR_UNKNOWN)
16130 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016131 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16132 if (pat == NULL)
16133 typeerr = TRUE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016134 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016135 keepempty = get_tv_number_chk(&argvars[2], &typeerr);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016136 }
16137 if (pat == NULL || *pat == NUL)
16138 pat = (char_u *)"[\\x01- ]\\+";
Bram Moolenaar0d660222005-01-07 21:51:51 +000016139
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016140 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016141 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016142 if (typeerr)
16143 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016144
Bram Moolenaar0d660222005-01-07 21:51:51 +000016145 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
16146 if (regmatch.regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016147 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016148 regmatch.rm_ic = FALSE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016149 while (*str != NUL || keepempty)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016150 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016151 if (*str == NUL)
16152 match = FALSE; /* empty item at the end */
16153 else
16154 match = vim_regexec_nl(&regmatch, str, col);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016155 if (match)
16156 end = regmatch.startp[0];
16157 else
16158 end = str + STRLEN(str);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016159 if (keepempty || end > str || (rettv->vval.v_list->lv_len > 0
16160 && *str != NUL && match && end < regmatch.endp[0]))
Bram Moolenaar0d660222005-01-07 21:51:51 +000016161 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016162 if (list_append_string(rettv->vval.v_list, str,
16163 (int)(end - str)) == FAIL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016164 break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016165 }
16166 if (!match)
16167 break;
16168 /* Advance to just after the match. */
16169 if (regmatch.endp[0] > str)
16170 col = 0;
16171 else
16172 {
16173 /* Don't get stuck at the same match. */
16174#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000016175 col = (*mb_ptr2len)(regmatch.endp[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016176#else
16177 col = 1;
16178#endif
16179 }
16180 str = regmatch.endp[0];
16181 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016182
Bram Moolenaar0d660222005-01-07 21:51:51 +000016183 vim_free(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016184 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016185
Bram Moolenaar0d660222005-01-07 21:51:51 +000016186 p_cpo = save_cpo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016187}
16188
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016189#ifdef FEAT_FLOAT
16190/*
16191 * "sqrt()" function
16192 */
16193 static void
16194f_sqrt(argvars, rettv)
16195 typval_T *argvars;
16196 typval_T *rettv;
16197{
16198 float_T f;
16199
16200 rettv->v_type = VAR_FLOAT;
16201 if (get_float_arg(argvars, &f) == OK)
16202 rettv->vval.v_float = sqrt(f);
16203 else
16204 rettv->vval.v_float = 0.0;
16205}
16206
16207/*
16208 * "str2float()" function
16209 */
16210 static void
16211f_str2float(argvars, rettv)
16212 typval_T *argvars;
16213 typval_T *rettv;
16214{
16215 char_u *p = skipwhite(get_tv_string(&argvars[0]));
16216
16217 if (*p == '+')
16218 p = skipwhite(p + 1);
16219 (void)string2float(p, &rettv->vval.v_float);
16220 rettv->v_type = VAR_FLOAT;
16221}
16222#endif
16223
Bram Moolenaar2c932302006-03-18 21:42:09 +000016224/*
16225 * "str2nr()" function
16226 */
16227 static void
16228f_str2nr(argvars, rettv)
16229 typval_T *argvars;
16230 typval_T *rettv;
16231{
16232 int base = 10;
16233 char_u *p;
16234 long n;
16235
16236 if (argvars[1].v_type != VAR_UNKNOWN)
16237 {
16238 base = get_tv_number(&argvars[1]);
16239 if (base != 8 && base != 10 && base != 16)
16240 {
16241 EMSG(_(e_invarg));
16242 return;
16243 }
16244 }
16245
16246 p = skipwhite(get_tv_string(&argvars[0]));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016247 if (*p == '+')
16248 p = skipwhite(p + 1);
Bram Moolenaar2c932302006-03-18 21:42:09 +000016249 vim_str2nr(p, NULL, NULL, base == 8 ? 2 : 0, base == 16 ? 2 : 0, &n, NULL);
16250 rettv->vval.v_number = n;
16251}
16252
Bram Moolenaar071d4272004-06-13 20:20:40 +000016253#ifdef HAVE_STRFTIME
16254/*
16255 * "strftime({format}[, {time}])" function
16256 */
16257 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016258f_strftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016259 typval_T *argvars;
16260 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016261{
16262 char_u result_buf[256];
16263 struct tm *curtime;
16264 time_t seconds;
16265 char_u *p;
16266
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016267 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016268
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016269 p = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016270 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016271 seconds = time(NULL);
16272 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016273 seconds = (time_t)get_tv_number(&argvars[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016274 curtime = localtime(&seconds);
16275 /* MSVC returns NULL for an invalid value of seconds. */
16276 if (curtime == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016277 rettv->vval.v_string = vim_strsave((char_u *)_("(Invalid)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016278 else
16279 {
16280# ifdef FEAT_MBYTE
16281 vimconv_T conv;
16282 char_u *enc;
16283
16284 conv.vc_type = CONV_NONE;
16285 enc = enc_locale();
16286 convert_setup(&conv, p_enc, enc);
16287 if (conv.vc_type != CONV_NONE)
16288 p = string_convert(&conv, p, NULL);
16289# endif
16290 if (p != NULL)
16291 (void)strftime((char *)result_buf, sizeof(result_buf),
16292 (char *)p, curtime);
16293 else
16294 result_buf[0] = NUL;
16295
16296# ifdef FEAT_MBYTE
16297 if (conv.vc_type != CONV_NONE)
16298 vim_free(p);
16299 convert_setup(&conv, enc, p_enc);
16300 if (conv.vc_type != CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016301 rettv->vval.v_string = string_convert(&conv, result_buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016302 else
16303# endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016304 rettv->vval.v_string = vim_strsave(result_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016305
16306# ifdef FEAT_MBYTE
16307 /* Release conversion descriptors */
16308 convert_setup(&conv, NULL, NULL);
16309 vim_free(enc);
16310# endif
16311 }
16312}
16313#endif
16314
16315/*
16316 * "stridx()" function
16317 */
16318 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016319f_stridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016320 typval_T *argvars;
16321 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016322{
16323 char_u buf[NUMBUFLEN];
16324 char_u *needle;
16325 char_u *haystack;
Bram Moolenaar33570922005-01-25 22:26:29 +000016326 char_u *save_haystack;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016327 char_u *pos;
Bram Moolenaar33570922005-01-25 22:26:29 +000016328 int start_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016329
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016330 needle = get_tv_string_chk(&argvars[1]);
16331 save_haystack = haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar33570922005-01-25 22:26:29 +000016332 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016333 if (needle == NULL || haystack == NULL)
16334 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016335
Bram Moolenaar33570922005-01-25 22:26:29 +000016336 if (argvars[2].v_type != VAR_UNKNOWN)
16337 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016338 int error = FALSE;
16339
16340 start_idx = get_tv_number_chk(&argvars[2], &error);
16341 if (error || start_idx >= (int)STRLEN(haystack))
Bram Moolenaar33570922005-01-25 22:26:29 +000016342 return;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016343 if (start_idx >= 0)
16344 haystack += start_idx;
Bram Moolenaar33570922005-01-25 22:26:29 +000016345 }
16346
16347 pos = (char_u *)strstr((char *)haystack, (char *)needle);
16348 if (pos != NULL)
16349 rettv->vval.v_number = (varnumber_T)(pos - save_haystack);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016350}
16351
16352/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016353 * "string()" function
16354 */
16355 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016356f_string(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016357 typval_T *argvars;
16358 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016359{
16360 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000016361 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016362
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016363 rettv->v_type = VAR_STRING;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000016364 rettv->vval.v_string = tv2string(&argvars[0], &tofree, numbuf, 0);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016365 /* Make a copy if we have a value but it's not in allocated memory. */
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000016366 if (rettv->vval.v_string != NULL && tofree == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016367 rettv->vval.v_string = vim_strsave(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016368}
16369
16370/*
16371 * "strlen()" function
16372 */
16373 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016374f_strlen(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016375 typval_T *argvars;
16376 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016377{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016378 rettv->vval.v_number = (varnumber_T)(STRLEN(
16379 get_tv_string(&argvars[0])));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016380}
16381
16382/*
16383 * "strpart()" function
16384 */
16385 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016386f_strpart(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016387 typval_T *argvars;
16388 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016389{
16390 char_u *p;
16391 int n;
16392 int len;
16393 int slen;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016394 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016395
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016396 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016397 slen = (int)STRLEN(p);
16398
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016399 n = get_tv_number_chk(&argvars[1], &error);
16400 if (error)
16401 len = 0;
16402 else if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016403 len = get_tv_number(&argvars[2]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016404 else
16405 len = slen - n; /* default len: all bytes that are available. */
16406
16407 /*
16408 * Only return the overlap between the specified part and the actual
16409 * string.
16410 */
16411 if (n < 0)
16412 {
16413 len += n;
16414 n = 0;
16415 }
16416 else if (n > slen)
16417 n = slen;
16418 if (len < 0)
16419 len = 0;
16420 else if (n + len > slen)
16421 len = slen - n;
16422
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016423 rettv->v_type = VAR_STRING;
16424 rettv->vval.v_string = vim_strnsave(p + n, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016425}
16426
16427/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016428 * "strridx()" function
16429 */
16430 static void
16431f_strridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016432 typval_T *argvars;
16433 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016434{
16435 char_u buf[NUMBUFLEN];
16436 char_u *needle;
16437 char_u *haystack;
16438 char_u *rest;
16439 char_u *lastmatch = NULL;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016440 int haystack_len, end_idx;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016441
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016442 needle = get_tv_string_chk(&argvars[1]);
16443 haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016444
16445 rettv->vval.v_number = -1;
16446 if (needle == NULL || haystack == NULL)
16447 return; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016448
16449 haystack_len = (int)STRLEN(haystack);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016450 if (argvars[2].v_type != VAR_UNKNOWN)
16451 {
16452 /* Third argument: upper limit for index */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016453 end_idx = get_tv_number_chk(&argvars[2], NULL);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016454 if (end_idx < 0)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016455 return; /* can never find a match */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016456 }
16457 else
16458 end_idx = haystack_len;
16459
Bram Moolenaar0d660222005-01-07 21:51:51 +000016460 if (*needle == NUL)
Bram Moolenaar05159a02005-02-26 23:04:13 +000016461 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016462 /* Empty string matches past the end. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016463 lastmatch = haystack + end_idx;
16464 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016465 else
Bram Moolenaar532c7802005-01-27 14:44:31 +000016466 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016467 for (rest = haystack; *rest != '\0'; ++rest)
16468 {
16469 rest = (char_u *)strstr((char *)rest, (char *)needle);
Bram Moolenaar532c7802005-01-27 14:44:31 +000016470 if (rest == NULL || rest > haystack + end_idx)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016471 break;
16472 lastmatch = rest;
16473 }
Bram Moolenaar532c7802005-01-27 14:44:31 +000016474 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016475
16476 if (lastmatch == NULL)
16477 rettv->vval.v_number = -1;
16478 else
16479 rettv->vval.v_number = (varnumber_T)(lastmatch - haystack);
16480}
16481
16482/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016483 * "strtrans()" function
16484 */
16485 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016486f_strtrans(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016487 typval_T *argvars;
16488 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016489{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016490 rettv->v_type = VAR_STRING;
16491 rettv->vval.v_string = transstr(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016492}
16493
16494/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016495 * "submatch()" function
16496 */
16497 static void
16498f_submatch(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016499 typval_T *argvars;
16500 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016501{
16502 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016503 rettv->vval.v_string =
16504 reg_submatch((int)get_tv_number_chk(&argvars[0], NULL));
Bram Moolenaar0d660222005-01-07 21:51:51 +000016505}
16506
16507/*
16508 * "substitute()" function
16509 */
16510 static void
16511f_substitute(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016512 typval_T *argvars;
16513 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016514{
16515 char_u patbuf[NUMBUFLEN];
16516 char_u subbuf[NUMBUFLEN];
16517 char_u flagsbuf[NUMBUFLEN];
16518
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016519 char_u *str = get_tv_string_chk(&argvars[0]);
16520 char_u *pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16521 char_u *sub = get_tv_string_buf_chk(&argvars[2], subbuf);
16522 char_u *flg = get_tv_string_buf_chk(&argvars[3], flagsbuf);
16523
Bram Moolenaar0d660222005-01-07 21:51:51 +000016524 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016525 if (str == NULL || pat == NULL || sub == NULL || flg == NULL)
16526 rettv->vval.v_string = NULL;
16527 else
16528 rettv->vval.v_string = do_string_sub(str, pat, sub, flg);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016529}
16530
16531/*
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016532 * "synID(lnum, col, trans)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000016533 */
16534/*ARGSUSED*/
16535 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016536f_synID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016537 typval_T *argvars;
16538 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016539{
16540 int id = 0;
16541#ifdef FEAT_SYN_HL
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016542 long lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016543 long col;
16544 int trans;
Bram Moolenaar92124a32005-06-17 22:03:40 +000016545 int transerr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016546
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016547 lnum = get_tv_lnum(argvars); /* -1 on type error */
16548 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16549 trans = get_tv_number_chk(&argvars[2], &transerr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016550
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016551 if (!transerr && lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016552 && col >= 0 && col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016553 id = syn_get_id(curwin, lnum, (colnr_T)col, trans, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016554#endif
16555
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016556 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016557}
16558
16559/*
16560 * "synIDattr(id, what [, mode])" function
16561 */
16562/*ARGSUSED*/
16563 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016564f_synIDattr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016565 typval_T *argvars;
16566 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016567{
16568 char_u *p = NULL;
16569#ifdef FEAT_SYN_HL
16570 int id;
16571 char_u *what;
16572 char_u *mode;
16573 char_u modebuf[NUMBUFLEN];
16574 int modec;
16575
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016576 id = get_tv_number(&argvars[0]);
16577 what = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016578 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016579 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016580 mode = get_tv_string_buf(&argvars[2], modebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016581 modec = TOLOWER_ASC(mode[0]);
16582 if (modec != 't' && modec != 'c'
16583#ifdef FEAT_GUI
16584 && modec != 'g'
16585#endif
16586 )
16587 modec = 0; /* replace invalid with current */
16588 }
16589 else
16590 {
16591#ifdef FEAT_GUI
16592 if (gui.in_use)
16593 modec = 'g';
16594 else
16595#endif
16596 if (t_colors > 1)
16597 modec = 'c';
16598 else
16599 modec = 't';
16600 }
16601
16602
16603 switch (TOLOWER_ASC(what[0]))
16604 {
16605 case 'b':
16606 if (TOLOWER_ASC(what[1]) == 'g') /* bg[#] */
16607 p = highlight_color(id, what, modec);
16608 else /* bold */
16609 p = highlight_has_attr(id, HL_BOLD, modec);
16610 break;
16611
16612 case 'f': /* fg[#] */
16613 p = highlight_color(id, what, modec);
16614 break;
16615
16616 case 'i':
16617 if (TOLOWER_ASC(what[1]) == 'n') /* inverse */
16618 p = highlight_has_attr(id, HL_INVERSE, modec);
16619 else /* italic */
16620 p = highlight_has_attr(id, HL_ITALIC, modec);
16621 break;
16622
16623 case 'n': /* name */
16624 p = get_highlight_name(NULL, id - 1);
16625 break;
16626
16627 case 'r': /* reverse */
16628 p = highlight_has_attr(id, HL_INVERSE, modec);
16629 break;
16630
16631 case 's': /* standout */
16632 p = highlight_has_attr(id, HL_STANDOUT, modec);
16633 break;
16634
Bram Moolenaar5b743bf2005-03-15 22:50:43 +000016635 case 'u':
16636 if (STRLEN(what) <= 5 || TOLOWER_ASC(what[5]) != 'c')
16637 /* underline */
16638 p = highlight_has_attr(id, HL_UNDERLINE, modec);
16639 else
16640 /* undercurl */
16641 p = highlight_has_attr(id, HL_UNDERCURL, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016642 break;
16643 }
16644
16645 if (p != NULL)
16646 p = vim_strsave(p);
16647#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016648 rettv->v_type = VAR_STRING;
16649 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016650}
16651
16652/*
16653 * "synIDtrans(id)" function
16654 */
16655/*ARGSUSED*/
16656 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016657f_synIDtrans(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016658 typval_T *argvars;
16659 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016660{
16661 int id;
16662
16663#ifdef FEAT_SYN_HL
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016664 id = get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016665
16666 if (id > 0)
16667 id = syn_get_final_id(id);
16668 else
16669#endif
16670 id = 0;
16671
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016672 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016673}
16674
16675/*
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016676 * "synstack(lnum, col)" function
16677 */
16678/*ARGSUSED*/
16679 static void
16680f_synstack(argvars, rettv)
16681 typval_T *argvars;
16682 typval_T *rettv;
16683{
16684#ifdef FEAT_SYN_HL
16685 long lnum;
16686 long col;
16687 int i;
16688 int id;
16689#endif
16690
16691 rettv->v_type = VAR_LIST;
16692 rettv->vval.v_list = NULL;
16693
16694#ifdef FEAT_SYN_HL
16695 lnum = get_tv_lnum(argvars); /* -1 on type error */
16696 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16697
16698 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar6cad8bd2008-09-10 13:39:10 +000016699 && col >= 0 && (col == 0 || col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016700 && rettv_list_alloc(rettv) != FAIL)
16701 {
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016702 (void)syn_get_id(curwin, lnum, (colnr_T)col, FALSE, NULL, TRUE);
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016703 for (i = 0; ; ++i)
16704 {
16705 id = syn_get_stack_item(i);
16706 if (id < 0)
16707 break;
16708 if (list_append_number(rettv->vval.v_list, id) == FAIL)
16709 break;
16710 }
16711 }
16712#endif
16713}
16714
16715/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016716 * "system()" function
16717 */
16718 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016719f_system(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016720 typval_T *argvars;
16721 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016722{
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016723 char_u *res = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016724 char_u *p;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016725 char_u *infile = NULL;
16726 char_u buf[NUMBUFLEN];
16727 int err = FALSE;
16728 FILE *fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016729
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016730 if (check_restricted() || check_secure())
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016731 goto done;
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016732
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016733 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016734 {
16735 /*
16736 * Write the string to a temp file, to be used for input of the shell
16737 * command.
16738 */
16739 if ((infile = vim_tempname('i')) == NULL)
16740 {
16741 EMSG(_(e_notmp));
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016742 goto done;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016743 }
16744
16745 fd = mch_fopen((char *)infile, WRITEBIN);
16746 if (fd == NULL)
16747 {
16748 EMSG2(_(e_notopen), infile);
16749 goto done;
16750 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016751 p = get_tv_string_buf_chk(&argvars[1], buf);
16752 if (p == NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016753 {
16754 fclose(fd);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016755 goto done; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016756 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016757 if (fwrite(p, STRLEN(p), 1, fd) != 1)
16758 err = TRUE;
16759 if (fclose(fd) != 0)
16760 err = TRUE;
16761 if (err)
16762 {
16763 EMSG(_("E677: Error writing temp file"));
16764 goto done;
16765 }
16766 }
16767
Bram Moolenaare580b0c2006-03-21 21:33:03 +000016768 res = get_cmd_output(get_tv_string(&argvars[0]), infile,
16769 SHELL_SILENT | SHELL_COOKED);
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016770
Bram Moolenaar071d4272004-06-13 20:20:40 +000016771#ifdef USE_CR
16772 /* translate <CR> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016773 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016774 {
16775 char_u *s;
16776
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016777 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016778 {
16779 if (*s == CAR)
16780 *s = NL;
16781 }
16782 }
16783#else
16784# ifdef USE_CRNL
16785 /* translate <CR><NL> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016786 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016787 {
16788 char_u *s, *d;
16789
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016790 d = res;
16791 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016792 {
16793 if (s[0] == CAR && s[1] == NL)
16794 ++s;
16795 *d++ = *s;
16796 }
16797 *d = NUL;
16798 }
16799# endif
16800#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016801
16802done:
16803 if (infile != NULL)
16804 {
16805 mch_remove(infile);
16806 vim_free(infile);
16807 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016808 rettv->v_type = VAR_STRING;
16809 rettv->vval.v_string = res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016810}
16811
16812/*
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016813 * "tabpagebuflist()" function
16814 */
16815/* ARGSUSED */
16816 static void
16817f_tabpagebuflist(argvars, rettv)
16818 typval_T *argvars;
16819 typval_T *rettv;
16820{
16821#ifndef FEAT_WINDOWS
16822 rettv->vval.v_number = 0;
16823#else
16824 tabpage_T *tp;
16825 win_T *wp = NULL;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016826
16827 if (argvars[0].v_type == VAR_UNKNOWN)
16828 wp = firstwin;
16829 else
16830 {
16831 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16832 if (tp != NULL)
Bram Moolenaar238a5642006-02-21 22:12:05 +000016833 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016834 }
16835 if (wp == NULL)
16836 rettv->vval.v_number = 0;
16837 else
16838 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016839 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016840 rettv->vval.v_number = 0;
16841 else
16842 {
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016843 for (; wp != NULL; wp = wp->w_next)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016844 if (list_append_number(rettv->vval.v_list,
16845 wp->w_buffer->b_fnum) == FAIL)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016846 break;
16847 }
16848 }
16849#endif
16850}
16851
16852
16853/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016854 * "tabpagenr()" function
16855 */
16856/* ARGSUSED */
16857 static void
16858f_tabpagenr(argvars, rettv)
16859 typval_T *argvars;
16860 typval_T *rettv;
16861{
16862 int nr = 1;
16863#ifdef FEAT_WINDOWS
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016864 char_u *arg;
16865
16866 if (argvars[0].v_type != VAR_UNKNOWN)
16867 {
16868 arg = get_tv_string_chk(&argvars[0]);
16869 nr = 0;
16870 if (arg != NULL)
16871 {
16872 if (STRCMP(arg, "$") == 0)
Bram Moolenaara5621492006-02-25 21:55:24 +000016873 nr = tabpage_index(NULL) - 1;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016874 else
16875 EMSG2(_(e_invexpr2), arg);
16876 }
16877 }
16878 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +000016879 nr = tabpage_index(curtab);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016880#endif
16881 rettv->vval.v_number = nr;
16882}
16883
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016884
16885#ifdef FEAT_WINDOWS
16886static int get_winnr __ARGS((tabpage_T *tp, typval_T *argvar));
16887
16888/*
16889 * Common code for tabpagewinnr() and winnr().
16890 */
16891 static int
16892get_winnr(tp, argvar)
16893 tabpage_T *tp;
16894 typval_T *argvar;
16895{
16896 win_T *twin;
16897 int nr = 1;
16898 win_T *wp;
16899 char_u *arg;
16900
16901 twin = (tp == curtab) ? curwin : tp->tp_curwin;
16902 if (argvar->v_type != VAR_UNKNOWN)
16903 {
16904 arg = get_tv_string_chk(argvar);
16905 if (arg == NULL)
16906 nr = 0; /* type error; errmsg already given */
16907 else if (STRCMP(arg, "$") == 0)
16908 twin = (tp == curtab) ? lastwin : tp->tp_lastwin;
16909 else if (STRCMP(arg, "#") == 0)
16910 {
16911 twin = (tp == curtab) ? prevwin : tp->tp_prevwin;
16912 if (twin == NULL)
16913 nr = 0;
16914 }
16915 else
16916 {
16917 EMSG2(_(e_invexpr2), arg);
16918 nr = 0;
16919 }
16920 }
16921
16922 if (nr > 0)
16923 for (wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
16924 wp != twin; wp = wp->w_next)
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016925 {
16926 if (wp == NULL)
16927 {
16928 /* didn't find it in this tabpage */
16929 nr = 0;
16930 break;
16931 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016932 ++nr;
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016933 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016934 return nr;
16935}
16936#endif
16937
16938/*
16939 * "tabpagewinnr()" function
16940 */
16941/* ARGSUSED */
16942 static void
16943f_tabpagewinnr(argvars, rettv)
16944 typval_T *argvars;
16945 typval_T *rettv;
16946{
16947 int nr = 1;
16948#ifdef FEAT_WINDOWS
16949 tabpage_T *tp;
16950
16951 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16952 if (tp == NULL)
16953 nr = 0;
16954 else
16955 nr = get_winnr(tp, &argvars[1]);
16956#endif
16957 rettv->vval.v_number = nr;
16958}
16959
16960
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016961/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016962 * "tagfiles()" function
16963 */
16964/*ARGSUSED*/
16965 static void
16966f_tagfiles(argvars, rettv)
16967 typval_T *argvars;
16968 typval_T *rettv;
16969{
16970 char_u fname[MAXPATHL + 1];
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016971 tagname_T tn;
16972 int first;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016973
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016974 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016975 {
16976 rettv->vval.v_number = 0;
16977 return;
16978 }
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016979
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016980 for (first = TRUE; ; first = FALSE)
16981 if (get_tagfname(&tn, first, fname) == FAIL
16982 || list_append_string(rettv->vval.v_list, fname, -1) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016983 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016984 tagname_free(&tn);
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016985}
16986
16987/*
Bram Moolenaare2ac10d2005-03-07 23:26:06 +000016988 * "taglist()" function
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016989 */
16990 static void
16991f_taglist(argvars, rettv)
16992 typval_T *argvars;
16993 typval_T *rettv;
16994{
16995 char_u *tag_pattern;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016996
16997 tag_pattern = get_tv_string(&argvars[0]);
16998
16999 rettv->vval.v_number = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017000 if (*tag_pattern == NUL)
17001 return;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017002
Bram Moolenaareddf53b2006-02-27 00:11:10 +000017003 if (rettv_list_alloc(rettv) == OK)
17004 (void)get_tags(rettv->vval.v_list, tag_pattern);
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017005}
17006
17007/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017008 * "tempname()" function
17009 */
17010/*ARGSUSED*/
17011 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017012f_tempname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017013 typval_T *argvars;
17014 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017015{
17016 static int x = 'A';
17017
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017018 rettv->v_type = VAR_STRING;
17019 rettv->vval.v_string = vim_tempname(x);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017020
17021 /* Advance 'x' to use A-Z and 0-9, so that there are at least 34 different
17022 * names. Skip 'I' and 'O', they are used for shell redirection. */
17023 do
17024 {
17025 if (x == 'Z')
17026 x = '0';
17027 else if (x == '9')
17028 x = 'A';
17029 else
17030 {
17031#ifdef EBCDIC
17032 if (x == 'I')
17033 x = 'J';
17034 else if (x == 'R')
17035 x = 'S';
17036 else
17037#endif
17038 ++x;
17039 }
17040 } while (x == 'I' || x == 'O');
17041}
17042
17043/*
Bram Moolenaard52d9742005-08-21 22:20:28 +000017044 * "test(list)" function: Just checking the walls...
17045 */
17046/*ARGSUSED*/
17047 static void
17048f_test(argvars, rettv)
17049 typval_T *argvars;
17050 typval_T *rettv;
17051{
17052 /* Used for unit testing. Change the code below to your liking. */
17053#if 0
17054 listitem_T *li;
17055 list_T *l;
17056 char_u *bad, *good;
17057
17058 if (argvars[0].v_type != VAR_LIST)
17059 return;
17060 l = argvars[0].vval.v_list;
17061 if (l == NULL)
17062 return;
17063 li = l->lv_first;
17064 if (li == NULL)
17065 return;
17066 bad = get_tv_string(&li->li_tv);
17067 li = li->li_next;
17068 if (li == NULL)
17069 return;
17070 good = get_tv_string(&li->li_tv);
17071 rettv->vval.v_number = test_edit_score(bad, good);
17072#endif
17073}
17074
17075/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017076 * "tolower(string)" function
17077 */
17078 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017079f_tolower(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017080 typval_T *argvars;
17081 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017082{
17083 char_u *p;
17084
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017085 p = vim_strsave(get_tv_string(&argvars[0]));
17086 rettv->v_type = VAR_STRING;
17087 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017088
17089 if (p != NULL)
17090 while (*p != NUL)
17091 {
17092#ifdef FEAT_MBYTE
17093 int l;
17094
17095 if (enc_utf8)
17096 {
17097 int c, lc;
17098
17099 c = utf_ptr2char(p);
17100 lc = utf_tolower(c);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017101 l = utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017102 /* TODO: reallocate string when byte count changes. */
17103 if (utf_char2len(lc) == l)
17104 utf_char2bytes(lc, p);
17105 p += l;
17106 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017107 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017108 p += l; /* skip multi-byte character */
17109 else
17110#endif
17111 {
17112 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
17113 ++p;
17114 }
17115 }
17116}
17117
17118/*
17119 * "toupper(string)" function
17120 */
17121 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017122f_toupper(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017123 typval_T *argvars;
17124 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017125{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017126 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017127 rettv->vval.v_string = strup_save(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000017128}
17129
17130/*
Bram Moolenaar8299df92004-07-10 09:47:34 +000017131 * "tr(string, fromstr, tostr)" function
17132 */
17133 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017134f_tr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017135 typval_T *argvars;
17136 typval_T *rettv;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017137{
17138 char_u *instr;
17139 char_u *fromstr;
17140 char_u *tostr;
17141 char_u *p;
17142#ifdef FEAT_MBYTE
Bram Moolenaar342337a2005-07-21 21:11:17 +000017143 int inlen;
17144 int fromlen;
17145 int tolen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017146 int idx;
17147 char_u *cpstr;
17148 int cplen;
17149 int first = TRUE;
17150#endif
17151 char_u buf[NUMBUFLEN];
17152 char_u buf2[NUMBUFLEN];
17153 garray_T ga;
17154
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017155 instr = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017156 fromstr = get_tv_string_buf_chk(&argvars[1], buf);
17157 tostr = get_tv_string_buf_chk(&argvars[2], buf2);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017158
17159 /* Default return value: empty string. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017160 rettv->v_type = VAR_STRING;
17161 rettv->vval.v_string = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017162 if (fromstr == NULL || tostr == NULL)
17163 return; /* type error; errmsg already given */
Bram Moolenaar8299df92004-07-10 09:47:34 +000017164 ga_init2(&ga, (int)sizeof(char), 80);
17165
17166#ifdef FEAT_MBYTE
17167 if (!has_mbyte)
17168#endif
17169 /* not multi-byte: fromstr and tostr must be the same length */
17170 if (STRLEN(fromstr) != STRLEN(tostr))
17171 {
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017172#ifdef FEAT_MBYTE
Bram Moolenaar8299df92004-07-10 09:47:34 +000017173error:
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017174#endif
Bram Moolenaar8299df92004-07-10 09:47:34 +000017175 EMSG2(_(e_invarg2), fromstr);
17176 ga_clear(&ga);
17177 return;
17178 }
17179
17180 /* fromstr and tostr have to contain the same number of chars */
17181 while (*instr != NUL)
17182 {
17183#ifdef FEAT_MBYTE
17184 if (has_mbyte)
17185 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017186 inlen = (*mb_ptr2len)(instr);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017187 cpstr = instr;
17188 cplen = inlen;
17189 idx = 0;
17190 for (p = fromstr; *p != NUL; p += fromlen)
17191 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017192 fromlen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017193 if (fromlen == inlen && STRNCMP(instr, p, inlen) == 0)
17194 {
17195 for (p = tostr; *p != NUL; p += tolen)
17196 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017197 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017198 if (idx-- == 0)
17199 {
17200 cplen = tolen;
17201 cpstr = p;
17202 break;
17203 }
17204 }
17205 if (*p == NUL) /* tostr is shorter than fromstr */
17206 goto error;
17207 break;
17208 }
17209 ++idx;
17210 }
17211
17212 if (first && cpstr == instr)
17213 {
17214 /* Check that fromstr and tostr have the same number of
17215 * (multi-byte) characters. Done only once when a character
17216 * of instr doesn't appear in fromstr. */
17217 first = FALSE;
17218 for (p = tostr; *p != NUL; p += tolen)
17219 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017220 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017221 --idx;
17222 }
17223 if (idx != 0)
17224 goto error;
17225 }
17226
17227 ga_grow(&ga, cplen);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000017228 mch_memmove((char *)ga.ga_data + ga.ga_len, cpstr, (size_t)cplen);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017229 ga.ga_len += cplen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017230
17231 instr += inlen;
17232 }
17233 else
17234#endif
17235 {
17236 /* When not using multi-byte chars we can do it faster. */
17237 p = vim_strchr(fromstr, *instr);
17238 if (p != NULL)
17239 ga_append(&ga, tostr[p - fromstr]);
17240 else
17241 ga_append(&ga, *instr);
17242 ++instr;
17243 }
17244 }
17245
Bram Moolenaar61b974b2006-12-05 09:32:29 +000017246 /* add a terminating NUL */
17247 ga_grow(&ga, 1);
17248 ga_append(&ga, NUL);
17249
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017250 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017251}
17252
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017253#ifdef FEAT_FLOAT
17254/*
17255 * "trunc({float})" function
17256 */
17257 static void
17258f_trunc(argvars, rettv)
17259 typval_T *argvars;
17260 typval_T *rettv;
17261{
17262 float_T f;
17263
17264 rettv->v_type = VAR_FLOAT;
17265 if (get_float_arg(argvars, &f) == OK)
17266 /* trunc() is not in C90, use floor() or ceil() instead. */
17267 rettv->vval.v_float = f > 0 ? floor(f) : ceil(f);
17268 else
17269 rettv->vval.v_float = 0.0;
17270}
17271#endif
17272
Bram Moolenaar8299df92004-07-10 09:47:34 +000017273/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017274 * "type(expr)" function
17275 */
17276 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017277f_type(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017278 typval_T *argvars;
17279 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017280{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017281 int n;
17282
17283 switch (argvars[0].v_type)
17284 {
17285 case VAR_NUMBER: n = 0; break;
17286 case VAR_STRING: n = 1; break;
17287 case VAR_FUNC: n = 2; break;
17288 case VAR_LIST: n = 3; break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000017289 case VAR_DICT: n = 4; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017290#ifdef FEAT_FLOAT
17291 case VAR_FLOAT: n = 5; break;
17292#endif
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017293 default: EMSG2(_(e_intern2), "f_type()"); n = 0; break;
17294 }
17295 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017296}
17297
17298/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000017299 * "values(dict)" function
17300 */
17301 static void
17302f_values(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017303 typval_T *argvars;
17304 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000017305{
17306 dict_list(argvars, rettv, 1);
17307}
17308
17309/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017310 * "virtcol(string)" function
17311 */
17312 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017313f_virtcol(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017314 typval_T *argvars;
17315 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017316{
17317 colnr_T vcol = 0;
17318 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017319 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017320
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017321 fp = var2fpos(&argvars[0], FALSE, &fnum);
17322 if (fp != NULL && fp->lnum <= curbuf->b_ml.ml_line_count
17323 && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017324 {
17325 getvvcol(curwin, fp, NULL, NULL, &vcol);
17326 ++vcol;
17327 }
17328
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017329 rettv->vval.v_number = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017330}
17331
17332/*
17333 * "visualmode()" function
17334 */
17335/*ARGSUSED*/
17336 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017337f_visualmode(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017338 typval_T *argvars;
17339 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017340{
17341#ifdef FEAT_VISUAL
17342 char_u str[2];
17343
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017344 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017345 str[0] = curbuf->b_visual_mode_eval;
17346 str[1] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017347 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017348
17349 /* A non-zero number or non-empty string argument: reset mode. */
Bram Moolenaar05bb9532008-07-04 09:44:11 +000017350 if (non_zero_arg(&argvars[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +000017351 curbuf->b_visual_mode_eval = NUL;
17352#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017353 rettv->vval.v_number = 0; /* return anything, it won't work anyway */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017354#endif
17355}
17356
17357/*
17358 * "winbufnr(nr)" function
17359 */
17360 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017361f_winbufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017362 typval_T *argvars;
17363 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017364{
17365 win_T *wp;
17366
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017367 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017368 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017369 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017370 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017371 rettv->vval.v_number = wp->w_buffer->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017372}
17373
17374/*
17375 * "wincol()" function
17376 */
17377/*ARGSUSED*/
17378 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017379f_wincol(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017380 typval_T *argvars;
17381 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017382{
17383 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017384 rettv->vval.v_number = curwin->w_wcol + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017385}
17386
17387/*
17388 * "winheight(nr)" function
17389 */
17390 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017391f_winheight(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017392 typval_T *argvars;
17393 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017394{
17395 win_T *wp;
17396
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017397 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017398 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017399 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017400 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017401 rettv->vval.v_number = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017402}
17403
17404/*
17405 * "winline()" function
17406 */
17407/*ARGSUSED*/
17408 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017409f_winline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017410 typval_T *argvars;
17411 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017412{
17413 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017414 rettv->vval.v_number = curwin->w_wrow + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017415}
17416
17417/*
17418 * "winnr()" function
17419 */
17420/* ARGSUSED */
17421 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017422f_winnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017423 typval_T *argvars;
17424 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017425{
17426 int nr = 1;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017427
Bram Moolenaar071d4272004-06-13 20:20:40 +000017428#ifdef FEAT_WINDOWS
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017429 nr = get_winnr(curtab, &argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017430#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017431 rettv->vval.v_number = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017432}
17433
17434/*
17435 * "winrestcmd()" function
17436 */
17437/* ARGSUSED */
17438 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017439f_winrestcmd(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017440 typval_T *argvars;
17441 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017442{
17443#ifdef FEAT_WINDOWS
17444 win_T *wp;
17445 int winnr = 1;
17446 garray_T ga;
17447 char_u buf[50];
17448
17449 ga_init2(&ga, (int)sizeof(char), 70);
17450 for (wp = firstwin; wp != NULL; wp = wp->w_next)
17451 {
17452 sprintf((char *)buf, "%dresize %d|", winnr, wp->w_height);
17453 ga_concat(&ga, buf);
17454# ifdef FEAT_VERTSPLIT
17455 sprintf((char *)buf, "vert %dresize %d|", winnr, wp->w_width);
17456 ga_concat(&ga, buf);
17457# endif
17458 ++winnr;
17459 }
Bram Moolenaar269ec652004-07-29 08:43:53 +000017460 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017461
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017462 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017463#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017464 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017465#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017466 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017467}
17468
17469/*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017470 * "winrestview()" function
17471 */
17472/* ARGSUSED */
17473 static void
17474f_winrestview(argvars, rettv)
17475 typval_T *argvars;
17476 typval_T *rettv;
17477{
17478 dict_T *dict;
17479
17480 if (argvars[0].v_type != VAR_DICT
17481 || (dict = argvars[0].vval.v_dict) == NULL)
17482 EMSG(_(e_invarg));
17483 else
17484 {
17485 curwin->w_cursor.lnum = get_dict_number(dict, (char_u *)"lnum");
17486 curwin->w_cursor.col = get_dict_number(dict, (char_u *)"col");
17487#ifdef FEAT_VIRTUALEDIT
17488 curwin->w_cursor.coladd = get_dict_number(dict, (char_u *)"coladd");
17489#endif
17490 curwin->w_curswant = get_dict_number(dict, (char_u *)"curswant");
Bram Moolenaar362e1a32006-03-06 23:29:24 +000017491 curwin->w_set_curswant = FALSE;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017492
Bram Moolenaar6f11a412006-09-06 20:16:42 +000017493 set_topline(curwin, get_dict_number(dict, (char_u *)"topline"));
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017494#ifdef FEAT_DIFF
17495 curwin->w_topfill = get_dict_number(dict, (char_u *)"topfill");
17496#endif
17497 curwin->w_leftcol = get_dict_number(dict, (char_u *)"leftcol");
17498 curwin->w_skipcol = get_dict_number(dict, (char_u *)"skipcol");
17499
17500 check_cursor();
17501 changed_cline_bef_curs();
17502 invalidate_botline();
17503 redraw_later(VALID);
17504
17505 if (curwin->w_topline == 0)
17506 curwin->w_topline = 1;
17507 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
17508 curwin->w_topline = curbuf->b_ml.ml_line_count;
17509#ifdef FEAT_DIFF
17510 check_topfill(curwin, TRUE);
17511#endif
17512 }
17513}
17514
17515/*
17516 * "winsaveview()" function
17517 */
17518/* ARGSUSED */
17519 static void
17520f_winsaveview(argvars, rettv)
17521 typval_T *argvars;
17522 typval_T *rettv;
17523{
17524 dict_T *dict;
17525
17526 dict = dict_alloc();
17527 if (dict == NULL)
17528 return;
17529 rettv->v_type = VAR_DICT;
17530 rettv->vval.v_dict = dict;
17531 ++dict->dv_refcount;
17532
17533 dict_add_nr_str(dict, "lnum", (long)curwin->w_cursor.lnum, NULL);
17534 dict_add_nr_str(dict, "col", (long)curwin->w_cursor.col, NULL);
17535#ifdef FEAT_VIRTUALEDIT
17536 dict_add_nr_str(dict, "coladd", (long)curwin->w_cursor.coladd, NULL);
17537#endif
Bram Moolenaar9af1ba92006-08-29 19:55:53 +000017538 update_curswant();
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017539 dict_add_nr_str(dict, "curswant", (long)curwin->w_curswant, NULL);
17540
17541 dict_add_nr_str(dict, "topline", (long)curwin->w_topline, NULL);
17542#ifdef FEAT_DIFF
17543 dict_add_nr_str(dict, "topfill", (long)curwin->w_topfill, NULL);
17544#endif
17545 dict_add_nr_str(dict, "leftcol", (long)curwin->w_leftcol, NULL);
17546 dict_add_nr_str(dict, "skipcol", (long)curwin->w_skipcol, NULL);
17547}
17548
17549/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017550 * "winwidth(nr)" function
17551 */
17552 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017553f_winwidth(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017554 typval_T *argvars;
17555 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017556{
17557 win_T *wp;
17558
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017559 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017560 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017561 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017562 else
17563#ifdef FEAT_VERTSPLIT
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017564 rettv->vval.v_number = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017565#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017566 rettv->vval.v_number = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017567#endif
17568}
17569
Bram Moolenaar071d4272004-06-13 20:20:40 +000017570/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017571 * "writefile()" function
17572 */
17573 static void
17574f_writefile(argvars, rettv)
17575 typval_T *argvars;
17576 typval_T *rettv;
17577{
17578 int binary = FALSE;
17579 char_u *fname;
17580 FILE *fd;
17581 listitem_T *li;
17582 char_u *s;
17583 int ret = 0;
17584 int c;
17585
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000017586 if (check_restricted() || check_secure())
17587 return;
17588
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017589 if (argvars[0].v_type != VAR_LIST)
17590 {
17591 EMSG2(_(e_listarg), "writefile()");
17592 return;
17593 }
17594 if (argvars[0].vval.v_list == NULL)
17595 return;
17596
17597 if (argvars[2].v_type != VAR_UNKNOWN
17598 && STRCMP(get_tv_string(&argvars[2]), "b") == 0)
17599 binary = TRUE;
17600
17601 /* Always open the file in binary mode, library functions have a mind of
17602 * their own about CR-LF conversion. */
17603 fname = get_tv_string(&argvars[1]);
17604 if (*fname == NUL || (fd = mch_fopen((char *)fname, WRITEBIN)) == NULL)
17605 {
17606 EMSG2(_(e_notcreate), *fname == NUL ? (char_u *)_("<empty>") : fname);
17607 ret = -1;
17608 }
17609 else
17610 {
17611 for (li = argvars[0].vval.v_list->lv_first; li != NULL;
17612 li = li->li_next)
17613 {
17614 for (s = get_tv_string(&li->li_tv); *s != NUL; ++s)
17615 {
17616 if (*s == '\n')
17617 c = putc(NUL, fd);
17618 else
17619 c = putc(*s, fd);
17620 if (c == EOF)
17621 {
17622 ret = -1;
17623 break;
17624 }
17625 }
17626 if (!binary || li->li_next != NULL)
17627 if (putc('\n', fd) == EOF)
17628 {
17629 ret = -1;
17630 break;
17631 }
17632 if (ret < 0)
17633 {
17634 EMSG(_(e_write));
17635 break;
17636 }
17637 }
17638 fclose(fd);
17639 }
17640
17641 rettv->vval.v_number = ret;
17642}
17643
17644/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017645 * Translate a String variable into a position.
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017646 * Returns NULL when there is an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017647 */
17648 static pos_T *
Bram Moolenaar477933c2007-07-17 14:32:23 +000017649var2fpos(varp, dollar_lnum, fnum)
Bram Moolenaar33570922005-01-25 22:26:29 +000017650 typval_T *varp;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017651 int dollar_lnum; /* TRUE when $ is last line */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017652 int *fnum; /* set to fnum for '0, 'A, etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017653{
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017654 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017655 static pos_T pos;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017656 pos_T *pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017657
Bram Moolenaara5525202006-03-02 22:52:09 +000017658 /* Argument can be [lnum, col, coladd]. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017659 if (varp->v_type == VAR_LIST)
17660 {
17661 list_T *l;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017662 int len;
Bram Moolenaara5525202006-03-02 22:52:09 +000017663 int error = FALSE;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017664 listitem_T *li;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017665
17666 l = varp->vval.v_list;
17667 if (l == NULL)
17668 return NULL;
17669
17670 /* Get the line number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017671 pos.lnum = list_find_nr(l, 0L, &error);
17672 if (error || pos.lnum <= 0 || pos.lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017673 return NULL; /* invalid line number */
17674
17675 /* Get the column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017676 pos.col = list_find_nr(l, 1L, &error);
17677 if (error)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017678 return NULL;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017679 len = (long)STRLEN(ml_get(pos.lnum));
Bram Moolenaar477933c2007-07-17 14:32:23 +000017680
17681 /* We accept "$" for the column number: last column. */
17682 li = list_find(l, 1L);
17683 if (li != NULL && li->li_tv.v_type == VAR_STRING
17684 && li->li_tv.vval.v_string != NULL
17685 && STRCMP(li->li_tv.vval.v_string, "$") == 0)
17686 pos.col = len + 1;
17687
Bram Moolenaara5525202006-03-02 22:52:09 +000017688 /* Accept a position up to the NUL after the line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000017689 if (pos.col == 0 || (int)pos.col > len + 1)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017690 return NULL; /* invalid column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017691 --pos.col;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017692
Bram Moolenaara5525202006-03-02 22:52:09 +000017693#ifdef FEAT_VIRTUALEDIT
17694 /* Get the virtual offset. Defaults to zero. */
17695 pos.coladd = list_find_nr(l, 2L, &error);
17696 if (error)
17697 pos.coladd = 0;
17698#endif
17699
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017700 return &pos;
17701 }
17702
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017703 name = get_tv_string_chk(varp);
17704 if (name == NULL)
17705 return NULL;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017706 if (name[0] == '.') /* cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017707 return &curwin->w_cursor;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017708#ifdef FEAT_VISUAL
17709 if (name[0] == 'v' && name[1] == NUL) /* Visual start */
17710 {
17711 if (VIsual_active)
17712 return &VIsual;
17713 return &curwin->w_cursor;
17714 }
17715#endif
17716 if (name[0] == '\'') /* mark */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017717 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017718 pp = getmark_fnum(name[1], FALSE, fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017719 if (pp == NULL || pp == (pos_T *)-1 || pp->lnum <= 0)
17720 return NULL;
17721 return pp;
17722 }
Bram Moolenaara5525202006-03-02 22:52:09 +000017723
17724#ifdef FEAT_VIRTUALEDIT
17725 pos.coladd = 0;
17726#endif
17727
Bram Moolenaar477933c2007-07-17 14:32:23 +000017728 if (name[0] == 'w' && dollar_lnum)
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017729 {
17730 pos.col = 0;
17731 if (name[1] == '0') /* "w0": first visible line */
17732 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017733 update_topline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017734 pos.lnum = curwin->w_topline;
17735 return &pos;
17736 }
17737 else if (name[1] == '$') /* "w$": last visible line */
17738 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017739 validate_botline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017740 pos.lnum = curwin->w_botline - 1;
17741 return &pos;
17742 }
17743 }
17744 else if (name[0] == '$') /* last column or line */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017745 {
Bram Moolenaar477933c2007-07-17 14:32:23 +000017746 if (dollar_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017747 {
17748 pos.lnum = curbuf->b_ml.ml_line_count;
17749 pos.col = 0;
17750 }
17751 else
17752 {
17753 pos.lnum = curwin->w_cursor.lnum;
17754 pos.col = (colnr_T)STRLEN(ml_get_curline());
17755 }
17756 return &pos;
17757 }
17758 return NULL;
17759}
17760
17761/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017762 * Convert list in "arg" into a position and optional file number.
17763 * When "fnump" is NULL there is no file number, only 3 items.
17764 * Note that the column is passed on as-is, the caller may want to decrement
17765 * it to use 1 for the first column.
17766 * Return FAIL when conversion is not possible, doesn't check the position for
17767 * validity.
17768 */
17769 static int
17770list2fpos(arg, posp, fnump)
17771 typval_T *arg;
17772 pos_T *posp;
17773 int *fnump;
17774{
17775 list_T *l = arg->vval.v_list;
17776 long i = 0;
17777 long n;
17778
Bram Moolenaarbde35262006-07-23 20:12:24 +000017779 /* List must be: [fnum, lnum, col, coladd], where "fnum" is only there
17780 * when "fnump" isn't NULL and "coladd" is optional. */
17781 if (arg->v_type != VAR_LIST
17782 || l == NULL
17783 || l->lv_len < (fnump == NULL ? 2 : 3)
17784 || l->lv_len > (fnump == NULL ? 3 : 4))
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017785 return FAIL;
17786
17787 if (fnump != NULL)
17788 {
17789 n = list_find_nr(l, i++, NULL); /* fnum */
17790 if (n < 0)
17791 return FAIL;
17792 if (n == 0)
17793 n = curbuf->b_fnum; /* current buffer */
17794 *fnump = n;
17795 }
17796
17797 n = list_find_nr(l, i++, NULL); /* lnum */
17798 if (n < 0)
17799 return FAIL;
17800 posp->lnum = n;
17801
17802 n = list_find_nr(l, i++, NULL); /* col */
17803 if (n < 0)
17804 return FAIL;
17805 posp->col = n;
17806
17807#ifdef FEAT_VIRTUALEDIT
17808 n = list_find_nr(l, i, NULL);
17809 if (n < 0)
Bram Moolenaarbde35262006-07-23 20:12:24 +000017810 posp->coladd = 0;
17811 else
17812 posp->coladd = n;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017813#endif
17814
17815 return OK;
17816}
17817
17818/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017819 * Get the length of an environment variable name.
17820 * Advance "arg" to the first character after the name.
17821 * Return 0 for error.
17822 */
17823 static int
17824get_env_len(arg)
17825 char_u **arg;
17826{
17827 char_u *p;
17828 int len;
17829
17830 for (p = *arg; vim_isIDc(*p); ++p)
17831 ;
17832 if (p == *arg) /* no name found */
17833 return 0;
17834
17835 len = (int)(p - *arg);
17836 *arg = p;
17837 return len;
17838}
17839
17840/*
17841 * Get the length of the name of a function or internal variable.
17842 * "arg" is advanced to the first non-white character after the name.
17843 * Return 0 if something is wrong.
17844 */
17845 static int
17846get_id_len(arg)
17847 char_u **arg;
17848{
17849 char_u *p;
17850 int len;
17851
17852 /* Find the end of the name. */
17853 for (p = *arg; eval_isnamec(*p); ++p)
17854 ;
17855 if (p == *arg) /* no name found */
17856 return 0;
17857
17858 len = (int)(p - *arg);
17859 *arg = skipwhite(p);
17860
17861 return len;
17862}
17863
17864/*
Bram Moolenaara7043832005-01-21 11:56:39 +000017865 * Get the length of the name of a variable or function.
17866 * Only the name is recognized, does not handle ".key" or "[idx]".
Bram Moolenaar071d4272004-06-13 20:20:40 +000017867 * "arg" is advanced to the first non-white character after the name.
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017868 * Return -1 if curly braces expansion failed.
17869 * Return 0 if something else is wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017870 * If the name contains 'magic' {}'s, expand them and return the
17871 * expanded name in an allocated string via 'alias' - caller must free.
17872 */
17873 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017874get_name_len(arg, alias, evaluate, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017875 char_u **arg;
17876 char_u **alias;
17877 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017878 int verbose;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017879{
17880 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017881 char_u *p;
17882 char_u *expr_start;
17883 char_u *expr_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017884
17885 *alias = NULL; /* default to no alias */
17886
17887 if ((*arg)[0] == K_SPECIAL && (*arg)[1] == KS_EXTRA
17888 && (*arg)[2] == (int)KE_SNR)
17889 {
17890 /* hard coded <SNR>, already translated */
17891 *arg += 3;
17892 return get_id_len(arg) + 3;
17893 }
17894 len = eval_fname_script(*arg);
17895 if (len > 0)
17896 {
17897 /* literal "<SID>", "s:" or "<SNR>" */
17898 *arg += len;
17899 }
17900
Bram Moolenaar071d4272004-06-13 20:20:40 +000017901 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017902 * Find the end of the name; check for {} construction.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017903 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017904 p = find_name_end(*arg, &expr_start, &expr_end,
17905 len > 0 ? 0 : FNE_CHECK_START);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017906 if (expr_start != NULL)
17907 {
17908 char_u *temp_string;
17909
17910 if (!evaluate)
17911 {
17912 len += (int)(p - *arg);
17913 *arg = skipwhite(p);
17914 return len;
17915 }
17916
17917 /*
17918 * Include any <SID> etc in the expanded string:
17919 * Thus the -len here.
17920 */
17921 temp_string = make_expanded_name(*arg - len, expr_start, expr_end, p);
17922 if (temp_string == NULL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017923 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017924 *alias = temp_string;
17925 *arg = skipwhite(p);
17926 return (int)STRLEN(temp_string);
17927 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017928
17929 len += get_id_len(arg);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017930 if (len == 0 && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017931 EMSG2(_(e_invexpr2), *arg);
17932
17933 return len;
17934}
17935
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017936/*
17937 * Find the end of a variable or function name, taking care of magic braces.
17938 * If "expr_start" is not NULL then "expr_start" and "expr_end" are set to the
17939 * start and end of the first magic braces item.
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017940 * "flags" can have FNE_INCL_BR and FNE_CHECK_START.
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017941 * Return a pointer to just after the name. Equal to "arg" if there is no
17942 * valid name.
17943 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017944 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017945find_name_end(arg, expr_start, expr_end, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017946 char_u *arg;
17947 char_u **expr_start;
17948 char_u **expr_end;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017949 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017950{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017951 int mb_nest = 0;
17952 int br_nest = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017953 char_u *p;
17954
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017955 if (expr_start != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017956 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017957 *expr_start = NULL;
17958 *expr_end = NULL;
17959 }
17960
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017961 /* Quick check for valid starting character. */
17962 if ((flags & FNE_CHECK_START) && !eval_isnamec1(*arg) && *arg != '{')
17963 return arg;
17964
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017965 for (p = arg; *p != NUL
17966 && (eval_isnamec(*p)
Bram Moolenaare9a41262005-01-15 22:18:47 +000017967 || *p == '{'
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017968 || ((flags & FNE_INCL_BR) && (*p == '[' || *p == '.'))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017969 || mb_nest != 0
Bram Moolenaar8af24422005-08-08 22:06:28 +000017970 || br_nest != 0); mb_ptr_adv(p))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017971 {
Bram Moolenaar8af24422005-08-08 22:06:28 +000017972 if (*p == '\'')
17973 {
17974 /* skip over 'string' to avoid counting [ and ] inside it. */
17975 for (p = p + 1; *p != NUL && *p != '\''; mb_ptr_adv(p))
17976 ;
17977 if (*p == NUL)
17978 break;
17979 }
17980 else if (*p == '"')
17981 {
17982 /* skip over "str\"ing" to avoid counting [ and ] inside it. */
17983 for (p = p + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
17984 if (*p == '\\' && p[1] != NUL)
17985 ++p;
17986 if (*p == NUL)
17987 break;
17988 }
17989
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017990 if (mb_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017991 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017992 if (*p == '[')
17993 ++br_nest;
17994 else if (*p == ']')
17995 --br_nest;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017996 }
Bram Moolenaar8af24422005-08-08 22:06:28 +000017997
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017998 if (br_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017999 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018000 if (*p == '{')
18001 {
18002 mb_nest++;
18003 if (expr_start != NULL && *expr_start == NULL)
18004 *expr_start = p;
18005 }
18006 else if (*p == '}')
18007 {
18008 mb_nest--;
18009 if (expr_start != NULL && mb_nest == 0 && *expr_end == NULL)
18010 *expr_end = p;
18011 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018012 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018013 }
18014
18015 return p;
18016}
18017
18018/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018019 * Expands out the 'magic' {}'s in a variable/function name.
18020 * Note that this can call itself recursively, to deal with
18021 * constructs like foo{bar}{baz}{bam}
18022 * The four pointer arguments point to "foo{expre}ss{ion}bar"
18023 * "in_start" ^
18024 * "expr_start" ^
18025 * "expr_end" ^
18026 * "in_end" ^
18027 *
18028 * Returns a new allocated string, which the caller must free.
18029 * Returns NULL for failure.
18030 */
18031 static char_u *
18032make_expanded_name(in_start, expr_start, expr_end, in_end)
18033 char_u *in_start;
18034 char_u *expr_start;
18035 char_u *expr_end;
18036 char_u *in_end;
18037{
18038 char_u c1;
18039 char_u *retval = NULL;
18040 char_u *temp_result;
18041 char_u *nextcmd = NULL;
18042
18043 if (expr_end == NULL || in_end == NULL)
18044 return NULL;
18045 *expr_start = NUL;
18046 *expr_end = NUL;
18047 c1 = *in_end;
18048 *in_end = NUL;
18049
Bram Moolenaar362e1a32006-03-06 23:29:24 +000018050 temp_result = eval_to_string(expr_start + 1, &nextcmd, FALSE);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018051 if (temp_result != NULL && nextcmd == NULL)
18052 {
18053 retval = alloc((unsigned)(STRLEN(temp_result) + (expr_start - in_start)
18054 + (in_end - expr_end) + 1));
18055 if (retval != NULL)
18056 {
18057 STRCPY(retval, in_start);
18058 STRCAT(retval, temp_result);
18059 STRCAT(retval, expr_end + 1);
18060 }
18061 }
18062 vim_free(temp_result);
18063
18064 *in_end = c1; /* put char back for error messages */
18065 *expr_start = '{';
18066 *expr_end = '}';
18067
18068 if (retval != NULL)
18069 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018070 temp_result = find_name_end(retval, &expr_start, &expr_end, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018071 if (expr_start != NULL)
18072 {
18073 /* Further expansion! */
18074 temp_result = make_expanded_name(retval, expr_start,
18075 expr_end, temp_result);
18076 vim_free(retval);
18077 retval = temp_result;
18078 }
18079 }
18080
18081 return retval;
18082}
18083
18084/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018085 * Return TRUE if character "c" can be used in a variable or function name.
Bram Moolenaare9a41262005-01-15 22:18:47 +000018086 * Does not include '{' or '}' for magic braces.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018087 */
18088 static int
18089eval_isnamec(c)
18090 int c;
18091{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018092 return (ASCII_ISALNUM(c) || c == '_' || c == ':' || c == AUTOLOAD_CHAR);
18093}
18094
18095/*
18096 * Return TRUE if character "c" can be used as the first character in a
18097 * variable or function name (excluding '{' and '}').
18098 */
18099 static int
18100eval_isnamec1(c)
18101 int c;
18102{
18103 return (ASCII_ISALPHA(c) || c == '_');
Bram Moolenaar071d4272004-06-13 20:20:40 +000018104}
18105
18106/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018107 * Set number v: variable to "val".
18108 */
18109 void
18110set_vim_var_nr(idx, val)
18111 int idx;
18112 long val;
18113{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018114 vimvars[idx].vv_nr = val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018115}
18116
18117/*
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018118 * Get number v: variable value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018119 */
18120 long
18121get_vim_var_nr(idx)
18122 int idx;
18123{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018124 return vimvars[idx].vv_nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018125}
18126
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018127/*
18128 * Get string v: variable value. Uses a static buffer, can only be used once.
18129 */
18130 char_u *
18131get_vim_var_str(idx)
18132 int idx;
18133{
18134 return get_tv_string(&vimvars[idx].vv_tv);
18135}
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018136
Bram Moolenaar071d4272004-06-13 20:20:40 +000018137/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018138 * Get List v: variable value. Caller must take care of reference count when
18139 * needed.
18140 */
18141 list_T *
18142get_vim_var_list(idx)
18143 int idx;
18144{
18145 return vimvars[idx].vv_list;
18146}
18147
18148/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018149 * Set v:count, v:count1 and v:prevcount.
18150 */
18151 void
18152set_vcount(count, count1)
18153 long count;
18154 long count1;
18155{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018156 vimvars[VV_PREVCOUNT].vv_nr = vimvars[VV_COUNT].vv_nr;
18157 vimvars[VV_COUNT].vv_nr = count;
18158 vimvars[VV_COUNT1].vv_nr = count1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018159}
18160
18161/*
18162 * Set string v: variable to a copy of "val".
18163 */
18164 void
18165set_vim_var_string(idx, val, len)
18166 int idx;
18167 char_u *val;
18168 int len; /* length of "val" to use or -1 (whole string) */
18169{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018170 /* Need to do this (at least) once, since we can't initialize a union.
18171 * Will always be invoked when "v:progname" is set. */
18172 vimvars[VV_VERSION].vv_nr = VIM_VERSION_100;
18173
Bram Moolenaare9a41262005-01-15 22:18:47 +000018174 vim_free(vimvars[idx].vv_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018175 if (val == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018176 vimvars[idx].vv_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018177 else if (len == -1)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018178 vimvars[idx].vv_str = vim_strsave(val);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018179 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000018180 vimvars[idx].vv_str = vim_strnsave(val, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018181}
18182
18183/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018184 * Set List v: variable to "val".
18185 */
18186 void
18187set_vim_var_list(idx, val)
18188 int idx;
18189 list_T *val;
18190{
18191 list_unref(vimvars[idx].vv_list);
18192 vimvars[idx].vv_list = val;
18193 if (val != NULL)
18194 ++val->lv_refcount;
18195}
18196
18197/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018198 * Set v:register if needed.
18199 */
18200 void
18201set_reg_var(c)
18202 int c;
18203{
18204 char_u regname;
18205
18206 if (c == 0 || c == ' ')
18207 regname = '"';
18208 else
18209 regname = c;
18210 /* Avoid free/alloc when the value is already right. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000018211 if (vimvars[VV_REG].vv_str == NULL || vimvars[VV_REG].vv_str[0] != c)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018212 set_vim_var_string(VV_REG, &regname, 1);
18213}
18214
18215/*
18216 * Get or set v:exception. If "oldval" == NULL, return the current value.
18217 * Otherwise, restore the value to "oldval" and return NULL.
18218 * Must always be called in pairs to save and restore v:exception! Does not
18219 * take care of memory allocations.
18220 */
18221 char_u *
18222v_exception(oldval)
18223 char_u *oldval;
18224{
18225 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018226 return vimvars[VV_EXCEPTION].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018227
Bram Moolenaare9a41262005-01-15 22:18:47 +000018228 vimvars[VV_EXCEPTION].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018229 return NULL;
18230}
18231
18232/*
18233 * Get or set v:throwpoint. If "oldval" == NULL, return the current value.
18234 * Otherwise, restore the value to "oldval" and return NULL.
18235 * Must always be called in pairs to save and restore v:throwpoint! Does not
18236 * take care of memory allocations.
18237 */
18238 char_u *
18239v_throwpoint(oldval)
18240 char_u *oldval;
18241{
18242 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018243 return vimvars[VV_THROWPOINT].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018244
Bram Moolenaare9a41262005-01-15 22:18:47 +000018245 vimvars[VV_THROWPOINT].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018246 return NULL;
18247}
18248
18249#if defined(FEAT_AUTOCMD) || defined(PROTO)
18250/*
18251 * Set v:cmdarg.
18252 * If "eap" != NULL, use "eap" to generate the value and return the old value.
18253 * If "oldarg" != NULL, restore the value to "oldarg" and return NULL.
18254 * Must always be called in pairs!
18255 */
18256 char_u *
18257set_cmdarg(eap, oldarg)
18258 exarg_T *eap;
18259 char_u *oldarg;
18260{
18261 char_u *oldval;
18262 char_u *newval;
18263 unsigned len;
18264
Bram Moolenaare9a41262005-01-15 22:18:47 +000018265 oldval = vimvars[VV_CMDARG].vv_str;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018266 if (eap == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018267 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018268 vim_free(oldval);
Bram Moolenaare9a41262005-01-15 22:18:47 +000018269 vimvars[VV_CMDARG].vv_str = oldarg;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018270 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018271 }
18272
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018273 if (eap->force_bin == FORCE_BIN)
18274 len = 6;
18275 else if (eap->force_bin == FORCE_NOBIN)
18276 len = 8;
18277 else
18278 len = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018279
18280 if (eap->read_edit)
18281 len += 7;
18282
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018283 if (eap->force_ff != 0)
18284 len += (unsigned)STRLEN(eap->cmd + eap->force_ff) + 6;
18285# ifdef FEAT_MBYTE
18286 if (eap->force_enc != 0)
18287 len += (unsigned)STRLEN(eap->cmd + eap->force_enc) + 7;
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018288 if (eap->bad_char != 0)
18289 len += (unsigned)STRLEN(eap->cmd + eap->bad_char) + 7;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018290# endif
18291
18292 newval = alloc(len + 1);
18293 if (newval == NULL)
18294 return NULL;
18295
18296 if (eap->force_bin == FORCE_BIN)
18297 sprintf((char *)newval, " ++bin");
18298 else if (eap->force_bin == FORCE_NOBIN)
18299 sprintf((char *)newval, " ++nobin");
18300 else
18301 *newval = NUL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018302
18303 if (eap->read_edit)
18304 STRCAT(newval, " ++edit");
18305
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018306 if (eap->force_ff != 0)
18307 sprintf((char *)newval + STRLEN(newval), " ++ff=%s",
18308 eap->cmd + eap->force_ff);
18309# ifdef FEAT_MBYTE
18310 if (eap->force_enc != 0)
18311 sprintf((char *)newval + STRLEN(newval), " ++enc=%s",
18312 eap->cmd + eap->force_enc);
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018313 if (eap->bad_char != 0)
18314 sprintf((char *)newval + STRLEN(newval), " ++bad=%s",
18315 eap->cmd + eap->bad_char);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018316# endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000018317 vimvars[VV_CMDARG].vv_str = newval;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018318 return oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018319}
18320#endif
18321
18322/*
18323 * Get the value of internal variable "name".
18324 * Return OK or FAIL.
18325 */
18326 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018327get_var_tv(name, len, rettv, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018328 char_u *name;
18329 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +000018330 typval_T *rettv; /* NULL when only checking existence */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018331 int verbose; /* may give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018332{
18333 int ret = OK;
Bram Moolenaar33570922005-01-25 22:26:29 +000018334 typval_T *tv = NULL;
18335 typval_T atv;
18336 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018337 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018338
18339 /* truncate the name, so that we can use strcmp() */
18340 cc = name[len];
18341 name[len] = NUL;
18342
18343 /*
18344 * Check for "b:changedtick".
18345 */
18346 if (STRCMP(name, "b:changedtick") == 0)
18347 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000018348 atv.v_type = VAR_NUMBER;
18349 atv.vval.v_number = curbuf->b_changedtick;
18350 tv = &atv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018351 }
18352
18353 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018354 * Check for user-defined variables.
18355 */
18356 else
18357 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018358 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018359 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018360 tv = &v->di_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018361 }
18362
Bram Moolenaare9a41262005-01-15 22:18:47 +000018363 if (tv == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018364 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018365 if (rettv != NULL && verbose)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018366 EMSG2(_(e_undefvar), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018367 ret = FAIL;
18368 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018369 else if (rettv != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018370 copy_tv(tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018371
18372 name[len] = cc;
18373
18374 return ret;
18375}
18376
18377/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018378 * Handle expr[expr], expr[expr:expr] subscript and .name lookup.
18379 * Also handle function call with Funcref variable: func(expr)
18380 * Can all be combined: dict.func(expr)[idx]['func'](expr)
18381 */
18382 static int
18383handle_subscript(arg, rettv, evaluate, verbose)
18384 char_u **arg;
18385 typval_T *rettv;
18386 int evaluate; /* do more than finding the end */
18387 int verbose; /* give error messages */
18388{
18389 int ret = OK;
18390 dict_T *selfdict = NULL;
18391 char_u *s;
18392 int len;
Bram Moolenaard9fba312005-06-26 22:34:35 +000018393 typval_T functv;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018394
18395 while (ret == OK
18396 && (**arg == '['
18397 || (**arg == '.' && rettv->v_type == VAR_DICT)
18398 || (**arg == '(' && rettv->v_type == VAR_FUNC))
18399 && !vim_iswhite(*(*arg - 1)))
18400 {
18401 if (**arg == '(')
18402 {
Bram Moolenaard9fba312005-06-26 22:34:35 +000018403 /* need to copy the funcref so that we can clear rettv */
18404 functv = *rettv;
18405 rettv->v_type = VAR_UNKNOWN;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018406
18407 /* Invoke the function. Recursive! */
Bram Moolenaard9fba312005-06-26 22:34:35 +000018408 s = functv.vval.v_string;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018409 ret = get_func_tv(s, (int)STRLEN(s), rettv, arg,
Bram Moolenaard9fba312005-06-26 22:34:35 +000018410 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
18411 &len, evaluate, selfdict);
18412
18413 /* Clear the funcref afterwards, so that deleting it while
18414 * evaluating the arguments is possible (see test55). */
18415 clear_tv(&functv);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018416
18417 /* Stop the expression evaluation when immediately aborting on
18418 * error, or when an interrupt occurred or an exception was thrown
18419 * but not caught. */
18420 if (aborting())
18421 {
18422 if (ret == OK)
18423 clear_tv(rettv);
18424 ret = FAIL;
18425 }
18426 dict_unref(selfdict);
18427 selfdict = NULL;
18428 }
18429 else /* **arg == '[' || **arg == '.' */
18430 {
18431 dict_unref(selfdict);
18432 if (rettv->v_type == VAR_DICT)
18433 {
18434 selfdict = rettv->vval.v_dict;
18435 if (selfdict != NULL)
18436 ++selfdict->dv_refcount;
18437 }
18438 else
18439 selfdict = NULL;
18440 if (eval_index(arg, rettv, evaluate, verbose) == FAIL)
18441 {
18442 clear_tv(rettv);
18443 ret = FAIL;
18444 }
18445 }
18446 }
18447 dict_unref(selfdict);
18448 return ret;
18449}
18450
18451/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018452 * Allocate memory for a variable type-value, and make it empty (0 or NULL
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018453 * value).
18454 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018455 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018456alloc_tv()
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018457{
Bram Moolenaar33570922005-01-25 22:26:29 +000018458 return (typval_T *)alloc_clear((unsigned)sizeof(typval_T));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018459}
18460
18461/*
18462 * Allocate memory for a variable type-value, and assign a string to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018463 * The string "s" must have been allocated, it is consumed.
18464 * Return NULL for out of memory, the variable otherwise.
18465 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018466 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018467alloc_string_tv(s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018468 char_u *s;
18469{
Bram Moolenaar33570922005-01-25 22:26:29 +000018470 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018471
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018472 rettv = alloc_tv();
18473 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018474 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018475 rettv->v_type = VAR_STRING;
18476 rettv->vval.v_string = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018477 }
18478 else
18479 vim_free(s);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018480 return rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018481}
18482
18483/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018484 * Free the memory for a variable type-value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018485 */
Bram Moolenaar4770d092006-01-12 23:22:24 +000018486 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018487free_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018488 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018489{
18490 if (varp != NULL)
18491 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018492 switch (varp->v_type)
18493 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018494 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018495 func_unref(varp->vval.v_string);
18496 /*FALLTHROUGH*/
18497 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018498 vim_free(varp->vval.v_string);
18499 break;
18500 case VAR_LIST:
18501 list_unref(varp->vval.v_list);
18502 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018503 case VAR_DICT:
18504 dict_unref(varp->vval.v_dict);
18505 break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000018506 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018507#ifdef FEAT_FLOAT
18508 case VAR_FLOAT:
18509#endif
Bram Moolenaar758711c2005-02-02 23:11:38 +000018510 case VAR_UNKNOWN:
18511 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018512 default:
Bram Moolenaar758711c2005-02-02 23:11:38 +000018513 EMSG2(_(e_intern2), "free_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018514 break;
18515 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018516 vim_free(varp);
18517 }
18518}
18519
18520/*
18521 * Free the memory for a variable value and set the value to NULL or 0.
18522 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018523 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018524clear_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018525 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018526{
18527 if (varp != NULL)
18528 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018529 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018530 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018531 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018532 func_unref(varp->vval.v_string);
18533 /*FALLTHROUGH*/
18534 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018535 vim_free(varp->vval.v_string);
18536 varp->vval.v_string = NULL;
18537 break;
18538 case VAR_LIST:
18539 list_unref(varp->vval.v_list);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018540 varp->vval.v_list = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018541 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018542 case VAR_DICT:
18543 dict_unref(varp->vval.v_dict);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018544 varp->vval.v_dict = NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018545 break;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018546 case VAR_NUMBER:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018547 varp->vval.v_number = 0;
18548 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018549#ifdef FEAT_FLOAT
18550 case VAR_FLOAT:
18551 varp->vval.v_float = 0.0;
18552 break;
18553#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018554 case VAR_UNKNOWN:
18555 break;
18556 default:
18557 EMSG2(_(e_intern2), "clear_tv()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000018558 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018559 varp->v_lock = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018560 }
18561}
18562
18563/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018564 * Set the value of a variable to NULL without freeing items.
18565 */
18566 static void
18567init_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018568 typval_T *varp;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018569{
18570 if (varp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018571 vim_memset(varp, 0, sizeof(typval_T));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018572}
18573
18574/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018575 * Get the number value of a variable.
18576 * If it is a String variable, uses vim_str2nr().
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018577 * For incompatible types, return 0.
18578 * get_tv_number_chk() is similar to get_tv_number(), but informs the
18579 * caller of incompatible types: it sets *denote to TRUE if "denote"
18580 * is not NULL or returns -1 otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018581 */
18582 static long
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018583get_tv_number(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018584 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018585{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018586 int error = FALSE;
18587
18588 return get_tv_number_chk(varp, &error); /* return 0L on error */
18589}
18590
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018591 long
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018592get_tv_number_chk(varp, denote)
18593 typval_T *varp;
18594 int *denote;
18595{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018596 long n = 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018597
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018598 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018599 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018600 case VAR_NUMBER:
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018601 return (long)(varp->vval.v_number);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018602#ifdef FEAT_FLOAT
18603 case VAR_FLOAT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018604 EMSG(_("E805: Using a Float as a Number"));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018605 break;
18606#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018607 case VAR_FUNC:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018608 EMSG(_("E703: Using a Funcref as a Number"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018609 break;
18610 case VAR_STRING:
18611 if (varp->vval.v_string != NULL)
18612 vim_str2nr(varp->vval.v_string, NULL, NULL,
18613 TRUE, TRUE, &n, NULL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018614 return n;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018615 case VAR_LIST:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018616 EMSG(_("E745: Using a List as a Number"));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018617 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018618 case VAR_DICT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018619 EMSG(_("E728: Using a Dictionary as a Number"));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018620 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018621 default:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018622 EMSG2(_(e_intern2), "get_tv_number()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018623 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018624 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018625 if (denote == NULL) /* useful for values that must be unsigned */
18626 n = -1;
18627 else
18628 *denote = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018629 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018630}
18631
18632/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018633 * Get the lnum from the first argument.
18634 * Also accepts ".", "$", etc., but that only works for the current buffer.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018635 * Returns -1 on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018636 */
18637 static linenr_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018638get_tv_lnum(argvars)
Bram Moolenaar33570922005-01-25 22:26:29 +000018639 typval_T *argvars;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018640{
Bram Moolenaar33570922005-01-25 22:26:29 +000018641 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018642 linenr_T lnum;
18643
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018644 lnum = get_tv_number_chk(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018645 if (lnum == 0) /* no valid number, try using line() */
18646 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018647 rettv.v_type = VAR_NUMBER;
18648 f_line(argvars, &rettv);
18649 lnum = rettv.vval.v_number;
18650 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018651 }
18652 return lnum;
18653}
18654
18655/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018656 * Get the lnum from the first argument.
18657 * Also accepts "$", then "buf" is used.
18658 * Returns 0 on error.
18659 */
18660 static linenr_T
18661get_tv_lnum_buf(argvars, buf)
18662 typval_T *argvars;
18663 buf_T *buf;
18664{
18665 if (argvars[0].v_type == VAR_STRING
18666 && argvars[0].vval.v_string != NULL
18667 && argvars[0].vval.v_string[0] == '$'
18668 && buf != NULL)
18669 return buf->b_ml.ml_line_count;
18670 return get_tv_number_chk(&argvars[0], NULL);
18671}
18672
18673/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018674 * Get the string value of a variable.
18675 * If it is a Number variable, the number is converted into a string.
Bram Moolenaara7043832005-01-21 11:56:39 +000018676 * get_tv_string() uses a single, static buffer. YOU CAN ONLY USE IT ONCE!
18677 * get_tv_string_buf() uses a given buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018678 * If the String variable has never been set, return an empty string.
18679 * Never returns NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018680 * get_tv_string_chk() and get_tv_string_buf_chk() are similar, but return
18681 * NULL on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018682 */
18683 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018684get_tv_string(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018685 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018686{
18687 static char_u mybuf[NUMBUFLEN];
18688
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018689 return get_tv_string_buf(varp, mybuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018690}
18691
18692 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018693get_tv_string_buf(varp, buf)
Bram Moolenaar33570922005-01-25 22:26:29 +000018694 typval_T *varp;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018695 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018696{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018697 char_u *res = get_tv_string_buf_chk(varp, buf);
18698
18699 return res != NULL ? res : (char_u *)"";
18700}
18701
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018702 char_u *
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018703get_tv_string_chk(varp)
18704 typval_T *varp;
18705{
18706 static char_u mybuf[NUMBUFLEN];
18707
18708 return get_tv_string_buf_chk(varp, mybuf);
18709}
18710
18711 static char_u *
18712get_tv_string_buf_chk(varp, buf)
18713 typval_T *varp;
18714 char_u *buf;
18715{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018716 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018717 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018718 case VAR_NUMBER:
18719 sprintf((char *)buf, "%ld", (long)varp->vval.v_number);
18720 return buf;
18721 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018722 EMSG(_("E729: using Funcref as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018723 break;
18724 case VAR_LIST:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018725 EMSG(_("E730: using List as a String"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000018726 break;
18727 case VAR_DICT:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018728 EMSG(_("E731: using Dictionary as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018729 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018730#ifdef FEAT_FLOAT
18731 case VAR_FLOAT:
18732 EMSG(_("E806: using Float as a String"));
18733 break;
18734#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018735 case VAR_STRING:
18736 if (varp->vval.v_string != NULL)
18737 return varp->vval.v_string;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018738 return (char_u *)"";
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018739 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018740 EMSG2(_(e_intern2), "get_tv_string_buf()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018741 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018742 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018743 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018744}
18745
18746/*
18747 * Find variable "name" in the list of variables.
18748 * Return a pointer to it if found, NULL if not found.
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018749 * Careful: "a:0" variables don't have a name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018750 * When "htp" is not NULL we are writing to the variable, set "htp" to the
Bram Moolenaar33570922005-01-25 22:26:29 +000018751 * hashtab_T used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018752 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018753 static dictitem_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018754find_var(name, htp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018755 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000018756 hashtab_T **htp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018757{
Bram Moolenaar071d4272004-06-13 20:20:40 +000018758 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000018759 hashtab_T *ht;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018760
Bram Moolenaara7043832005-01-21 11:56:39 +000018761 ht = find_var_ht(name, &varname);
18762 if (htp != NULL)
18763 *htp = ht;
18764 if (ht == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018765 return NULL;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018766 return find_var_in_ht(ht, varname, htp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018767}
18768
18769/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018770 * Find variable "varname" in hashtab "ht".
Bram Moolenaara7043832005-01-21 11:56:39 +000018771 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018772 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018773 static dictitem_T *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018774find_var_in_ht(ht, varname, writing)
Bram Moolenaar33570922005-01-25 22:26:29 +000018775 hashtab_T *ht;
Bram Moolenaara7043832005-01-21 11:56:39 +000018776 char_u *varname;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018777 int writing;
Bram Moolenaara7043832005-01-21 11:56:39 +000018778{
Bram Moolenaar33570922005-01-25 22:26:29 +000018779 hashitem_T *hi;
18780
18781 if (*varname == NUL)
18782 {
18783 /* Must be something like "s:", otherwise "ht" would be NULL. */
18784 switch (varname[-2])
18785 {
18786 case 's': return &SCRIPT_SV(current_SID).sv_var;
18787 case 'g': return &globvars_var;
18788 case 'v': return &vimvars_var;
18789 case 'b': return &curbuf->b_bufvar;
18790 case 'w': return &curwin->w_winvar;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018791#ifdef FEAT_WINDOWS
18792 case 't': return &curtab->tp_winvar;
18793#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000018794 case 'l': return current_funccal == NULL
18795 ? NULL : &current_funccal->l_vars_var;
18796 case 'a': return current_funccal == NULL
18797 ? NULL : &current_funccal->l_avars_var;
Bram Moolenaar33570922005-01-25 22:26:29 +000018798 }
18799 return NULL;
18800 }
Bram Moolenaara7043832005-01-21 11:56:39 +000018801
18802 hi = hash_find(ht, varname);
18803 if (HASHITEM_EMPTY(hi))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018804 {
18805 /* For global variables we may try auto-loading the script. If it
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018806 * worked find the variable again. Don't auto-load a script if it was
18807 * loaded already, otherwise it would be loaded every time when
18808 * checking if a function name is a Funcref variable. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018809 if (ht == &globvarht && !writing
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018810 && script_autoload(varname, FALSE) && !aborting())
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018811 hi = hash_find(ht, varname);
18812 if (HASHITEM_EMPTY(hi))
18813 return NULL;
18814 }
Bram Moolenaar33570922005-01-25 22:26:29 +000018815 return HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000018816}
18817
18818/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018819 * Find the hashtab used for a variable name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018820 * Set "varname" to the start of name without ':'.
18821 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018822 static hashtab_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018823find_var_ht(name, varname)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018824 char_u *name;
18825 char_u **varname;
18826{
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018827 hashitem_T *hi;
18828
Bram Moolenaar071d4272004-06-13 20:20:40 +000018829 if (name[1] != ':')
18830 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018831 /* The name must not start with a colon or #. */
18832 if (name[0] == ':' || name[0] == AUTOLOAD_CHAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018833 return NULL;
18834 *varname = name;
Bram Moolenaar532c7802005-01-27 14:44:31 +000018835
18836 /* "version" is "v:version" in all scopes */
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018837 hi = hash_find(&compat_hashtab, name);
18838 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar532c7802005-01-27 14:44:31 +000018839 return &compat_hashtab;
18840
Bram Moolenaar071d4272004-06-13 20:20:40 +000018841 if (current_funccal == NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018842 return &globvarht; /* global variable */
18843 return &current_funccal->l_vars.dv_hashtab; /* l: variable */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018844 }
18845 *varname = name + 2;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018846 if (*name == 'g') /* global variable */
18847 return &globvarht;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018848 /* There must be no ':' or '#' in the rest of the name, unless g: is used
18849 */
18850 if (vim_strchr(name + 2, ':') != NULL
18851 || vim_strchr(name + 2, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018852 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018853 if (*name == 'b') /* buffer variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018854 return &curbuf->b_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018855 if (*name == 'w') /* window variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018856 return &curwin->w_vars.dv_hashtab;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018857#ifdef FEAT_WINDOWS
18858 if (*name == 't') /* tab page variable */
18859 return &curtab->tp_vars.dv_hashtab;
18860#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000018861 if (*name == 'v') /* v: variable */
18862 return &vimvarht;
18863 if (*name == 'a' && current_funccal != NULL) /* function argument */
18864 return &current_funccal->l_avars.dv_hashtab;
18865 if (*name == 'l' && current_funccal != NULL) /* local function variable */
18866 return &current_funccal->l_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018867 if (*name == 's' /* script variable */
18868 && current_SID > 0 && current_SID <= ga_scripts.ga_len)
18869 return &SCRIPT_VARS(current_SID);
18870 return NULL;
18871}
18872
18873/*
18874 * Get the string value of a (global/local) variable.
18875 * Returns NULL when it doesn't exist.
18876 */
18877 char_u *
18878get_var_value(name)
18879 char_u *name;
18880{
Bram Moolenaar33570922005-01-25 22:26:29 +000018881 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018882
Bram Moolenaara7043832005-01-21 11:56:39 +000018883 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018884 if (v == NULL)
18885 return NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000018886 return get_tv_string(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018887}
18888
18889/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018890 * Allocate a new hashtab for a sourced script. It will be used while
Bram Moolenaar071d4272004-06-13 20:20:40 +000018891 * sourcing this script and when executing functions defined in the script.
18892 */
18893 void
18894new_script_vars(id)
18895 scid_T id;
18896{
Bram Moolenaara7043832005-01-21 11:56:39 +000018897 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +000018898 hashtab_T *ht;
18899 scriptvar_T *sv;
Bram Moolenaara7043832005-01-21 11:56:39 +000018900
Bram Moolenaar071d4272004-06-13 20:20:40 +000018901 if (ga_grow(&ga_scripts, (int)(id - ga_scripts.ga_len)) == OK)
18902 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018903 /* Re-allocating ga_data means that an ht_array pointing to
18904 * ht_smallarray becomes invalid. We can recognize this: ht_mask is
Bram Moolenaar33570922005-01-25 22:26:29 +000018905 * at its init value. Also reset "v_dict", it's always the same. */
Bram Moolenaara7043832005-01-21 11:56:39 +000018906 for (i = 1; i <= ga_scripts.ga_len; ++i)
18907 {
18908 ht = &SCRIPT_VARS(i);
18909 if (ht->ht_mask == HT_INIT_SIZE - 1)
18910 ht->ht_array = ht->ht_smallarray;
Bram Moolenaar33570922005-01-25 22:26:29 +000018911 sv = &SCRIPT_SV(i);
18912 sv->sv_var.di_tv.vval.v_dict = &sv->sv_dict;
Bram Moolenaara7043832005-01-21 11:56:39 +000018913 }
18914
Bram Moolenaar071d4272004-06-13 20:20:40 +000018915 while (ga_scripts.ga_len < id)
18916 {
Bram Moolenaar33570922005-01-25 22:26:29 +000018917 sv = &SCRIPT_SV(ga_scripts.ga_len + 1);
18918 init_var_dict(&sv->sv_dict, &sv->sv_var);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018919 ++ga_scripts.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018920 }
18921 }
18922}
18923
18924/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018925 * Initialize dictionary "dict" as a scope and set variable "dict_var" to
18926 * point to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018927 */
18928 void
Bram Moolenaar33570922005-01-25 22:26:29 +000018929init_var_dict(dict, dict_var)
18930 dict_T *dict;
18931 dictitem_T *dict_var;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018932{
Bram Moolenaar33570922005-01-25 22:26:29 +000018933 hash_init(&dict->dv_hashtab);
18934 dict->dv_refcount = 99999;
18935 dict_var->di_tv.vval.v_dict = dict;
18936 dict_var->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018937 dict_var->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000018938 dict_var->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
18939 dict_var->di_key[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018940}
18941
18942/*
18943 * Clean up a list of internal variables.
Bram Moolenaar33570922005-01-25 22:26:29 +000018944 * Frees all allocated variables and the value they contain.
18945 * Clears hashtab "ht", does not free it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018946 */
18947 void
Bram Moolenaara7043832005-01-21 11:56:39 +000018948vars_clear(ht)
Bram Moolenaar33570922005-01-25 22:26:29 +000018949 hashtab_T *ht;
18950{
18951 vars_clear_ext(ht, TRUE);
18952}
18953
18954/*
18955 * Like vars_clear(), but only free the value if "free_val" is TRUE.
18956 */
18957 static void
18958vars_clear_ext(ht, free_val)
18959 hashtab_T *ht;
18960 int free_val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018961{
Bram Moolenaara7043832005-01-21 11:56:39 +000018962 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000018963 hashitem_T *hi;
18964 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018965
Bram Moolenaar33570922005-01-25 22:26:29 +000018966 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018967 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +000018968 for (hi = ht->ht_array; todo > 0; ++hi)
18969 {
18970 if (!HASHITEM_EMPTY(hi))
18971 {
18972 --todo;
18973
Bram Moolenaar33570922005-01-25 22:26:29 +000018974 /* Free the variable. Don't remove it from the hashtab,
Bram Moolenaara7043832005-01-21 11:56:39 +000018975 * ht_array might change then. hash_clear() takes care of it
18976 * later. */
Bram Moolenaar33570922005-01-25 22:26:29 +000018977 v = HI2DI(hi);
18978 if (free_val)
18979 clear_tv(&v->di_tv);
18980 if ((v->di_flags & DI_FLAGS_FIX) == 0)
18981 vim_free(v);
Bram Moolenaara7043832005-01-21 11:56:39 +000018982 }
18983 }
18984 hash_clear(ht);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000018985 ht->ht_used = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018986}
18987
Bram Moolenaara7043832005-01-21 11:56:39 +000018988/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018989 * Delete a variable from hashtab "ht" at item "hi".
18990 * Clear the variable value and free the dictitem.
Bram Moolenaara7043832005-01-21 11:56:39 +000018991 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018992 static void
Bram Moolenaara7043832005-01-21 11:56:39 +000018993delete_var(ht, hi)
Bram Moolenaar33570922005-01-25 22:26:29 +000018994 hashtab_T *ht;
18995 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018996{
Bram Moolenaar33570922005-01-25 22:26:29 +000018997 dictitem_T *di = HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000018998
18999 hash_remove(ht, hi);
Bram Moolenaar33570922005-01-25 22:26:29 +000019000 clear_tv(&di->di_tv);
19001 vim_free(di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019002}
19003
19004/*
19005 * List the value of one internal variable.
19006 */
19007 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019008list_one_var(v, prefix, first)
Bram Moolenaar33570922005-01-25 22:26:29 +000019009 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019010 char_u *prefix;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019011 int *first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019012{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019013 char_u *tofree;
19014 char_u *s;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019015 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019016
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000019017 s = echo_string(&v->di_tv, &tofree, numbuf, ++current_copyID);
Bram Moolenaar33570922005-01-25 22:26:29 +000019018 list_one_var_a(prefix, v->di_key, v->di_tv.v_type,
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019019 s == NULL ? (char_u *)"" : s, first);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019020 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019021}
19022
Bram Moolenaar071d4272004-06-13 20:20:40 +000019023 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019024list_one_var_a(prefix, name, type, string, first)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019025 char_u *prefix;
19026 char_u *name;
19027 int type;
19028 char_u *string;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019029 int *first; /* when TRUE clear rest of screen and set to FALSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019030{
Bram Moolenaar31859182007-08-14 20:41:13 +000019031 /* don't use msg() or msg_attr() to avoid overwriting "v:statusmsg" */
19032 msg_start();
19033 msg_puts(prefix);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019034 if (name != NULL) /* "a:" vars don't have a name stored */
19035 msg_puts(name);
19036 msg_putchar(' ');
19037 msg_advance(22);
19038 if (type == VAR_NUMBER)
19039 msg_putchar('#');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019040 else if (type == VAR_FUNC)
19041 msg_putchar('*');
19042 else if (type == VAR_LIST)
19043 {
19044 msg_putchar('[');
19045 if (*string == '[')
19046 ++string;
19047 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000019048 else if (type == VAR_DICT)
19049 {
19050 msg_putchar('{');
19051 if (*string == '{')
19052 ++string;
19053 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019054 else
19055 msg_putchar(' ');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019056
Bram Moolenaar071d4272004-06-13 20:20:40 +000019057 msg_outtrans(string);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019058
19059 if (type == VAR_FUNC)
19060 msg_puts((char_u *)"()");
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019061 if (*first)
19062 {
19063 msg_clr_eos();
19064 *first = FALSE;
19065 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019066}
19067
19068/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019069 * Set variable "name" to value in "tv".
Bram Moolenaar071d4272004-06-13 20:20:40 +000019070 * If the variable already exists, the value is updated.
19071 * Otherwise the variable is created.
19072 */
19073 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019074set_var(name, tv, copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019075 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000019076 typval_T *tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019077 int copy; /* make copy of value in "tv" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019078{
Bram Moolenaar33570922005-01-25 22:26:29 +000019079 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019080 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000019081 hashtab_T *ht;
Bram Moolenaar92124a32005-06-17 22:03:40 +000019082 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019083
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019084 if (tv->v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019085 {
19086 if (!(vim_strchr((char_u *)"wbs", name[0]) != NULL && name[1] == ':')
19087 && !ASCII_ISUPPER((name[0] != NUL && name[1] == ':')
19088 ? name[2] : name[0]))
19089 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019090 EMSG2(_("E704: Funcref variable name must start with a capital: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019091 return;
19092 }
19093 if (function_exists(name))
19094 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000019095 EMSG2(_("E705: Variable name conflicts with existing function: %s"),
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019096 name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019097 return;
19098 }
19099 }
19100
Bram Moolenaara7043832005-01-21 11:56:39 +000019101 ht = find_var_ht(name, &varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019102 if (ht == NULL || *varname == NUL)
Bram Moolenaara7043832005-01-21 11:56:39 +000019103 {
Bram Moolenaar92124a32005-06-17 22:03:40 +000019104 EMSG2(_(e_illvar), name);
Bram Moolenaara7043832005-01-21 11:56:39 +000019105 return;
19106 }
19107
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019108 v = find_var_in_ht(ht, varname, TRUE);
Bram Moolenaar33570922005-01-25 22:26:29 +000019109 if (v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019110 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019111 /* existing variable, need to clear the value */
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019112 if (var_check_ro(v->di_flags, name)
19113 || tv_check_lock(v->di_tv.v_lock, name))
Bram Moolenaar33570922005-01-25 22:26:29 +000019114 return;
19115 if (v->di_tv.v_type != tv->v_type
19116 && !((v->di_tv.v_type == VAR_STRING
19117 || v->di_tv.v_type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019118 && (tv->v_type == VAR_STRING
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019119 || tv->v_type == VAR_NUMBER))
19120#ifdef FEAT_FLOAT
19121 && !((v->di_tv.v_type == VAR_NUMBER
19122 || v->di_tv.v_type == VAR_FLOAT)
19123 && (tv->v_type == VAR_NUMBER
19124 || tv->v_type == VAR_FLOAT))
19125#endif
19126 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019127 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019128 EMSG2(_("E706: Variable type mismatch for: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019129 return;
19130 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019131
19132 /*
Bram Moolenaar758711c2005-02-02 23:11:38 +000019133 * Handle setting internal v: variables separately: we don't change
19134 * the type.
Bram Moolenaar33570922005-01-25 22:26:29 +000019135 */
19136 if (ht == &vimvarht)
19137 {
19138 if (v->di_tv.v_type == VAR_STRING)
19139 {
19140 vim_free(v->di_tv.vval.v_string);
19141 if (copy || tv->v_type != VAR_STRING)
19142 v->di_tv.vval.v_string = vim_strsave(get_tv_string(tv));
19143 else
19144 {
19145 /* Take over the string to avoid an extra alloc/free. */
19146 v->di_tv.vval.v_string = tv->vval.v_string;
19147 tv->vval.v_string = NULL;
19148 }
19149 }
19150 else if (v->di_tv.v_type != VAR_NUMBER)
19151 EMSG2(_(e_intern2), "set_var()");
19152 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019153 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019154 v->di_tv.vval.v_number = get_tv_number(tv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019155 if (STRCMP(varname, "searchforward") == 0)
19156 set_search_direction(v->di_tv.vval.v_number ? '/' : '?');
19157 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019158 return;
19159 }
19160
19161 clear_tv(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019162 }
19163 else /* add a new variable */
19164 {
Bram Moolenaar5fcc3fe2006-06-22 15:35:14 +000019165 /* Can't add "v:" variable. */
19166 if (ht == &vimvarht)
19167 {
19168 EMSG2(_(e_illvar), name);
19169 return;
19170 }
19171
Bram Moolenaar92124a32005-06-17 22:03:40 +000019172 /* Make sure the variable name is valid. */
19173 for (p = varname; *p != NUL; ++p)
Bram Moolenaara5792f52005-11-23 21:25:05 +000019174 if (!eval_isnamec1(*p) && (p == varname || !VIM_ISDIGIT(*p))
19175 && *p != AUTOLOAD_CHAR)
Bram Moolenaar92124a32005-06-17 22:03:40 +000019176 {
19177 EMSG2(_(e_illvar), varname);
19178 return;
19179 }
19180
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019181 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
19182 + STRLEN(varname)));
Bram Moolenaara7043832005-01-21 11:56:39 +000019183 if (v == NULL)
19184 return;
Bram Moolenaar33570922005-01-25 22:26:29 +000019185 STRCPY(v->di_key, varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019186 if (hash_add(ht, DI2HIKEY(v)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019187 {
Bram Moolenaara7043832005-01-21 11:56:39 +000019188 vim_free(v);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019189 return;
19190 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019191 v->di_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019192 }
Bram Moolenaara7043832005-01-21 11:56:39 +000019193
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019194 if (copy || tv->v_type == VAR_NUMBER || tv->v_type == VAR_FLOAT)
Bram Moolenaar33570922005-01-25 22:26:29 +000019195 copy_tv(tv, &v->di_tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019196 else
19197 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019198 v->di_tv = *tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019199 v->di_tv.v_lock = 0;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019200 init_tv(tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019201 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019202}
19203
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019204/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019205 * Return TRUE if di_flags "flags" indicates variable "name" is read-only.
Bram Moolenaar33570922005-01-25 22:26:29 +000019206 * Also give an error message.
19207 */
19208 static int
19209var_check_ro(flags, name)
19210 int flags;
19211 char_u *name;
19212{
19213 if (flags & DI_FLAGS_RO)
19214 {
19215 EMSG2(_(e_readonlyvar), name);
19216 return TRUE;
19217 }
19218 if ((flags & DI_FLAGS_RO_SBX) && sandbox)
19219 {
19220 EMSG2(_(e_readonlysbx), name);
19221 return TRUE;
19222 }
19223 return FALSE;
19224}
19225
19226/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019227 * Return TRUE if di_flags "flags" indicates variable "name" is fixed.
19228 * Also give an error message.
19229 */
19230 static int
19231var_check_fixed(flags, name)
19232 int flags;
19233 char_u *name;
19234{
19235 if (flags & DI_FLAGS_FIX)
19236 {
19237 EMSG2(_("E795: Cannot delete variable %s"), name);
19238 return TRUE;
19239 }
19240 return FALSE;
19241}
19242
19243/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019244 * Return TRUE if typeval "tv" is set to be locked (immutable).
19245 * Also give an error message, using "name".
19246 */
19247 static int
19248tv_check_lock(lock, name)
19249 int lock;
19250 char_u *name;
19251{
19252 if (lock & VAR_LOCKED)
19253 {
19254 EMSG2(_("E741: Value is locked: %s"),
19255 name == NULL ? (char_u *)_("Unknown") : name);
19256 return TRUE;
19257 }
19258 if (lock & VAR_FIXED)
19259 {
19260 EMSG2(_("E742: Cannot change value of %s"),
19261 name == NULL ? (char_u *)_("Unknown") : name);
19262 return TRUE;
19263 }
19264 return FALSE;
19265}
19266
19267/*
Bram Moolenaar33570922005-01-25 22:26:29 +000019268 * Copy the values from typval_T "from" to typval_T "to".
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019269 * When needed allocates string or increases reference count.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019270 * Does not make a copy of a list or dict but copies the reference!
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019271 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019272 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019273copy_tv(from, to)
Bram Moolenaar33570922005-01-25 22:26:29 +000019274 typval_T *from;
19275 typval_T *to;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019276{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019277 to->v_type = from->v_type;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019278 to->v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019279 switch (from->v_type)
19280 {
19281 case VAR_NUMBER:
19282 to->vval.v_number = from->vval.v_number;
19283 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019284#ifdef FEAT_FLOAT
19285 case VAR_FLOAT:
19286 to->vval.v_float = from->vval.v_float;
19287 break;
19288#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019289 case VAR_STRING:
19290 case VAR_FUNC:
19291 if (from->vval.v_string == NULL)
19292 to->vval.v_string = NULL;
19293 else
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019294 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019295 to->vval.v_string = vim_strsave(from->vval.v_string);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019296 if (from->v_type == VAR_FUNC)
19297 func_ref(to->vval.v_string);
19298 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019299 break;
19300 case VAR_LIST:
19301 if (from->vval.v_list == NULL)
19302 to->vval.v_list = NULL;
19303 else
19304 {
19305 to->vval.v_list = from->vval.v_list;
19306 ++to->vval.v_list->lv_refcount;
19307 }
19308 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000019309 case VAR_DICT:
19310 if (from->vval.v_dict == NULL)
19311 to->vval.v_dict = NULL;
19312 else
19313 {
19314 to->vval.v_dict = from->vval.v_dict;
19315 ++to->vval.v_dict->dv_refcount;
19316 }
19317 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019318 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019319 EMSG2(_(e_intern2), "copy_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019320 break;
19321 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019322}
19323
19324/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000019325 * Make a copy of an item.
19326 * Lists and Dictionaries are also copied. A deep copy if "deep" is set.
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019327 * For deepcopy() "copyID" is zero for a full copy or the ID for when a
19328 * reference to an already copied list/dict can be used.
19329 * Returns FAIL or OK.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019330 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019331 static int
19332item_copy(from, to, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +000019333 typval_T *from;
19334 typval_T *to;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019335 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019336 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019337{
19338 static int recurse = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019339 int ret = OK;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019340
Bram Moolenaar33570922005-01-25 22:26:29 +000019341 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +000019342 {
19343 EMSG(_("E698: variable nested too deep for making a copy"));
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019344 return FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019345 }
19346 ++recurse;
19347
19348 switch (from->v_type)
19349 {
19350 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019351#ifdef FEAT_FLOAT
19352 case VAR_FLOAT:
19353#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000019354 case VAR_STRING:
19355 case VAR_FUNC:
19356 copy_tv(from, to);
19357 break;
19358 case VAR_LIST:
19359 to->v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019360 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019361 if (from->vval.v_list == NULL)
19362 to->vval.v_list = NULL;
19363 else if (copyID != 0 && from->vval.v_list->lv_copyID == copyID)
19364 {
19365 /* use the copy made earlier */
19366 to->vval.v_list = from->vval.v_list->lv_copylist;
19367 ++to->vval.v_list->lv_refcount;
19368 }
19369 else
19370 to->vval.v_list = list_copy(from->vval.v_list, deep, copyID);
19371 if (to->vval.v_list == NULL)
19372 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019373 break;
19374 case VAR_DICT:
19375 to->v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019376 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019377 if (from->vval.v_dict == NULL)
19378 to->vval.v_dict = NULL;
19379 else if (copyID != 0 && from->vval.v_dict->dv_copyID == copyID)
19380 {
19381 /* use the copy made earlier */
19382 to->vval.v_dict = from->vval.v_dict->dv_copydict;
19383 ++to->vval.v_dict->dv_refcount;
19384 }
19385 else
19386 to->vval.v_dict = dict_copy(from->vval.v_dict, deep, copyID);
19387 if (to->vval.v_dict == NULL)
19388 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019389 break;
19390 default:
19391 EMSG2(_(e_intern2), "item_copy()");
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019392 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019393 }
19394 --recurse;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019395 return ret;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019396}
19397
19398/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000019399 * ":echo expr1 ..." print each argument separated with a space, add a
19400 * newline at the end.
19401 * ":echon expr1 ..." print each argument plain.
19402 */
19403 void
19404ex_echo(eap)
19405 exarg_T *eap;
19406{
19407 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019408 typval_T rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019409 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019410 char_u *p;
19411 int needclr = TRUE;
19412 int atstart = TRUE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019413 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000019414
19415 if (eap->skip)
19416 ++emsg_skip;
19417 while (*arg != NUL && *arg != '|' && *arg != '\n' && !got_int)
19418 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019419 /* If eval1() causes an error message the text from the command may
19420 * still need to be cleared. E.g., "echo 22,44". */
19421 need_clr_eos = needclr;
19422
Bram Moolenaar071d4272004-06-13 20:20:40 +000019423 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019424 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019425 {
19426 /*
19427 * Report the invalid expression unless the expression evaluation
19428 * has been cancelled due to an aborting error, an interrupt, or an
19429 * exception.
19430 */
19431 if (!aborting())
19432 EMSG2(_(e_invexpr2), p);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019433 need_clr_eos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019434 break;
19435 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019436 need_clr_eos = FALSE;
19437
Bram Moolenaar071d4272004-06-13 20:20:40 +000019438 if (!eap->skip)
19439 {
19440 if (atstart)
19441 {
19442 atstart = FALSE;
19443 /* Call msg_start() after eval1(), evaluating the expression
19444 * may cause a message to appear. */
19445 if (eap->cmdidx == CMD_echo)
19446 msg_start();
19447 }
19448 else if (eap->cmdidx == CMD_echo)
19449 msg_puts_attr((char_u *)" ", echo_attr);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000019450 p = echo_string(&rettv, &tofree, numbuf, ++current_copyID);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019451 if (p != NULL)
19452 for ( ; *p != NUL && !got_int; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019453 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019454 if (*p == '\n' || *p == '\r' || *p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019455 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019456 if (*p != TAB && needclr)
19457 {
19458 /* remove any text still there from the command */
19459 msg_clr_eos();
19460 needclr = FALSE;
19461 }
19462 msg_putchar_attr(*p, echo_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019463 }
19464 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019465 {
19466#ifdef FEAT_MBYTE
19467 if (has_mbyte)
19468 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000019469 int i = (*mb_ptr2len)(p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019470
19471 (void)msg_outtrans_len_attr(p, i, echo_attr);
19472 p += i - 1;
19473 }
19474 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000019475#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019476 (void)msg_outtrans_len_attr(p, 1, echo_attr);
19477 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019478 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019479 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019480 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019481 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019482 arg = skipwhite(arg);
19483 }
19484 eap->nextcmd = check_nextcmd(arg);
19485
19486 if (eap->skip)
19487 --emsg_skip;
19488 else
19489 {
19490 /* remove text that may still be there from the command */
19491 if (needclr)
19492 msg_clr_eos();
19493 if (eap->cmdidx == CMD_echo)
19494 msg_end();
19495 }
19496}
19497
19498/*
19499 * ":echohl {name}".
19500 */
19501 void
19502ex_echohl(eap)
19503 exarg_T *eap;
19504{
19505 int id;
19506
19507 id = syn_name2id(eap->arg);
19508 if (id == 0)
19509 echo_attr = 0;
19510 else
19511 echo_attr = syn_id2attr(id);
19512}
19513
19514/*
19515 * ":execute expr1 ..." execute the result of an expression.
19516 * ":echomsg expr1 ..." Print a message
19517 * ":echoerr expr1 ..." Print an error
19518 * Each gets spaces around each argument and a newline at the end for
19519 * echo commands
19520 */
19521 void
19522ex_execute(eap)
19523 exarg_T *eap;
19524{
19525 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019526 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019527 int ret = OK;
19528 char_u *p;
19529 garray_T ga;
19530 int len;
19531 int save_did_emsg;
19532
19533 ga_init2(&ga, 1, 80);
19534
19535 if (eap->skip)
19536 ++emsg_skip;
19537 while (*arg != NUL && *arg != '|' && *arg != '\n')
19538 {
19539 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019540 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019541 {
19542 /*
19543 * Report the invalid expression unless the expression evaluation
19544 * has been cancelled due to an aborting error, an interrupt, or an
19545 * exception.
19546 */
19547 if (!aborting())
19548 EMSG2(_(e_invexpr2), p);
19549 ret = FAIL;
19550 break;
19551 }
19552
19553 if (!eap->skip)
19554 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019555 p = get_tv_string(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019556 len = (int)STRLEN(p);
19557 if (ga_grow(&ga, len + 2) == FAIL)
19558 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019559 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019560 ret = FAIL;
19561 break;
19562 }
19563 if (ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019564 ((char_u *)(ga.ga_data))[ga.ga_len++] = ' ';
Bram Moolenaar071d4272004-06-13 20:20:40 +000019565 STRCPY((char_u *)(ga.ga_data) + ga.ga_len, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019566 ga.ga_len += len;
19567 }
19568
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019569 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019570 arg = skipwhite(arg);
19571 }
19572
19573 if (ret != FAIL && ga.ga_data != NULL)
19574 {
19575 if (eap->cmdidx == CMD_echomsg)
Bram Moolenaar4770d092006-01-12 23:22:24 +000019576 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000019577 MSG_ATTR(ga.ga_data, echo_attr);
Bram Moolenaar4770d092006-01-12 23:22:24 +000019578 out_flush();
19579 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019580 else if (eap->cmdidx == CMD_echoerr)
19581 {
19582 /* We don't want to abort following commands, restore did_emsg. */
19583 save_did_emsg = did_emsg;
19584 EMSG((char_u *)ga.ga_data);
19585 if (!force_abort)
19586 did_emsg = save_did_emsg;
19587 }
19588 else if (eap->cmdidx == CMD_execute)
19589 do_cmdline((char_u *)ga.ga_data,
19590 eap->getline, eap->cookie, DOCMD_NOWAIT|DOCMD_VERBOSE);
19591 }
19592
19593 ga_clear(&ga);
19594
19595 if (eap->skip)
19596 --emsg_skip;
19597
19598 eap->nextcmd = check_nextcmd(arg);
19599}
19600
19601/*
19602 * Skip over the name of an option: "&option", "&g:option" or "&l:option".
19603 * "arg" points to the "&" or '+' when called, to "option" when returning.
19604 * Returns NULL when no option name found. Otherwise pointer to the char
19605 * after the option name.
19606 */
19607 static char_u *
19608find_option_end(arg, opt_flags)
19609 char_u **arg;
19610 int *opt_flags;
19611{
19612 char_u *p = *arg;
19613
19614 ++p;
19615 if (*p == 'g' && p[1] == ':')
19616 {
19617 *opt_flags = OPT_GLOBAL;
19618 p += 2;
19619 }
19620 else if (*p == 'l' && p[1] == ':')
19621 {
19622 *opt_flags = OPT_LOCAL;
19623 p += 2;
19624 }
19625 else
19626 *opt_flags = 0;
19627
19628 if (!ASCII_ISALPHA(*p))
19629 return NULL;
19630 *arg = p;
19631
19632 if (p[0] == 't' && p[1] == '_' && p[2] != NUL && p[3] != NUL)
19633 p += 4; /* termcap option */
19634 else
19635 while (ASCII_ISALPHA(*p))
19636 ++p;
19637 return p;
19638}
19639
19640/*
19641 * ":function"
19642 */
19643 void
19644ex_function(eap)
19645 exarg_T *eap;
19646{
19647 char_u *theline;
19648 int j;
19649 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019650 int saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019651 char_u *name = NULL;
19652 char_u *p;
19653 char_u *arg;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019654 char_u *line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019655 garray_T newargs;
19656 garray_T newlines;
19657 int varargs = FALSE;
19658 int mustend = FALSE;
19659 int flags = 0;
19660 ufunc_T *fp;
19661 int indent;
19662 int nesting;
19663 char_u *skip_until = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000019664 dictitem_T *v;
19665 funcdict_T fudi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019666 static int func_nr = 0; /* number for nameless function */
19667 int paren;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019668 hashtab_T *ht;
19669 int todo;
19670 hashitem_T *hi;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019671 int sourcing_lnum_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019672
19673 /*
19674 * ":function" without argument: list functions.
19675 */
19676 if (ends_excmd(*eap->arg))
19677 {
19678 if (!eap->skip)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019679 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019680 todo = (int)func_hashtab.ht_used;
Bram Moolenaar038eb0e2005-02-27 22:43:26 +000019681 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019682 {
19683 if (!HASHITEM_EMPTY(hi))
19684 {
19685 --todo;
19686 fp = HI2UF(hi);
19687 if (!isdigit(*fp->uf_name))
19688 list_func_head(fp, FALSE);
19689 }
19690 }
19691 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019692 eap->nextcmd = check_nextcmd(eap->arg);
19693 return;
19694 }
19695
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019696 /*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019697 * ":function /pat": list functions matching pattern.
19698 */
19699 if (*eap->arg == '/')
19700 {
19701 p = skip_regexp(eap->arg + 1, '/', TRUE, NULL);
19702 if (!eap->skip)
19703 {
19704 regmatch_T regmatch;
19705
19706 c = *p;
19707 *p = NUL;
19708 regmatch.regprog = vim_regcomp(eap->arg + 1, RE_MAGIC);
19709 *p = c;
19710 if (regmatch.regprog != NULL)
19711 {
19712 regmatch.rm_ic = p_ic;
19713
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019714 todo = (int)func_hashtab.ht_used;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019715 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
19716 {
19717 if (!HASHITEM_EMPTY(hi))
19718 {
19719 --todo;
19720 fp = HI2UF(hi);
19721 if (!isdigit(*fp->uf_name)
19722 && vim_regexec(&regmatch, fp->uf_name, 0))
19723 list_func_head(fp, FALSE);
19724 }
19725 }
19726 }
19727 }
19728 if (*p == '/')
19729 ++p;
19730 eap->nextcmd = check_nextcmd(p);
19731 return;
19732 }
19733
19734 /*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019735 * Get the function name. There are these situations:
19736 * func normal function name
19737 * "name" == func, "fudi.fd_dict" == NULL
19738 * dict.func new dictionary entry
19739 * "name" == NULL, "fudi.fd_dict" set,
19740 * "fudi.fd_di" == NULL, "fudi.fd_newkey" == func
19741 * dict.func existing dict entry with a Funcref
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019742 * "name" == func, "fudi.fd_dict" set,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019743 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19744 * dict.func existing dict entry that's not a Funcref
19745 * "name" == NULL, "fudi.fd_dict" set,
19746 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19747 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019748 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019749 name = trans_function_name(&p, eap->skip, 0, &fudi);
19750 paren = (vim_strchr(p, '(') != NULL);
19751 if (name == NULL && (fudi.fd_dict == NULL || !paren) && !eap->skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019752 {
19753 /*
19754 * Return on an invalid expression in braces, unless the expression
19755 * evaluation has been cancelled due to an aborting error, an
19756 * interrupt, or an exception.
19757 */
19758 if (!aborting())
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019759 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000019760 if (!eap->skip && fudi.fd_newkey != NULL)
19761 EMSG2(_(e_dictkey), fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019762 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019763 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019764 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019765 else
19766 eap->skip = TRUE;
19767 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000019768
Bram Moolenaar071d4272004-06-13 20:20:40 +000019769 /* An error in a function call during evaluation of an expression in magic
19770 * braces should not cause the function not to be defined. */
19771 saved_did_emsg = did_emsg;
19772 did_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019773
19774 /*
19775 * ":function func" with only function name: list function.
19776 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019777 if (!paren)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019778 {
19779 if (!ends_excmd(*skipwhite(p)))
19780 {
19781 EMSG(_(e_trailing));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019782 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019783 }
19784 eap->nextcmd = check_nextcmd(p);
19785 if (eap->nextcmd != NULL)
19786 *p = NUL;
19787 if (!eap->skip && !got_int)
19788 {
19789 fp = find_func(name);
19790 if (fp != NULL)
19791 {
19792 list_func_head(fp, TRUE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019793 for (j = 0; j < fp->uf_lines.ga_len && !got_int; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019794 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019795 if (FUNCLINE(fp, j) == NULL)
19796 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019797 msg_putchar('\n');
19798 msg_outnum((long)(j + 1));
19799 if (j < 9)
19800 msg_putchar(' ');
19801 if (j < 99)
19802 msg_putchar(' ');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019803 msg_prt_line(FUNCLINE(fp, j), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019804 out_flush(); /* show a line at a time */
19805 ui_breakcheck();
19806 }
19807 if (!got_int)
19808 {
19809 msg_putchar('\n');
19810 msg_puts((char_u *)" endfunction");
19811 }
19812 }
19813 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019814 emsg_funcname("E123: Undefined function: %s", name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019815 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019816 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019817 }
19818
19819 /*
19820 * ":function name(arg1, arg2)" Define function.
19821 */
19822 p = skipwhite(p);
19823 if (*p != '(')
19824 {
19825 if (!eap->skip)
19826 {
19827 EMSG2(_("E124: Missing '(': %s"), eap->arg);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019828 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019829 }
19830 /* attempt to continue by skipping some text */
19831 if (vim_strchr(p, '(') != NULL)
19832 p = vim_strchr(p, '(');
19833 }
19834 p = skipwhite(p + 1);
19835
19836 ga_init2(&newargs, (int)sizeof(char_u *), 3);
19837 ga_init2(&newlines, (int)sizeof(char_u *), 3);
19838
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019839 if (!eap->skip)
19840 {
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019841 /* Check the name of the function. Unless it's a dictionary function
19842 * (that we are overwriting). */
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019843 if (name != NULL)
19844 arg = name;
19845 else
19846 arg = fudi.fd_newkey;
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019847 if (arg != NULL && (fudi.fd_di == NULL
19848 || fudi.fd_di->di_tv.v_type != VAR_FUNC))
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019849 {
19850 if (*arg == K_SPECIAL)
19851 j = 3;
19852 else
19853 j = 0;
19854 while (arg[j] != NUL && (j == 0 ? eval_isnamec1(arg[j])
19855 : eval_isnamec(arg[j])))
19856 ++j;
19857 if (arg[j] != NUL)
19858 emsg_funcname(_(e_invarg2), arg);
19859 }
19860 }
19861
Bram Moolenaar071d4272004-06-13 20:20:40 +000019862 /*
19863 * Isolate the arguments: "arg1, arg2, ...)"
19864 */
19865 while (*p != ')')
19866 {
19867 if (p[0] == '.' && p[1] == '.' && p[2] == '.')
19868 {
19869 varargs = TRUE;
19870 p += 3;
19871 mustend = TRUE;
19872 }
19873 else
19874 {
19875 arg = p;
19876 while (ASCII_ISALNUM(*p) || *p == '_')
19877 ++p;
19878 if (arg == p || isdigit(*arg)
19879 || (p - arg == 9 && STRNCMP(arg, "firstline", 9) == 0)
19880 || (p - arg == 8 && STRNCMP(arg, "lastline", 8) == 0))
19881 {
19882 if (!eap->skip)
19883 EMSG2(_("E125: Illegal argument: %s"), arg);
19884 break;
19885 }
19886 if (ga_grow(&newargs, 1) == FAIL)
19887 goto erret;
19888 c = *p;
19889 *p = NUL;
19890 arg = vim_strsave(arg);
19891 if (arg == NULL)
19892 goto erret;
19893 ((char_u **)(newargs.ga_data))[newargs.ga_len] = arg;
19894 *p = c;
19895 newargs.ga_len++;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019896 if (*p == ',')
19897 ++p;
19898 else
19899 mustend = TRUE;
19900 }
19901 p = skipwhite(p);
19902 if (mustend && *p != ')')
19903 {
19904 if (!eap->skip)
19905 EMSG2(_(e_invarg2), eap->arg);
19906 break;
19907 }
19908 }
19909 ++p; /* skip the ')' */
19910
Bram Moolenaare9a41262005-01-15 22:18:47 +000019911 /* find extra arguments "range", "dict" and "abort" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019912 for (;;)
19913 {
19914 p = skipwhite(p);
19915 if (STRNCMP(p, "range", 5) == 0)
19916 {
19917 flags |= FC_RANGE;
19918 p += 5;
19919 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000019920 else if (STRNCMP(p, "dict", 4) == 0)
19921 {
19922 flags |= FC_DICT;
19923 p += 4;
19924 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019925 else if (STRNCMP(p, "abort", 5) == 0)
19926 {
19927 flags |= FC_ABORT;
19928 p += 5;
19929 }
19930 else
19931 break;
19932 }
19933
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019934 /* When there is a line break use what follows for the function body.
19935 * Makes 'exe "func Test()\n...\nendfunc"' work. */
19936 if (*p == '\n')
19937 line_arg = p + 1;
19938 else if (*p != NUL && *p != '"' && !eap->skip && !did_emsg)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019939 EMSG(_(e_trailing));
19940
19941 /*
19942 * Read the body of the function, until ":endfunction" is found.
19943 */
19944 if (KeyTyped)
19945 {
19946 /* Check if the function already exists, don't let the user type the
19947 * whole function before telling him it doesn't work! For a script we
19948 * need to skip the body to be able to find what follows. */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019949 if (!eap->skip && !eap->forceit)
19950 {
19951 if (fudi.fd_dict != NULL && fudi.fd_newkey == NULL)
19952 EMSG(_(e_funcdict));
19953 else if (name != NULL && find_func(name) != NULL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019954 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019955 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019956
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019957 if (!eap->skip && did_emsg)
19958 goto erret;
19959
Bram Moolenaar071d4272004-06-13 20:20:40 +000019960 msg_putchar('\n'); /* don't overwrite the function name */
19961 cmdline_row = msg_row;
19962 }
19963
19964 indent = 2;
19965 nesting = 0;
19966 for (;;)
19967 {
19968 msg_scroll = TRUE;
19969 need_wait_return = FALSE;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019970 sourcing_lnum_off = sourcing_lnum;
19971
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019972 if (line_arg != NULL)
19973 {
19974 /* Use eap->arg, split up in parts by line breaks. */
19975 theline = line_arg;
19976 p = vim_strchr(theline, '\n');
19977 if (p == NULL)
19978 line_arg += STRLEN(line_arg);
19979 else
19980 {
19981 *p = NUL;
19982 line_arg = p + 1;
19983 }
19984 }
19985 else if (eap->getline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019986 theline = getcmdline(':', 0L, indent);
19987 else
19988 theline = eap->getline(':', eap->cookie, indent);
19989 if (KeyTyped)
19990 lines_left = Rows - 1;
19991 if (theline == NULL)
19992 {
19993 EMSG(_("E126: Missing :endfunction"));
19994 goto erret;
19995 }
19996
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019997 /* Detect line continuation: sourcing_lnum increased more than one. */
19998 if (sourcing_lnum > sourcing_lnum_off + 1)
19999 sourcing_lnum_off = sourcing_lnum - sourcing_lnum_off - 1;
20000 else
20001 sourcing_lnum_off = 0;
20002
Bram Moolenaar071d4272004-06-13 20:20:40 +000020003 if (skip_until != NULL)
20004 {
20005 /* between ":append" and "." and between ":python <<EOF" and "EOF"
20006 * don't check for ":endfunc". */
20007 if (STRCMP(theline, skip_until) == 0)
20008 {
20009 vim_free(skip_until);
20010 skip_until = NULL;
20011 }
20012 }
20013 else
20014 {
20015 /* skip ':' and blanks*/
20016 for (p = theline; vim_iswhite(*p) || *p == ':'; ++p)
20017 ;
20018
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020019 /* Check for "endfunction". */
20020 if (checkforcmd(&p, "endfunction", 4) && nesting-- == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020021 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020022 if (line_arg == NULL)
20023 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020024 break;
20025 }
20026
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020027 /* Increase indent inside "if", "while", "for" and "try", decrease
Bram Moolenaar071d4272004-06-13 20:20:40 +000020028 * at "end". */
20029 if (indent > 2 && STRNCMP(p, "end", 3) == 0)
20030 indent -= 2;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020031 else if (STRNCMP(p, "if", 2) == 0
20032 || STRNCMP(p, "wh", 2) == 0
20033 || STRNCMP(p, "for", 3) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000020034 || STRNCMP(p, "try", 3) == 0)
20035 indent += 2;
20036
20037 /* Check for defining a function inside this function. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020038 if (checkforcmd(&p, "function", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020039 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020040 if (*p == '!')
20041 p = skipwhite(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020042 p += eval_fname_script(p);
20043 if (ASCII_ISALPHA(*p))
20044 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020045 vim_free(trans_function_name(&p, TRUE, 0, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020046 if (*skipwhite(p) == '(')
20047 {
20048 ++nesting;
20049 indent += 2;
20050 }
20051 }
20052 }
20053
20054 /* Check for ":append" or ":insert". */
20055 p = skip_range(p, NULL);
20056 if ((p[0] == 'a' && (!ASCII_ISALPHA(p[1]) || p[1] == 'p'))
20057 || (p[0] == 'i'
20058 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'n'
20059 && (!ASCII_ISALPHA(p[2]) || (p[2] == 's'))))))
20060 skip_until = vim_strsave((char_u *)".");
20061
20062 /* Check for ":python <<EOF", ":tcl <<EOF", etc. */
20063 arg = skipwhite(skiptowhite(p));
20064 if (arg[0] == '<' && arg[1] =='<'
20065 && ((p[0] == 'p' && p[1] == 'y'
20066 && (!ASCII_ISALPHA(p[2]) || p[2] == 't'))
20067 || (p[0] == 'p' && p[1] == 'e'
20068 && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
20069 || (p[0] == 't' && p[1] == 'c'
20070 && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
20071 || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
20072 && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
Bram Moolenaar325b7a22004-07-05 15:58:32 +000020073 || (p[0] == 'm' && p[1] == 'z'
20074 && (!ASCII_ISALPHA(p[2]) || p[2] == 's'))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020075 ))
20076 {
20077 /* ":python <<" continues until a dot, like ":append" */
20078 p = skipwhite(arg + 2);
20079 if (*p == NUL)
20080 skip_until = vim_strsave((char_u *)".");
20081 else
20082 skip_until = vim_strsave(p);
20083 }
20084 }
20085
20086 /* Add the line to the function. */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020087 if (ga_grow(&newlines, 1 + sourcing_lnum_off) == FAIL)
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020088 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020089 if (line_arg == NULL)
20090 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020091 goto erret;
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020092 }
20093
20094 /* Copy the line to newly allocated memory. get_one_sourceline()
20095 * allocates 250 bytes per line, this saves 80% on average. The cost
20096 * is an extra alloc/free. */
20097 p = vim_strsave(theline);
20098 if (p != NULL)
20099 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020100 if (line_arg == NULL)
20101 vim_free(theline);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020102 theline = p;
20103 }
20104
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020105 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = theline;
20106
20107 /* Add NULL lines for continuation lines, so that the line count is
20108 * equal to the index in the growarray. */
20109 while (sourcing_lnum_off-- > 0)
20110 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = NULL;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020111
20112 /* Check for end of eap->arg. */
20113 if (line_arg != NULL && *line_arg == NUL)
20114 line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020115 }
20116
20117 /* Don't define the function when skipping commands or when an error was
20118 * detected. */
20119 if (eap->skip || did_emsg)
20120 goto erret;
20121
20122 /*
20123 * If there are no errors, add the function
20124 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020125 if (fudi.fd_dict == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020126 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020127 v = find_var(name, &ht);
Bram Moolenaar33570922005-01-25 22:26:29 +000020128 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020129 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020130 emsg_funcname("E707: Function name conflicts with variable: %s",
20131 name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020132 goto erret;
20133 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020134
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020135 fp = find_func(name);
20136 if (fp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020137 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020138 if (!eap->forceit)
20139 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020140 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020141 goto erret;
20142 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020143 if (fp->uf_calls > 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020144 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020145 emsg_funcname("E127: Cannot redefine function %s: It is in use",
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020146 name);
20147 goto erret;
20148 }
20149 /* redefine existing function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020150 ga_clear_strings(&(fp->uf_args));
20151 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020152 vim_free(name);
20153 name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020154 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020155 }
20156 else
20157 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020158 char numbuf[20];
20159
20160 fp = NULL;
20161 if (fudi.fd_newkey == NULL && !eap->forceit)
20162 {
20163 EMSG(_(e_funcdict));
20164 goto erret;
20165 }
Bram Moolenaar758711c2005-02-02 23:11:38 +000020166 if (fudi.fd_di == NULL)
20167 {
20168 /* Can't add a function to a locked dictionary */
20169 if (tv_check_lock(fudi.fd_dict->dv_lock, eap->arg))
20170 goto erret;
20171 }
20172 /* Can't change an existing function if it is locked */
20173 else if (tv_check_lock(fudi.fd_di->di_tv.v_lock, eap->arg))
20174 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020175
20176 /* Give the function a sequential number. Can only be used with a
20177 * Funcref! */
20178 vim_free(name);
20179 sprintf(numbuf, "%d", ++func_nr);
20180 name = vim_strsave((char_u *)numbuf);
20181 if (name == NULL)
20182 goto erret;
20183 }
20184
20185 if (fp == NULL)
20186 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020187 if (fudi.fd_dict == NULL && vim_strchr(name, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020188 {
20189 int slen, plen;
20190 char_u *scriptname;
20191
20192 /* Check that the autoload name matches the script name. */
20193 j = FAIL;
20194 if (sourcing_name != NULL)
20195 {
20196 scriptname = autoload_name(name);
20197 if (scriptname != NULL)
20198 {
20199 p = vim_strchr(scriptname, '/');
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020200 plen = (int)STRLEN(p);
20201 slen = (int)STRLEN(sourcing_name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020202 if (slen > plen && fnamecmp(p,
20203 sourcing_name + slen - plen) == 0)
20204 j = OK;
20205 vim_free(scriptname);
20206 }
20207 }
20208 if (j == FAIL)
20209 {
20210 EMSG2(_("E746: Function name does not match script file name: %s"), name);
20211 goto erret;
20212 }
20213 }
20214
20215 fp = (ufunc_T *)alloc((unsigned)(sizeof(ufunc_T) + STRLEN(name)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020216 if (fp == NULL)
20217 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020218
20219 if (fudi.fd_dict != NULL)
20220 {
20221 if (fudi.fd_di == NULL)
20222 {
20223 /* add new dict entry */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020224 fudi.fd_di = dictitem_alloc(fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020225 if (fudi.fd_di == NULL)
20226 {
20227 vim_free(fp);
20228 goto erret;
20229 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020230 if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
20231 {
20232 vim_free(fudi.fd_di);
Bram Moolenaar0a5fd8b2006-08-16 20:02:22 +000020233 vim_free(fp);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020234 goto erret;
20235 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020236 }
20237 else
20238 /* overwrite existing dict entry */
20239 clear_tv(&fudi.fd_di->di_tv);
20240 fudi.fd_di->di_tv.v_type = VAR_FUNC;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000020241 fudi.fd_di->di_tv.v_lock = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020242 fudi.fd_di->di_tv.vval.v_string = vim_strsave(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020243 fp->uf_refcount = 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000020244
20245 /* behave like "dict" was used */
20246 flags |= FC_DICT;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020247 }
20248
Bram Moolenaar071d4272004-06-13 20:20:40 +000020249 /* insert the new function in the function list */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020250 STRCPY(fp->uf_name, name);
20251 hash_add(&func_hashtab, UF2HIKEY(fp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020252 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020253 fp->uf_args = newargs;
20254 fp->uf_lines = newlines;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020255#ifdef FEAT_PROFILE
20256 fp->uf_tml_count = NULL;
20257 fp->uf_tml_total = NULL;
20258 fp->uf_tml_self = NULL;
20259 fp->uf_profiling = FALSE;
20260 if (prof_def_func())
20261 func_do_profile(fp);
20262#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020263 fp->uf_varargs = varargs;
20264 fp->uf_flags = flags;
20265 fp->uf_calls = 0;
20266 fp->uf_script_ID = current_SID;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020267 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020268
20269erret:
Bram Moolenaar071d4272004-06-13 20:20:40 +000020270 ga_clear_strings(&newargs);
20271 ga_clear_strings(&newlines);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020272ret_free:
20273 vim_free(skip_until);
20274 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020275 vim_free(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020276 did_emsg |= saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020277}
20278
20279/*
20280 * Get a function name, translating "<SID>" and "<SNR>".
Bram Moolenaara7043832005-01-21 11:56:39 +000020281 * Also handles a Funcref in a List or Dictionary.
Bram Moolenaar071d4272004-06-13 20:20:40 +000020282 * Returns the function name in allocated memory, or NULL for failure.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020283 * flags:
20284 * TFN_INT: internal function name OK
20285 * TFN_QUIET: be quiet
Bram Moolenaar071d4272004-06-13 20:20:40 +000020286 * Advances "pp" to just after the function name (if no error).
20287 */
20288 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020289trans_function_name(pp, skip, flags, fdp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020290 char_u **pp;
20291 int skip; /* only find the end, don't evaluate */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020292 int flags;
Bram Moolenaar33570922005-01-25 22:26:29 +000020293 funcdict_T *fdp; /* return: info about dictionary used */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020294{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020295 char_u *name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020296 char_u *start;
20297 char_u *end;
20298 int lead;
20299 char_u sid_buf[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +000020300 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +000020301 lval_T lv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020302
20303 if (fdp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000020304 vim_memset(fdp, 0, sizeof(funcdict_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020305 start = *pp;
Bram Moolenaara7043832005-01-21 11:56:39 +000020306
20307 /* Check for hard coded <SNR>: already translated function ID (from a user
20308 * command). */
20309 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA
20310 && (*pp)[2] == (int)KE_SNR)
20311 {
20312 *pp += 3;
20313 len = get_id_len(pp) + 3;
20314 return vim_strnsave(start, len);
20315 }
20316
20317 /* A name starting with "<SID>" or "<SNR>" is local to a script. But
20318 * don't skip over "s:", get_lval() needs it for "s:dict.func". */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020319 lead = eval_fname_script(start);
Bram Moolenaara7043832005-01-21 11:56:39 +000020320 if (lead > 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020321 start += lead;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020322
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020323 end = get_lval(start, NULL, &lv, FALSE, skip, flags & TFN_QUIET,
20324 lead > 2 ? 0 : FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020325 if (end == start)
20326 {
20327 if (!skip)
20328 EMSG(_("E129: Function name required"));
20329 goto theend;
20330 }
Bram Moolenaara7043832005-01-21 11:56:39 +000020331 if (end == NULL || (lv.ll_tv != NULL && (lead > 2 || lv.ll_range)))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020332 {
20333 /*
20334 * Report an invalid expression in braces, unless the expression
20335 * evaluation has been cancelled due to an aborting error, an
20336 * interrupt, or an exception.
20337 */
20338 if (!aborting())
20339 {
20340 if (end != NULL)
20341 EMSG2(_(e_invarg2), start);
20342 }
20343 else
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020344 *pp = find_name_end(start, NULL, NULL, FNE_INCL_BR);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020345 goto theend;
20346 }
20347
20348 if (lv.ll_tv != NULL)
20349 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020350 if (fdp != NULL)
20351 {
20352 fdp->fd_dict = lv.ll_dict;
20353 fdp->fd_newkey = lv.ll_newkey;
20354 lv.ll_newkey = NULL;
20355 fdp->fd_di = lv.ll_di;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020356 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020357 if (lv.ll_tv->v_type == VAR_FUNC && lv.ll_tv->vval.v_string != NULL)
20358 {
20359 name = vim_strsave(lv.ll_tv->vval.v_string);
20360 *pp = end;
20361 }
20362 else
20363 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020364 if (!skip && !(flags & TFN_QUIET) && (fdp == NULL
20365 || lv.ll_dict == NULL || fdp->fd_newkey == NULL))
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020366 EMSG(_(e_funcref));
20367 else
20368 *pp = end;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020369 name = NULL;
20370 }
20371 goto theend;
20372 }
20373
20374 if (lv.ll_name == NULL)
20375 {
20376 /* Error found, but continue after the function name. */
20377 *pp = end;
20378 goto theend;
20379 }
20380
Bram Moolenaar33e1a802007-09-06 12:26:44 +000020381 /* Check if the name is a Funcref. If so, use the value. */
20382 if (lv.ll_exp_name != NULL)
20383 {
20384 len = (int)STRLEN(lv.ll_exp_name);
20385 name = deref_func_name(lv.ll_exp_name, &len);
20386 if (name == lv.ll_exp_name)
20387 name = NULL;
20388 }
20389 else
20390 {
20391 len = (int)(end - *pp);
20392 name = deref_func_name(*pp, &len);
20393 if (name == *pp)
20394 name = NULL;
20395 }
20396 if (name != NULL)
20397 {
20398 name = vim_strsave(name);
20399 *pp = end;
20400 goto theend;
20401 }
20402
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020403 if (lv.ll_exp_name != NULL)
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020404 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020405 len = (int)STRLEN(lv.ll_exp_name);
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020406 if (lead <= 2 && lv.ll_name == lv.ll_exp_name
20407 && STRNCMP(lv.ll_name, "s:", 2) == 0)
20408 {
20409 /* When there was "s:" already or the name expanded to get a
20410 * leading "s:" then remove it. */
20411 lv.ll_name += 2;
20412 len -= 2;
20413 lead = 2;
20414 }
20415 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020416 else
Bram Moolenaara7043832005-01-21 11:56:39 +000020417 {
20418 if (lead == 2) /* skip over "s:" */
20419 lv.ll_name += 2;
20420 len = (int)(end - lv.ll_name);
20421 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020422
20423 /*
20424 * Copy the function name to allocated memory.
20425 * Accept <SID>name() inside a script, translate into <SNR>123_name().
20426 * Accept <SNR>123_name() outside a script.
20427 */
20428 if (skip)
20429 lead = 0; /* do nothing */
20430 else if (lead > 0)
20431 {
20432 lead = 3;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000020433 if ((lv.ll_exp_name != NULL && eval_fname_sid(lv.ll_exp_name))
20434 || eval_fname_sid(*pp))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020435 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +000020436 /* It's "s:" or "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020437 if (current_SID <= 0)
20438 {
20439 EMSG(_(e_usingsid));
20440 goto theend;
20441 }
20442 sprintf((char *)sid_buf, "%ld_", (long)current_SID);
20443 lead += (int)STRLEN(sid_buf);
20444 }
20445 }
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020446 else if (!(flags & TFN_INT) && builtin_function(lv.ll_name))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020447 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020448 EMSG2(_("E128: Function name must start with a capital or contain a colon: %s"), lv.ll_name);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020449 goto theend;
20450 }
20451 name = alloc((unsigned)(len + lead + 1));
20452 if (name != NULL)
20453 {
20454 if (lead > 0)
20455 {
20456 name[0] = K_SPECIAL;
20457 name[1] = KS_EXTRA;
20458 name[2] = (int)KE_SNR;
Bram Moolenaara7043832005-01-21 11:56:39 +000020459 if (lead > 3) /* If it's "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020460 STRCPY(name + 3, sid_buf);
20461 }
20462 mch_memmove(name + lead, lv.ll_name, (size_t)len);
20463 name[len + lead] = NUL;
20464 }
20465 *pp = end;
20466
20467theend:
20468 clear_lval(&lv);
20469 return name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020470}
20471
20472/*
20473 * Return 5 if "p" starts with "<SID>" or "<SNR>" (ignoring case).
20474 * Return 2 if "p" starts with "s:".
20475 * Return 0 otherwise.
20476 */
20477 static int
20478eval_fname_script(p)
20479 char_u *p;
20480{
20481 if (p[0] == '<' && (STRNICMP(p + 1, "SID>", 4) == 0
20482 || STRNICMP(p + 1, "SNR>", 4) == 0))
20483 return 5;
20484 if (p[0] == 's' && p[1] == ':')
20485 return 2;
20486 return 0;
20487}
20488
20489/*
20490 * Return TRUE if "p" starts with "<SID>" or "s:".
20491 * Only works if eval_fname_script() returned non-zero for "p"!
20492 */
20493 static int
20494eval_fname_sid(p)
20495 char_u *p;
20496{
20497 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I');
20498}
20499
20500/*
20501 * List the head of the function: "name(arg1, arg2)".
20502 */
20503 static void
20504list_func_head(fp, indent)
20505 ufunc_T *fp;
20506 int indent;
20507{
20508 int j;
20509
20510 msg_start();
20511 if (indent)
20512 MSG_PUTS(" ");
20513 MSG_PUTS("function ");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020514 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020515 {
20516 MSG_PUTS_ATTR("<SNR>", hl_attr(HLF_8));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020517 msg_puts(fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020518 }
20519 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020520 msg_puts(fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020521 msg_putchar('(');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020522 for (j = 0; j < fp->uf_args.ga_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020523 {
20524 if (j)
20525 MSG_PUTS(", ");
20526 msg_puts(FUNCARG(fp, j));
20527 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020528 if (fp->uf_varargs)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020529 {
20530 if (j)
20531 MSG_PUTS(", ");
20532 MSG_PUTS("...");
20533 }
20534 msg_putchar(')');
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000020535 msg_clr_eos();
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000020536 if (p_verbose > 0)
20537 last_set_msg(fp->uf_script_ID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020538}
20539
20540/*
20541 * Find a function by name, return pointer to it in ufuncs.
20542 * Return NULL for unknown function.
20543 */
20544 static ufunc_T *
20545find_func(name)
20546 char_u *name;
20547{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020548 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020549
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020550 hi = hash_find(&func_hashtab, name);
20551 if (!HASHITEM_EMPTY(hi))
20552 return HI2UF(hi);
20553 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020554}
20555
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020556#if defined(EXITFREE) || defined(PROTO)
20557 void
20558free_all_functions()
20559{
20560 hashitem_T *hi;
20561
20562 /* Need to start all over every time, because func_free() may change the
20563 * hash table. */
20564 while (func_hashtab.ht_used > 0)
20565 for (hi = func_hashtab.ht_array; ; ++hi)
20566 if (!HASHITEM_EMPTY(hi))
20567 {
20568 func_free(HI2UF(hi));
20569 break;
20570 }
20571}
20572#endif
20573
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020574/*
20575 * Return TRUE if a function "name" exists.
20576 */
20577 static int
20578function_exists(name)
20579 char_u *name;
20580{
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020581 char_u *nm = name;
20582 char_u *p;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020583 int n = FALSE;
20584
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020585 p = trans_function_name(&nm, FALSE, TFN_INT|TFN_QUIET, NULL);
Bram Moolenaar79783442006-05-05 21:18:03 +000020586 nm = skipwhite(nm);
20587
20588 /* Only accept "funcname", "funcname ", "funcname (..." and
20589 * "funcname(...", not "funcname!...". */
20590 if (p != NULL && (*nm == NUL || *nm == '('))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020591 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020592 if (builtin_function(p))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020593 n = (find_internal_func(p) >= 0);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020594 else
20595 n = (find_func(p) != NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020596 }
Bram Moolenaar79783442006-05-05 21:18:03 +000020597 vim_free(p);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020598 return n;
20599}
20600
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020601/*
20602 * Return TRUE if "name" looks like a builtin function name: starts with a
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020603 * lower case letter and doesn't contain a ':' or AUTOLOAD_CHAR.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020604 */
20605 static int
20606builtin_function(name)
20607 char_u *name;
20608{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020609 return ASCII_ISLOWER(name[0]) && vim_strchr(name, ':') == NULL
20610 && vim_strchr(name, AUTOLOAD_CHAR) == NULL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020611}
20612
Bram Moolenaar05159a02005-02-26 23:04:13 +000020613#if defined(FEAT_PROFILE) || defined(PROTO)
20614/*
20615 * Start profiling function "fp".
20616 */
20617 static void
20618func_do_profile(fp)
20619 ufunc_T *fp;
20620{
20621 fp->uf_tm_count = 0;
20622 profile_zero(&fp->uf_tm_self);
20623 profile_zero(&fp->uf_tm_total);
20624 if (fp->uf_tml_count == NULL)
20625 fp->uf_tml_count = (int *)alloc_clear((unsigned)
20626 (sizeof(int) * fp->uf_lines.ga_len));
20627 if (fp->uf_tml_total == NULL)
20628 fp->uf_tml_total = (proftime_T *)alloc_clear((unsigned)
20629 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20630 if (fp->uf_tml_self == NULL)
20631 fp->uf_tml_self = (proftime_T *)alloc_clear((unsigned)
20632 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20633 fp->uf_tml_idx = -1;
20634 if (fp->uf_tml_count == NULL || fp->uf_tml_total == NULL
20635 || fp->uf_tml_self == NULL)
20636 return; /* out of memory */
20637
20638 fp->uf_profiling = TRUE;
20639}
20640
20641/*
20642 * Dump the profiling results for all functions in file "fd".
20643 */
20644 void
20645func_dump_profile(fd)
20646 FILE *fd;
20647{
20648 hashitem_T *hi;
20649 int todo;
20650 ufunc_T *fp;
20651 int i;
Bram Moolenaar73830342005-02-28 22:48:19 +000020652 ufunc_T **sorttab;
20653 int st_len = 0;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020654
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020655 todo = (int)func_hashtab.ht_used;
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020656 if (todo == 0)
20657 return; /* nothing to dump */
20658
Bram Moolenaar73830342005-02-28 22:48:19 +000020659 sorttab = (ufunc_T **)alloc((unsigned)(sizeof(ufunc_T) * todo));
20660
Bram Moolenaar05159a02005-02-26 23:04:13 +000020661 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
20662 {
20663 if (!HASHITEM_EMPTY(hi))
20664 {
20665 --todo;
20666 fp = HI2UF(hi);
20667 if (fp->uf_profiling)
20668 {
Bram Moolenaar73830342005-02-28 22:48:19 +000020669 if (sorttab != NULL)
20670 sorttab[st_len++] = fp;
20671
Bram Moolenaar05159a02005-02-26 23:04:13 +000020672 if (fp->uf_name[0] == K_SPECIAL)
20673 fprintf(fd, "FUNCTION <SNR>%s()\n", fp->uf_name + 3);
20674 else
20675 fprintf(fd, "FUNCTION %s()\n", fp->uf_name);
20676 if (fp->uf_tm_count == 1)
20677 fprintf(fd, "Called 1 time\n");
20678 else
20679 fprintf(fd, "Called %d times\n", fp->uf_tm_count);
20680 fprintf(fd, "Total time: %s\n", profile_msg(&fp->uf_tm_total));
20681 fprintf(fd, " Self time: %s\n", profile_msg(&fp->uf_tm_self));
20682 fprintf(fd, "\n");
20683 fprintf(fd, "count total (s) self (s)\n");
20684
20685 for (i = 0; i < fp->uf_lines.ga_len; ++i)
20686 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020687 if (FUNCLINE(fp, i) == NULL)
20688 continue;
Bram Moolenaar73830342005-02-28 22:48:19 +000020689 prof_func_line(fd, fp->uf_tml_count[i],
20690 &fp->uf_tml_total[i], &fp->uf_tml_self[i], TRUE);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020691 fprintf(fd, "%s\n", FUNCLINE(fp, i));
20692 }
20693 fprintf(fd, "\n");
20694 }
20695 }
20696 }
Bram Moolenaar73830342005-02-28 22:48:19 +000020697
20698 if (sorttab != NULL && st_len > 0)
20699 {
20700 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20701 prof_total_cmp);
20702 prof_sort_list(fd, sorttab, st_len, "TOTAL", FALSE);
20703 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20704 prof_self_cmp);
20705 prof_sort_list(fd, sorttab, st_len, "SELF", TRUE);
20706 }
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020707
20708 vim_free(sorttab);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020709}
Bram Moolenaar73830342005-02-28 22:48:19 +000020710
20711 static void
20712prof_sort_list(fd, sorttab, st_len, title, prefer_self)
20713 FILE *fd;
20714 ufunc_T **sorttab;
20715 int st_len;
20716 char *title;
20717 int prefer_self; /* when equal print only self time */
20718{
20719 int i;
20720 ufunc_T *fp;
20721
20722 fprintf(fd, "FUNCTIONS SORTED ON %s TIME\n", title);
20723 fprintf(fd, "count total (s) self (s) function\n");
20724 for (i = 0; i < 20 && i < st_len; ++i)
20725 {
20726 fp = sorttab[i];
20727 prof_func_line(fd, fp->uf_tm_count, &fp->uf_tm_total, &fp->uf_tm_self,
20728 prefer_self);
20729 if (fp->uf_name[0] == K_SPECIAL)
20730 fprintf(fd, " <SNR>%s()\n", fp->uf_name + 3);
20731 else
20732 fprintf(fd, " %s()\n", fp->uf_name);
20733 }
20734 fprintf(fd, "\n");
20735}
20736
20737/*
20738 * Print the count and times for one function or function line.
20739 */
20740 static void
20741prof_func_line(fd, count, total, self, prefer_self)
20742 FILE *fd;
20743 int count;
20744 proftime_T *total;
20745 proftime_T *self;
20746 int prefer_self; /* when equal print only self time */
20747{
20748 if (count > 0)
20749 {
20750 fprintf(fd, "%5d ", count);
20751 if (prefer_self && profile_equal(total, self))
20752 fprintf(fd, " ");
20753 else
20754 fprintf(fd, "%s ", profile_msg(total));
20755 if (!prefer_self && profile_equal(total, self))
20756 fprintf(fd, " ");
20757 else
20758 fprintf(fd, "%s ", profile_msg(self));
20759 }
20760 else
20761 fprintf(fd, " ");
20762}
20763
20764/*
20765 * Compare function for total time sorting.
20766 */
20767 static int
20768#ifdef __BORLANDC__
20769_RTLENTRYF
20770#endif
20771prof_total_cmp(s1, s2)
20772 const void *s1;
20773 const void *s2;
20774{
20775 ufunc_T *p1, *p2;
20776
20777 p1 = *(ufunc_T **)s1;
20778 p2 = *(ufunc_T **)s2;
20779 return profile_cmp(&p1->uf_tm_total, &p2->uf_tm_total);
20780}
20781
20782/*
20783 * Compare function for self time sorting.
20784 */
20785 static int
20786#ifdef __BORLANDC__
20787_RTLENTRYF
20788#endif
20789prof_self_cmp(s1, s2)
20790 const void *s1;
20791 const void *s2;
20792{
20793 ufunc_T *p1, *p2;
20794
20795 p1 = *(ufunc_T **)s1;
20796 p2 = *(ufunc_T **)s2;
20797 return profile_cmp(&p1->uf_tm_self, &p2->uf_tm_self);
20798}
20799
Bram Moolenaar05159a02005-02-26 23:04:13 +000020800#endif
20801
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020802/*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020803 * If "name" has a package name try autoloading the script for it.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020804 * Return TRUE if a package was loaded.
20805 */
20806 static int
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020807script_autoload(name, reload)
20808 char_u *name;
20809 int reload; /* load script again when already loaded */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020810{
20811 char_u *p;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020812 char_u *scriptname, *tofree;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020813 int ret = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020814 int i;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020815
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020816 /* If there is no '#' after name[0] there is no package name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020817 p = vim_strchr(name, AUTOLOAD_CHAR);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020818 if (p == NULL || p == name)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020819 return FALSE;
20820
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020821 tofree = scriptname = autoload_name(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020822
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020823 /* Find the name in the list of previously loaded package names. Skip
20824 * "autoload/", it's always the same. */
20825 for (i = 0; i < ga_loaded.ga_len; ++i)
20826 if (STRCMP(((char_u **)ga_loaded.ga_data)[i] + 9, scriptname + 9) == 0)
20827 break;
20828 if (!reload && i < ga_loaded.ga_len)
20829 ret = FALSE; /* was loaded already */
20830 else
20831 {
20832 /* Remember the name if it wasn't loaded already. */
20833 if (i == ga_loaded.ga_len && ga_grow(&ga_loaded, 1) == OK)
20834 {
20835 ((char_u **)ga_loaded.ga_data)[ga_loaded.ga_len++] = scriptname;
20836 tofree = NULL;
20837 }
20838
20839 /* Try loading the package from $VIMRUNTIME/autoload/<name>.vim */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +000020840 if (source_runtime(scriptname, FALSE) == OK)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020841 ret = TRUE;
20842 }
20843
20844 vim_free(tofree);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020845 return ret;
20846}
20847
20848/*
20849 * Return the autoload script name for a function or variable name.
20850 * Returns NULL when out of memory.
20851 */
20852 static char_u *
20853autoload_name(name)
20854 char_u *name;
20855{
20856 char_u *p;
20857 char_u *scriptname;
20858
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020859 /* Get the script file name: replace '#' with '/', append ".vim". */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020860 scriptname = alloc((unsigned)(STRLEN(name) + 14));
20861 if (scriptname == NULL)
20862 return FALSE;
20863 STRCPY(scriptname, "autoload/");
20864 STRCAT(scriptname, name);
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020865 *vim_strrchr(scriptname, AUTOLOAD_CHAR) = NUL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020866 STRCAT(scriptname, ".vim");
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020867 while ((p = vim_strchr(scriptname, AUTOLOAD_CHAR)) != NULL)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020868 *p = '/';
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020869 return scriptname;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020870}
20871
Bram Moolenaar071d4272004-06-13 20:20:40 +000020872#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
20873
20874/*
20875 * Function given to ExpandGeneric() to obtain the list of user defined
20876 * function names.
20877 */
20878 char_u *
20879get_user_func_name(xp, idx)
20880 expand_T *xp;
20881 int idx;
20882{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020883 static long_u done;
20884 static hashitem_T *hi;
20885 ufunc_T *fp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020886
20887 if (idx == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020888 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020889 done = 0;
20890 hi = func_hashtab.ht_array;
20891 }
20892 if (done < func_hashtab.ht_used)
20893 {
20894 if (done++ > 0)
20895 ++hi;
20896 while (HASHITEM_EMPTY(hi))
20897 ++hi;
20898 fp = HI2UF(hi);
20899
20900 if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
20901 return fp->uf_name; /* prevents overflow */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020902
20903 cat_func_name(IObuff, fp);
20904 if (xp->xp_context != EXPAND_USER_FUNC)
20905 {
20906 STRCAT(IObuff, "(");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020907 if (!fp->uf_varargs && fp->uf_args.ga_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020908 STRCAT(IObuff, ")");
20909 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020910 return IObuff;
20911 }
20912 return NULL;
20913}
20914
20915#endif /* FEAT_CMDL_COMPL */
20916
20917/*
20918 * Copy the function name of "fp" to buffer "buf".
20919 * "buf" must be able to hold the function name plus three bytes.
20920 * Takes care of script-local function names.
20921 */
20922 static void
20923cat_func_name(buf, fp)
20924 char_u *buf;
20925 ufunc_T *fp;
20926{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020927 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020928 {
20929 STRCPY(buf, "<SNR>");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020930 STRCAT(buf, fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020931 }
20932 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020933 STRCPY(buf, fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020934}
20935
20936/*
20937 * ":delfunction {name}"
20938 */
20939 void
20940ex_delfunction(eap)
20941 exarg_T *eap;
20942{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020943 ufunc_T *fp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020944 char_u *p;
20945 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000020946 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020947
20948 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020949 name = trans_function_name(&p, eap->skip, 0, &fudi);
20950 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020951 if (name == NULL)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020952 {
20953 if (fudi.fd_dict != NULL && !eap->skip)
20954 EMSG(_(e_funcref));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020955 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020956 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020957 if (!ends_excmd(*skipwhite(p)))
20958 {
20959 vim_free(name);
20960 EMSG(_(e_trailing));
20961 return;
20962 }
20963 eap->nextcmd = check_nextcmd(p);
20964 if (eap->nextcmd != NULL)
20965 *p = NUL;
20966
20967 if (!eap->skip)
20968 fp = find_func(name);
20969 vim_free(name);
20970
20971 if (!eap->skip)
20972 {
20973 if (fp == NULL)
20974 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000020975 EMSG2(_(e_nofunc), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020976 return;
20977 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020978 if (fp->uf_calls > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020979 {
20980 EMSG2(_("E131: Cannot delete function %s: It is in use"), eap->arg);
20981 return;
20982 }
20983
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020984 if (fudi.fd_dict != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020985 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020986 /* Delete the dict item that refers to the function, it will
20987 * invoke func_unref() and possibly delete the function. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020988 dictitem_remove(fudi.fd_dict, fudi.fd_di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020989 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020990 else
20991 func_free(fp);
20992 }
20993}
20994
20995/*
20996 * Free a function and remove it from the list of functions.
20997 */
20998 static void
20999func_free(fp)
21000 ufunc_T *fp;
21001{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021002 hashitem_T *hi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021003
21004 /* clear this function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021005 ga_clear_strings(&(fp->uf_args));
21006 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar05159a02005-02-26 23:04:13 +000021007#ifdef FEAT_PROFILE
21008 vim_free(fp->uf_tml_count);
21009 vim_free(fp->uf_tml_total);
21010 vim_free(fp->uf_tml_self);
21011#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021012
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021013 /* remove the function from the function hashtable */
21014 hi = hash_find(&func_hashtab, UF2HIKEY(fp));
21015 if (HASHITEM_EMPTY(hi))
21016 EMSG2(_(e_intern2), "func_free()");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021017 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021018 hash_remove(&func_hashtab, hi);
21019
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021020 vim_free(fp);
21021}
21022
21023/*
21024 * Unreference a Function: decrement the reference count and free it when it
21025 * becomes zero. Only for numbered functions.
21026 */
21027 static void
21028func_unref(name)
21029 char_u *name;
21030{
21031 ufunc_T *fp;
21032
21033 if (name != NULL && isdigit(*name))
21034 {
21035 fp = find_func(name);
21036 if (fp == NULL)
21037 EMSG2(_(e_intern2), "func_unref()");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021038 else if (--fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021039 {
21040 /* Only delete it when it's not being used. Otherwise it's done
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021041 * when "uf_calls" becomes zero. */
21042 if (fp->uf_calls == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021043 func_free(fp);
21044 }
21045 }
21046}
21047
21048/*
21049 * Count a reference to a Function.
21050 */
21051 static void
21052func_ref(name)
21053 char_u *name;
21054{
21055 ufunc_T *fp;
21056
21057 if (name != NULL && isdigit(*name))
21058 {
21059 fp = find_func(name);
21060 if (fp == NULL)
21061 EMSG2(_(e_intern2), "func_ref()");
21062 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021063 ++fp->uf_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021064 }
21065}
21066
21067/*
21068 * Call a user function.
21069 */
21070 static void
Bram Moolenaare9a41262005-01-15 22:18:47 +000021071call_user_func(fp, argcount, argvars, rettv, firstline, lastline, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021072 ufunc_T *fp; /* pointer to function */
21073 int argcount; /* nr of args */
Bram Moolenaar33570922005-01-25 22:26:29 +000021074 typval_T *argvars; /* arguments */
21075 typval_T *rettv; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021076 linenr_T firstline; /* first line of range */
21077 linenr_T lastline; /* last line of range */
Bram Moolenaar33570922005-01-25 22:26:29 +000021078 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021079{
Bram Moolenaar33570922005-01-25 22:26:29 +000021080 char_u *save_sourcing_name;
21081 linenr_T save_sourcing_lnum;
21082 scid_T save_current_SID;
21083 funccall_T fc;
Bram Moolenaar33570922005-01-25 22:26:29 +000021084 int save_did_emsg;
21085 static int depth = 0;
21086 dictitem_T *v;
21087 int fixvar_idx = 0; /* index in fixvar[] */
21088 int i;
21089 int ai;
21090 char_u numbuf[NUMBUFLEN];
21091 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021092#ifdef FEAT_PROFILE
21093 proftime_T wait_start;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021094 proftime_T call_start;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021095#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021096
21097 /* If depth of calling is getting too high, don't execute the function */
21098 if (depth >= p_mfd)
21099 {
21100 EMSG(_("E132: Function call depth is higher than 'maxfuncdepth'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021101 rettv->v_type = VAR_NUMBER;
21102 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021103 return;
21104 }
21105 ++depth;
21106
21107 line_breakcheck(); /* check for CTRL-C hit */
21108
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000021109 fc.caller = current_funccal;
Bram Moolenaar33570922005-01-25 22:26:29 +000021110 current_funccal = &fc;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021111 fc.func = fp;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021112 fc.rettv = rettv;
21113 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021114 fc.linenr = 0;
21115 fc.returned = FALSE;
21116 fc.level = ex_nesting_level;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021117 /* Check if this function has a breakpoint. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021118 fc.breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021119 fc.dbg_tick = debug_tick;
21120
Bram Moolenaar33570922005-01-25 22:26:29 +000021121 /*
21122 * Note about using fc.fixvar[]: This is an array of FIXVAR_CNT variables
21123 * with names up to VAR_SHORT_LEN long. This avoids having to alloc/free
21124 * each argument variable and saves a lot of time.
21125 */
21126 /*
21127 * Init l: variables.
21128 */
21129 init_var_dict(&fc.l_vars, &fc.l_vars_var);
Bram Moolenaara7043832005-01-21 11:56:39 +000021130 if (selfdict != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000021131 {
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021132 /* Set l:self to "selfdict". Use "name" to avoid a warning from
21133 * some compiler that checks the destination size. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021134 v = &fc.fixvar[fixvar_idx++].var;
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021135 name = v->di_key;
21136 STRCPY(name, "self");
Bram Moolenaar33570922005-01-25 22:26:29 +000021137 v->di_flags = DI_FLAGS_RO + DI_FLAGS_FIX;
21138 hash_add(&fc.l_vars.dv_hashtab, DI2HIKEY(v));
21139 v->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021140 v->di_tv.v_lock = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000021141 v->di_tv.vval.v_dict = selfdict;
21142 ++selfdict->dv_refcount;
21143 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000021144
Bram Moolenaar33570922005-01-25 22:26:29 +000021145 /*
21146 * Init a: variables.
21147 * Set a:0 to "argcount".
21148 * Set a:000 to a list with room for the "..." arguments.
21149 */
21150 init_var_dict(&fc.l_avars, &fc.l_avars_var);
21151 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "0",
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021152 (varnumber_T)(argcount - fp->uf_args.ga_len));
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021153 /* Use "name" to avoid a warning from some compiler that checks the
21154 * destination size. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021155 v = &fc.fixvar[fixvar_idx++].var;
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021156 name = v->di_key;
21157 STRCPY(name, "000");
Bram Moolenaar33570922005-01-25 22:26:29 +000021158 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21159 hash_add(&fc.l_avars.dv_hashtab, DI2HIKEY(v));
21160 v->di_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021161 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021162 v->di_tv.vval.v_list = &fc.l_varlist;
21163 vim_memset(&fc.l_varlist, 0, sizeof(list_T));
21164 fc.l_varlist.lv_refcount = 99999;
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000021165 fc.l_varlist.lv_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021166
21167 /*
21168 * Set a:firstline to "firstline" and a:lastline to "lastline".
21169 * Set a:name to named arguments.
21170 * Set a:N to the "..." arguments.
21171 */
21172 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "firstline",
21173 (varnumber_T)firstline);
21174 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "lastline",
21175 (varnumber_T)lastline);
21176 for (i = 0; i < argcount; ++i)
21177 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021178 ai = i - fp->uf_args.ga_len;
Bram Moolenaar33570922005-01-25 22:26:29 +000021179 if (ai < 0)
21180 /* named argument a:name */
21181 name = FUNCARG(fp, i);
21182 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000021183 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021184 /* "..." argument a:1, a:2, etc. */
21185 sprintf((char *)numbuf, "%d", ai + 1);
21186 name = numbuf;
21187 }
21188 if (fixvar_idx < FIXVAR_CNT && STRLEN(name) <= VAR_SHORT_LEN)
21189 {
21190 v = &fc.fixvar[fixvar_idx++].var;
21191 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21192 }
21193 else
21194 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021195 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
21196 + STRLEN(name)));
Bram Moolenaar33570922005-01-25 22:26:29 +000021197 if (v == NULL)
21198 break;
21199 v->di_flags = DI_FLAGS_RO;
21200 }
21201 STRCPY(v->di_key, name);
21202 hash_add(&fc.l_avars.dv_hashtab, DI2HIKEY(v));
21203
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021204 /* Note: the values are copied directly to avoid alloc/free.
21205 * "argvars" must have VAR_FIXED for v_lock. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021206 v->di_tv = argvars[i];
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021207 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021208
21209 if (ai >= 0 && ai < MAX_FUNC_ARGS)
21210 {
21211 list_append(&fc.l_varlist, &fc.l_listitems[ai]);
21212 fc.l_listitems[ai].li_tv = argvars[i];
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021213 fc.l_listitems[ai].li_tv.v_lock = VAR_FIXED;
Bram Moolenaare9a41262005-01-15 22:18:47 +000021214 }
21215 }
21216
Bram Moolenaar071d4272004-06-13 20:20:40 +000021217 /* Don't redraw while executing the function. */
21218 ++RedrawingDisabled;
21219 save_sourcing_name = sourcing_name;
21220 save_sourcing_lnum = sourcing_lnum;
21221 sourcing_lnum = 1;
21222 sourcing_name = alloc((unsigned)((save_sourcing_name == NULL ? 0
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021223 : STRLEN(save_sourcing_name)) + STRLEN(fp->uf_name) + 13));
Bram Moolenaar071d4272004-06-13 20:20:40 +000021224 if (sourcing_name != NULL)
21225 {
21226 if (save_sourcing_name != NULL
21227 && STRNCMP(save_sourcing_name, "function ", 9) == 0)
21228 sprintf((char *)sourcing_name, "%s..", save_sourcing_name);
21229 else
21230 STRCPY(sourcing_name, "function ");
21231 cat_func_name(sourcing_name + STRLEN(sourcing_name), fp);
21232
21233 if (p_verbose >= 12)
21234 {
21235 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021236 verbose_enter_scroll();
21237
Bram Moolenaar555b2802005-05-19 21:08:39 +000021238 smsg((char_u *)_("calling %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021239 if (p_verbose >= 14)
21240 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021241 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021242 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021243 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021244 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021245
21246 msg_puts((char_u *)"(");
21247 for (i = 0; i < argcount; ++i)
21248 {
21249 if (i > 0)
21250 msg_puts((char_u *)", ");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000021251 if (argvars[i].v_type == VAR_NUMBER)
21252 msg_outnum((long)argvars[i].vval.v_number);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021253 else
21254 {
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021255 s = tv2string(&argvars[i], &tofree, numbuf2, 0);
21256 if (s != NULL)
21257 {
21258 trunc_string(s, buf, MSG_BUF_CLEN);
21259 msg_puts(buf);
21260 vim_free(tofree);
21261 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021262 }
21263 }
21264 msg_puts((char_u *)")");
21265 }
21266 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021267
21268 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021269 --no_wait_return;
21270 }
21271 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021272#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021273 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021274 {
21275 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
21276 func_do_profile(fp);
21277 if (fp->uf_profiling
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000021278 || (fc.caller != NULL && fc.caller->func->uf_profiling))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021279 {
21280 ++fp->uf_tm_count;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021281 profile_start(&call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021282 profile_zero(&fp->uf_tm_children);
21283 }
21284 script_prof_save(&wait_start);
21285 }
21286#endif
21287
Bram Moolenaar071d4272004-06-13 20:20:40 +000021288 save_current_SID = current_SID;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021289 current_SID = fp->uf_script_ID;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021290 save_did_emsg = did_emsg;
21291 did_emsg = FALSE;
21292
21293 /* call do_cmdline() to execute the lines */
21294 do_cmdline(NULL, get_func_line, (void *)&fc,
21295 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
21296
21297 --RedrawingDisabled;
21298
21299 /* when the function was aborted because of an error, return -1 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021300 if ((did_emsg && (fp->uf_flags & FC_ABORT)) || rettv->v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021301 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021302 clear_tv(rettv);
21303 rettv->v_type = VAR_NUMBER;
21304 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021305 }
21306
Bram Moolenaar05159a02005-02-26 23:04:13 +000021307#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021308 if (do_profiling == PROF_YES && (fp->uf_profiling
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000021309 || (fc.caller != NULL && fc.caller->func->uf_profiling)))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021310 {
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021311 profile_end(&call_start);
21312 profile_sub_wait(&wait_start, &call_start);
21313 profile_add(&fp->uf_tm_total, &call_start);
21314 profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000021315 if (fc.caller != NULL && fc.caller->func->uf_profiling)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021316 {
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021317 profile_add(&fc.caller->func->uf_tm_children, &call_start);
21318 profile_add(&fc.caller->func->uf_tml_children, &call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021319 }
21320 }
21321#endif
21322
Bram Moolenaar071d4272004-06-13 20:20:40 +000021323 /* when being verbose, mention the return value */
21324 if (p_verbose >= 12)
21325 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021326 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021327 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021328
Bram Moolenaar071d4272004-06-13 20:20:40 +000021329 if (aborting())
Bram Moolenaar555b2802005-05-19 21:08:39 +000021330 smsg((char_u *)_("%s aborted"), sourcing_name);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021331 else if (fc.rettv->v_type == VAR_NUMBER)
Bram Moolenaar555b2802005-05-19 21:08:39 +000021332 smsg((char_u *)_("%s returning #%ld"), sourcing_name,
21333 (long)fc.rettv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +000021334 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000021335 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000021336 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021337 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021338 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021339 char_u *s;
Bram Moolenaar758711c2005-02-02 23:11:38 +000021340
Bram Moolenaar555b2802005-05-19 21:08:39 +000021341 /* The value may be very long. Skip the middle part, so that we
21342 * have some idea how it starts and ends. smsg() would always
21343 * truncate it at the end. */
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021344 s = tv2string(fc.rettv, &tofree, numbuf2, 0);
21345 if (s != NULL)
21346 {
21347 trunc_string(s, buf, MSG_BUF_CLEN);
21348 smsg((char_u *)_("%s returning %s"), sourcing_name, buf);
21349 vim_free(tofree);
21350 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021351 }
21352 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021353
21354 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021355 --no_wait_return;
21356 }
21357
21358 vim_free(sourcing_name);
21359 sourcing_name = save_sourcing_name;
21360 sourcing_lnum = save_sourcing_lnum;
21361 current_SID = save_current_SID;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021362#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021363 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021364 script_prof_restore(&wait_start);
21365#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021366
21367 if (p_verbose >= 12 && sourcing_name != NULL)
21368 {
21369 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021370 verbose_enter_scroll();
21371
Bram Moolenaar555b2802005-05-19 21:08:39 +000021372 smsg((char_u *)_("continuing in %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021373 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021374
21375 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021376 --no_wait_return;
21377 }
21378
21379 did_emsg |= save_did_emsg;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000021380 current_funccal = fc.caller;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021381
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021382 /* The a: variables typevals were not allocated, only free the allocated
Bram Moolenaar33570922005-01-25 22:26:29 +000021383 * variables. */
21384 vars_clear_ext(&fc.l_avars.dv_hashtab, FALSE);
21385
21386 vars_clear(&fc.l_vars.dv_hashtab); /* free all l: variables */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021387 --depth;
21388}
21389
21390/*
Bram Moolenaar33570922005-01-25 22:26:29 +000021391 * Add a number variable "name" to dict "dp" with value "nr".
21392 */
21393 static void
21394add_nr_var(dp, v, name, nr)
21395 dict_T *dp;
21396 dictitem_T *v;
21397 char *name;
21398 varnumber_T nr;
21399{
21400 STRCPY(v->di_key, name);
21401 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21402 hash_add(&dp->dv_hashtab, DI2HIKEY(v));
21403 v->di_tv.v_type = VAR_NUMBER;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021404 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021405 v->di_tv.vval.v_number = nr;
21406}
21407
21408/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000021409 * ":return [expr]"
21410 */
21411 void
21412ex_return(eap)
21413 exarg_T *eap;
21414{
21415 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000021416 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021417 int returning = FALSE;
21418
21419 if (current_funccal == NULL)
21420 {
21421 EMSG(_("E133: :return not inside a function"));
21422 return;
21423 }
21424
21425 if (eap->skip)
21426 ++emsg_skip;
21427
21428 eap->nextcmd = NULL;
21429 if ((*arg != NUL && *arg != '|' && *arg != '\n')
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021430 && eval0(arg, &rettv, &eap->nextcmd, !eap->skip) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021431 {
21432 if (!eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021433 returning = do_return(eap, FALSE, TRUE, &rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021434 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021435 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021436 }
21437 /* It's safer to return also on error. */
21438 else if (!eap->skip)
21439 {
21440 /*
21441 * Return unless the expression evaluation has been cancelled due to an
21442 * aborting error, an interrupt, or an exception.
21443 */
21444 if (!aborting())
21445 returning = do_return(eap, FALSE, TRUE, NULL);
21446 }
21447
21448 /* When skipping or the return gets pending, advance to the next command
21449 * in this line (!returning). Otherwise, ignore the rest of the line.
21450 * Following lines will be ignored by get_func_line(). */
21451 if (returning)
21452 eap->nextcmd = NULL;
21453 else if (eap->nextcmd == NULL) /* no argument */
21454 eap->nextcmd = check_nextcmd(arg);
21455
21456 if (eap->skip)
21457 --emsg_skip;
21458}
21459
21460/*
21461 * Return from a function. Possibly makes the return pending. Also called
21462 * for a pending return at the ":endtry" or after returning from an extra
21463 * do_cmdline(). "reanimate" is used in the latter case. "is_cmd" is set
Bram Moolenaar33570922005-01-25 22:26:29 +000021464 * when called due to a ":return" command. "rettv" may point to a typval_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021465 * with the return rettv. Returns TRUE when the return can be carried out,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021466 * FALSE when the return gets pending.
21467 */
21468 int
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021469do_return(eap, reanimate, is_cmd, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021470 exarg_T *eap;
21471 int reanimate;
21472 int is_cmd;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021473 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021474{
21475 int idx;
21476 struct condstack *cstack = eap->cstack;
21477
21478 if (reanimate)
21479 /* Undo the return. */
21480 current_funccal->returned = FALSE;
21481
21482 /*
21483 * Cleanup (and inactivate) conditionals, but stop when a try conditional
21484 * not in its finally clause (which then is to be executed next) is found.
21485 * In this case, make the ":return" pending for execution at the ":endtry".
21486 * Otherwise, return normally.
21487 */
21488 idx = cleanup_conditionals(eap->cstack, 0, TRUE);
21489 if (idx >= 0)
21490 {
21491 cstack->cs_pending[idx] = CSTP_RETURN;
21492
21493 if (!is_cmd && !reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021494 /* A pending return again gets pending. "rettv" points to an
21495 * allocated variable with the rettv of the original ":return"'s
Bram Moolenaar071d4272004-06-13 20:20:40 +000021496 * argument if present or is NULL else. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021497 cstack->cs_rettv[idx] = rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021498 else
21499 {
21500 /* When undoing a return in order to make it pending, get the stored
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021501 * return rettv. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021502 if (reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021503 rettv = current_funccal->rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021504
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021505 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021506 {
21507 /* Store the value of the pending return. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021508 if ((cstack->cs_rettv[idx] = alloc_tv()) != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000021509 *(typval_T *)cstack->cs_rettv[idx] = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021510 else
21511 EMSG(_(e_outofmem));
21512 }
21513 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021514 cstack->cs_rettv[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021515
21516 if (reanimate)
21517 {
21518 /* The pending return value could be overwritten by a ":return"
21519 * without argument in a finally clause; reset the default
21520 * return value. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021521 current_funccal->rettv->v_type = VAR_NUMBER;
21522 current_funccal->rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021523 }
21524 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021525 report_make_pending(CSTP_RETURN, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021526 }
21527 else
21528 {
21529 current_funccal->returned = TRUE;
21530
21531 /* If the return is carried out now, store the return value. For
21532 * a return immediately after reanimation, the value is already
21533 * there. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021534 if (!reanimate && rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021535 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021536 clear_tv(current_funccal->rettv);
Bram Moolenaar33570922005-01-25 22:26:29 +000021537 *current_funccal->rettv = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021538 if (!is_cmd)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021539 vim_free(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021540 }
21541 }
21542
21543 return idx < 0;
21544}
21545
21546/*
21547 * Free the variable with a pending return value.
21548 */
21549 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021550discard_pending_return(rettv)
21551 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021552{
Bram Moolenaar33570922005-01-25 22:26:29 +000021553 free_tv((typval_T *)rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021554}
21555
21556/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021557 * Generate a return command for producing the value of "rettv". The result
Bram Moolenaar071d4272004-06-13 20:20:40 +000021558 * is an allocated string. Used by report_pending() for verbose messages.
21559 */
21560 char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021561get_return_cmd(rettv)
21562 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021563{
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021564 char_u *s = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021565 char_u *tofree = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021566 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021567
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021568 if (rettv != NULL)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021569 s = echo_string((typval_T *)rettv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021570 if (s == NULL)
21571 s = (char_u *)"";
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021572
21573 STRCPY(IObuff, ":return ");
21574 STRNCPY(IObuff + 8, s, IOSIZE - 8);
21575 if (STRLEN(s) + 8 >= IOSIZE)
21576 STRCPY(IObuff + IOSIZE - 4, "...");
21577 vim_free(tofree);
21578 return vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021579}
21580
21581/*
21582 * Get next function line.
21583 * Called by do_cmdline() to get the next line.
21584 * Returns allocated string, or NULL for end of function.
21585 */
21586/* ARGSUSED */
21587 char_u *
21588get_func_line(c, cookie, indent)
21589 int c; /* not used */
21590 void *cookie;
21591 int indent; /* not used */
21592{
Bram Moolenaar33570922005-01-25 22:26:29 +000021593 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021594 ufunc_T *fp = fcp->func;
21595 char_u *retval;
21596 garray_T *gap; /* growarray with function lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021597
21598 /* If breakpoints have been added/deleted need to check for it. */
21599 if (fcp->dbg_tick != debug_tick)
21600 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021601 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021602 sourcing_lnum);
21603 fcp->dbg_tick = debug_tick;
21604 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021605#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021606 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021607 func_line_end(cookie);
21608#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021609
Bram Moolenaar05159a02005-02-26 23:04:13 +000021610 gap = &fp->uf_lines;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021611 if (((fp->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
21612 || fcp->returned)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021613 retval = NULL;
21614 else
21615 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021616 /* Skip NULL lines (continuation lines). */
21617 while (fcp->linenr < gap->ga_len
21618 && ((char_u **)(gap->ga_data))[fcp->linenr] == NULL)
21619 ++fcp->linenr;
21620 if (fcp->linenr >= gap->ga_len)
21621 retval = NULL;
21622 else
21623 {
21624 retval = vim_strsave(((char_u **)(gap->ga_data))[fcp->linenr++]);
21625 sourcing_lnum = fcp->linenr;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021626#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021627 if (do_profiling == PROF_YES)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021628 func_line_start(cookie);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021629#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021630 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021631 }
21632
21633 /* Did we encounter a breakpoint? */
21634 if (fcp->breakpoint != 0 && fcp->breakpoint <= sourcing_lnum)
21635 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021636 dbg_breakpoint(fp->uf_name, sourcing_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021637 /* Find next breakpoint. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000021638 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021639 sourcing_lnum);
21640 fcp->dbg_tick = debug_tick;
21641 }
21642
21643 return retval;
21644}
21645
Bram Moolenaar05159a02005-02-26 23:04:13 +000021646#if defined(FEAT_PROFILE) || defined(PROTO)
21647/*
21648 * Called when starting to read a function line.
21649 * "sourcing_lnum" must be correct!
21650 * When skipping lines it may not actually be executed, but we won't find out
21651 * until later and we need to store the time now.
21652 */
21653 void
21654func_line_start(cookie)
21655 void *cookie;
21656{
21657 funccall_T *fcp = (funccall_T *)cookie;
21658 ufunc_T *fp = fcp->func;
21659
21660 if (fp->uf_profiling && sourcing_lnum >= 1
21661 && sourcing_lnum <= fp->uf_lines.ga_len)
21662 {
21663 fp->uf_tml_idx = sourcing_lnum - 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021664 /* Skip continuation lines. */
21665 while (fp->uf_tml_idx > 0 && FUNCLINE(fp, fp->uf_tml_idx) == NULL)
21666 --fp->uf_tml_idx;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021667 fp->uf_tml_execed = FALSE;
21668 profile_start(&fp->uf_tml_start);
21669 profile_zero(&fp->uf_tml_children);
21670 profile_get_wait(&fp->uf_tml_wait);
21671 }
21672}
21673
21674/*
21675 * Called when actually executing a function line.
21676 */
21677 void
21678func_line_exec(cookie)
21679 void *cookie;
21680{
21681 funccall_T *fcp = (funccall_T *)cookie;
21682 ufunc_T *fp = fcp->func;
21683
21684 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21685 fp->uf_tml_execed = TRUE;
21686}
21687
21688/*
21689 * Called when done with a function line.
21690 */
21691 void
21692func_line_end(cookie)
21693 void *cookie;
21694{
21695 funccall_T *fcp = (funccall_T *)cookie;
21696 ufunc_T *fp = fcp->func;
21697
21698 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21699 {
21700 if (fp->uf_tml_execed)
21701 {
21702 ++fp->uf_tml_count[fp->uf_tml_idx];
21703 profile_end(&fp->uf_tml_start);
21704 profile_sub_wait(&fp->uf_tml_wait, &fp->uf_tml_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021705 profile_add(&fp->uf_tml_total[fp->uf_tml_idx], &fp->uf_tml_start);
Bram Moolenaar1056d982006-03-09 22:37:52 +000021706 profile_self(&fp->uf_tml_self[fp->uf_tml_idx], &fp->uf_tml_start,
21707 &fp->uf_tml_children);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021708 }
21709 fp->uf_tml_idx = -1;
21710 }
21711}
21712#endif
21713
Bram Moolenaar071d4272004-06-13 20:20:40 +000021714/*
21715 * Return TRUE if the currently active function should be ended, because a
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021716 * return was encountered or an error occurred. Used inside a ":while".
Bram Moolenaar071d4272004-06-13 20:20:40 +000021717 */
21718 int
21719func_has_ended(cookie)
21720 void *cookie;
21721{
Bram Moolenaar33570922005-01-25 22:26:29 +000021722 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021723
21724 /* Ignore the "abort" flag if the abortion behavior has been changed due to
21725 * an error inside a try conditional. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021726 return (((fcp->func->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
Bram Moolenaar071d4272004-06-13 20:20:40 +000021727 || fcp->returned);
21728}
21729
21730/*
21731 * return TRUE if cookie indicates a function which "abort"s on errors.
21732 */
21733 int
21734func_has_abort(cookie)
21735 void *cookie;
21736{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021737 return ((funccall_T *)cookie)->func->uf_flags & FC_ABORT;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021738}
21739
21740#if defined(FEAT_VIMINFO) || defined(FEAT_SESSION)
21741typedef enum
21742{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021743 VAR_FLAVOUR_DEFAULT, /* doesn't start with uppercase */
21744 VAR_FLAVOUR_SESSION, /* starts with uppercase, some lower */
21745 VAR_FLAVOUR_VIMINFO /* all uppercase */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021746} var_flavour_T;
21747
21748static var_flavour_T var_flavour __ARGS((char_u *varname));
21749
21750 static var_flavour_T
21751var_flavour(varname)
21752 char_u *varname;
21753{
21754 char_u *p = varname;
21755
21756 if (ASCII_ISUPPER(*p))
21757 {
21758 while (*(++p))
21759 if (ASCII_ISLOWER(*p))
21760 return VAR_FLAVOUR_SESSION;
21761 return VAR_FLAVOUR_VIMINFO;
21762 }
21763 else
21764 return VAR_FLAVOUR_DEFAULT;
21765}
21766#endif
21767
21768#if defined(FEAT_VIMINFO) || defined(PROTO)
21769/*
21770 * Restore global vars that start with a capital from the viminfo file
21771 */
21772 int
21773read_viminfo_varlist(virp, writing)
21774 vir_T *virp;
21775 int writing;
21776{
21777 char_u *tab;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021778 int type = VAR_NUMBER;
Bram Moolenaar33570922005-01-25 22:26:29 +000021779 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021780
21781 if (!writing && (find_viminfo_parameter('!') != NULL))
21782 {
21783 tab = vim_strchr(virp->vir_line + 1, '\t');
21784 if (tab != NULL)
21785 {
21786 *tab++ = '\0'; /* isolate the variable name */
21787 if (*tab == 'S') /* string var */
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021788 type = VAR_STRING;
21789#ifdef FEAT_FLOAT
21790 else if (*tab == 'F')
21791 type = VAR_FLOAT;
21792#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021793
21794 tab = vim_strchr(tab, '\t');
21795 if (tab != NULL)
21796 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021797 tv.v_type = type;
21798 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021799 tv.vval.v_string = viminfo_readstring(virp,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021800 (int)(tab - virp->vir_line + 1), TRUE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021801#ifdef FEAT_FLOAT
21802 else if (type == VAR_FLOAT)
21803 (void)string2float(tab + 1, &tv.vval.v_float);
21804#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021805 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021806 tv.vval.v_number = atol((char *)tab + 1);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021807 set_var(virp->vir_line + 1, &tv, FALSE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021808 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021809 vim_free(tv.vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021810 }
21811 }
21812 }
21813
21814 return viminfo_readline(virp);
21815}
21816
21817/*
21818 * Write global vars that start with a capital to the viminfo file
21819 */
21820 void
21821write_viminfo_varlist(fp)
21822 FILE *fp;
21823{
Bram Moolenaar33570922005-01-25 22:26:29 +000021824 hashitem_T *hi;
21825 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021826 int todo;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021827 char *s;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021828 char_u *p;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021829 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021830 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021831
21832 if (find_viminfo_parameter('!') == NULL)
21833 return;
21834
21835 fprintf(fp, _("\n# global variables:\n"));
Bram Moolenaara7043832005-01-21 11:56:39 +000021836
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021837 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021838 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021839 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021840 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021841 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021842 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021843 this_var = HI2DI(hi);
21844 if (var_flavour(this_var->di_key) == VAR_FLAVOUR_VIMINFO)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021845 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021846 switch (this_var->di_tv.v_type)
Bram Moolenaara7043832005-01-21 11:56:39 +000021847 {
21848 case VAR_STRING: s = "STR"; break;
21849 case VAR_NUMBER: s = "NUM"; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021850#ifdef FEAT_FLOAT
21851 case VAR_FLOAT: s = "FLO"; break;
21852#endif
Bram Moolenaara7043832005-01-21 11:56:39 +000021853 default: continue;
21854 }
Bram Moolenaar33570922005-01-25 22:26:29 +000021855 fprintf(fp, "!%s\t%s\t", this_var->di_key, s);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021856 p = echo_string(&this_var->di_tv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021857 if (p != NULL)
21858 viminfo_writestring(fp, p);
Bram Moolenaara7043832005-01-21 11:56:39 +000021859 vim_free(tofree);
21860 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021861 }
21862 }
21863}
21864#endif
21865
21866#if defined(FEAT_SESSION) || defined(PROTO)
21867 int
21868store_session_globals(fd)
21869 FILE *fd;
21870{
Bram Moolenaar33570922005-01-25 22:26:29 +000021871 hashitem_T *hi;
21872 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021873 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021874 char_u *p, *t;
21875
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021876 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021877 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021878 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021879 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021880 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021881 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021882 this_var = HI2DI(hi);
21883 if ((this_var->di_tv.v_type == VAR_NUMBER
21884 || this_var->di_tv.v_type == VAR_STRING)
21885 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021886 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021887 /* Escape special characters with a backslash. Turn a LF and
21888 * CR into \n and \r. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021889 p = vim_strsave_escaped(get_tv_string(&this_var->di_tv),
Bram Moolenaara7043832005-01-21 11:56:39 +000021890 (char_u *)"\\\"\n\r");
21891 if (p == NULL) /* out of memory */
21892 break;
21893 for (t = p; *t != NUL; ++t)
21894 if (*t == '\n')
21895 *t = 'n';
21896 else if (*t == '\r')
21897 *t = 'r';
21898 if ((fprintf(fd, "let %s = %c%s%c",
Bram Moolenaar33570922005-01-25 22:26:29 +000021899 this_var->di_key,
21900 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21901 : ' ',
21902 p,
21903 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21904 : ' ') < 0)
Bram Moolenaara7043832005-01-21 11:56:39 +000021905 || put_eol(fd) == FAIL)
21906 {
21907 vim_free(p);
21908 return FAIL;
21909 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021910 vim_free(p);
21911 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021912#ifdef FEAT_FLOAT
21913 else if (this_var->di_tv.v_type == VAR_FLOAT
21914 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
21915 {
21916 float_T f = this_var->di_tv.vval.v_float;
21917 int sign = ' ';
21918
21919 if (f < 0)
21920 {
21921 f = -f;
21922 sign = '-';
21923 }
21924 if ((fprintf(fd, "let %s = %c&%f",
21925 this_var->di_key, sign, f) < 0)
21926 || put_eol(fd) == FAIL)
21927 return FAIL;
21928 }
21929#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021930 }
21931 }
21932 return OK;
21933}
21934#endif
21935
Bram Moolenaar661b1822005-07-28 22:36:45 +000021936/*
21937 * Display script name where an item was last set.
21938 * Should only be invoked when 'verbose' is non-zero.
21939 */
21940 void
21941last_set_msg(scriptID)
21942 scid_T scriptID;
21943{
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000021944 char_u *p;
21945
Bram Moolenaar661b1822005-07-28 22:36:45 +000021946 if (scriptID != 0)
21947 {
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000021948 p = home_replace_save(NULL, get_scriptname(scriptID));
21949 if (p != NULL)
21950 {
21951 verbose_enter();
21952 MSG_PUTS(_("\n\tLast set from "));
21953 MSG_PUTS(p);
21954 vim_free(p);
21955 verbose_leave();
21956 }
Bram Moolenaar661b1822005-07-28 22:36:45 +000021957 }
21958}
21959
Bram Moolenaard812df62008-11-09 12:46:09 +000021960/*
21961 * List v:oldfiles in a nice way.
21962 */
21963/*ARGSUSED*/
21964 void
21965ex_oldfiles(eap)
21966 exarg_T *eap;
21967{
21968 list_T *l = vimvars[VV_OLDFILES].vv_list;
21969 listitem_T *li;
21970 int nr = 0;
21971
21972 if (l == NULL)
21973 msg((char_u *)_("No old files"));
21974 else
21975 {
21976 msg_start();
21977 msg_scroll = TRUE;
21978 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
21979 {
21980 msg_outnum((long)++nr);
21981 MSG_PUTS(": ");
21982 msg_outtrans(get_tv_string(&li->li_tv));
21983 msg_putchar('\n');
21984 out_flush(); /* output one line at a time */
21985 ui_breakcheck();
21986 }
21987 /* Assume "got_int" was set to truncate the listing. */
21988 got_int = FALSE;
21989
21990#ifdef FEAT_BROWSE_CMD
21991 if (cmdmod.browse)
21992 {
21993 quit_more = FALSE;
21994 nr = prompt_for_number(FALSE);
21995 msg_starthere();
21996 if (nr > 0)
21997 {
21998 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
21999 (long)nr);
22000
22001 if (p != NULL)
22002 {
22003 p = expand_env_save(p);
22004 eap->arg = p;
22005 eap->cmdidx = CMD_edit;
22006 cmdmod.browse = FALSE;
22007 do_exedit(eap, NULL);
22008 vim_free(p);
22009 }
22010 }
22011 }
22012#endif
22013 }
22014}
22015
Bram Moolenaar071d4272004-06-13 20:20:40 +000022016#endif /* FEAT_EVAL */
22017
Bram Moolenaar071d4272004-06-13 20:20:40 +000022018
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022019#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022020
22021#ifdef WIN3264
22022/*
22023 * Functions for ":8" filename modifier: get 8.3 version of a filename.
22024 */
22025static int get_short_pathname __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22026static int shortpath_for_invalid_fname __ARGS((char_u **fname, char_u **bufp, int *fnamelen));
22027static int shortpath_for_partial __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22028
22029/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022030 * Get the short path (8.3) for the filename in "fnamep".
22031 * Only works for a valid file name.
22032 * When the path gets longer "fnamep" is changed and the allocated buffer
22033 * is put in "bufp".
22034 * *fnamelen is the length of "fnamep" and set to 0 for a nonexistent path.
22035 * Returns OK on success, FAIL on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022036 */
22037 static int
22038get_short_pathname(fnamep, bufp, fnamelen)
22039 char_u **fnamep;
22040 char_u **bufp;
22041 int *fnamelen;
22042{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022043 int l, len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022044 char_u *newbuf;
22045
22046 len = *fnamelen;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022047 l = GetShortPathName(*fnamep, *fnamep, len);
22048 if (l > len - 1)
22049 {
22050 /* If that doesn't work (not enough space), then save the string
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022051 * and try again with a new buffer big enough. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022052 newbuf = vim_strnsave(*fnamep, l);
22053 if (newbuf == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022054 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022055
22056 vim_free(*bufp);
22057 *fnamep = *bufp = newbuf;
22058
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022059 /* Really should always succeed, as the buffer is big enough. */
22060 l = GetShortPathName(*fnamep, *fnamep, l+1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022061 }
22062
22063 *fnamelen = l;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022064 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022065}
22066
22067/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022068 * Get the short path (8.3) for the filename in "fname". The converted
22069 * path is returned in "bufp".
22070 *
22071 * Some of the directories specified in "fname" may not exist. This function
22072 * will shorten the existing directories at the beginning of the path and then
22073 * append the remaining non-existing path.
22074 *
22075 * fname - Pointer to the filename to shorten. On return, contains the
22076 * pointer to the shortened pathname
22077 * bufp - Pointer to an allocated buffer for the filename.
22078 * fnamelen - Length of the filename pointed to by fname
22079 *
22080 * Returns OK on success (or nothing done) and FAIL on failure (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +000022081 */
22082 static int
22083shortpath_for_invalid_fname(fname, bufp, fnamelen)
22084 char_u **fname;
22085 char_u **bufp;
22086 int *fnamelen;
22087{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022088 char_u *short_fname, *save_fname, *pbuf_unused;
22089 char_u *endp, *save_endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022090 char_u ch;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022091 int old_len, len;
22092 int new_len, sfx_len;
22093 int retval = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022094
22095 /* Make a copy */
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022096 old_len = *fnamelen;
22097 save_fname = vim_strnsave(*fname, old_len);
22098 pbuf_unused = NULL;
22099 short_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022100
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022101 endp = save_fname + old_len - 1; /* Find the end of the copy */
22102 save_endp = endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022103
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022104 /*
22105 * Try shortening the supplied path till it succeeds by removing one
22106 * directory at a time from the tail of the path.
22107 */
22108 len = 0;
22109 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022110 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022111 /* go back one path-separator */
22112 while (endp > save_fname && !after_pathsep(save_fname, endp + 1))
22113 --endp;
22114 if (endp <= save_fname)
22115 break; /* processed the complete path */
22116
22117 /*
22118 * Replace the path separator with a NUL and try to shorten the
22119 * resulting path.
22120 */
22121 ch = *endp;
22122 *endp = 0;
22123 short_fname = save_fname;
Bram Moolenaarc236c162008-07-13 17:41:49 +000022124 len = (int)STRLEN(short_fname) + 1;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022125 if (get_short_pathname(&short_fname, &pbuf_unused, &len) == FAIL)
22126 {
22127 retval = FAIL;
22128 goto theend;
22129 }
22130 *endp = ch; /* preserve the string */
22131
22132 if (len > 0)
22133 break; /* successfully shortened the path */
22134
22135 /* failed to shorten the path. Skip the path separator */
22136 --endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022137 }
22138
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022139 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022140 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022141 /*
22142 * Succeeded in shortening the path. Now concatenate the shortened
22143 * path with the remaining path at the tail.
22144 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022145
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022146 /* Compute the length of the new path. */
22147 sfx_len = (int)(save_endp - endp) + 1;
22148 new_len = len + sfx_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022149
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022150 *fnamelen = new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022151 vim_free(*bufp);
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022152 if (new_len > old_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022153 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022154 /* There is not enough space in the currently allocated string,
22155 * copy it to a buffer big enough. */
22156 *fname = *bufp = vim_strnsave(short_fname, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022157 if (*fname == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022158 {
22159 retval = FAIL;
22160 goto theend;
22161 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022162 }
22163 else
22164 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022165 /* Transfer short_fname to the main buffer (it's big enough),
22166 * unless get_short_pathname() did its work in-place. */
22167 *fname = *bufp = save_fname;
22168 if (short_fname != save_fname)
22169 vim_strncpy(save_fname, short_fname, len);
22170 save_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022171 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022172
22173 /* concat the not-shortened part of the path */
22174 vim_strncpy(*fname + len, endp, sfx_len);
22175 (*fname)[new_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022176 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022177
22178theend:
22179 vim_free(pbuf_unused);
22180 vim_free(save_fname);
22181
22182 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022183}
22184
22185/*
22186 * Get a pathname for a partial path.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022187 * Returns OK for success, FAIL for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022188 */
22189 static int
22190shortpath_for_partial(fnamep, bufp, fnamelen)
22191 char_u **fnamep;
22192 char_u **bufp;
22193 int *fnamelen;
22194{
22195 int sepcount, len, tflen;
22196 char_u *p;
22197 char_u *pbuf, *tfname;
22198 int hasTilde;
22199
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022200 /* Count up the path separators from the RHS.. so we know which part
22201 * of the path to return. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022202 sepcount = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022203 for (p = *fnamep; p < *fnamep + *fnamelen; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022204 if (vim_ispathsep(*p))
22205 ++sepcount;
22206
22207 /* Need full path first (use expand_env() to remove a "~/") */
22208 hasTilde = (**fnamep == '~');
22209 if (hasTilde)
22210 pbuf = tfname = expand_env_save(*fnamep);
22211 else
22212 pbuf = tfname = FullName_save(*fnamep, FALSE);
22213
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000022214 len = tflen = (int)STRLEN(tfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022215
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022216 if (get_short_pathname(&tfname, &pbuf, &len) == FAIL)
22217 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022218
22219 if (len == 0)
22220 {
22221 /* Don't have a valid filename, so shorten the rest of the
22222 * path if we can. This CAN give us invalid 8.3 filenames, but
22223 * there's not a lot of point in guessing what it might be.
22224 */
22225 len = tflen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022226 if (shortpath_for_invalid_fname(&tfname, &pbuf, &len) == FAIL)
22227 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022228 }
22229
22230 /* Count the paths backward to find the beginning of the desired string. */
22231 for (p = tfname + len - 1; p >= tfname; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022232 {
22233#ifdef FEAT_MBYTE
22234 if (has_mbyte)
22235 p -= mb_head_off(tfname, p);
22236#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000022237 if (vim_ispathsep(*p))
22238 {
22239 if (sepcount == 0 || (hasTilde && sepcount == 1))
22240 break;
22241 else
22242 sepcount --;
22243 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022244 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022245 if (hasTilde)
22246 {
22247 --p;
22248 if (p >= tfname)
22249 *p = '~';
22250 else
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022251 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022252 }
22253 else
22254 ++p;
22255
22256 /* Copy in the string - p indexes into tfname - allocated at pbuf */
22257 vim_free(*bufp);
22258 *fnamelen = (int)STRLEN(p);
22259 *bufp = pbuf;
22260 *fnamep = p;
22261
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022262 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022263}
22264#endif /* WIN3264 */
22265
22266/*
22267 * Adjust a filename, according to a string of modifiers.
22268 * *fnamep must be NUL terminated when called. When returning, the length is
22269 * determined by *fnamelen.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022270 * Returns VALID_ flags or -1 for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022271 * When there is an error, *fnamep is set to NULL.
22272 */
22273 int
22274modify_fname(src, usedlen, fnamep, bufp, fnamelen)
22275 char_u *src; /* string with modifiers */
22276 int *usedlen; /* characters after src that are used */
22277 char_u **fnamep; /* file name so far */
22278 char_u **bufp; /* buffer for allocated file name or NULL */
22279 int *fnamelen; /* length of fnamep */
22280{
22281 int valid = 0;
22282 char_u *tail;
22283 char_u *s, *p, *pbuf;
22284 char_u dirname[MAXPATHL];
22285 int c;
22286 int has_fullname = 0;
22287#ifdef WIN3264
22288 int has_shortname = 0;
22289#endif
22290
22291repeat:
22292 /* ":p" - full path/file_name */
22293 if (src[*usedlen] == ':' && src[*usedlen + 1] == 'p')
22294 {
22295 has_fullname = 1;
22296
22297 valid |= VALID_PATH;
22298 *usedlen += 2;
22299
22300 /* Expand "~/path" for all systems and "~user/path" for Unix and VMS */
22301 if ((*fnamep)[0] == '~'
22302#if !defined(UNIX) && !(defined(VMS) && defined(USER_HOME))
22303 && ((*fnamep)[1] == '/'
22304# ifdef BACKSLASH_IN_FILENAME
22305 || (*fnamep)[1] == '\\'
22306# endif
22307 || (*fnamep)[1] == NUL)
22308
22309#endif
22310 )
22311 {
22312 *fnamep = expand_env_save(*fnamep);
22313 vim_free(*bufp); /* free any allocated file name */
22314 *bufp = *fnamep;
22315 if (*fnamep == NULL)
22316 return -1;
22317 }
22318
22319 /* When "/." or "/.." is used: force expansion to get rid of it. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022320 for (p = *fnamep; *p != NUL; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022321 {
22322 if (vim_ispathsep(*p)
22323 && p[1] == '.'
22324 && (p[2] == NUL
22325 || vim_ispathsep(p[2])
22326 || (p[2] == '.'
22327 && (p[3] == NUL || vim_ispathsep(p[3])))))
22328 break;
22329 }
22330
22331 /* FullName_save() is slow, don't use it when not needed. */
22332 if (*p != NUL || !vim_isAbsName(*fnamep))
22333 {
22334 *fnamep = FullName_save(*fnamep, *p != NUL);
22335 vim_free(*bufp); /* free any allocated file name */
22336 *bufp = *fnamep;
22337 if (*fnamep == NULL)
22338 return -1;
22339 }
22340
22341 /* Append a path separator to a directory. */
22342 if (mch_isdir(*fnamep))
22343 {
22344 /* Make room for one or two extra characters. */
22345 *fnamep = vim_strnsave(*fnamep, (int)STRLEN(*fnamep) + 2);
22346 vim_free(*bufp); /* free any allocated file name */
22347 *bufp = *fnamep;
22348 if (*fnamep == NULL)
22349 return -1;
22350 add_pathsep(*fnamep);
22351 }
22352 }
22353
22354 /* ":." - path relative to the current directory */
22355 /* ":~" - path relative to the home directory */
22356 /* ":8" - shortname path - postponed till after */
22357 while (src[*usedlen] == ':'
22358 && ((c = src[*usedlen + 1]) == '.' || c == '~' || c == '8'))
22359 {
22360 *usedlen += 2;
22361 if (c == '8')
22362 {
22363#ifdef WIN3264
22364 has_shortname = 1; /* Postpone this. */
22365#endif
22366 continue;
22367 }
22368 pbuf = NULL;
22369 /* Need full path first (use expand_env() to remove a "~/") */
22370 if (!has_fullname)
22371 {
22372 if (c == '.' && **fnamep == '~')
22373 p = pbuf = expand_env_save(*fnamep);
22374 else
22375 p = pbuf = FullName_save(*fnamep, FALSE);
22376 }
22377 else
22378 p = *fnamep;
22379
22380 has_fullname = 0;
22381
22382 if (p != NULL)
22383 {
22384 if (c == '.')
22385 {
22386 mch_dirname(dirname, MAXPATHL);
22387 s = shorten_fname(p, dirname);
22388 if (s != NULL)
22389 {
22390 *fnamep = s;
22391 if (pbuf != NULL)
22392 {
22393 vim_free(*bufp); /* free any allocated file name */
22394 *bufp = pbuf;
22395 pbuf = NULL;
22396 }
22397 }
22398 }
22399 else
22400 {
22401 home_replace(NULL, p, dirname, MAXPATHL, TRUE);
22402 /* Only replace it when it starts with '~' */
22403 if (*dirname == '~')
22404 {
22405 s = vim_strsave(dirname);
22406 if (s != NULL)
22407 {
22408 *fnamep = s;
22409 vim_free(*bufp);
22410 *bufp = s;
22411 }
22412 }
22413 }
22414 vim_free(pbuf);
22415 }
22416 }
22417
22418 tail = gettail(*fnamep);
22419 *fnamelen = (int)STRLEN(*fnamep);
22420
22421 /* ":h" - head, remove "/file_name", can be repeated */
22422 /* Don't remove the first "/" or "c:\" */
22423 while (src[*usedlen] == ':' && src[*usedlen + 1] == 'h')
22424 {
22425 valid |= VALID_HEAD;
22426 *usedlen += 2;
22427 s = get_past_head(*fnamep);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022428 while (tail > s && after_pathsep(s, tail))
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022429 mb_ptr_back(*fnamep, tail);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022430 *fnamelen = (int)(tail - *fnamep);
22431#ifdef VMS
22432 if (*fnamelen > 0)
22433 *fnamelen += 1; /* the path separator is part of the path */
22434#endif
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022435 if (*fnamelen == 0)
22436 {
22437 /* Result is empty. Turn it into "." to make ":cd %:h" work. */
22438 p = vim_strsave((char_u *)".");
22439 if (p == NULL)
22440 return -1;
22441 vim_free(*bufp);
22442 *bufp = *fnamep = tail = p;
22443 *fnamelen = 1;
22444 }
22445 else
22446 {
22447 while (tail > s && !after_pathsep(s, tail))
22448 mb_ptr_back(*fnamep, tail);
22449 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022450 }
22451
22452 /* ":8" - shortname */
22453 if (src[*usedlen] == ':' && src[*usedlen + 1] == '8')
22454 {
22455 *usedlen += 2;
22456#ifdef WIN3264
22457 has_shortname = 1;
22458#endif
22459 }
22460
22461#ifdef WIN3264
22462 /* Check shortname after we have done 'heads' and before we do 'tails'
22463 */
22464 if (has_shortname)
22465 {
22466 pbuf = NULL;
22467 /* Copy the string if it is shortened by :h */
22468 if (*fnamelen < (int)STRLEN(*fnamep))
22469 {
22470 p = vim_strnsave(*fnamep, *fnamelen);
22471 if (p == 0)
22472 return -1;
22473 vim_free(*bufp);
22474 *bufp = *fnamep = p;
22475 }
22476
22477 /* Split into two implementations - makes it easier. First is where
22478 * there isn't a full name already, second is where there is.
22479 */
22480 if (!has_fullname && !vim_isAbsName(*fnamep))
22481 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022482 if (shortpath_for_partial(fnamep, bufp, fnamelen) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022483 return -1;
22484 }
22485 else
22486 {
22487 int l;
22488
22489 /* Simple case, already have the full-name
22490 * Nearly always shorter, so try first time. */
22491 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022492 if (get_short_pathname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022493 return -1;
22494
22495 if (l == 0)
22496 {
22497 /* Couldn't find the filename.. search the paths.
22498 */
22499 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022500 if (shortpath_for_invalid_fname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022501 return -1;
22502 }
22503 *fnamelen = l;
22504 }
22505 }
22506#endif /* WIN3264 */
22507
22508 /* ":t" - tail, just the basename */
22509 if (src[*usedlen] == ':' && src[*usedlen + 1] == 't')
22510 {
22511 *usedlen += 2;
22512 *fnamelen -= (int)(tail - *fnamep);
22513 *fnamep = tail;
22514 }
22515
22516 /* ":e" - extension, can be repeated */
22517 /* ":r" - root, without extension, can be repeated */
22518 while (src[*usedlen] == ':'
22519 && (src[*usedlen + 1] == 'e' || src[*usedlen + 1] == 'r'))
22520 {
22521 /* find a '.' in the tail:
22522 * - for second :e: before the current fname
22523 * - otherwise: The last '.'
22524 */
22525 if (src[*usedlen + 1] == 'e' && *fnamep > tail)
22526 s = *fnamep - 2;
22527 else
22528 s = *fnamep + *fnamelen - 1;
22529 for ( ; s > tail; --s)
22530 if (s[0] == '.')
22531 break;
22532 if (src[*usedlen + 1] == 'e') /* :e */
22533 {
22534 if (s > tail)
22535 {
22536 *fnamelen += (int)(*fnamep - (s + 1));
22537 *fnamep = s + 1;
22538#ifdef VMS
22539 /* cut version from the extension */
22540 s = *fnamep + *fnamelen - 1;
22541 for ( ; s > *fnamep; --s)
22542 if (s[0] == ';')
22543 break;
22544 if (s > *fnamep)
22545 *fnamelen = s - *fnamep;
22546#endif
22547 }
22548 else if (*fnamep <= tail)
22549 *fnamelen = 0;
22550 }
22551 else /* :r */
22552 {
22553 if (s > tail) /* remove one extension */
22554 *fnamelen = (int)(s - *fnamep);
22555 }
22556 *usedlen += 2;
22557 }
22558
22559 /* ":s?pat?foo?" - substitute */
22560 /* ":gs?pat?foo?" - global substitute */
22561 if (src[*usedlen] == ':'
22562 && (src[*usedlen + 1] == 's'
22563 || (src[*usedlen + 1] == 'g' && src[*usedlen + 2] == 's')))
22564 {
22565 char_u *str;
22566 char_u *pat;
22567 char_u *sub;
22568 int sep;
22569 char_u *flags;
22570 int didit = FALSE;
22571
22572 flags = (char_u *)"";
22573 s = src + *usedlen + 2;
22574 if (src[*usedlen + 1] == 'g')
22575 {
22576 flags = (char_u *)"g";
22577 ++s;
22578 }
22579
22580 sep = *s++;
22581 if (sep)
22582 {
22583 /* find end of pattern */
22584 p = vim_strchr(s, sep);
22585 if (p != NULL)
22586 {
22587 pat = vim_strnsave(s, (int)(p - s));
22588 if (pat != NULL)
22589 {
22590 s = p + 1;
22591 /* find end of substitution */
22592 p = vim_strchr(s, sep);
22593 if (p != NULL)
22594 {
22595 sub = vim_strnsave(s, (int)(p - s));
22596 str = vim_strnsave(*fnamep, *fnamelen);
22597 if (sub != NULL && str != NULL)
22598 {
22599 *usedlen = (int)(p + 1 - src);
22600 s = do_string_sub(str, pat, sub, flags);
22601 if (s != NULL)
22602 {
22603 *fnamep = s;
22604 *fnamelen = (int)STRLEN(s);
22605 vim_free(*bufp);
22606 *bufp = s;
22607 didit = TRUE;
22608 }
22609 }
22610 vim_free(sub);
22611 vim_free(str);
22612 }
22613 vim_free(pat);
22614 }
22615 }
22616 /* after using ":s", repeat all the modifiers */
22617 if (didit)
22618 goto repeat;
22619 }
22620 }
22621
22622 return valid;
22623}
22624
22625/*
22626 * Perform a substitution on "str" with pattern "pat" and substitute "sub".
22627 * "flags" can be "g" to do a global substitute.
22628 * Returns an allocated string, NULL for error.
22629 */
22630 char_u *
22631do_string_sub(str, pat, sub, flags)
22632 char_u *str;
22633 char_u *pat;
22634 char_u *sub;
22635 char_u *flags;
22636{
22637 int sublen;
22638 regmatch_T regmatch;
22639 int i;
22640 int do_all;
22641 char_u *tail;
22642 garray_T ga;
22643 char_u *ret;
22644 char_u *save_cpo;
22645
22646 /* Make 'cpoptions' empty, so that the 'l' flag doesn't work here */
22647 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022648 p_cpo = empty_option;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022649
22650 ga_init2(&ga, 1, 200);
22651
22652 do_all = (flags[0] == 'g');
22653
22654 regmatch.rm_ic = p_ic;
22655 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
22656 if (regmatch.regprog != NULL)
22657 {
22658 tail = str;
22659 while (vim_regexec_nl(&regmatch, str, (colnr_T)(tail - str)))
22660 {
22661 /*
22662 * Get some space for a temporary buffer to do the substitution
22663 * into. It will contain:
22664 * - The text up to where the match is.
22665 * - The substituted text.
22666 * - The text after the match.
22667 */
22668 sublen = vim_regsub(&regmatch, sub, tail, FALSE, TRUE, FALSE);
22669 if (ga_grow(&ga, (int)(STRLEN(tail) + sublen -
22670 (regmatch.endp[0] - regmatch.startp[0]))) == FAIL)
22671 {
22672 ga_clear(&ga);
22673 break;
22674 }
22675
22676 /* copy the text up to where the match is */
22677 i = (int)(regmatch.startp[0] - tail);
22678 mch_memmove((char_u *)ga.ga_data + ga.ga_len, tail, (size_t)i);
22679 /* add the substituted text */
22680 (void)vim_regsub(&regmatch, sub, (char_u *)ga.ga_data
22681 + ga.ga_len + i, TRUE, TRUE, FALSE);
22682 ga.ga_len += i + sublen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022683 /* avoid getting stuck on a match with an empty string */
22684 if (tail == regmatch.endp[0])
22685 {
22686 if (*tail == NUL)
22687 break;
22688 *((char_u *)ga.ga_data + ga.ga_len) = *tail++;
22689 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022690 }
22691 else
22692 {
22693 tail = regmatch.endp[0];
22694 if (*tail == NUL)
22695 break;
22696 }
22697 if (!do_all)
22698 break;
22699 }
22700
22701 if (ga.ga_data != NULL)
22702 STRCPY((char *)ga.ga_data + ga.ga_len, tail);
22703
22704 vim_free(regmatch.regprog);
22705 }
22706
22707 ret = vim_strsave(ga.ga_data == NULL ? str : (char_u *)ga.ga_data);
22708 ga_clear(&ga);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022709 if (p_cpo == empty_option)
22710 p_cpo = save_cpo;
22711 else
22712 /* Darn, evaluating {sub} expression changed the value. */
22713 free_string_option(save_cpo);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022714
22715 return ret;
22716}
22717
22718#endif /* defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) */